 /* Reset and Base Styles */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body, html {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #212529;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            scroll-behavior: smooth;
        }

        /* Header Styles */
        .sticky-header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        header {
  background-color: #ffffff;
  color: #333;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 100;
}

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo-container a {
            text-decoration: none;
            color: inherit;
            display: flex;
            align-items: center;
        }

        .logo-image {
            height: 50px;
            width: auto;
            margin-right: 10px;
        }

      .logo-text {
        font-size: 24px;
        font-weight: bold;
        color: #23a6d5;
    }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: #495057;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #3D5AFE;
        }

        .cta-button {
            background: #FFC107;
            color: #212529;
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
        }

        .cta-button:hover {
            background: #FFCA28;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
        }

        /* Banner */
        .promo-banner {
            background: linear-gradient(90deg, #000000, #1a1a1a);
            color: white;
            text-align: center;
            padding: 12px;
            font-weight: bold;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1001;
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { background-position: -100% 0; }
            100% { background-position: 100% 0; }
        }

        .banner-content {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            font-family: system-ui, -apple-system, sans-serif;
        }

        .offer-tag {
            background: #FFC107;
            color: #212529;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
        }

        .promo-code {
            background: rgba(255,255,255,0.2);
            padding: 4px 8px;
            border-radius: 4px;
            font-family: monospace;
            letter-spacing: 1px;
            margin: 0 8px;
        }

        /* Main Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero-section {
            padding: 120px 0 80px;
            text-align: center;
            color: white;
        }

        .hero-section h1 {
            font-family: 'Sora', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 600;
            color: #FFC107;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .hero-description {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .hero-enhanced-description {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 40px;
            opacity: 0.8;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

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

        /* Categories Menu */
        .categories-menu {
            margin: 40px 0;
            overflow: hidden;
            position: relative;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 20px 0;
            backdrop-filter: blur(10px);
        }

        .menu-wrapper {
            display: flex;
            animation: scroll-left 30s linear infinite;
            gap: 20px;
        }

        .menu-item {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 12px 24px;
            border-radius: 25px;
            white-space: nowrap;
            font-weight: 500;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .menu-item:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        @keyframes scroll-left {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        /* Action Buttons */
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .primary-btn {
            background: #FFC107;
            color: #212529;
            padding: 18px 36px;
            border: none;
            border-radius: 12px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
            text-decoration: none;
            display: inline-block;
        }

        .primary-btn:hover {
            background: #FFCA28;
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 193, 7, 0.5);
        }

        .secondary-btn {
            background: transparent;
            color: white;
            padding: 18px 36px;
            border: 2px solid white;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .secondary-btn:hover {
            background: white;
            color: #3D5AFE;
            transform: translateY(-3px);
        }

        /* Features Section */
        .features-section {
            padding: 80px 0;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 60px;
            font-family: 'Sora', sans-serif;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid #f1f3f4;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            font-size: 4rem;
            margin-bottom: 25px;
            display: block;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 20px;
        }

        .feature-card p {
            color: #6c757d;
            line-height: 1.7;
        }

        /* Benefits Section */
        .benefits-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .benefit-card {
            background: white;
            padding: 35px;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
        }

        .benefit-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .benefit-card p {
            color: #6c757d;
            line-height: 1.6;
        }

        /* Social Proof Section */
        .social-proof {
            padding: 60px 0;
            background: #3D5AFE;
            color: white;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .stat-item h3 {
            font-size: 3rem;
            font-weight: 700;
            color: #FFC107;
            margin-bottom: 10px;
        }

        .stat-item p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #212529 0%, #495057 100%);
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 25px;
            font-family: 'Sora', sans-serif;
        }

        .cta-section p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: white;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #e9ecef;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .faq-question {
            background: #f8f9fa;
            padding: 25px;
            margin: 0;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.2rem;
            font-weight: 600;
            color: #495057;
            position: relative;
            border: none;
            width: 100%;
            text-align: left;
        }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.8rem;
            transition: transform 0.3s ease;
            color: #3D5AFE;
        }

        .faq-question.active::after {
            transform: translateY(-50%) rotate(45deg);
        }

        .faq-question:hover {
            background: #e9ecef;
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: white;
        }

        .faq-answer.active {
            padding: 25px;
            max-height: 300px;
        }

        .faq-answer p {
            margin: 0;
            color: #6c757d;
            line-height: 1.7;
            font-size: 1.1rem;
        }

        /* Corner Button */
        .corner-button {
            position: fixed;
            top: 100px;
            right: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #FFC107;
            border: none;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
            transition: all 0.3s ease;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .corner-button:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
        }

        .info-icon {
            font-size: 1.8rem;
            font-weight: bold;
            color: #212529;
        }

        .tooltip-text {
            visibility: hidden;
            position: absolute;
            background: #212529;
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 0.9rem;
            white-space: nowrap;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .corner-button:hover .tooltip-text {
            visibility: visible;
            opacity: 1;
        }

        /* Pricing Modal */
        .pricing-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
        }

        .pricing-content {
            background: white;
            padding: 40px;
            border-radius: 20px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #6c757d;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-modal:hover {
            background: #f8f9fa;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
             /* Footer */
  footer {
    flex-direction: column;
  }
  
  footer > div {
    width: 100%;
    margin-bottom: 20px;
  }
            .hero-section h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            /* Show hamburger menu on mobile */
            .hamburger {
                display: block !important;
                color: #333;
                font-size: 24px;
                cursor: pointer;
                padding: 10px;
                z-index: 1001;
                transition: transform 0.3s ease, color 0.3s ease;
                border-radius: 4px;
            }

            .hamburger:hover {
                background-color: rgba(0, 0, 0, 0.05);
                transform: scale(1.1);
            }

            /* Hide navigation links on mobile by default */
            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background-color: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                z-index: 1000;
                gap: 30px;
                opacity: 0;
                transform: translateY(-20px);
                transition: all 0.3s ease-in-out;
            }

            /* Show navigation when menu is active */
            .nav-links.active {
                display: flex !important;
                opacity: 1;
                transform: translateY(0);
            }

            /* Style mobile menu items */
            .nav-links li {
                margin: 10px 0;
            }

            .nav-links li a {
                font-size: 1.2rem;
                padding: 15px 20px;
                color: #333;
            }

            /* Hide submenu on mobile or style it differently */
            .submenu {
                position: static;
                width: 100%;
                background: rgba(240, 240, 240, 0.9);
                box-shadow: none;
                border: none;
                margin-top: 10px;
                padding: 10px 0;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .primary-btn, .secondary-btn {
                width: 100%;
                max-width: 300px;
            }

            .features-grid, .benefits-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .section-title {
                font-size: 2rem;
            }

            .corner-button {
                top: 80px;
                right: 20px;
                width: 50px;
                height: 50px;
            }

            .info-icon {
                font-size: 1.5rem;
            }

            /* Adjust header layout for mobile */
            header {
                padding: 10px 15px;
            }

            .nav-container {
                padding: 0 15px;
            }

            .logo-text {
                font-size: 18px;
            }

            .logo-image {
                height: 40px;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                padding: 100px 0 60px;
            }

            .hero-section h1 {
                font-size: 2rem;
            }

            .container {
                padding: 0 15px;
            }

            .feature-card, .benefit-card {
                padding: 25px 20px;
            }

            .faq-question {
                padding: 20px;
                font-size: 1.1rem;
            }

            .faq-answer.active {
                padding: 20px;
            }
        }

        /* Loading Animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
        }

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

        /* Utility Classes */
        .hidden {
            display: none !important;
        }

        .text-center {
            text-align: center;
        }

        .mt-4 {
            margin-top: 2rem;
        }

        .mb-4 {
            margin-bottom: 2rem;
        }




.hamburger {
  cursor: pointer;
  font-size: 30px; 
  display: none
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  padding: 5px 10px;
  position: relative;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s, box-shadow 0.3s, transform 0.3s;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
}

.nav-links li a:hover {
  color: #23a6d5;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.nav-links li:hover .submenu {
  display: block;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  border-radius: 5px;
}

.submenu li {
  display: block;
}

.submenu a {
  padding: 10px 15px;
  color: #333;
  display: block;
}

.submenu a:hover {
  background-color: #f0f0f0;
  color: #0077CC;
}

/* Show the submenu when hovering over the parent item */
.group:hover .submenu {
  display: block !important;
}

/* Fix submenu positioning and styles */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0;
}

