@charset "utf-8";
/* CSS Document */

body{
	margin: 0;
	padding: 0;
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif"
}


/* Look */
        .navbar {
            background: #0f172a !important;    /* Deep navy blue */
            padding: 1rem 0;
            font-weight: 500;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .navbar-brand {
            //font-size: 2rem;
            font-weight: 800;
            color: #fff !important;
            letter-spacing: 1px;
        }
        .nav-link {
            color: #e2e8f0 !important;
            padding: 0.5rem 1rem !important;
            transition: all 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: #fbbf24 !important;   /*yellow-gold */
        }
        .dropdown-menu {
            background: #1e293b;
            border: none;
            border-radius: 0;
            margin-top: 0;
        }
        .dropdown-item {
            color: #cbd5e1;
            padding: 0.6rem 1.5rem;
        }
        .dropdown-item:hover {
            background: #fbbf24;
            color: #fff !important;
        }
        /* Mobile pe bhi clean dikhe */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: #0f172a;
                padding: 1rem;
                margin-top: 10px;
                border-radius: 8px;
            }
        }


/* Hero Background - Gradient + Overlay */
        .hero {
            //background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            background:#283246;
            //min-height: 100vh;
            min-height: auto;
            display: flex;
			padding: 70px 0;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: url('https://images.unsplash.com/photo-1542596594-649edbc13630?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
            opacity: 0.1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
        }
        .hero h1 {
            //font-size: 4.5rem;
            font-weight: 600;
            line-height: 1.1;
            text-shadow: 0 4px 20px rgba(0,0,0,0.4);
        }
        .hero p.lead {
            font-size: 1.5rem;
            font-weight: 400;
            margin: 2rem 0;
            opacity: 0.95;
        }
        .btn-cta {
            background: #fbbf24;
            color: #000;
            font-weight: 700;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.3rem;
            box-shadow: 0 10px 30px rgba(251,191,36,0.4);
            transition: all 0.3s;
        }
        .btn-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(251,191,36,0.6);
            background: #fcd34d;
        }
        .floating-phone {
            animation: float 6s ease-in-out infinite;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 3rem; }
            .hero p.lead { font-size: 1.2rem; }
        }


   .stats-box {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 1.8rem 1rem;           /* Mobile pe compact */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.stats-box i {
    font-size: 2.8rem;              /* Mobile pe chhota icon */
    margin-bottom: 0.8rem;
}

.stats-box .num {
    font-size: 2.2rem;              /* Mobile pe chhota number */
    font-weight: 900;
    color: #1e293b;
    margin: 0.5rem 0;
}

.stats-box .label {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
}

/* Desktop pe bada aur premium */
@media (min-width: 992px) {
    .stats-box {
        padding: 3rem 1.5rem;
    }
    .stats-box i {
        font-size: 4.5rem;
        margin-bottom: 1rem;
    }
    .stats-box .num {
        font-size: 3.5rem;
    }
    .stats-box .label {
        font-size: 1.1rem;
    }
}

/* Hover Effect */
.stats-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: #fbbf24;
}

.step-box {
        padding: 2rem;
        transition: 0.3s;
    }
    .step-icon {
        width: 80px; height: 80px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        font-weight: 900;
    }
    .upload-card {
        background: white;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.08);
        border: 1px solid #e2e8f0;
    }
    .upload-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    }
    @media (max-width: 768px) {
        .step-icon { width: 60px; height: 60px; font-size: 1.8rem; }
        .upload-card { padding: 2rem !important; }
    }


.floating-phone {
        animation: float 6s ease-in-out infinite;
    }
    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(2deg); }
        50% { transform: translateY(-20px) rotate(-2deg); }
    }


/* Desktop Version */
.selfie-desktop {
    bottom: 135px;
    right: 5%;
    width: 380px;
    max-width: 42%;
    //opacity: 0.14;
    //transform: rotate(-8deg);
    z-index: 1;
    pointer-events: none;
}

/* Mobile Version */
.selfie-mobile {
    bottom: 55px;
    right: 5%;
    width: 300px;
    max-width: 40%;
    //opacity: 0.14;
    //transform: rotate(-8deg);
    z-index: 1;
    pointer-events: none;
}


.offer-marquee {
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    position: relative;
    background-size: 200% 100%;
    animation: gradientMove 8s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.marquee-content {
    animation: marquee 25s linear infinite;
    white-space: nowrap;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

.offer-marquee span {
    padding: 0 2rem;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
}

/* Mobile pe bhi perfect */
@media (max-width: 768px) {
    .marquee-content { font-size: 0.95rem; gap: 2rem !important; }
}


.reel-belt {
    height: 8px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.reel-strip {
    height: 100%;
    width: 200%;
    background: repeating-linear-gradient(
        90deg,
        #1e1e2e 0px,
        #1e1e2e 20px,
        #fbbf24 20px,
        #fbbf24 40px
    );
    //animation: reelMove 6s linear infinite;
}

.reel-glow {
    position: absolute;
    top: 0; left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251,191,36,0.4), transparent);
    //animation: reelGlow 3s linear infinite;
}

@keyframes reelMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes reelGlow {
    0% { left: -100%; }
    100% { left: 100%; }
}
