* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

html {
    scrollbar-gutter: stable;
    overflow-y: scroll;
    
}

         body {
            font-family: 'Cairo', sans-serif;
            background: linear-gradient(135deg, #6c757d 0%, #FC8700 100%);
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

       

        /* About Section Enhanced Styles */
        .about-content {
            padding: 20px 0;
        }

        .about-description {
            margin-bottom: 30px;
        }

        .about-description .lead {
            font-size: 1.3rem;
            line-height: 1.8;
            color: #555;
            font-weight: 400;
        }

        .features-list {
            margin-bottom: 40px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 10px;
            padding: 20px;
            background: rgba(252, 135, 0, 0.05);
            border-radius: 15px;
            border-left: 4px solid #FC8700;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: rgba(252, 135, 0, 0.1);
            box-shadow: 0 5px 15px rgba(252, 135, 0, 0.2);
        }

      

        .feature-text h5 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #FC8700;
            margin-bottom: 8px;
        }

        .feature-text p {
            font-size: 0.95rem;
            color: #666;
            margin: 0;
            line-height: 1.6;
        }

        .about-cta {
            text-align: left;
        }
/* Enhanced Hero Section Styles */
        .hero-content {
            text-align: right;
            padding: 40px 0;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-top: 50px;
            margin-bottom: 25px;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
            /* text-align: right; */
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            line-height: 1.6;
            font-weight: 400;
            /* text-align: right; */
        }

        .hero-features {
            margin-bottom: 28px;
            display: flex;
            justify-content: flex-start;
        }

        .hero-points {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }

        .hero-chip {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: #fff;
            font-size: .95rem;
            font-weight: 600;
            backdrop-filter: blur(8px);
            transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
        }
        .hero-chip:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
            border-color: rgba(252, 135, 0, 0.45);
        }

        .chip-icon {
            width: 26px;
            height: 26px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: linear-gradient(135deg, #FC8700 0%, #ff9f2c 100%);
            color: #fff;
            box-shadow: 0 6px 14px rgba(252, 135, 0, 0.3);
            margin-left: 8px;
        }

        .chip-text {
            line-height: 1.6;
        }

        @media (max-width: 576px) {
            .hero-chip { padding: 8px 12px; font-size: .9rem; }
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }

        .btn-download-primary {
            background: linear-gradient(135deg, #34A853 0%, #4CAF50 100%);
            color: white;
            padding: 15px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(52, 168, 83, 0.3);
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-download-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(52, 168, 83, 0.4);
            color: white;
            text-decoration: none;
        }

        .btn-download-secondary {
            background: linear-gradient(135deg, #000000 0%, #333333 100%);
            color: white;
            padding: 15px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-download-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
            color: white;
            text-decoration: none;
        }

        .btn-contact {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 15px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-contact:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-3px);
            color: white;
            text-decoration: none;
        }

        .download-stats {
            display: flex;
            gap: 150px;
            margin-top: 30px;
            justify-content: center;

            
        }

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

        .stat-number {
            display: block;
            font-size: 2.3rem;
            font-weight: 700;
            color: #FC8700;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .stat-label {
            display: block;
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 5px;
        }

        /* Hero App Showcase */
        .hero-app-showcase {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 600px;
            padding-top: 100px;
        }

        .phone-mockup {
            position: relative;
            z-index: 2;
        }

        .phone-frame {
            width: 300px;
            height: 600px;
            background: linear-gradient(145deg, #2c3e50, #34495e);
            border-radius: 40px;
            padding: 20px;
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.3),
                inset 0 2px 4px rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .phone-frame::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 6px;
            background: #34495e;
            border-radius: 3px;
        }

        .app-screenshot {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 25px;
            animation: phoneGlow 3s ease-in-out infinite alternate;
        }

        @keyframes phoneGlow {
            0% { box-shadow: 0 0 20px rgba(252, 135, 0, 0.3); }
            100% { box-shadow: 0 0 40px rgba(252, 135, 0, 0.6); }
        }

        .floating-icons {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }

        .floating-icon {
            position: absolute;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #FC8700, #FF6B35);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 10px 30px rgba(252, 135, 0, 0.3);
            animation: floatingIcon 6s ease-in-out infinite;
            animation-delay: var(--delay);
        }

        .floating-icon:nth-child(1) { top: 10%; right: 20%; }
        .floating-icon:nth-child(2) { top: 25%; left: 10%; }
        .floating-icon:nth-child(3) { top: 45%; right: 5%; }
        .floating-icon:nth-child(4) { top: 65%; left: 15%; }
        .floating-icon:nth-child(5) { top: 80%; left: 75%; }
        .floating-icon:nth-child(6) { top: 35%; left: 35%; }

        @keyframes floatingIcon {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg);
                opacity: 0.7;
            }
            25% { 
                transform: translateY(-20px) rotate(90deg);
                opacity: 1;
            }
            50% { 
                transform: translateY(-10px) rotate(180deg);
                opacity: 0.8;
            }
            75% { 
                transform: translateY(-30px) rotate(270deg);
                opacity: 1;
            }
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .hero-content {
                text-align: center;
                margin-bottom: 50px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .download-stats {
                justify-content: center;
                gap: 30px;
            }
            
            .phone-frame {
                width: 250px;
                height: 500px;
            }
            
            .hero-app-showcase {
                height: 400px;
            }

            /* Mobile navbar adjustments */
            .login_btn {
                display: none !important;
            }

            .navbar .container {
                position: relative;
            }

            .navbar-toggler {
                position: absolute;
                left: 12px;
                right: auto;
                top: 50%;
                transform: translateY(-50%);
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-download-primary,
            .btn-download-secondary,
            .btn-contact {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            
            .phone-frame {
                width: 200px;
                height: 400px;
            }
            
            .floating-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
           

        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: #FC8700 !important;
        }
        .navbar-nav .nav-link {
            font-size: 1rem;
            font-weight: 500;
            color: #333 !important;
            padding: 15px 20px !important;
            transition: all 0.3s ease;
    
        }
        .collapse.navbar-collapse {
            justify-content: center;
        }

        .navbar-nav .nav-link:hover {
            color: #FC8700 !important;
            transform: translateY(-2px);
        }

        .hero-section {
            /* min-height: 100vh; */
            display: flex;
            align-items: center;
            position: relative;
            z-index: 10;
            padding-top: 80px;
            padding-bottom: 80px;
        }

        .hero-content {
            text-align: center;
            color: white;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .btn-primary-custom {
            background: linear-gradient(45deg, #FC8700, #ff9500);
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            box-shadow: 0 8px 25px rgba(252, 135, 0, 0.3);
            transition: all 0.3s ease;
            text-decoration: none;
            color: white;
            display: inline-block;
        }
        .login_btn{
            background: linear-gradient(45deg, #FC8700, #ff9500);
            border: 2px solid white;
            border-radius: 50px;
            text-decoration: none;
            color: white;
            padding: 10px 20px;
        }

        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(252, 135, 0, 0.4);
            color: white;
        }

        .btn-secondary-custom {
            background: transparent;
            border: 2px solid white;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            color: white;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            margin-right: 15px;
        }

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

        .features-section {
            padding: 30px 0;
            background: white;
            position: relative;
            z-index: 10;
        }

        /* Services Showcase - New design */
        .services-showcase {
            padding: 80px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
            position: relative;
            overflow: hidden;
        }
        .services-showcase::before {
            content: "";
            position: absolute;
            inset: -120px -80px auto auto;
            width: 360px;
            height: 360px;
            background: radial-gradient(closest-side, rgba(252,135,0,0.18), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .services-grid { position: relative; z-index: 2; }

        .service-card {
            background: rgba(255,255,255,0.92);
            border: 1px solid rgba(0,0,0,0.06);
            border-radius: 18px;
            padding: 28px 24px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
            height: 100%;
            backdrop-filter: saturate(1.2) blur(4px);
            position: relative;
            z-index: 1;
        }
        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 48px rgba(0,0,0,0.12);
            border-color: rgba(252,135,0,0.35);
        }
        .service-card::after {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            border-radius: 18px 18px 0 0;
            background: linear-gradient(90deg, #FC8700 0%, #ff9f2c 50%, #FC8700 100%);
            opacity: 0;
            transition: opacity .25s ease;
        }
        .service-card:hover::after { opacity: 1; }

        .service-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            background: radial-gradient(circle at 30% 30%, #ffb463 0%, #FC8700 55%, #ff9f2c 100%);
            color: #fff;
            font-size: 1.75rem;
            box-shadow: 0 10px 20px rgba(252,135,0,0.25);
        }

        .service-name {
            font-size: 1.25rem;
            font-weight: 700;
            margin: 10px 0 8px;
            color: #232e35;
        }

        .service-desc {
            color: #5c6670;
            line-height: 1.7;
        }

        @media (max-width: 576px) {
            .service-card { padding: 22px 18px; }
            .service-icon { width: 64px; height: 64px; font-size: 1.5rem; }
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
            color: #333;
        }

        .footer {
            background: #333;
            color: white;
            padding: 50px 0 30px;
            text-align: center;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            color: #FC8700;
            margin-bottom: 20px;
        }

        .footer-text {
            opacity: 0.8;
            margin-bottom: 30px;
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            margin: 0 15px;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: #FC8700;
        }

        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: floatShapes 15s infinite linear;
        }

        .shape:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 10%;
            animation-delay: 5s;
        }

        .shape:nth-child(3) {
            width: 80px;
            height: 80px;
            top: 80%;
            left: 20%;
            animation-delay: 10s;
        }

        @keyframes floatShapes {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
            100% { transform: translateY(0px) rotate(360deg); }
        }

        /* Features Showcase (New) */
        .features-showcase {
            padding: 90px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f5f7fb 100%);
            position: relative;
            overflow: hidden;
        }

        .features-showcase::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(800px 800px at 80% 0%, rgba(252,135,0,0.08), transparent 60%),
                radial-gradient(600px 600px at 10% 100%, rgba(0,0,0,0.06), transparent 60%);
            pointer-events: none;
        }

        .background-orbs { position: absolute; inset: 0; pointer-events: none; }
        .orb { position: absolute; border-radius: 50%; filter: blur(30px); opacity: 0.6; animation: orbFloat 10s ease-in-out infinite; }
        .orb-1 { width: 220px; height: 220px; right: 8%; top: 10%; background: radial-gradient(circle at 30% 30%, #FF9F1A, #FC8700); }
        .orb-2 { width: 180px; height: 180px; left: 6%; bottom: 12%; background: radial-gradient(circle at 30% 30%, #6c757d, #34495e); animation-delay: 2s; }
        .orb-3 { width: 140px; height: 140px; left: 40%; top: 50%; background: radial-gradient(circle at 30% 30%, #FF6B35, #FC8700); animation-delay: 4s; }

        @keyframes orbFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

        .section-header { margin-bottom: 40px; }
        .features-title {
            font-size: 2.6rem;
            font-weight: 800;
            background: linear-gradient(90deg, #2c3e50, #FC8700);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .features-subtitle { font-size: 1.1rem; color: #6c757d; max-width: 720px; margin: 10px auto 0; }

        .features-grid { position: relative; z-index: 2; }

        .feature-card-new {
            position: relative;
            background: rgba(255,255,255,0.85);
            border: 1px solid rgba(252,135,0,0.12);
            border-radius: 20px;
            padding: 28px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
            backdrop-filter: saturate(110%) blur(6px);
        }
        .feature-card-new::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            padding: 1px;
            background: linear-gradient(135deg, rgba(252,135,0,0.35), rgba(255,107,53,0.35));
            -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.25s ease;
        }
        .feature-card-new:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(0,0,0,0.15); border-color: rgba(252,135,0,0.35); }
        .feature-card-new:hover::after { opacity: 1; }

        .feature-icon {
            width: 76px; height: 76px; border-radius: 50%;
            margin: 0 auto 18px; display: flex; align-items: center; justify-content: center;
            background: linear-gradient(135deg, #FC8700, #FF6B35); color: #fff;
            box-shadow: 0 12px 25px rgba(252,135,0,0.35);
        }
        .feature-icon i { font-size: 1.8rem; }

        .feature-name { font-size: 1.25rem; font-weight: 700; color: #2c3e50; margin-bottom: 10px; }
        .feature-desc { color: #616161; line-height: 1.7; margin: 0; }

        .cta-row .btn-primary-custom { margin-top: 10px; box-shadow: 0 12px 30px rgba(252,135,0,0.35); }

        @media (max-width: 991px) {
            .features-title { font-size: 2.2rem; }
            .feature-card-new { padding: 24px; }
        }
        @media (max-width: 768px) {
            .features-title { font-size: 1.9rem; }
            .features-subtitle { font-size: 1rem; }
            .feature-icon { width: 64px; height: 64px; }
        }

        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #ffdfb1 0%, #5e4734 100%);
            position: relative;
            overflow: hidden;
        }

        .reviews-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
            opacity: 0.3;
        }

        .reviews-section .container {
            position: relative;
            z-index: 2;
        }

        .review-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }

        .review-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(252, 135, 0, 0.5);
        }

        .review-stars {
            margin-bottom: 20px;
        }

        .review-stars i {
            color: #FFD700;
            font-size: 1.2rem;
            margin: 0 2px;
        }

        .review-text {
            color: white;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 25px;
            font-style: italic;
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .reviewer-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #FC8700, #FF6B35);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .reviewer-avatar i {
            color: white;
            font-size: 1.2rem;
        }

        .reviewer-details h5 {
            color: white;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .reviewer-details span {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* Call to Action Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #FC8700 0%, #FF6B35 50%, #FC8700 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: float 20s ease-in-out infinite;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: 3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .cta-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .btn-cta-primary, .btn-cta-secondary {
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            min-width: 200px;
            justify-content: center;
            gap: 10px;
        }

        .btn-cta-primary {
            background: white;
            color: #FC8700;
            border: 2px solid white;
        }

        .btn-cta-primary:hover {
            background: transparent;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .btn-cta-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-cta-secondary:hover {
            background: white;
            color: #FC8700;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .cta-features {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .cta-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
            font-weight: 500;
        }

        .cta-feature i {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title-dark {
                font-size: 2rem;
            }

            .cta-title {
                font-size: 2.2rem;
            }

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

            .cta-features {
                flex-direction: column;
                gap: 20px;
            }

            .app-feature-card {
                margin-bottom: 30px;
            }
        }

        .contact-section {
            background: linear-gradient(135deg, #d0d0d0 0%, #f6e2c0 50%, #FC8700 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(252, 135, 0, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(118, 75, 162, 0.15) 0%, transparent 50%);
            animation: backgroundShift 20s ease-in-out infinite;
        }

        @keyframes backgroundShift {
            0%, 100% { transform: translateY(0); }
            25% { transform: translateY(-10px); }
            50% { transform: translateY(15px); }
            75% { transform: translateY(-20px); }
        }

        .contact-section::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(255, 255, 255, 0.03) 60deg, transparent 120deg),
                conic-gradient(from 120deg at 50% 50%, transparent 0deg, rgba(252, 135, 0, 0.05) 60deg, transparent 120deg),
                conic-gradient(from 240deg at 50% 50%, transparent 0deg, rgba(118, 75, 162, 0.04) 60deg, transparent 120deg);
            animation: rotate 30s linear infinite;
        }

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

        .contact-form {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 50px;
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 2;
            border: 1px solid rgba(255, 255, 255, 0.3);
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(252, 135, 0, 0.05) 50%, transparent 70%);
            border-radius: 25px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .contact-form:hover::before {
            opacity: 1;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-control {
            border: 2px solid rgba(252, 135, 0, 0.2);
            border-radius: 12px;
            padding: 15px 20px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
        }

        .form-control:focus {
            border-color: #FC8700;
            box-shadow: 0 0 0 3px rgba(252, 135, 0, 0.1);
            background: white;
            transform: translateY(-2px);
        }

        .btn-submit {
            background: linear-gradient(135deg, #FC8700 0%, #FF6B35 100%);
            border: none;
            padding: 18px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(252, 135, 0, 0.3);
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .btn-submit::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-submit:hover::before {
            left: 100%;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(252, 135, 0, 0.4);
        }

        .btn-submit:active {
            transform: translateY(-1px);
        }

        /* Mobile Mockup Styles */
        .mobile-mockup {
            position: relative;
            max-width: 300px;
            margin: 0 auto;
        }

        .mobile-frame {
            background: linear-gradient(145deg, #2c3e50, #34495e);
            border-radius: 30px;
            padding: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            position: relative;
            animation: floatMobile 6s ease-in-out infinite;
        }

        .mobile-screen {
            background: #000;
            border-radius: 25px;
            overflow-y: auto;
            overflow-x: hidden;
            position: relative;
            aspect-ratio: 9/19.5;
            margin-top: 15px;
            /* Custom scrollbar for mobile screen */
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* Internet Explorer 10+ */
        }

        .mobile-screen::-webkit-scrollbar {
            display: none; /* WebKit browsers */
        }

        .mobile-screenshot {
            width: 100%;
            height: auto;
            object-fit: cover;
            display: block;
        }

        .mobile-notch {
            position: absolute;
            top: 5px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 25px;
            background: #000;
            border-radius: 0 0 15px 15px;
            z-index: 10;
        }

        .mobile-home-indicator {
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
            z-index: 10;
        }

        @keyframes floatMobile {
            0%, 100% { 
                transform: translateY(0px) rotateY(0deg);
            }
            25% { 
                transform: translateY(-10px) rotateY(-5deg);
            }
            50% { 
                transform: translateY(-20px) rotateY(0deg);
            }
            75% { 
                transform: translateY(-10px) rotateY(5deg);
            }
        }



        /* Statistics Section Styles */
        .stats-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #6c757d 0%, #FC8700 50%, #6c757d 100%);
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="statsPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23statsPattern)"/></svg>') repeat;
            animation: float 25s ease-in-out infinite;
        }

        .stats-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stats-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
            opacity: 0;
        }

        .stats-card:hover::before {
            animation: shimmer 1.5s ease-in-out;
        }

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

        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
            display: block;
        }

        .stats-label {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        .stats-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            color: white;
        }

        @keyframes shimmer {
            0% {
                opacity: 0;
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            50% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

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

        .stats-number.animate {
            animation: countUp 1s ease-out;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .btn-primary-custom,
            .btn-secondary-custom {
                padding: 12px 30px;
                font-size: 1rem;
                margin: 5px;
                display: block;
                width: 80%;
                margin-left: auto;
                margin-right: auto;
            }

            .contact-form {
                padding: 30px 20px;
            }
        }