   
        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Styles for the new header and hamburger menu */
        .header-animate {
            background-color: rgba(255, 255, 255, 0.9);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

       .hamburger {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: transparent;
            border: none;
            padding: 0;
            box-sizing: border-box;
        }

        .hamburger .hamburger-line {
            display: block;
            width: 25px;
            height: 3px;
            background: #374151;
            margin: 3px 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 2px;
            transform-origin: center;
        }

       

        .hamburger-open .hamburger-line:nth-child(1),
        .hamburger.open .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger-open .hamburger-line:nth-child(2),
        .hamburger.open .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .hamburger-open .hamburger-line:nth-child(3),
        .hamburger.open .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
            /* Adjusted for better visual alignment */
        }

        /* --- */
        /* Mobile Menu */
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 99;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: min(85vw, 350px);
            background: white;
            box-shadow: -10px 0 25px -5px rgba(0, 0, 0, 0.1);
            transform: translateX(100%);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 100;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            border-bottom: 1px solid #e5e7eb;
            flex-shrink: 0;
        }

        .mobile-menu-header .logo img {
            height: 36px;
            width: auto;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 28px;
            line-height: 1;
            color: #374151;
            cursor: pointer;
            padding: 10px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .close-btn:hover {
            background: #f3f4f6;
            color: #1f2937;
        }

        /* Mobile navigation items */
        .mobile-nav-item {
            border-bottom: 1px solid #f3f4f6;
        }

        .mobile-nav-item:last-child {
            border-bottom: none;
        }

        .mobile-nav-link {
            display: block;
            padding: 16px 20px;
            color: #374151;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.3s ease;
        }

        .mobile-nav-link:hover {
            background: linear-gradient(135deg, #3b82f6, #06b6d4);
            color: white;
        }

        /* Mobile dropdown toggle and menu */
        .mobile-dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 16px 20px;
            background: none;
            border: none;
            color: #374151;
            font-weight: 600;
            font-size: 0.875rem;
            text-align: left;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .mobile-dropdown-toggle:hover {
            background: #f9fafb;
        }

        .mobile-chevron {
            transition: transform 0.3s ease;
            margin-left: auto;
            font-size: 0.8em;
        }

        .mobile-dropdown-menu {
            max-height: 0;
            overflow: hidden;
            background: #f9fafb;
            transition: max-height 0.3s ease-out;
        }

        .mobile-dropdown-menu.active {
            max-height: 500px;
            /* Sufficiently large to show all content */
        }

        .mobile-dropdown-item {
            display: flex;
            align-items: center;
            padding: 12px 40px;
            color: #6b7280;
            text-decoration: none;
            font-size: 0.8125rem;
            font-weight: 500;
            transition: all 0.2s ease;
            border-bottom: 1px solid #e5e7eb;
        }

        .mobile-dropdown-item:last-child {
            border-bottom: none;
        }

        .mobile-dropdown-item:hover {
            background: linear-gradient(135deg, #3b82f6, #06b6d4);
            color: white;
            transform: translateX(5px);
        }

        .mobile-menu-enter {
            animation: slideInRight 0.4s ease-out;
        }

        .mobile-nav-link,
        .mobile-dropdown-toggle {
            display: block;
            padding: 1rem;
            color: #374151;
            font-weight: 500;
        }

        .mobile-dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .mobile-dropdown-menu {
            display: none;
            background-color: #f9fafb;
            padding-left: 1rem;
            overflow: hidden;
        }

        .mobile-dropdown-menu.active {
            display: block;
        }
        
        .mobile-dropdown-item {
            display: flex;
            align-items: center;
            padding: 0.75rem 1rem;
            font-size: 0.875rem;
            color: #4b5563;
            border-left: 3px solid transparent;
            transition: all 0.2s ease;
        }

        .mobile-dropdown-item:hover {
            background-color: #e5e7eb;
            border-left-color: #1a73e8;
        }
        
        /* Custom styles from Geminidetails.css */
        .ai-section h1, .ai-section h2, .ai-section h3 {
            color: #1a73e8;
            margin-bottom: 1.5rem;
        }
        
        .ai-section h1 { font-size: 2.5rem; font-weight: 500; }
        
        .ai-section h2 {
            font-size: 2rem; font-weight: 500; position: relative; padding-bottom: 0.5rem;
        }
        
        .ai-section h2::after {
            content: ''; position: absolute; bottom: 0; left: 0; width: 80px; height: 3px;
            background-color: #1a73e8; border-radius: 3px;
        }
        
        .ai-section p { line-height: 1.6; margin-bottom: 1rem; color: #555; }
        
        .intro-section-custom {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9f5ff 100%);
            border-left: 4px solid #1a73e8;
            padding: 2rem;
            border-radius: 12px;
        }
        
        .features-grid-custom {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        
        .benefits-grid-custom {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        
        .pricing-grid-custom {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .pricing-plan-custom {
            border: 1px solid #e0e0e0;
            padding: 2rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .price-custom { font-size: 1.5rem; font-weight: 500; color: #1a73e8; margin: 1rem 0; }
        
        .price-desc-custom { font-size: 0.9rem; color: #777; margin-top: -0.5rem; }
        
        .company-highlights-section { background-color: #f0f7ff; }
        
        .company-highlights-points {
            list-style: none; padding: 0; display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1rem;
        }
        
        .contact-form-custom { max-width: 600px; margin: 0 auto; }
        
        .form-group-custom { margin-bottom: 1.5rem; }
        
        .form-group-custom label { display: block; margin-bottom: 0.5rem; font-weight: 500; color: #555; }
        
        .form-group-custom input, .form-group-custom textarea {
            width: 100%; padding: 0.8rem; border: 1px solid #ddd; border-radius: 6px;
            font-size: 1rem; transition: border-color 0.3s;
        }
        
        .form-group-custom input:focus, .form-group-custom textarea:focus {
            outline: none; border-color: #1a73e8; box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
        }
        
        .submit-button-custom {
            background-color: #1a73e8; color: white; border: none; padding: 1rem 2rem;
            font-size: 1rem; border-radius: 6px; cursor: pointer; transition: all 0.3s;
            width: 100%; font-weight: 500;
        }
        
        .submit-button-custom:hover { background-color: #0d5bba; transform: translateY(-2px); }
        
        .faq-item-custom {
            margin-bottom: 1.5rem; padding: 1.5rem; border-radius: 8px; background-color: #f8f9fa;
        }
        
        .hover-card-custom {
            position: relative; padding: 1.5rem; border-radius: 8px; background-color: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); transition: all 0.3s ease;
            overflow: hidden; z-index: 1;
        }
        
        .hover-card-custom::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(135deg, rgba(26, 115, 232, 0.1) 0%, rgba(26, 115, 232, 0) 100%);
            z-index: -1; opacity: 0; transition: opacity 0.3s ease;
        }
        
        .hover-card-custom:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
        
        .hover-card-custom:hover::before { opacity: 1; }
        
        @media (max-width: 768px) {
            .ai-container { padding: 1rem; }
            .ai-section { padding: 1.5rem; }
            .features-grid-custom, .benefits-grid-custom, .pricing-grid-custom, .company-highlights-points {
                grid-template-columns: 1fr;
            }
        }
        
        .animate-fade-in-up {
            animation: fadeInUp 1s ease-out forwards;
            opacity: 0;
            transform: translateY(10px);
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
  