********* Template CSS *********
:root {
    --primary: #32C36C;
    --light: #F6F7F8;
    --dark: #1A2A36;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
}

@media (max-width: 768px) {
 .header-carousel .owl-carousel-item {
    position: relative;
    min-height: 60px; /* or your desired fixed height */
    overflow: hidden;
}

.header-carousel .owl-carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 255, 255, .9);
    border-radius: 45px;
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 45px;
    transition: .5s;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-icon {
    position: relative;
    margin: -50px 0 25px 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 100px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover .service-icon {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-img {
    /* position: relative; */
    height: 200px;
}

.portfolio-img::before,
.portfolio-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    background: var(--dark);
    transition: .5s;
}

.portfolio-img::before {
    left: 50%;
}

.portfolio-img::after {
    right: 50%;
}

.portfolio-item:hover .portfolio-img::before {
    width: 51%;
    left: 0;
}

.portfolio-item:hover .portfolio-img::after {
    width: 51%;
    right: 0;
}

.portfolio-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
    transition: .5s;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
    transition-delay: .3s;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    border-radius: 8px 60px 0 0;
}

.team-item .team-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #FFFFFF;
    transition: .5s;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    color: #9B9B9B;
    border: 1px solid #9B9B9B;
    border-radius: 38px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #9B9B9B;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
}
.card .list-group-item {
    font-size: 16px;
    padding: 10px 15px;
}

.whatsapp_float {
    position: fixed;
    bottom: 80px; /* changed from 20px */
    right: 20px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    padding: 15px;
    font-size: 22px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
}
.whatsapp-icon {
    color: white;
}


/* Carousel Image Optimization */
.header-carousel .owl-carousel-item {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header-carousel .owl-carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.header-carousel .owl-carousel-inner {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

/* Responsive Image Heights */
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        min-height: 70vh;
    }
    .header-carousel .owl-carousel-inner {
        min-height: 70vh;
    }
}

@media (max-width: 576px) {
    .header-carousel .owl-carousel-item {
        min-height: 60vh;
    }
    .header-carousel .owl-carousel-inner {
        min-height: 60vh;
    }
}