.nav-links li.active .submenu {
    display: block;
}

/* Ensure proper hover behavior */
.nav-links li.group {
    position: relative;
}

.nav-links li.group:hover .submenu {
    display: block !important;
}


/* ========= Footer ========= */
footer {
    padding: 20px 40px; /* Footer padding */
    display: flex; /* Use flexbox to align child elements */
    justify-content: space-between; /* Distribute space between elements */
    align-items: center; /* Align items vertically */
    flex-wrap: wrap; /* Wrap items for smaller screens */
    background-color: #ffffff;
  }
  
  .footer-title {
    font-size: 1.25rem; /* Title font size */
    margin-bottom: 0.5rem; /* Space between title and links */
    font-weight: bold; /* Title font weight */
  }

  .link {
    display: block;
    color: black;
    margin-bottom: 0.25rem;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .white-link {
    display: block;
    color: rgb(255, 250, 250);
    margin-bottom: 0.25rem;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .link-hover:hover, .white-link:hover {
    color: #ccc;
  }
  
  .divider {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch;
    margin: 1rem 0;
    height: 1rem;
    white-space: nowrap;
  }
  
  .divider:after, .divider:before {
    height: .125rem;
    width: 100%;
    flex-grow: 1;
    content: "";
    background-color: #e2e8f0;
  }
  
  .social-icon {
    display: inline-flex;
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: #444;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
  }
  
  .social-icon:hover {
    background-color: #555;
  }