:root {
            --teal-primary: #00589b;
            --teal-secondary: #0068b8;
            --teal-light: #dbf5ff;
            --pink-accent: #FFEDF3;
            --text-dark: #333333;
            --text-light: #6c757d;
            --text-glass: #ecececcc;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
            background-color: #f8f9fa;
        }

        /* Style the main dropdown menu container */
        .navbar .dropdown-menu {
            border-radius: 12px;
            /* Rounded corners for a modern look */
            border: 1px solid #e9ecef;
            /* Subtle border */
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            /* Soft shadow for depth */
            padding: 0.5rem 0;
            /* Add some vertical padding */
            margin-top: 0;
            /* Push it slightly down from the 'Products' link */
            top: 125px; /* Adjust this value to move the dropdown down */
        }

        /* Style individual dropdown items */
        .navbar .dropdown-item {
            padding: 0.6rem 0.2rem;
            /* More padding for easier clicking */
            color: var(--text-dark);
            /* Darker text color for readability */
            transition: all 0.2s ease-in-out;
            /* Smooth transition for hover effects */
        }

        /* Hover effect for dropdown items */
        .navbar .dropdown-item:hover {
            background-color: #f8f9fa;
            /* Light grey background on hover */
            color: var(--teal-primary);
            /* Use your site's primary teal color for text */
            border-radius: 6px;
            /* Slightly rounded corners on the hovered item */
        }

        /* Style for the 'active' dropdown item */
        .navbar .dropdown-item.active,
        .navbar .dropdown-item:active {
            background-color: var(--teal-primary);
            /* Your site's primary teal color */
            color: #fff;
            /* White text for active item */
            border-radius: 6px;
        }

        /* Custom Buttons */
        .btn-teal {
            background-color: var(--teal-primary);
            color: white;
            border: none;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.4s;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1rem;
            box-shadow: 0 6px 15px rgba(10, 186, 181, 0.3);
        }

        .btn-teal:hover {
            background-color: #089c98;
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(10, 186, 181, 0.4);
        }

        .btn-outline-teal {
            background-color: transparent;
            color: var(--teal-primary);
            border: 2px solid var(--teal-primary);
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.4s;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1rem;
        }

        .btn-outline-teal:hover {
            background-color: var(--teal-primary);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(10, 186, 181, 0.3);
        }

        /* Navbar Styles */
        .navbar {
            padding: 20px 0;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            backdrop-filter: blur(10px);
            transition: all 0.4s;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

        .navbar.scrolled {
            padding: 12px 0;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            font-weight: 800;
            color: var(--teal-primary);
            font-size: 28px;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }

        .navbar-brand img {
            height: 110px;
            margin-right: 10px;
        }

        .navbar-brand span {
            color: var(--text-dark);
        }

        .nav-link {
            font-weight: 600;
            color: var(--text-dark) !important;
            margin: 0 12px;
            transition: all 0.3s;
            position: relative;
            font-size: 1.05rem;
        }

        .nav-link:hover {
            color: var(--teal-primary) !important;
        }

        .nav-link:hover::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--teal-secondary);
            animation: underline 0.3s ease-out;
        }

        .navbar .btn-teal {
            padding: 10px 26px;
            font-size: 0.95rem;
            background-color: var(--teal-primary);
            color: white;
            border-radius: 9999px;
            border: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .navbar .btn-teal:hover {
            background-color: var(--teal-secondary);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
        }

        /* Desktop mega menu */
        @media (min-width: 992px) {
            .dropdown-mega .dropdown-menu {
                left: 0;
                right: 0;
                border-top: none;
                border-radius: 0;
                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
                transition: visibility 0.3s, opacity 0.3s;
                visibility: hidden;
                opacity: 0;
                display: block;
                margin-top: 0 !important;
            }

            .dropdown-mega:hover .dropdown-menu {
                visibility: visible;
                opacity: 1;
            }
        }

        .dropdown-mega h6 {
            color: var(--teal-primary);
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 8px;
            display: flex;
            justify-content: center;
            align-items: flex-end;
        }

        .dropdown-mega h6::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: var(--teal-secondary);
            border-radius: 2px;
        }

        .dropdown-mega .list-unstyled {
            display: flex;
            flex-direction: column;
            padding: 0;
        }

        .dropdown-mega .list-unstyled li {
            list-style: none;
        }

        .dropdown-mega .dropdown-item {
            display: block;
            padding: 0.5rem 1.2rem;
            color: var(--text-dark);
            font-weight: 500;
            transition: all 0.2s ease-in-out;
            white-space: nowrap;
            width: 100%;
        }

        .dropdown-mega .dropdown-item:hover {
            color: var(--teal-primary);
            background-color: transparent;
        }

        /* Mobile specific styles */
        @media (max-width: 991px) {
            .navbar-collapse {
                max-height: 80vh;
                overflow-y: auto;
                background: rgba(255, 255, 255, 0.98);
                padding-bottom: 1rem;
            }

            /* Show all categories directly on mobile */
            .dropdown-mega .dropdown-menu {
                position: static !important;
                display: block !important;
                visibility: visible !important;
                opacity: 1 !important;
                box-shadow: none;
                border: none;
                background: transparent;
                padding: 0;
                margin: 0;
            }

            .dropdown-mega .nav-link.dropdown-toggle {
                pointer-events: none;
                padding-bottom: 0.5rem;
            }

            .dropdown-mega .nav-link.dropdown-toggle::after {
                display: none;
            }

            .dropdown-mega h6 {
                font-size: 0.9rem;
                margin-top: 1rem;
                margin-bottom: 0.5rem;
                justify-content: flex-start;
                padding-left: 1rem;
            }

            .dropdown-mega h6::after {
                left: 1rem;
                transform: none;
            }

            .dropdown-mega .dropdown-item {
                padding: 0.4rem 1rem;
                font-size: 0.9rem;
            }

            .dropdown-mega .container {
                padding: 0;
            }

            .dropdown-mega .row {
                margin: 0;
            }

            .dropdown-mega .col-md-6,
            .dropdown-mega .col-lg-3 {
                padding: 0;
            }

            /* Mobile button styling */
            .navbar .btn-teal {
                width: 100%;
                margin-top: 1rem;
            }

            .nav-link {
                margin: 0;
                padding: 0.5rem 1rem;
            }
        }

        @keyframes underline {
            from {
                width: 0;
            }
            to {
                width: 100%;
            }
        }
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--teal-light) 0%, var(--pink-accent) 100%);
            padding: 140px 0 100px;
            position: relative;
            overflow: hidden;
        }
        
        .hero:before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            top: -250px;
            right: -250px;
        }
        
        .hero:after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            bottom: -150px;
            left: -150px;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-weight: 800;
            font-size: 3.7rem;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 35px;
            max-width: 650px;
            color: #444;
        }
        
        .hero-btns {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .hero-features {
            display: flex;
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--teal-primary);
            font-size: 24px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .feature-text h4 {
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .feature-text p {
            font-size: 1rem;
            margin-bottom: 0;
            color: #555;
        }
        
        .hero-image-container {
            position: relative;
            z-index: 1;
            perspective: 1000px;
        }
        
        .hero-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
            transform: rotateY(-5deg) rotateX(5deg) rotateZ(2deg);
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-style: preserve-3d;
        }
        
        .hero-image:hover {
            transform: rotateY(0) rotateX(0) rotateZ(0);
        }
        
        /* Features Section */
        .features {
            padding: 100px 0;
            background: white;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 60px;
            text-align: center;
        }
        
        .section-title h2 {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 15px;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .section-title:after {
            content: '';
            width: 100px;
            height: 5px;
            background: var(--teal-secondary);
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 5px;
        }
        
        .feature-card {
            text-align: center;
            padding: 40px 25px;
            border-radius: 20px;
            transition: all 0.4s;
            margin-bottom: 30px;
            height: 100%;
            background: white;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
            border: 1px solid rgba(0,0,0,0.03);
        }
        
        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            border-color: transparent;
        }
        
        .feature-icon {
            width: 90px;
            height: 90px;
            background: var(--pink-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--teal-primary);
            font-size: 36px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }
        
        .feature-card h3 {
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.6rem;
        }
        
        .feature-card p {
            color: var(--text-light);
            margin-bottom: 20px;
        }
        
        /* Products Section */
        .products {
            padding: 100px 0;
            background: linear-gradient(to bottom, var(--teal-light) 0%, white 100%);
            position: relative;
            overflow: hidden;
        }
        
        .product-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }
        
        .product-tab {
            padding: 15px 30px;
            background: white;
            border: none;
            border-radius: 50px;
            margin: 0 10px 15px;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--text-dark);
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .product-tab.active, .product-tab:hover {
            background: var(--teal-primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(10, 186, 181, 0.3);
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            background: white;
            transition: all 0.4s;
            transform: translateY(0);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
        }
        
        .product-img {
            height: 280px;
            overflow: hidden;
            position: relative;
        }
        
        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s;
        }
        
        .product-card:hover .product-img img {
            transform: scale(1.08);
        }
        
        .product-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--teal-primary);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            z-index: 2;
        }
        
        .product-info {
            padding: 25px;
        }
        
        .product-info h3 {
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 1.5rem;
        }
        
        .product-info p {
            color: var(--text-light);
            margin-bottom: 20px;
        }
        
        .product-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(0,0,0,0.05);
            padding-top: 20px;
            margin-top: 20px;
        }
        
        .price {
            font-weight: 800;
            font-size: 1.4rem;
            color: var(--teal-primary);
        }
        
        /* Process Section */
        .process {
            padding: 100px 0;
            background: white;
            position: relative;
        }
        
        .process-container {
            position: relative;
        }
        
        .process-line {
            position: absolute;
            top: 60px;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--teal-light);
            z-index: 0;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }
        
        .process-step {
            text-align: center;
            width: 23%;
        }
        
        .step-icon {
            width: 120px;
            height: 120px;
            background: white;
            border: 4px solid var(--teal-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--teal-primary);
            font-size: 40px;
            transition: all 0.4s;
            position: relative;
            z-index: 1;
        }
        
        .process-step:hover .step-icon {
            background: var(--teal-primary);
            color: white;
            transform: scale(1.1);
            border-color: var(--teal-primary);
        }
        
        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 40px;
            height: 40px;
            background: var(--teal-secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .process-step h3 {
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--teal-light) 0%, var(--pink-accent) 100%);
        }
        
        .testimonial-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            margin: 30px 20px;
            position: relative;
            transition: all 0.4s;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }
        
        .testimonial-quote {
            position: absolute;
            top: 20px;
            left: 25px;
            font-size: 70px;
            color: var(--teal-light);
            opacity: 0.3;
        }
        
        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .client-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 3px solid var(--teal-light);
        }
        
        .client-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .client-info h4 {
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .client-info p {
            color: var(--text-light);
            margin-bottom: 0;
        }
        
        .stars {
            color: #FFD700;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background: var(--teal-light);
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .faq-question {
            background: white;
            padding: 20px 25px;
            font-weight: 700;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            background: rgba(255, 255, 255, 0.8);
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s;
        }
        
        .faq-answer.active {
            padding: 20px 25px;
            max-height: 500px;
        }
        
        /* CTA Section */
        .cta {
            padding: 120px 0;
            background: #06365A;
            background-size: 20px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .cta:before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            top: -150px;
            right: -150px;
        }
        
        .cta:after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            bottom: -100px;
            left: -100px;
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta h2 {
            font-weight: 800;
            font-size: 3.2rem;
            margin-bottom: 25px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .cta p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 50px;
            opacity: 0.9;
        }
        
        .cta .btn {
            padding: 18px 45px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        /* Footer */
        .footer {
            background: var(--text-glass);
            color: rgb(41, 41, 41);
            padding: 80px 0 30px;
            position: relative;
        }
        
        .footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--teal-primary), var(--teal-secondary));
        }
        
        .footer h5 {
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            font-size: 1.3rem;
        }
        
        .footer h5:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--teal-secondary);
        }
        
        .footer ul {
            list-style: none;
            padding: 0;
        }
        
        .footer ul li {
            margin-bottom: 15px;
        }
        
        .footer ul li a {
            color: #b0b0b0;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .footer ul li a:hover {
            color: var(--teal-secondary);
            transform: translateX(5px);
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            color: #00589b;
            border-radius: 50%;
            transition: all 0.3s;
            font-size: 1.2rem;
        }
        
        .social-icons a:hover {
            background: var(--teal-primary);
            transform: translateY(-5px);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 14px 20px;
            border: none;
            border-radius: 50px 0 0 50px;
            outline: none;
        }
        
        .newsletter-form button {
            background: var(--teal-primary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 50px 50px 0;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .newsletter-form button:hover {
            background: var(--teal-secondary);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 25px;
            margin-top: 60px;
            text-align: center;
            font-size: 0.95rem;
            color: #b0b0b0;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--teal-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            z-index: 1000;
            opacity: 1;
            visibility: visible;
            transition: all 0.4s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        

        
        .back-to-top:hover {
            background: var(--teal-secondary);
            transform: translateY(-5px);
        }
        
        /* Animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        .floating {
            animation: float 4s ease-in-out infinite;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 1199px) {
            .hero h1 {
                font-size: 3.3rem;
            }
            
            .process-steps {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .process-step {
                width: 48%;
                margin-bottom: 40px;
            }
            
            .process-line {
                display: none;
            }
        }
        
        @media (max-width: 991px) {
            .hero {
                padding: 120px 0 80px;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.3rem;
            }
            
            .feature-card {
                padding: 30px 20px;
            }
            
            .features, .products, .process, .testimonials, .cta {
                padding: 80px 0;
            }
        }
        
        @media (max-width: 767px) {
            .hero h1 {
                font-size: 2.4rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .hero-btns {
                flex-direction: column;
            }
            
            .product-grid {
                grid-template-columns: 1fr;
            }
            
            .process-step {
                width: 100%;
            }
            
            .cta h2 {
                font-size: 2.5rem;
            }
            
            .cta p {
                font-size: 1.1rem;
            }
            
            .footer .col-md-6 {
                margin-bottom: 40px;
            }
        }
        
        @media (max-width: 575px) {
            .hero h1 {
                font-size: 2.1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .feature-item {
                width: 100%;
            }
        }