/* Dot Navigation Images */
.header-carousel .owl-dots .owl-dot img {
    width: 100px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}


        /* Mobile-Optimized Carousel */
        @media (max-width: 768px) {
            .header-carousel .owl-carousel-item {
                min-height: 70vh;
            }
            
            .header-carousel .owl-carousel-item img {
                object-fit: cover;
                object-position: center;
                height: 70vh;
            }
            
            .owl-carousel-inner .container {
                padding: 20px 15px;
            }
            
            .display-2 {
                font-size: 1.8rem !important;
                line-height: 1.2;
                margin-bottom: 1rem;
            }
            
            .fs-5 {
                font-size: 1rem !important;
            }
        }

        /* Mobile Contact Improvements */
        .mobile-contact-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #fff;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            padding: 10px;
            display: none;
        }

        @media (max-width: 768px) {
            .mobile-contact-bar {
                display: block;
            }
            
            body {
                padding-bottom: 80px;
            }
        }

        /* WhatsApp Float - Mobile Optimized */
        .whatsapp_float {
            position: fixed;
            bottom: 90px;
            right: 15px;
            background: #25D366;
            color: white;
            padding: 12px;
            border-radius: 50px;
            font-size: 20px;
            z-index: 100;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            .whatsapp_float {
                bottom: 100px;
                right: 10px;
                padding: 10px;
                font-size: 18px;
            }
        }



        .topbar-enhanced {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d3436 100%);
            border-bottom: 2px solid #0066cc;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .topbar-enhanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #0066cc, transparent);
        }

        .bg-gradient-dark {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d3436 100%) !important;
        }

        .contact-link {
            transition: all 0.3s ease;
            padding: 8px 12px;
            border-radius: 8px;
        }

        .contact-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-1px);
        }

        .contact-icon {
            width: 30px;
            height: 30px;
            background: rgba(40, 167, 69, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .contact-link:hover .contact-icon {
            background: rgba(40, 167, 69, 0.3);
            transform: scale(1.1);
        }

        .social-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .whatsapp-icon {
            background: rgba(37, 211, 102, 0.1);
            color: #25d366;
            border: 1px solid rgba(37, 211, 102, 0.3);
        }

        .whatsapp-icon:hover {
            background: #25d366;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
        }

        .email-icon {
            background: rgba(0, 102, 204, 0.1);
            color: #0066cc;
            border: 1px solid rgba(0, 102, 204, 0.3);
        }

        .email-icon:hover {
            background: #0066cc;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
        }

        .instagram-icon {
            background: rgba(225, 48, 108, 0.1);
            color: #e1306c;
            border: 1px solid rgba(225, 48, 108, 0.3);
        }

        .instagram-icon:hover {
            background: linear-gradient(45deg, #f56040, #e1306c, #c13584);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(225, 48, 108, 0.4);
        }

        .divider {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3), transparent);
        }

        .icon-wrapper {
            width: 40px;
            height: 40px;
            background: rgba(255, 193, 7, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 193, 7, 0.3);
        }

        /* Mobile Styles */
        .mobile-topbar {
            background: rgba(0,0,0,0.9);
            backdrop-filter: blur(10px);
        }

        .social-icon-mobile {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon-mobile.whatsapp {
            background: rgba(37, 211, 102, 0.2);
            color: #25d366;
        }

        .social-icon-mobile.email {
            background: rgba(0, 102, 204, 0.2);
            color: #0066cc;
        }

        .social-icon-mobile.instagram {
            background: rgba(225, 48, 108, 0.2);
            color: #e1306c;
        }

        .social-icon-mobile:hover {
            transform: scale(1.1);
        }

        /* Animation */
        @keyframes slideInFromTop {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .topbar-enhanced {
            animation: slideInFromTop 0.6s ease-out;
        }

        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .working-hours {
                display: none;
            }
        }

        @media (max-width: 992px) {
            .address-text small:last-child {
                font-size: 0.75rem;
            }
        }


         .enhanced-navbar {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 102, 204, 0.1);
        transition: all 0.3s ease;
    }

    .enhanced-navbar.scrolled {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        background: rgba(255, 255, 255, 0.98) !important;
    }

    /* Brand Section */
    .brand-section {
        transition: all 0.3s ease;
        padding: 1rem 2rem !important;
        border-right: 2px solid rgba(0, 102, 204, 0.1);
    }

    .brand-section:hover {
        background: rgba(0, 102, 204, 0.05);
        transform: translateY(-1px);
    }

    .brand-logo {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(40, 167, 69, 0.1));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .brand-section:hover .brand-logo {
        background: linear-gradient(135deg, rgba(0, 102, 204, 0.2), rgba(40, 167, 69, 0.2));
        transform: rotate(360deg);
    }

    /* Navigation Links */
    .nav-link-enhanced {
        position: relative;
        padding: 1rem 1.5rem !important;
        border-radius: 8px;
        margin: 0 0.25rem;
        transition: all 0.3s ease;
        font-weight: 500;
    }

    .nav-link-enhanced::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, #0066cc, #28a745);
        transition: all 0.3s ease;
        transform: translateX(-50%);
        border-radius: 2px;
    }

    .nav-link-enhanced:hover::before,
    .nav-link-enhanced.active::before {
        width: 80%;
    }

    .nav-link-enhanced:hover {
        background: rgba(0, 102, 204, 0.1);
        color: #0066cc !important;
        transform: translateY(-2px);
    }

    .nav-link-enhanced.active {
        background: rgba(0, 102, 204, 0.15);
        color: #0066cc !important;
        font-weight: 600;
    }

    /* Dropdown Menu */
    .dropdown-menu-custom {
        border: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        padding: 1rem 0;
        margin-top: 0.5rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        min-width: 250px;
    }

    .dropdown-menu-custom .dropdown-item {
        padding: 0.75rem 1.5rem;
        transition: all 0.3s ease;
        border-radius: 8px;
        margin: 0 0.5rem;
    }

    .dropdown-menu-custom .dropdown-item:hover {
        background: rgba(0, 102, 204, 0.1);
        color: #0066cc;
        transform: translateX(5px);
    }

    .dropdown-menu-custom .dropdown-divider {
        margin: 0.5rem 1rem;
        border-color: rgba(0, 102, 204, 0.1);
    }

    /* CTA Section - Simplified */
    .cta-section {
        padding-left: 2rem;
        border-left: 1px solid rgba(0, 102, 204, 0.1);
    }

    .cta-button {
        background: linear-gradient(135deg, #0066cc, #28a745);
        border: none;
        font-weight: 600;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        min-width: 150px;
    }

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.5s ease;
    }

    .cta-button:hover::before {
        left: 100%;
    }

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
        background: linear-gradient(135deg, #0052a3, #1e7e34);
    }

    /* Mobile Enhancements */
    .mobile-call-btn {
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .mobile-call-btn:hover {
        background: #0066cc;
        color: white !important;
        transform: scale(1.1);
    }

    .custom-toggler {
        border: 1px solid #0066cc;
        border-radius: 8px;
        padding: 0.5rem;
        transition: all 0.3s ease;
    }

    .custom-toggler:hover {
        background: rgba(0, 102, 204, 0.1);
        transform: scale(1.05);
    }

    /* Mobile Menu Styles */
    @media (max-width: 991px) {
        .navbar-collapse {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            margin-top: 1rem;
            padding: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .nav-link-enhanced {
            margin: 0.25rem 0;
        }

        .cta-section {
            padding: 1rem 0;
            border: none;
            border-top: 1px solid rgba(0, 102, 204, 0.1);
            margin-top: 1rem;
            justify-content: center !important;
        }

        .cta-button {
            width: 100%;
            text-align: center;
        }
    }

    /* Scroll Animation */
    @keyframes slideDown {
        from {
            transform: translateY(-100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .enhanced-navbar {
        animation: slideDown 0.6s ease-out;
    }

    /* Badge for Active Section */
    .nav-link-enhanced.active::after {
        content: '';
        position: absolute;
        top: 5px;
        right: 10px;
        width: 6px;
        height: 6px;
        background: #28a745;
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% { opacity: 1; }
        50% { opacity: 0.5; }
        100% { opacity: 1; }
    }

    .enhanced-navbar {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 102, 204, 0.1);
        transition: all 0.3s ease;
    }

    .enhanced-navbar.scrolled {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        background: rgba(255, 255, 255, 0.98) !important;
    }

    /* Brand Section */
    .brand-section {
        transition: all 0.3s ease;
        padding: 1rem 2rem !important;
        border-right: 2px solid rgba(0, 102, 204, 0.1);
    }

    .brand-section:hover {
        background: rgba(0, 102, 204, 0.05);
        transform: translateY(-1px);
    }

    .brand-logo {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(40, 167, 69, 0.1));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .brand-section:hover .brand-logo {
        background: linear-gradient(135deg, rgba(0, 102, 204, 0.2), rgba(40, 167, 69, 0.2));
        transform: rotate(360deg);
    }

    /* Navigation Links */
    .nav-link-enhanced {
        position: relative;
        padding: 1rem 1.5rem !important;
        border-radius: 8px;
        margin: 0 0.25rem;
        transition: all 0.3s ease;
        font-weight: 500;
    }

    .nav-link-enhanced::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, #0066cc, #28a745);
        transition: all 0.3s ease;
        transform: translateX(-50%);
        border-radius: 2px;
    }

    .nav-link-enhanced:hover::before,
    .nav-link-enhanced.active::before {
        width: 80%;
    }

    .nav-link-enhanced:hover {
        background: rgba(0, 102, 204, 0.1);
        color: #0066cc !important;
        transform: translateY(-2px);
    }

    .nav-link-enhanced.active {
        background: rgba(0, 102, 204, 0.15);
        color: #0066cc !important;
        font-weight: 600;
    }

    /* Dropdown Menu */
    .dropdown-menu-custom {
        border: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        padding: 1rem 0;
        margin-top: 0.5rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }

    .dropdown-menu-custom .dropdown-item {
        padding: 0.75rem 1.5rem;
        transition: all 0.3s ease;
        border-radius: 8px;
        margin: 0 0.5rem;
    }

    .dropdown-menu-custom .dropdown-item:hover {
        background: rgba(0, 102, 204, 0.1);
        color: #0066cc;
        transform: translateX(5px);
    }

    /* CTA Section */
    .cta-section {
        padding-left: 2rem;
        border-left: 1px solid rgba(0, 102, 204, 0.1);
    }

    .cta-button {
        background: linear-gradient(135deg, #0066cc, #28a745);
        border: none;
        font-weight: 600;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.5s ease;
    }

    .cta-button:hover::before {
        left: 100%;
    }

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
        background: linear-gradient(135deg, #0052a3, #1e7e34);
    }

    /* Mobile Enhancements */
    .mobile-call-btn {
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .mobile-call-btn:hover {
        background: #0066cc;
        color: white !important;
        transform: scale(1.1);
    }

    .custom-toggler {
        border: 1px solid #0066cc;
        border-radius: 8px;
        padding: 0.5rem;
        transition: all 0.3s ease;
    }

    .custom-toggler:hover {
        background: rgba(0, 102, 204, 0.1);
        transform: scale(1.05);
    }

    /* Mobile Menu Styles */
    @media (max-width: 991px) {
        .navbar-collapse {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            margin-top: 1rem;
            padding: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .nav-link-enhanced {
            margin: 0.25rem 0;
        }

        .cta-section {
            padding: 1rem 0;
            border: none;
            border-top: 1px solid rgba(0, 102, 204, 0.1);
            margin-top: 1rem;
            justify-content: center !important;
        }

        .contact-info {
            text-align: center;
            margin-bottom: 1rem !important;
        }
    }

    /* Scroll Animation */
    @keyframes slideDown {
        from {
            transform: translateY(-100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .enhanced-navbar {
        animation: slideDown 0.6s ease-out;
    }

    /* Badge for Active Section */
    .nav-link-enhanced.active::after {
        content: '';
        position: absolute;
        top: 5px;
        right: 10px;
        width: 6px;
        height: 6px;
        background: #28a745;
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% { opacity: 1; }
        50% { opacity: 0.5; }
        100% { opacity: 1; }
    }

    /* Enhanced Carousel Styles */
.enhanced-carousel {
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,102,204,0.3) 100%);
    z-index: 1;
}

.owl-carousel-inner {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: center;
}

/* Hero Content Styling */
.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.glow-text {
    text-shadow: 0 0 20px rgba(255,193,7,0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.text-white-75 {
    color: rgba(255,255,255,0.9) !important;
}

/* Enhanced Badge Styling */
.hero-badge .badge,
.office-badge .badge,
.team-badge .badge,
.cert-badge .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Enhanced CTA Buttons */
.cta-primary,
.cta-office,
.cta-team,
.cta-cert {
    position: relative;
    overflow: hidden;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.cta-primary:hover .btn-shine,
.cta-office:hover .btn-shine,
.cta-team:hover .btn-shine,
.cta-cert:hover .btn-shine {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,102,204,0.4);
}

.cta-secondary {
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

/* Enhanced Trust Badges */
.trust-item {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.trust-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,193,7,0.2);
    border-radius: 50%;
    border: 2px solid rgba(255,193,7,0.5);
}

.trust-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.trust-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}

/* Enhanced Info Cards */
.office-info-card,
.team-feature-card,
.cert-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.office-info-card:hover,
.team-feature-card:hover,
.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.info-icon,
.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,102,204,0.1);
    border-radius: 50%;
}

/* Certification Grid */
.cert-card {
    transition: all 0.3s ease;
}

.cert-card:hover {
    transform: scale(1.05);
}

.cert-icon {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Enhanced Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stat-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,102,204,0.1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.icon-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover .icon-circle::before {
    left: 100%;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0066cc;
    line-height: 1;
}

.stat-title {
    color: #333;
    font-weight: 600;
}

.stat-description {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-image {
        height: 70vh;
    }
    
    .owl-carousel-inner {
        height: 70vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .trust-item {
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* About Section - Modern Background */
.about-section-enhanced {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 25%, #f8f9fa 50%, #dee2e6 75%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #28a745, #ffc107, #0066cc);
}

/* Section Header Styling */
.section-badge .badge {
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #28a745);
    border-radius: 2px;
}

/* Enhanced Image Container */
.image-container {
    position: relative;
    padding: 2rem;
}

.main-image-wrapper {
    position: relative;
    z-index: 3;
}

.main-about-image {
    transition: all 0.5s ease;
    border: 4px solid white;
}

.main-about-image:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2) !important;
}

/* Floating Statistics */
.floating-stat {
    position: absolute;
    z-index: 4;
    animation: float 6s ease-in-out infinite;
}

.floating-stat-1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.floating-stat-2 {
    bottom: 20px;
    left: -20px;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(0px) rotate(0deg); }
    75% { transform: translateY(-5px) rotate(-1deg); }
}

.stat-card {
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 102, 204, 0.1);
    min-width: 120px;
}

.stat-card:hover {
    transform: scale(1.1);
    border-color: rgba(0, 102, 204, 0.3);
}

/* Background Decorative Elements */
.bg-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.bg-element-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #0066cc, #28a745);
    top: -50px;
    right: -50px;
    animation: rotate 20s linear infinite;
}

.bg-element-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    bottom: -30px;
    left: -30px;
    animation: rotate 15s linear infinite reverse;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Content Section Styling */
.text-gradient {
    background: linear-gradient(135deg, #0066cc, #28a745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Features Grid */
.feature-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white !important;
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision Tabs */
.nav-pills .nav-link {
    background: transparent;
    border: 2px solid #e9ecef;
    color: #6c757d;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.nav-pills .nav-link.active {
    background: linear-gradient(135deg, #0066cc, #0052a3);
    border-color: #0066cc;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.nav-pills .nav-link:hover:not(.active) {
    background: rgba(0, 102, 204, 0.1);
    border-color: rgba(0, 102, 204, 0.3);
    color: #0066cc;
}

.mission-content,
.vision-content {
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* CTA Buttons */
.cta-primary {
    background: linear-gradient(135deg, #0066cc, #0052a3);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
}

/* Trust Indicators */
.trust-badge {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white !important;
}

/* Responsive Design */
@media (max-width: 991px) {
    .floating-stat {
        position: static;
        display: inline-block;
        margin: 1rem;
        animation: none;
    }
    
    .image-container {
        text-align: center;
        padding: 1rem;
    }
    
    .bg-element {
        display: none;
    }
}

@media (max-width: 768px) {
    .main-about-image:hover {
        transform: none;
    }
    
    .feature-card:hover {
        transform: none;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .display-5 {
        font-size: 1.8rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .floating-stat {
        margin: 0.5rem;
    }
    
    .stat-card {
        min-width: 100px;
        padding: 0.5rem;
    }
}


/* Portfolio Section */
.portfolio-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    padding: 3rem 0;
}

/* Horizontal Filter Navigation */
.filter-nav-horizontal {
    background: white;
    padding: 0.5rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    justify-content: center;
}

.filter-btn-horizontal {
    background: transparent;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    color: #6c757d;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn-horizontal.active,
.filter-btn-horizontal:hover {
    background: linear-gradient(135deg, #0066cc, #0052a3);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

/* Portfolio Category Container */
.portfolio-category {
    transition: all 0.4s ease;
}

.category-header {
    text-align: center;
    padding: 1rem 0;
    border-bottom: 2px solid rgba(0, 102, 204, 0.1);
}

/* Horizontal Scroll Wrapper */
.horizontal-scroll-wrapper {
    overflow-x: auto;
    padding: 1rem 0;
    margin: 0 -15px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #0066cc;
    border-radius: 3px;
}

/* Horizontal Portfolio Grid */
.horizontal-portfolio-grid {
    display: flex;
    gap: 1rem;
    padding: 0 15px;
    min-width: max-content;
}

/* Horizontal Portfolio Cards */
.portfolio-card-horizontal {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: 280px;
    flex-shrink: 0;
}

.portfolio-card-horizontal:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.card-image-horizontal {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.card-image-horizontal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-card-horizontal:hover .card-image-horizontal img {
    transform: scale(1.05);
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: end;
    padding: 1rem;
}

.portfolio-card-horizontal:hover .image-overlay {
    opacity: 1;
}

.overlay-stats {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Testimonial Overlay */
.testimonial-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-stars {
    font-size: 1.2rem;
}

/* Card Content */
.card-content-horizontal {
    padding: 1rem;
}

.specs-mini {
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.75rem;
}

.specs-mini small {
    color: #6c757d;
    font-weight: 500;
}

/* Testimonial Specific Styles */
.testimonial-card blockquote {
    border-left: 3px solid #0066cc;
    padding-left: 0.5rem;
    color: #666;
    line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .filter-nav-horizontal {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .filter-btn-horizontal {
        width: 100%;
        text-align: center;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .portfolio-card-horizontal {
        width: 240px;
    }
    
    .horizontal-portfolio-grid {
        gap: 0.75rem;
    }
    
    .card-image-horizontal {
        height: 140px;
    }
    
    .image-overlay {
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .portfolio-card-horizontal {
        width: 220px;
    }
    
    .card-image-horizontal {
        height: 120px;
    }
    
    .card-content-horizontal {
        padding: 0.75rem;
    }
    
    .specs-mini {
        padding: 0.4rem;
        font-size: 0.7rem;
    }
}

/* Animation */
.portfolio-category {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* FAQ Section Enhanced Background */
.faq-section-enhanced {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 25%, #f1f8e9 50%, #fff3e0 75%, #f8f9fa 100%);
    position: relative;
}

/* Section Header Enhancements */
.text-gradient {
    background: linear-gradient(135deg, #0066cc, #28a745, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-stats {
    margin-top: 1rem;
}

.stat-item {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Enhanced Accordion Styling */
.faq-accordion-enhanced {
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: 15px;
}

.faq-item-enhanced {
    border: none !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-radius: 15px !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.faq-button-enhanced {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: none;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-button-enhanced:not(.collapsed) {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.faq-button-enhanced:not(.collapsed) .faq-icon i {
    color: white;
}

.faq-button-enhanced::after {
    background-image: none;
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-button-enhanced:not(.collapsed)::after {
    transform: rotate(180deg);
    color: white;
}

.faq-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-button-enhanced:not(.collapsed) .faq-icon {
    background: rgba(255, 255, 255, 0.2);
}

.question-text {
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    line-height: 1.3;
}

.question-subtitle {
    color: #6c757d;
    font-size: 0.85rem;
    display: block;
    margin-top: 0.25rem;
}

.faq-button-enhanced:not(.collapsed) .question-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Enhanced Answer Content */
.faq-answer-enhanced {
    background: white;
    border-top: 3px solid rgba(0, 102, 204, 0.1);
    padding: 2rem 1.5rem;
}

.answer-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
}

/* Subsidy Cards */
.subsidy-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.subsidy-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Timeline Steps */
.timeline-step {
    transition: all 0.3s ease;
}

.timeline-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-weight: bold;
    font-size: 1.1rem;
}

/* Warranty Cards */
.warranty-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.warranty-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Weather Cards */
.weather-card {
    transition: all 0.3s ease;
}

.weather-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Process Cards */
.process-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.process-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Savings Calculator */
.savings-calculator-mini {
    border: 2px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
}

.savings-calculator-mini:hover {
    border-color: rgba(0, 102, 204, 0.3);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.1);
}

/* CTA Section */
.faq-cta-section .cta-container {
    border: 3px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
}

.cta-pattern {
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-button-enhanced {
        padding: 1rem;
    }
    
    .question-text {
        font-size: 1rem;
    }
    
    .faq-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .answer-content {
        font-size: 0.95rem;
    }
    
    .header-stats {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .faq-answer-enhanced {
        padding: 1.5rem 1rem;
    }
    
    .subsidy-card,
    .warranty-card,
    .weather-card {
        margin-bottom: 1rem;
    }
    
    .timeline-step {
        margin-bottom: 1rem;
    }
}