  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');
        
        :root {
            --primary-color: #6366f1;
            --secondary-color: #8b5cf6;
            --accent-color: #06b6d4;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --error-color: #ef4444;
            --info-color: #3b82f6;
            --dark-color: #1f2937;
            --light-color: #f8fafc;
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
            --gradient-5: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        
        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }
        
        .loading-content {
            text-align: center;
        }
        
        .loading-spinner {
            color: #ff9a00;
            animation: spin 1s linear infinite;
        }
        
        .loading-text {
            margin-top: 15px;
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            font-weight: 600;
            color: #444;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Navbar */
        .navbar-logo {
            height: 40px;
            width: auto;
            margin-right: 10px;
        }
        
        .navbar-toggle-icon {
            color: var(--primary-color);
            font-size: 1.2rem;
        }
        
        /* Floating Elements */
        .floating-1 i {
            font-size: 3rem;
            color: white;
        }
        
        .floating-2 i {
            font-size: 2.5rem;
            color: white;
        }
        
        .floating-3 i {
            font-size: 2rem;
            color: white;
        }
        
        /* Hero Image */
        .hero-main-image {
            max-width: 100%;
            height: auto;
            animation: floatImage 3s ease-in-out infinite;
        }
        
        @keyframes floatImage {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        /* Login Modal */
        .login-header {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .login-logo {
            width: 80px;
            height: 80px;
        }
        
        .login-title {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .login-footer {
            text-align: center;
            margin-top: 1rem;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.7;
            color: var(--dark-color);
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        main {
            flex: 1;
        }
        
        footer {
            margin-top: auto !important;
        }

        .font-display {
            font-family: 'Playfair Display', serif;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f5f9;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gradient-1);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-color);
        }

        /* Navigation */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow-lg);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 1rem 0;
            z-index: 1050;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
            background: transparent;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 2px solid var(--primary-color);
        }
        
        .navbar-toggler-icon {
            background-image: none;
            width: auto;
            height: auto;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-xl);
            padding: 0.5rem 0;
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.75rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.3s ease;
        }

        .navbar-brand:hover {
            transform: scale(1.05);
        }

        .nav-link {
            font-weight: 500;
            color: var(--dark-color) !important;
            transition: all 0.3s ease;
            position: relative;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: var(--gradient-1);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 80%;
        }

        .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }

        .btn-login-nav {
            background: var(--gradient-1);
            border: none;
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
        }

        .btn-login-nav::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .btn-login-nav:hover::before {
            left: 100%;
        }

        .btn-login-nav:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-xl);
            color: white;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #6a0dad 0%, #4b0082 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 120px 0 2rem 0;
        }
        
        .hero-content {
            color: white;
            padding: 2rem;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
        }
        
        .hero-badge i {
            color: #fbbf24;
            margin-right: 0.5rem;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        
        .highlight {
            color: #fbbf24;
            position: relative;
            display: inline-block;
        }
        
        .highlight::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30%;
            background: rgba(251, 191, 36, 0.3);
            z-index: -1;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            line-height: 1.6;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        
        .btn-hero {
            display: inline-flex;
            align-items: center;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .btn-hero i {
            margin-right: 0.5rem;
        }
        
        .btn-hero-primary {
            background: #fbbf24;
            color: #1e40af;
        }
        
        .btn-hero-primary:hover {
            background: #f59e0b;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
        }
        
        .btn-hero-outline {
            background: transparent;
            color: white;
            border-color: white;
        }
        
        .btn-hero-outline:hover {
            background: white;
            color: #1e40af;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
        }
        
        .hero-stats {
            display: flex;
            gap: 2rem;
        }
        
        .hero-stat {
            text-align: center;
        }
        
        .hero-stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 800;
            color: #fbbf24;
        }
        
        .hero-stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .hero-image-container {
            position: relative;
            width: 100%;
            height: 500px;
        }
        
        .delivery-illustration {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .hero-main-image {
            position: relative;
            z-index: 2;
            max-width: 100%;
            height: auto;
            max-height: 650px;
            display: block;
            margin: 0 auto;
        }
        
        /* Floating Elements */
        .floating-element {
            position: absolute;
            opacity: 0.7;
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-element:nth-child(1) {
            top: 20%;
            left: 5%;
            animation-delay: 0s;
        }
        
        .floating-element:nth-child(2) {
            top: 60%;
            left: 10%;
            animation-delay: 1s;
        }
        
        .floating-element:nth-child(3) {
            top: 30%;
            right: 10%;
            animation-delay: 2s;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        
        /* Hero Responsive */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-stats {
                justify-content: center;
            }
            
            .hero-image-container {
                height: 400px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .btn-hero {
                justify-content: center;
            }
            
            .hero-stats {
                flex-wrap: wrap;
            }
            
            .hero-image-container {
                height: 350px;
                margin-bottom: 2rem;
            }
            
            .floating-element {
                display: none;
            }
        }

        .hero-content {
            position: relative;
            z-index: 3;
            color: white;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            padding: 8px 20px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 2rem;
            animation: slideInDown 1s ease-out;
        }

        .hero-badge i {
            margin-right: 8px;
            color: #fbbf24;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
            line-height: 1.1;
            animation: slideInUp 1s ease-out 0.2s both;
        }

        .hero-title .highlight {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 3rem;
            opacity: 0.95;
            line-height: 1.6;
            max-width: 600px;
            animation: slideInUp 1s ease-out 0.4s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            animation: slideInUp 1s ease-out 0.6s both;
        }

        .btn-hero {
            padding: 18px 36px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .btn-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s;
        }

        .btn-hero:hover::before {
            left: 100%;
        }

        .btn-hero-primary {
            background: white;
            color: var(--primary-color);
            border: 2px solid white;
        }

        .btn-hero-primary:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transform: translateY(-4px);
            box-shadow: var(--shadow-2xl);
        }

        .btn-hero-outline {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .btn-hero-outline:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-4px);
            box-shadow: var(--shadow-2xl);
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 4rem;
            animation: slideInUp 1s ease-out 0.8s both;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #fbbf24;
            display: block;
            line-height: 1;
        }

        .hero-stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 0.5rem;
        }
        
        /* Floating Elements */
        .floating-element {
            position: absolute;
            animation: float 6s ease-in-out infinite;
            opacity: 0.1;
            pointer-events: none;
        }
        
        .floating-element:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .floating-element:nth-child(2) {
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }
        
        .floating-element:nth-child(3) {
            bottom: 30%;
            left: 20%;
            animation-delay: 4s;
        }
        
        .floating-element:nth-child(4) {
            top: 40%;
            right: 30%;
            animation-delay: 1s;
        }

        /* Animations */
        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Floating Elements */
        .floating-element {
            position: absolute;
            opacity: 0.1;
            animation: floatRandom 8s ease-in-out infinite;
        }

        .floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .floating-element:nth-child(2) { top: 60%; left: 85%; animation-delay: 2s; }
        .floating-element:nth-child(3) { top: 80%; left: 15%; animation-delay: 4s; }
        .floating-element:nth-child(4) { top: 30%; left: 80%; animation-delay: 6s; }

        @keyframes floatRandom {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            25% { transform: translateY(-20px) translateX(10px) rotate(5deg); }
            50% { transform: translateY(-10px) translateX(-15px) rotate(-3deg); }
            75% { transform: translateY(-30px) translateX(5px) rotate(2deg); }
        }

        /* Enhanced Feature Cards */
        .feature-card-modern:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        /* Service Cards */
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }

        /* Process Steps */
        .process-step:hover .step-number {
            transform: scale(1.1);
        }

        /* Technology Cards */
        .tech-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        /* Statistics Cards */
        .stat-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        /* Testimonial Cards */
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        /* Contact Cards */
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
        }

        /* Additional Services */
        .additional-service:hover {
            background: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* Trust Logos */
        .trust-logo {
            transition: all 0.3s ease;
            border-radius: 12px;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
        }
        
        .trust-logo:hover {
            transform: scale(1.05) translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            background: #f8fafc;
        }

        .trust-logo i {
            transition: all 0.3s ease;
        }

        .trust-logo:hover i {
            color: #6366f1 !important;
            transform: scale(1.1);
        }
        
        /* Trust Logo Cards Mobile */
        @media (max-width: 768px) {
            .trust-logo-card {
                padding: 1.5rem !important;
                margin-bottom: 1rem;
            }
            
            .trust-logo-card .icon-wrapper {
                width: 50px !important;
                height: 50px !important;
            }
            
            .trust-logo-card .icon-wrapper i {
                font-size: 1.2rem !important;
            }
            
            .trust-logo-card h6 {
                font-size: 0.9rem;
                margin-bottom: 0.5rem;
            }
            
            .trust-logo-card p {
                font-size: 0.75rem;
                line-height: 1.3;
            }
        }

        /* Footer Links */
        .footer-link:hover {
            color: white !important;
            padding-left: 10px;
        }

        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }

        /* Login Modal Enhancements */
        .login-modal {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            width: 90%;
            max-width: 480px;
            position: relative;
            animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .close-login {
            position: absolute;
            top: 20px;
            right: 25px;
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #9ca3af;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-login:hover {
            color: #ef4444;
            background: rgba(239, 68, 68, 0.1);
            transform: rotate(90deg);
        }

        .form-control {
            padding: 15px 20px;
            border-radius: 12px;
            border: 2px solid #e5e7eb;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.15);
            transform: translateY(-2px);
        }
        
        .input-group-text {
            background: #f9fafb;
            border: 2px solid #e5e7eb;
            border-right: none;
            padding: 15px 20px;
            border-radius: 12px 0 0 12px;
        }

        .input-group .form-control {
            border-left: none;
            border-radius: 0 12px 12px 0;
        }
        
        .btn-login {
            background: var(--gradient-1);
            border: none;
            padding: 15px 25px;
            font-weight: 600;
            border-radius: 12px;
            transition: all 0.3s ease;
            width: 100%;
            color: white;
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
        }

        .btn-login::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .btn-login:hover::before {
            left: 100%;
        }
        
        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
            color: white;
        }

        /* Responsive Design Enhancements */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .display-3 {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .btn-hero {
                padding: 15px 30px;
                font-size: 1rem;
            }

            .feature-card-modern,
            .service-card,
            .contact-card {
                margin-bottom: 2rem;
            }

            .hero-stats {
                gap: 2rem;
                justify-content: center;
            }

            .hero-stat {
                min-width: 120px;
            }

            .login-modal {
                padding: 2rem;
                margin: 1rem;
            }
        }

        /* Additional Mobile Fixes */
        @media (max-width: 768px) {
            /* Fix overflow issues */
            .container {
                overflow-x: hidden;
            }
            
            /* Improve button spacing */
            .hero-buttons {
                gap: 0.8rem;
            }
            
            /* Better section spacing */
            .py-5 {
                padding-top: 2.5rem !important;
                padding-bottom: 2.5rem !important;
            }
            
            /* Improve card hover effects for touch */
            .feature-card-modern:hover,
            .service-card:hover,
            .contact-card:hover,
            .testimonial-card:hover {
                transform: none;
            }
            
            /* Better form styling */
            .form-control {
                font-size: 16px !important; /* Prevents zoom on iOS */
            }
            
            /* Improve navbar collapse */
            .navbar-collapse {
                margin-top: 0.5rem;
                padding: 0.5rem;
            }
        }
        
        /* Mobile navbar adjustments */
        @media (max-width: 768px) {
            .navbar-logo {
                height: 30px;
                margin-right: 8px;
            }
            
            .loading-text {
                font-size: 16px;
            }
            
            .hero-section {
                padding-top: 80px;
            }
        }
        
        /* Mobile portrait */
        @media (max-width: 576px) {
            .hero-section {
                padding-top: 90px;
            }
            
            .hero-title {
                font-size: 2rem;
                line-height: 1.2;
                margin-bottom: 1rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 1.5rem;
                padding: 0 1rem;
            }

            .display-3 {
                font-size: 1.8rem;
                line-height: 1.3;
            }
            
            .lead {
                font-size: 1rem;
            }

            .hero-stats {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 1rem;
                margin-top: 2rem;
                justify-content: center;
            }
            
            .hero-stat {
                text-align: center;
                min-width: 0;
            }
            
            .hero-stat-number {
                font-size: 1.8rem;
            }
            
            .hero-stat-label {
                font-size: 0.8rem;
            }

            .process-step .step-number {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .process-step h4 {
                font-size: 1.1rem;
            }
            
            .process-step p {
                font-size: 0.9rem;
            }

            .stat-card .stat-number,
            .stat-number {
                font-size: 2rem;
            }
            
            .navbar-brand {
                font-size: 1.1rem;
            }
            
            .navbar-brand img {
                height: 25px !important;
                margin-right: 6px !important;
            }
            
            /* Keep app name visible but smaller on mobile */
            .navbar-brand {
                font-size: 1rem !important;
            }
            
            .navbar-brand img {
                margin-right: 5px !important;
            }
            
            .btn-hero {
                width: 100%;
                max-width: 250px;
                padding: 12px 20px;
                font-size: 0.95rem;
            }
            
            .btn-login-nav {
                padding: 8px 16px;
                font-size: 0.85rem;
            }
            
            .feature-card-modern,
            .service-card,
            .contact-card {
                padding: 1.5rem 1rem;
                margin-bottom: 1.5rem;
            }
            
            .feature-icon,
            .service-icon {
                width: 60px !important;
                height: 60px !important;
                font-size: 1.5rem !important;
            }
            
            .login-modal {
                padding: 1.5rem;
                margin: 0.5rem;
                max-width: 95%;
            }
            
            .login-modal h2 {
                font-size: 1.5rem;
            }
            
            /* Footer mobile styles */
            .footer-section {
                text-align: center;
                margin-bottom: 2rem;
            }
            
            .footer-section h5 {
                font-size: 1rem;
                margin-bottom: 1rem;
            }
            
            .footer-logo h3 {
                font-size: 1.4rem;
            }
            
            .footer-logo img {
                height: 35px !important;
            }
            

            
            .contact-item {
                flex-direction: row;
                align-items: center;
                text-align: left;
                margin-bottom: 1.5rem !important;
            }
            
            .contact-icon {
                width: 35px !important;
                height: 35px !important;
                font-size: 0.9rem !important;
                margin-right: 1rem !important;
                flex-shrink: 0;
            }
            
            .quick-links ul {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
            }
            
            .quick-links li {
                margin-bottom: 0.5rem !important;
            }
            
            /* Section padding adjustments */
            .py-5 {
                padding-top: 3rem !important;
                padding-bottom: 3rem !important;
            }
            
            .container {
                padding-left: 15px;
                padding-right: 15px;
            }
            
            /* Trust logos responsive */
            .trust-logo {
                padding: 1rem !important;
            }
            
            .trust-logo i {
                font-size: 1.5rem !important;
            }
            
            /* Trust logo cards mobile - smaller on portrait */
            .trust-logo-card {
                margin-bottom: 1rem !important;
                padding: 1rem !important;
            }
            
            .trust-logo-card .icon-wrapper {
                width: 45px !important;
                height: 45px !important;
            }
            
            .trust-logo-card .icon-wrapper i {
                font-size: 1rem !important;
            }
            
            .trust-logo-card h6 {
                font-size: 0.8rem;
            }
            
            .trust-logo-card p {
                font-size: 0.7rem;
            }
            
            .trust-stats {
                flex-direction: column !important;
                gap: 1rem !important;
            }
            
            .trust-stats .stat-item:not(:last-child)::after {
                display: none !important;
            }
            
            /* Business hours responsive */
            .business-hours {
                padding: 2rem 1rem !important;
            }
            
            .hours-item h6 {
                font-size: 0.9rem;
            }
            
            .hours-item p {
                font-size: 0.8rem;
            }
            
            /* Feature grid mobile fixes */
            .row.g-4.mb-4 .col-6 {
                margin-bottom: 1rem;
            }
            
            .feature-check {
                width: 35px !important;
                height: 35px !important;
                font-size: 0.9rem !important;
                flex-shrink: 0;
            }
            
            .d-flex.align-items-center h6 {
                font-size: 0.9rem;
                margin-bottom: 0.2rem !important;
            }
            
            .d-flex.align-items-center small {
                font-size: 0.75rem;
                line-height: 1.2;
            }
            
            /* Metric boxes mobile */
            .metric-box {
                padding: 1rem !important;
                text-align: center;
            }
            
            .metric-box div:first-child {
                font-size: 1.2rem !important;
                margin-bottom: 0.3rem;
            }
            
            .metric-box div:last-child {
                font-size: 0.7rem !important;
            }
            
            /* About visual section mobile */
            .about-visual > div {
                padding: 2rem 1.5rem !important;
                margin: 0 1rem;
            }
            
            .about-visual img {
                max-width: 150px !important;
                margin-bottom: 1.5rem !important;
            }
            
            .about-visual .row.g-3 {
                gap: 0.5rem !important;
            }
            
            .about-visual .col-4 {
                flex: 1;
                min-width: 0;
            }
        }
        
        /* Extra small devices */
        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .display-3 {
                font-size: 1.6rem;
            }
            
            .hero-subtitle {
                font-size: 0.95rem;
            }
            
            .btn-hero {
                max-width: 100%;
                padding: 12px 20px;
                font-size: 0.9rem;
            }
            
            .navbar-brand {
                font-size: 0.9rem;
            }
            
            .navbar-logo {
                height: 22px !important;
            }
            
            .feature-card-modern,
            .service-card,
            .contact-card {
                padding: 1.5rem 1rem;
            }
            
            .login-modal {
                padding: 1.5rem;
                margin: 0.5rem;
                width: 95%;
            }
            
            .footer-logo h3 {
                font-size: 1.2rem;
            }
            
            .hero-stats {
                grid-template-columns: 1fr 1fr 1fr;
                gap: 0.5rem;
            }
            
            .hero-stat-number {
                font-size: 1.5rem;
            }
            
            .hero-stat-label {
                font-size: 0.7rem;
            }
            
            /* Feature grid improvements */
            .row.g-4.mb-4 .col-6 {
                flex: 0 0 100%;
                max-width: 100%;
                margin-bottom: 1rem;
            }
            
            .feature-check {
                width: 30px !important;
                height: 30px !important;
                font-size: 0.8rem !important;
                margin-right: 0.8rem !important;
            }
            
            .d-flex.align-items-center h6 {
                font-size: 0.85rem;
            }
            
            .d-flex.align-items-center small {
                font-size: 0.7rem;
            }
            
            /* About section improvements */
            .about-visual .row.g-3 .col-4 {
                flex: 0 0 100%;
                max-width: 100%;
                margin-bottom: 0.8rem;
            }
            
            .metric-box {
                padding: 1rem !important;
            }
            
            .about-visual > div {
                padding: 2rem 1rem !important;
                margin: 0 0.5rem;
            }
            
            .about-visual img {
                max-width: 150px !important;
            }
        }

        /* Loading Animation */
        .loaded {
            animation: fadeIn 0.5s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* reCAPTCHA Styling */
        .g-recaptcha {
            transform: scale(0.9);
            transform-origin: center;
            margin: 0 auto;
        }
        
        @media (max-width: 576px) {
            .g-recaptcha {
                transform: scale(0.8);
            }
        }
        
        @media (max-width: 480px) {
            .g-recaptcha {
                transform: scale(0.7);
            }
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
        }

        /* Footer Service Items */
        .service-item:hover {
            background: rgba(255, 255, 255, 0.05);
            padding-left: 12px !important;
            transform: translateX(5px);
        }

        .service-item:hover .service-icon {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .service-item:hover .service-text span {
            color: white !important;
        }

        /* Features Section */
        .features-section {
            padding: 100px 0;
            background: #f8fafc;
        }

        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 20px;
            color: white;
        }

        .feature-icon.primary { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); }
        .feature-icon.success { background: linear-gradient(135deg, var(--success-color), #48bb78); }
        .feature-icon.warning { background: linear-gradient(135deg, var(--warning-color), #ed8936); }
        .feature-icon.info { background: linear-gradient(135deg, var(--info-color), #63b3ed); }

        /* Services Section */
        .services-section {
            padding: 100px 0;
            background: white;
        }

        .service-item {
            text-align: center;
            padding: 30px 20px;
            transition: all 0.3s ease;
        }

        .service-item:hover {
            transform: translateY(-5px);
        }

        .service-icon {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 20px;
            color: white;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--dark-color), #4a5568);
            color: white;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--warning-color);
            display: block;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            text-align: center;
        }

        /* Login Modal Styles */
        .login-container {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }

        .login-container.show {
            display: flex;
        }
        
        .login-modal {
            background: white;
            border-radius: 15px;
            padding: 40px;
            width: 90%;
            max-width: 450px;
            position: relative;
            animation: slideIn 0.3s ease;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .close-login {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
        }

        .form-control {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
        }
        
        .input-group-text {
            background-color: #f3f3f3;
            border: 1px solid #e2e8f0;
        }
        
        .btn-login {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            border: none;
            padding: 12px 20px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
            width: 100%;
            color: white;
        }
        
        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
            color: white;
        }

        .btn-success {
            background-color: #38a169;
            border: none;
            padding: 10px 20px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
        }
        
        .btn-success:hover {
            background-color: #2f855a;
            transform: translateY(-1px);
        }

        /* Trust Section Enhanced Styles */
        .trust-logo-card {
            cursor: pointer;
            transform: translateY(0);
        }
        
        .trust-logo-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
            border-color: rgba(99, 102, 241, 0.3) !important;
        }
        
        .trust-logo-card:hover .hover-overlay {
            opacity: 1 !important;
        }
        
        .trust-logo-card:hover .icon-wrapper {
            transform: scale(1.1);
            box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4) !important;
        }
        
        .icon-wrapper {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .trust-stats .stat-item {
            padding: 0 1rem;
            position: relative;
        }
        
        .trust-stats .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 30px;
            background: linear-gradient(to bottom, transparent, #e2e8f0, transparent);
        }
        
        .trust-badge {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        /* Trust section animations */
        .trust-logo-card {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .trust-logo-card:nth-child(1) { animation-delay: 0.1s; }
        .trust-logo-card:nth-child(2) { animation-delay: 0.2s; }
        .trust-logo-card:nth-child(3) { animation-delay: 0.3s; }
        .trust-logo-card:nth-child(4) { animation-delay: 0.4s; }
        .trust-logo-card:nth-child(5) { animation-delay: 0.5s; }
        .trust-logo-card:nth-child(6) { animation-delay: 0.6s; }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Enhanced Mobile Responsive Design */
        
        /* Large tablets and small desktops */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3.5rem;
            }
            
            .display-3 {
                font-size: 2.8rem;
            }
            
            .container {
                padding-left: 20px;
                padding-right: 20px;
            }
        }
        
        /* Tablets */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .display-3 {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                justify-content: center;
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
            
            .btn-hero {
                width: 100%;
                max-width: 300px;
                padding: 15px 30px;
                font-size: 1.1rem;
            }
            
            .hero-stats {
                gap: 2rem;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .navbar-brand {
                font-size: 1.5rem;
            }
            
            .navbar-brand img {
                height: 35px !important;
            }
            
            .feature-card-modern,
            .service-card,
            .contact-card {
                margin-bottom: 2rem;
            }
            
            .process-step .step-number {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }
        }
        
        /* Mobile landscape and small tablets */
        @media (max-width: 768px) {
            .hero-section {
                padding-top: 100px;
            }
            
            .hero-main-image {
                animation: none;
            }
            
            footer .col-lg-3:nth-child(2),
            footer .col-lg-4:nth-child(3) {
                display: none !important;
            }
            
            .row.g-4.mb-4 {
                justify-content: center;
            }
            
            .feature-icon,
            .contact-icon {
                margin: 0 auto;
            }
            
            .hero-title {
                font-size: 2.5rem;
                line-height: 1.2;
                margin-bottom: 1.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }
            
            .display-3 {
                font-size: 2rem;
                line-height: 1.3;
            }
            
            .hero-buttons {
                justify-content: center;
                flex-direction: column;
                gap: 1rem;
            }
            
            .btn-hero {
                width: 100%;
                max-width: 280px;
                padding: 12px 25px;
                font-size: 1rem;
            }
            
            .hero-stats {
                gap: 1.5rem;
                margin-top: 3rem;
                flex-wrap: wrap;
                justify-content: center;
                display: flex;
            }
            
            .hero-stat {
                min-width: 100px;
                flex: 1;
                max-width: 150px;
            }
            
            .hero-stat-number {
                font-size: 2rem;
            }
            
            .navbar-brand {
                font-size: 1.3rem;
            }
            
            .navbar-brand img {
                height: 30px !important;
                margin-right: 8px !important;
            }
            
            .nav-link {
                padding: 0.8rem 1rem !important;
                text-align: center;
            }
            
            .btn-login-nav {
                padding: 10px 20px;
                font-size: 0.9rem;
                margin-top: 0.5rem;
            }
            
            .feature-card-modern,
            .service-card,
            .contact-card {
                margin-bottom: 2rem;
                padding: 2rem 1.5rem;
            }
            
            .process-step .step-number {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .login-modal {
                padding: 2rem;
                margin: 1rem;
                max-width: 90%;
            }
            
            /* Footer responsive */
            .footer-section h5 {
                font-size: 1.1rem;
                margin-bottom: 1rem;
            }
            
            .social-links {
                justify-content: center;
                margin-top: 1.5rem;
            }
            
            .contact-item {
                margin-bottom: 1.5rem !important;
            }
            
            .contact-icon {
                width: 35px !important;
                height: 35px !important;
                font-size: 0.9rem !important;
            }
        }

        
        .graphics-side {
            flex: 1;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .graphics-side::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
            opacity: 0.3;
        }
        
        .graphics-content {
            position: relative;
            z-index: 1;
            color: white;
            text-align: center;
            max-width: 600px;
        }
        
        .graphics-side h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .graphics-side p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }
        
        .app-logo {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .delivery-illustration {
            width: 100%;
            max-width: 400px;
            margin: 2rem 0;
            filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
        }
        
        .features-list {
            text-align: left;
            margin-top: 2rem;
        }
        
        .features-list li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
        }
        
        .features-list i {
            margin-right: 0.8rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .form-side {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            background-color: #f3f3f3;
        }
        
        .login-card {
            width: 100%;
            max-width: 400px;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .login-card h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #2d3748;
        }
        
        .form-control {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
        }
        
        .input-group-text {
            background-color: #f3f3f3;
            border: 1px solid #e2e8f0;
        }
        
        .btn-login {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            border: none;
            padding: 12px 20px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
            width: 100%;
        }
        
        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }
        
        .forgot-password {
            text-align: right;
            margin-top: 0.5rem;
        }
        
        .forgot-password a {
            color: #718096;
            font-size: 0.9rem;
            text-decoration: none;
        }
        
        .forgot-password a:hover {
            color: var(--primary-color);
        }
        
        .divider {
            display: flex;
            align-items: center;
            margin: 1.5rem 0;
            color: #a0aec0;
        }
        
        .divider::before, .divider::after {
            content: "";
            flex: 1;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .divider-text {
            padding: 0 1rem;
            font-size: 0.9rem;
        }
        
        .social-login {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .social-btn {
            flex: 1;
            padding: 10px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .social-btn:hover {
            background: #f8fafc;
            border-color: #cbd5e0;
        }
        
        .social-btn i {
            font-size: 1.2rem;
        }
        
        .signup-link {
            text-align: center;
            margin-top: 1.5rem;
            color: #718096;
        }
        
        .signup-link a {
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
        }
        
        /* Additional mobile enhancements */
        @media (max-width: 992px) {
            .login-container {
                flex-direction: column;
            }
            
            .graphics-side {
                padding: 2rem 1rem;
                min-height: 300px;
            }
            
            .form-side {
                padding: 2rem 1rem;
            }
            
            .graphics-side h1 {
                font-size: 2rem;
            }
            
            .graphics-side p {
                font-size: 1rem;
            }
        }
        
        /* Navbar mobile improvements */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.98);
                border-radius: 10px;
                margin-top: 1rem;
                padding: 1rem;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                backdrop-filter: blur(20px);
                border: 1px solid rgba(255, 255, 255, 0.2);
            }
            
            .navbar-toggler {
                border: 2px solid var(--primary-color);
                border-radius: 8px;
                padding: 0.5rem;
            }
            
            .navbar-toggler:hover {
                background: rgba(99, 102, 241, 0.1);
            }
            
            .navbar-nav {
                text-align: center;
            }
            
            .nav-item {
                margin: 0.2rem 0;
            }
            
            .nav-link {
                padding: 0.8rem 1rem !important;
                border-radius: 8px;
                transition: all 0.3s ease;
            }
            
            .nav-link:hover {
                background: rgba(99, 102, 241, 0.1);
                transform: none;
            }
            
            .btn-login-nav {
                margin-top: 1rem;
                width: 100%;
                max-width: 200px;
            }
        }
        
        /* Feature grid responsive fixes */
        @media (max-width: 768px) {
            /* Make col-6 elements stack better on mobile */
            .row.g-4.mb-4 .col-6:nth-child(odd) {
                padding-right: 0.5rem;
            }
            
            .row.g-4.mb-4 .col-6:nth-child(even) {
                padding-left: 0.5rem;
            }
            
            .row.g-4.mb-4 .col-6 .d-flex {
                padding: 0.8rem;
                background: rgba(255, 255, 255, 0.05);
                border-radius: 12px;
                backdrop-filter: blur(10px);
                border: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            /* Metric boxes mobile layout */
            .about-visual .row.g-3 {
                margin-top: 1rem !important;
            }
            
            .about-visual .row.g-3 .col-4 {
                padding: 0.3rem;
            }
            
            .metric-box {
                min-height: 70px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }
        }
        
        /* Mobile-first approach for sections */
        @media (max-width: 768px) {
            /* Hero section mobile */
            .hero-section {
                min-height: 100vh;
                padding: 100px 0 2rem 0;
            }
            
            .hero-section .container {
                padding-top: 2rem;
            }
            
            .hero-content {
                text-align: center;
                padding: 0 1rem;
            }
            
            .hero-badge {
                font-size: 0.8rem;
                padding: 6px 16px;
                margin-bottom: 1.5rem;
            }
            
            /* Services section mobile */
            .services-section {
                padding: 60px 0;
            }
            
            .service-item {
                padding: 20px 15px;
                margin-bottom: 1.5rem;
            }
            
            .service-icon {
                width: 80px;
                height: 80px;
                font-size: 2rem;
                margin-bottom: 15px;
            }
            
            /* Stats section mobile */
            .stats-section {
                padding: 60px 0;
            }
            
            .stat-item {
                margin-bottom: 2rem;
            }
            
            /* CTA section mobile */
            .cta-section {
                padding: 60px 0;
            }
            
            .cta-section h2 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }
            
            .cta-section p {
                font-size: 1rem;
                margin-bottom: 2rem;
            }
        }
        
        /* Touch-friendly improvements */
        @media (max-width: 768px) {
            /* Larger touch targets */
            .btn, .nav-link, .social-link, .footer-link {
                min-height: 44px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
            
            /* Better spacing for touch */
            .btn {
                margin: 0.25rem;
            }
            
            /* Improved form controls */
            .form-control {
                padding: 15px;
                font-size: 16px; /* Prevents zoom on iOS */
            }
            
            .input-group-text {
                padding: 15px 12px;
            }
            
            /* Better modal experience */
            .login-modal {
                width: 95%;
                max-width: 400px;
                margin: 1rem;
                max-height: 90vh;
                overflow-y: auto;
            }
            
            .login-container {
                align-items: center;
                justify-content: center;
            }
        }
        
        /* Mobile performance optimizations */
        @media (max-width: 768px) {
            /* Reduce animations on mobile for better performance */
            *, *::before, *::after {
                animation-duration: 0.3s !important;
                animation-delay: 0s !important;
                transition-duration: 0.3s !important;
            }
            
            /* Hide decorative elements on small screens */
            .floating-element {
                display: none;
            }
            
            /* Optimize scrolling */
            body {
                -webkit-overflow-scrolling: touch;
            }
            
            /* Improve text readability */
            .hero-title, .display-3 {
                text-shadow: 0 2px 4px rgba(0,0,0,0.1);
            }
            
            /* Better button touch targets */
            .btn, .nav-link {
                min-height: 44px;
                min-width: 44px;
            }
            
            /* Prevent horizontal scroll */
            .container-fluid, .container {
                overflow-x: hidden;
            }
        }
        
        /* Landscape mobile specific */
        @media (max-width: 896px) and (orientation: landscape) {
            .hero-section {
                min-height: 100vh;
                padding: 1rem 0;
            }
            
            .hero-title {
                font-size: 2.2rem;
                margin-bottom: 1rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }
            
            .hero-buttons {
                flex-direction: row;
                gap: 1rem;
                justify-content: center;
            }
            
            .btn-hero {
                max-width: 180px;
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .hero-stats {
                margin-top: 2rem;
                flex-direction: row;
                gap: 1rem;
            }
        }
        
        /* High DPI displays */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .navbar-brand img,
            .footer-logo img {
                image-rendering: -webkit-optimize-contrast;
                image-rendering: crisp-edges;
            }
        }
        
        /* Dark mode support for mobile */
        @media (prefers-color-scheme: dark) and (max-width: 768px) {
            .navbar {
                background: rgba(31, 41, 55, 0.95);
            }
            
            .navbar-collapse {
                background: rgba(31, 41, 55, 0.98);
            }
            
            .nav-link {
                color: rgba(255, 255, 255, 0.9) !important;
            }
            
            .login-modal {
                background: #1f2937;
                color: white;
            }
            
            .form-control {
                background: #374151;
                border-color: #4b5563;
                color: white;
            }
        }
        
        /* Accessibility improvements for mobile */
        @media (max-width: 768px) {
            /* Focus indicators */
            .btn:focus,
            .nav-link:focus,
            .form-control:focus {
                outline: 3px solid var(--primary-color);
                outline-offset: 2px;
            }
            
            /* Better contrast for mobile */
            .text-muted {
                color: #4a5568 !important;
            }
            
            /* Larger tap targets */
            .close-login {
                width: 48px !important;
                height: 48px !important;
                font-size: 1.5rem !important;
            }
        }
        
        /* Reduced motion for users who prefer it */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        
        /* Scroll to Top Button */
        .scroll-to-top.show {
            opacity: 1 !important;
            visibility: visible !important;
        }
        
        .scroll-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
        }
        
        @media (max-width: 768px) {
            .scroll-to-top {
                bottom: 20px !important;
                right: 20px !important;
                width: 50px !important;
                height: 50px !important;
                font-size: 1.1rem !important;
                z-index: 1050;
            }
        }
        
        /* Fix for iOS Safari */
        @supports (-webkit-touch-callout: none) {
            .hero-section {
                min-height: -webkit-fill-available;
            }
        }
   