/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-orange: #F4AA08;
    --primary-blue: #112D43;
    --text-dark: #333;
    --text-light: #777;
    --white: #ffffff;
    --light-bg: #f9f9f9;
    --light-gray: #f0f0f0;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;

}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #e09b07;
    transform: translateY(-2px);
}



.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    text-align: center;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-orange);
    margin: 10px auto;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}
.logo img{
    width:100px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.logo-text span {
    color: var(--primary-orange);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    margin-right: 30px;
}

.nav-item {
    position: relative;
    margin: 0 15px;
}

.nav-link {
    font-weight: 500;
    color: var(--primary-blue);
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active-link {
    color: var(--primary-orange);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 12px 20px;
    display: block;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-item:hover {
    background: #f9f9f9;
    color: var(--primary-orange);
}

.header-cta {
    display: flex;
    align-items: center;
}

.quote-link {
    margin-right: 20px;
    font-weight: 600;
    color: var(--primary-orange);
    margin-right: 20px;
    font-weight: 600;    
    background: var(--primary-orange);
    color: #fff;
    border-radius: 5px;
    padding: 5px;
}

.phone-number {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary-blue);
}

.phone-number i {
    margin-right: 8px;
    color: var(--primary-orange);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--primary-blue);
    transition: all 0.3s ease;
}

/* Hero Slider */
.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.slide-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.slide-desc {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dot.active {
    background: var(--white);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.6);
}

.arrow-left {
    left: 20px;
}

.arrow-right {
    right: 20px;
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
    background: var(--light-bg);
}

.two-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.column {
    flex: 1;
    min-width: 300px;
}

.benefits-list {
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.benefit-icon {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-content h3 {
    margin-bottom: 8px;
    color: var(--primary-blue);
}

.calculator {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.calculator h3 {
    margin-bottom: 20px;
    color: var(--primary-blue);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.calc-result {
    margin-top: 20px;
    padding: 15px;
    background: #f5f9ff;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-blue);
}

/* FAQs Section */
.faqs {
    padding: 80px 0;
}

.accordion {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    padding: 20px;
    background: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-blue);
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--white);
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 20px;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

/* Impact Section */
.impact {
    padding: 80px 0;
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
}

.impact .section-title {
    color: var(--white);
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
}

/* Achievements Section */
.achievements {
    padding: 80px 0;
    background: var(--light-bg);
}

.logos-container {
    margin-top: 40px;
    overflow: hidden;
    position: relative;
}

.logos-scroll {
    display: flex;
    animation: scroll 30s linear infinite;
}

.logo-item {
    flex: 0 0 auto;
    width: 200px;
    height: 120px;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Page Banner */
.page-banner {
    height: 150px;
    background-image: url('s1.png');
    background-size: cover;
    background-position: top;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.page-banner h1 {
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.serve-banner{
   
    background-image: url('s4.png');
}
/* Footer */
footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-orange);
}

.footer-links {
    margin-top: 15px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.address {
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-list {
        margin-right: 15px;
    }
    
    .nav-item {
        margin: 0 10px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 101;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 20px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        margin-right: 0;
    }
    
    .nav-item {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid #f1f1f1;
    }
    
    .nav-link {
        display: block;
        padding: 15px 0;
    }
    
    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-content {
        max-height: 300px;
    }
    
    .header-cta {
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
    }
    
    .quote-link {
        margin-right: 0;
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
        padding: 12px;
        background: var(--primary-orange);
        color: var(--white);
        border-radius: 4px;
    }
    
    .phone-number {
        justify-content: center;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-desc {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .slider-container {
        height: 500px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .stat-item {
        min-width: 140px;
    }
    
    .footer-col {
        min-width: 100%;
    }
}