        :root {
            --primary-color: #00bfa5;
            --primary-gradient: linear-gradient(135deg, #00bfa5 0%, #009688 100%);
            --secondary-color: #0d47a1;
            --accent-color: #f59e0b;
            --dark-color: #1e293b;
            --light-color: #f8fafc;
            --glass-bg: rgba(255, 255, 255, 0.8);
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-color);
            background-color: #fff;
            overflow-x: hidden;
        }

        /* Adjust main content padding to account for fixed subnav */
    body { padding-top: 85px; }

    @media (min-width: 992px) {
        body { padding-top: 85px; }
    }


        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        /* Navbar Customization */
        .navbar {
            padding: 1.25rem 0;
            transition: var(--transition-smooth);
            z-index: 1050;
        }

        .navbar.scrolled {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            padding: 0.75rem 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .nav-link {
            font-weight: 500;
            color: var(--dark-color);
            margin: 0 0.5rem;
            transition: var(--transition-smooth);
        }

        .nav-link:hover {
            color: var(--primary-color);
        }

        /* Dropdown Hover */
        @media (min-width: 992px) {
            .nav-item.dropdown:hover > .dropdown-menu {
                display: block;
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .dropdown-menu {
                display: block !important;
                opacity: 0;
                visibility: hidden;
                transform: translateY(15px);
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                pointer-events: none;
            }

            .nav-item.dropdown:hover > .dropdown-menu {
                pointer-events: auto;
            }
        }

        .dropdown-menu {
            min-width: 200px;
            border-radius: 16px;
            margin-top: 0 !important;
            border: none;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        /* Mobile View Styles */
        @media (max-width: 991.98px) {
            .offcanvas-end {
                width: 300px;
                background-color: #fff !important;
            }

            .offcanvas-body .nav-link {
                color: #1e293b !important;
                padding: 0.8rem 1rem !important;
                border-radius: 8px;
            }

            .offcanvas-body .nav-link.active {
                background-color: rgba(0, 191, 165, 0.1);
                color: var(--primary-color) !important;
            }

            .offcanvas-body .dropdown-menu {
                display: block !important;
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
                box-shadow: none;
                padding-left: 1.5rem !important;
            }

            .offcanvas-body .dropdown-item {
                padding: 0.5rem 1rem !important;
            }
        }

        /* Buttons */
        .btn-premium {
            background: var(--primary-gradient);
            color: #fff;
            padding: 0.75rem 1.75rem;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: var(--transition-smooth);
            box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
        }

        .btn-premium:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
            color: #fff;
        }

        .btn-outline-premium {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            padding: 0.75rem 1.75rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition-smooth);
        }

        .btn-outline-premium:hover {
            background: var(--primary-gradient);
            color: #fff;
            border-color: transparent;
        }

        /* Hero Section */
        .hero-section {
            padding: 40px 0 40px;
            background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.05), transparent),
                radial-gradient(circle at bottom left, rgba(124, 58, 237, 0.05), transparent);
            position: relative;
        }

        .hero-title {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, #1e293b, #4f46e5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Cards */
        .glass-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            padding: 2rem;
            transition: var(--transition-smooth);
        }

        .glass-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        }

        /* Footer */
        footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 80px 0 30px;
        }

        footer h5 {
            color: #fff;
            margin-bottom: 1.5rem;
        }

        footer a {
            color: #94a3b8;
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        footer a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        /* Utilities */
        .text-gradient {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

      

        .bg-soft {
            background-color: #f8fafc;
        }

        /* Animations */
        .float-anim {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-color);
        }
    :root {
        --teal-color: #00bfa5;
        --dark-bg: #05051e;
    }

    .bg-teal {
        background-color: var(--primary-color) !important;
    }

    .btn-teal {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        transition: all 0.3s ease;
    }

    .btn-teal:hover {
        background-color: var(--primary-color);
        opacity: 0.9;
        color: #fff;
        transform: translateY(-2px);
    }

    .btn-outline-teal {
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        transition: all 0.3s ease;
    }

    .btn-outline-teal:hover {
        background-color: var(--primary-color);
        color: #fff;
    }

    /* Top Navbar */
    .navbar {
        background: transparent !important;
        padding: 0.75rem 0;
        transition: all 0.3s ease;
        z-index: 1070;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        padding: 0.75rem 0;
    }

    /* Nav Links */
    .nav-link {
        color: #475569;
        font-weight: 600;
        font-size: 0.95rem;
        padding: 0.5rem 1rem !important;
        position: relative;
        transition: color 0.3s ease;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: all 0.3s ease;
        transform: translateX(-50%);
        border-radius: 2px;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 20px;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-color) !important;
    }

    /* Dropdown Hover */
    @media (min-width: 992px) {
        .nav-item.dropdown:hover>.dropdown-menu {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu {
            display: block !important;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
        }

        .nav-item.dropdown:hover>.dropdown-menu {
            pointer-events: auto;
        }
    }

    .dropdown-menu {
        min-width: 200px;
        border-radius: 16px;
        margin-top: 0 !important;
        border: none;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .dropdown-item {
        padding: 0.7rem 1rem;
        font-weight: 500;
        color: #64748b;
        transition: all 0.2s ease;
    }

    .dropdown-item:hover {
        background: #f1f5f9;
        color: var(--primary-color);
        transform: translateX(5px);
    }

    /* Navigation Bar */
    .main-navigation {
        background: #fff;
        border-bottom: 2px solid #f1f1f1;
        position: fixed;
        top: 85px;
        width: 100%;
        z-index: 1060;
        transition: all 0.3s ease;
    }

    .navbar.scrolled+.main-navigation {
        top: 75px;
    }

    .main-navigation .nav-link {
        color: #444;
        font-weight: 500;
        font-size: 0.85rem;
        padding: 1rem 0.8rem;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        transition: all 0.3s ease;
    }

    .main-navigation .nav-link:hover {
        color: var(--primary-color);
    }

    .main-navigation .nav-link.active {
        color: var(--primary-color);
    }

    .main-navigation .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0.8rem;
        right: 0.8rem;
        height: 3px;
        background: var(--primary-color);
        border-radius: 3px 3px 0 0;
    }

    /* Fixed Layout Fixes */
    @media (min-width: 992px) {
        .main-navigation {
            justify-content: center;
        }

        .main-navigation .nav {
            justify-content: center;
            width: 100%;
        }
    }

    /* Body Padding */
    /* Handled in master layout */

    .hamburger-icon span {
        background: var(--primary-color);
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    /* Fix Search Bar and My Account Alignment */
    .header-search-bar {
        max-width: 500px;
        margin: 0 auto;
    }

    .header-search-bar .form-control {
        border-radius: 50px 0 0 50px !important;
        border: 1px solid #e2e8f0;
        background: #f8fafc !important;
        padding-left: 1.5rem;
    }

    .header-search-bar .btn-search {
        border-radius: 0 50px 50px 0 !important;
        padding-right: 1.5rem;
        padding-left: 1.25rem;
    }

    .account-nav-link {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #1e293b;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .account-nav-link:hover {
        color: var(--primary-color);
    }

    .account-nav-link .avatar-circle {
        width: 32px;
        height: 32px;
        background: #f1f5f9;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #64748b;
    }

    .btn-search {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

    .btn-search:hover {
        background-color: var(--primary-color);
        opacity: 0.9;
    }

    .footer-premium {
        background: #0f172a;
        padding: 100px 0 40px;
        position: relative;
        overflow: hidden;
    }

    .footer-premium::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.3), transparent);
    }

    .footer-title {
        color: #fff;
        font-weight: 700;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 2rem;
    }

    .footer-links li {
        margin-bottom: 1rem;
    }

    .footer-links a {
        color: #94a3b8;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        font-size: 0.95rem;
    }

    .footer-links a:hover {
        color: var(--primary-color);
        padding-left: 8px;
    }

    /* Social Links */
    .social-link {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .social-link:hover {
        background: var(--primary-color);
        transform: translateY(-5px);
        box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.4);
        color: #fff;
    }

    /* Newsletter */
    .newsletter-form .form-control {
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #000;
        padding: 0.8rem 1.2rem;
        border-radius: 12px 0 0 12px;
    }

    .newsletter-form .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: none;
    }

    .newsletter-form .btn {
        padding: 0 1.5rem;
        border-radius: 0 12px 12px 0;
    }

    .brightness-0-invert {
        filter: brightness(0) invert(1);
    }

    .footer-bottom a {
        color: #94a3b8;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-bottom a:hover {
        color: #fff;
    }

     .glass-card {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        }

      

          /* Floating Buttons Styling */
        .floating-actions {
            position: fixed;
            bottom: 30px;
            right: 20px;
            z-index: 1050;
        }

        @media (max-width: 767.98px) {
            .floating-actions {
                bottom: 20px;
                right: 15px;
            }
            .floating-btn {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }
        }

        .floating-btn {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #fff;
            text-decoration: none;
            border: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .whatsapp-btn {
            background: #25d366;
        }

        .testimonial-btn {
            background: #f59e0b;
        }

        .floating-btn:hover {
            transform: scale(1.1) rotate(5deg);
            color: #fff;
        }

        /* Testimonial Modal Styling */
        .modal-content {
            overflow: hidden;
        }

        .modal-body .form-control {
            border: 1px solid #e2e8f0;
            background: #f8fafc;
            padding: 0.75rem 1rem;
            border-radius: 12px;
        }

        .modal-body .form-control:focus {
            background: #fff;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
        }

        @media (max-width: 991.98px) {
            .mobile-w-100 {
                width: 100% !important;
            }
        }

        @media (min-width: 992px) {
            .mobile-w-100 {
                width: auto !important;
            }
        }

        .hero-banner{
            width: 100%;
            height: 700px;
            object-fit: fill;
        }

          .hero-section{
                padding: 90px 0 90px;
        }

          .section-padding {
            padding: 100px 0;
        }

        @media (max-width: 768px){
            .hero-banner{
                height: auto;
                object-fit: contain;
            }

              .hero-section{
                padding: 30px 0 30px;
        }

          .section-padding {
            padding: 35px 0;
        }
        }

        .testimonial-card{
    position:relative;
    background:#fff;
    border-radius:25px;
    padding:35px;
    text-align:center;
    box-shadow:0 12px 40px rgba(0,0,0,.08);
    transition:.4s;
    overflow:hidden;
    border:1px solid #eef1f5;
    min-height:420px;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.quote-icon{
    position:absolute;
    top:20px;
    right:20px;
    width:55px;
    height:55px;
    border-radius:50%;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
}

.testimonial-img{
    width:90px;
    height:90px;
    object-fit:fill;
    border-radius:50%;
    border:4px solid #fff;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.rating i{
    color:#ffc107;
    margin:0 2px;
}

.testimonial-text{
    color:#666;
    line-height:1.9;
    font-size:15px;
}

.swiper-button-next,
.swiper-button-prev{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
    color:#4f46e5;
}

.swiper-button-next:after,
.swiper-button-prev:after{
    font-size:18px;
    font-weight:bold;
}

.swiper-pagination-bullet{
    width:12px;
    height:12px;
}

.swiper-pagination-bullet-active{
    background:#4f46e5;
}

@media(max-width:768px){

.testimonial-card{
    min-height:auto;
    padding:25px;
}

.quote-icon{
    width:45px;
    height:45px;
    font-size:18px;
}

}