/* ================= REGISTER POPUP ================= */
.register-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
    overflow: hidden;
}

.register-popup-overlay.show {
    display: flex;
}

.register-popup-modal {
    background: white;
    border-radius: 20px;
    max-width: 450px;
    width: 70%;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    background: #f0f0f0;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
    z-index: 1;
}

.popup-close-btn:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.popup-content {
    padding: 40px 30px 30px;
    text-align: center;
   
}

.popup-header {
    margin-bottom: 25px;
}

.popup-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulse 2s infinite;
}

.popup-icon i {
    font-size: 28px;
    color: white;
}

.popup-header h3 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.popup-header p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.popup-benefits {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #333;
}

.benefit-item i {
    color: #28a745;
    font-size: 16px;
}

.popup-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popup-register-btn {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.popup-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.popup-later-btn {
    background: transparent;
    color: #666;
    border: 2px solid #e0e0e0;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-later-btn:hover {
    background: #f8f8f8;
    border-color: #ccc;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .register-popup-modal {
        width: 95%;
        max-width: 350px;
        margin: 20px auto;
    }
    
    .register-popup-overlay.show {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        touch-action: none;
        -webkit-overflow-scrolling: touch;
    }
    
    .register-popup-overlay.show ~ * {
        pointer-events: none;
    }
    
    .popup-content {
        padding: 25px 18px 18px;
    }
    
    .popup-header h3 {
        font-size: 18px;
    }
    
    .popup-header p {
        font-size: 13px;
    }
    
    .popup-icon {
        width: 50px;
        height: 50px;
    }
    
    .popup-icon i {
        font-size: 20px;
    }
    
    .benefit-item {
        font-size: 14px;
    }
    
    .popup-register-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .popup-later-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}

/* ================= BASE ================= */
body{
  margin:0;
  font-family:"Poppins", sans-serif;
  background:#fff1f3;
  overflow-x:hidden;   /* ✅ sirf horizontal band */
}

/* Mobile horizontal overflow fix */
@media (max-width: 480px) {
  html, body {
    overflow-x: hidden !important;
    position: relative;
    width: 100%;
    max-width: 100vw;
    touch-action: pan-y;
  }
  
  * {
    box-sizing: border-box;
  }
  
  section, .section-wrapper {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
}

/* ================= NAVBAR ================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.navbar-container {
    max-width: 1400px;
    margin: auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-logo img {
    width: 42px;
    height: 42px;
}

.navbar-logo h3 {
    margin: 0;
    font-size: 18px;
}

.navbar-logo span {
    font-size: 12px;
    color: #666;
}

/* MENU */
.navbar-menu {
    display: flex;
    gap: 36px;
}
.navbar-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    padding-bottom: 6px;
}

/* UNDERLINE */
.navbar-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;

    background: linear-gradient(90deg, #f43f5e, #fb923c, #f43f5e);
    background-size: 200% 100%;

    border-radius: 4px;

    transform: scaleX(0);
    transform-origin: left;
    transition: all .35s ease;
    opacity: 0;
}

/* HOVER */
.navbar-menu a:hover::after {
    transform: scaleX(1);
    opacity: 1;
    background-position: 100% 0;
}

/* HOVER COLOR */
.navbar-menu a:hover {
    color: #f43f5e;
}

.navbar{
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hide on scroll down */
.navbar.hide{
    transform: translateY(-100%);
}

/* ACTIONS */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.login-link {
    text-decoration: none;
    color: #f43f5e;
    font-weight: 500;
}

.register-btn {
    background: #f43f5e;
    color: #fff;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

/* MOBILE MENU BUTTON */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* MOBILE LOGIN BUTTON */
.mobile-login {
    display: none;
}

.mobile-login-btn {
    background: #f43f5e;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 100px 30px 40px;
    gap: 25px;
}

.mobile-menu-link {
    text-decoration: none;
    color: #333;
    font-size: 20px;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mobile-menu-link:hover {
    background: #f43f5e;
    color: #fff;
    transform: translateX(-10px);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }
    
    .navbar-actions {
        display: none;
    }
    
    .mobile-login {
        display: block;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .navbar-container {
        padding: 12px 20px;
    }
    
    .navbar-logo h3 {
        font-size: 16px;
    }
    
    .navbar-logo span {
        font-size: 11px;
    }
    
    .navbar-logo img {
        width: 36px;
        height: 36px;
    }
    
    /* Hide hero-right section on mobile */
    .hero-right {
        display: none;
    }
}

/* ================= HERO ================= */
.hero-section {
    background: #fff1f3;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    margin-top: -20px;

    /* IMPORTANT */
    position: relative;
    overflow: visible;
    z-index: 2;
}

.hero-wrapper {
    max-width: 1400px;
    margin: auto;
    padding: 60px 24px;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* LEFT */
.hero-left {
    flex: 1.1;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: #e11d48;
    padding: 0 28px;
    height: 54px;
    border-radius: 30px;
    font-size: 18px;
    white-space: nowrap;
    box-shadow: rgba(254, 94, 94, 0.25) 0px 20px 40px;
    margin-bottom: 18px;
}

/* Mobile responsive for hero-pill */
@media (max-width: 768px) {
    .hero-pill {
        font-size: 14px;
        padding: 0 20px;
        height: 42px;
        border-radius: 25px;
        margin-bottom: 15px;
        justify-content: center;
        text-align: center;
    }
}

.hero-left h1 {
    font-size: 64px;
    margin: 10px 0 22px;
    line-height: 1.15;
    color: #111;
}

.hero-left h1 span {
    color: #e11d48;
}

.hero-left p {
    color: #555;
    line-height: 1.8;
    max-width: 620px;
    font-size: 20px;
}

/* BUTTONS */
.hero-actions {
    margin-top: 42px;
    display: flex;
    gap: 22px;
}

.btn-red {
    background: linear-gradient(135deg, #f43f5e, #fb7185);
    color: #fff;
    padding: 18px 44px;
    min-width: 200px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(244, 63, 94, 0.4);
    transition: all 0.25s ease;
}

.btn-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(244, 63, 94, 0.45);
}

.btn-outline {
    border: 2px solid #f43f5e;
    color: #f43f5e;
    padding: 18px 42px;
    min-width: 220px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    background: #fff;
    transition: all 0.25s ease;
}

.btn-outline:hover {
    background: #f43f5e;
    color: #fff;
}

/* RIGHT IMAGE */
.hero-right {
    flex: 1.3;
    position: relative;
}

.hero-right img {
    width: 100%;
    height: 550px;
    border-radius: 26px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}

/* BADGES */
.hero-badge {
    position: absolute;
    background: #fff;
    padding: 12px 18px;
    border-radius: 16px;
    font-size: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.hero-badge.success {
    bottom: 22px;
    left: 22px;
}

.hero-badge.verify {
    top: 35%;
    right: -22px;
}

/* ================= HERO TEXT ANIMATION ================= */
.animate-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.animate-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* Delay helpers */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }
.animate-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.animate-item.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-left h1 {
        font-size: 42px;
    }

    .hero-left p {
        font-size: 16px;
    }

    .hero-right img {
        height: auto;
    }
}
/* ================= PREMIUM HERO ANIMATIONS ================= */

/* ===== Hero Glow Background ===== */
.hero-section::before {
    content: "";
    position: absolute;
    top: -200px;
    left: -200px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(244,63,94,0.28), transparent 70%);
    z-index: -1;
}

/* ===== Smooth Entry Animation ===== */
.animate-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* Delay Helpers */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

/* ===== Hero Image Floating ===== */
.hero-right img {
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
    100% { transform: translateY(0); }
}

/* ===== Badge Floating + Pulse ===== */
.hero-badge {
    animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

/* ===== CTA Button Premium Hover ===== */
.btn-cta {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );
    transition: 0.6s;
}

.btn-cta:hover::after {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.04);
}

/* ===== Button Soft Pulse ===== */
.btn-register {
    animation: btnPulse 2.5s infinite;
}

@keyframes btnPulse {
    0% { box-shadow: 0 0 0 0 rgba(244,63,94,0.6); }
    70% { box-shadow: 0 0 0 18px rgba(244,63,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(244,63,94,0); }
}

/* ===== Responsive Safe ===== */
@media (max-width: 768px) {
    .hero-right img {
        animation: none;
    }
}
/* ==========================
   STICKY BENTO – STATS
   ========================== */

.stats-bento{
    min-height:200vh;
    padding:4rem 1rem 2.5rem;
    background:linear-gradient(180deg,#ffffff,#f5f7fb);
}

.stats-header{
    text-align:center;
    margin-bottom:5rem;
}

.stats-header h2{
    font-size:clamp(2.5rem,4vw,5rem);
    font-weight:600;
    color: #ac0a0a;
}

.stats-header p{
    font-size:1.1rem;
    opacity:.7;
}

/* layout */
.stats-wrapper{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:4rem;
}

/* stats grid */
.stats-content{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:2rem;
}

.stat-card{
    background:#fff;
    border-radius:24px;
    height: 180px;
    padding:3.5rem 2.4rem;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.stat-card h3{
    font-size:clamp(3rem,4.4vw,4.4rem);
    font-weight:700;

    background:linear-gradient(90deg,#ff006f,#5f042b);
    -webkit-background-clip:text;
    color:transparent;

    display: inline-block;   /* ⭐ MOST IMPORTANT */
    padding-right: 14px;     /* ⭐ extra breathing space */
    white-space: nowrap;
}

.stat-card p{
    margin-top: -36px;
    font-weight: 600;   /* bold */
    opacity: .85;       /* thoda zyada readable */
}


/* sticky bento */
.stats-sticky{
    position:relative;
}

.stats-sticky .bento-box{
    position:sticky;
    top:30%;
    width:100%;
    aspect-ratio:1;
    border-radius:32px;
    background:linear-gradient(135deg,#7f00ff,#00c6ff);
    display:grid;
    place-items:center;
    font-size:3rem;
    font-weight:700;
    color:#fff;
    box-shadow:0 30px 60px rgba(0,0,0,.2);
}

/* responsive */
@media(max-width:900px){
    .stats-wrapper{
        grid-template-columns:1fr;
    }
    .stats-sticky{
        display:none;
    }
}

@media (max-width: 576px) {
    .stats-header h2 {
        font-size: 24px;
        white-space: nowrap;
    }

    .stats-bento {
        min-height: auto;
        padding-top: 2.5rem;
        margin-top: 0;
        padding-bottom: 0.5rem;
    }

    .stats-wrapper {
        min-height: auto;
    }

    .stats-sticky {
        display: none;
    }

    .stats-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 4px 6px 16px;
    }

    .stats-content::-webkit-scrollbar {
        display: none;
    }

    .stat-card {
        width: 100%;
        max-width: 270px;
        margin: 0 auto;
        scroll-snap-align: start;
        padding: 18px 18px 20px;
        height: auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .stat-icon{
        position: static !important;
        margin: 10px auto 12px;
        width: 64px;
        height: 64px;
        font-size: 26px;
        border-radius: 14px;
        align-self: center;
        display: flex;
        margin-top: 40px;
    }

    .stat-icon i{
        color: #fff;
        display: block;
        line-height: 1;
    }

    .stat-icon.team i{
        transform: none;
    }

    .stat-icon.team{
        margin: 10px auto 12px;
        transform: none;
    }

    .stat-card h3{
        font-size: 2.8rem;
        margin-top: 4px;
        margin-bottom: 30px;
        padding-right: 0;
    }

    .stat-card h3::after{
        content: "+";
        font-size: 0.9em;
    }

    .stat-card p{
        font-size: 1.2rem;
        margin-top: 0;
    }

    .stats-bento {
        padding-bottom: 0.5rem;
    }
}
/* =========================
   STICKY PHONE (IMPORTANT)
   ========================= */

.stats-wrapper{
    min-height: 200vh; /* sticky ke liye zaroori */
}

.stats-sticky{
    position: relative;
    min-height: 200vh; /* parent tall hona chahiye */
}

.phone-wrap{
    position: sticky;
    top: 20%;
    display: flex;
    justify-content: center;
    z-index: 20;
}

.phone-wrap img{
    width: 420px; 
    max-width: 90%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.25));
}
.phone-wrap{
    position: sticky;
    top: 18%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

/* PHONE */
.phone-wrap img{
    width: 420px;
    position: relative;
    z-index: 3;
    left: 150px;
    top: -50px;
    filter: drop-shadow(0 25px 45px rgba(0,0,0,0.25));
}

/* RED ARC BEHIND PHONE */
.phone-wrap::after{
    content: "";
    position: absolute;

    width: 1000px;
    height: 800px;

    background: #d93838;   /* Jain red */
    border-radius: 50%;

    left: 50px;          /* arc left se aaye */
    top: -150px;

    z-index: 1;
}

/* =========================
   STAT ICONS
   ========================= */

.stat-card{
    position: relative;
    overflow: hidden;
}

.stat-icon{
    position: absolute;
    top: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
}

/* individual colors */
.stat-icon.heart{
    background: linear-gradient(135deg,#ff416c,#ff4b2b);
}

.stat-icon.download{
    background: linear-gradient(135deg,#36d1dc,#5b86e5);
}

.stat-icon.team{
    background: linear-gradient(135deg,#11998e,#38ef7d);
}

.stat-icon.active{
    background: linear-gradient(135deg,#fc4a1a,#f7b733);
}

/* text spacing fix */
.stat-card h3{
    margin-top: 40px;
}

.stat-card p{
    margin-top: -20px;
}


/* ================= SUCCESS STORIES ================= */

.success-section {
    background: #fff4f6;
    padding: 80px 20px;
    text-align: center;
     position: relative;
}

.success-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.success-header h2 {
    font-size: 36px;
    font-weight: 700;
}

.success-header h2 span {
    color: #e11d48;
}

.success-header .line {
    width: 80px;
    height: 4px;
    background: #e11d48;
    border-radius: 4px;
}

.success-subtitle {
    margin-top: 12px;
    color: #777;
    font-size: 16px;
}

.success-slider {
    position: relative;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 60px;
}

.success-viewport {
    overflow: hidden;
    width: 100%;
}

.success-track {
    display: flex;
    gap: 30px;
    transition: transform 0.45s ease;
    width: max-content;
}

/* CARD */
.success-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    text-align: left;
    width: 360px;
    flex-shrink: 0;
}

.success-img {
    position: relative;
}

.success-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.img-text {
    position: absolute;
    bottom: 12px;
    left: 12px;
    color: #fff;
}

.img-text h4 {
    margin: 0;
    font-size: 18px;
}

.img-text span {
    font-size: 13px;
    opacity: 0.9;
}

.stars {
    padding: 14px 20px;
    color: #f59e0b;
    font-size: 18px;
}

.story-text {
    padding: 0 20px 25px;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

/* CTA */
.success-cta {
    margin-top: 50px;
}

.success-cta p {
    font-size: 18px;
    color: #555;
    margin-bottom: 18px;
}

.cta-btn {
    background: #e11d48;
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .success-slider {
        padding: 0 20px;
    }
}

/* Mobile carousel for success stories */
@media (max-width: 768px) {
    .success-header h2 {
        font-size: 24px;
        white-space: nowrap;
    }
    
    .success-card {
        width: 280px;
        min-width: 280px;
        max-width: 280px;
    }
}
.success-nav {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #ff3b5c;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.success-prev {
    left: 40px;
}

.success-next {
    right: 40px;
}

.success-nav:hover {
    background: #e11d48;
}

.success-dots {
    text-align: center;
    margin: 25px 0;
}

.success-dots .dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.success-dots .dot.active {
    background: #e11d48;
    transform: scale(1.1);
}

/* Mobile hide */
@media (max-width: 992px) {
    .success-nav {
        display: none;
    }
}
/* ================= SIMPLE STEPS ================= */
/* ================= SIMPLE STEPS ================= */

.steps-section {
    background: #fff4f6;
    padding: 80px 20px;
    text-align: center;
}

.steps-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.steps-header h2 {
    font-size: 36px;
    font-weight: 700;
}

.steps-header h2 span {
    color: #e11d48;
}

.steps-header .line {
    width: 80px;
    height: 4px;
    background: #e11d48;
    border-radius: 4px;
}

.steps-subtitle {
    margin-top: 12px;
    color: #777;
    font-size: 16px;
}

/* GRID */
.steps-wrapper {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* CARD */
.step-card {
    background: #fff;
    padding: 35px 22px;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: 0 15px 35px rgba(0,0,0,.1);
    transition: .35s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 55px rgba(0,0,0,.18);
    border-color: #ffc2d0;
}

/* subtle glow */
.step-card::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:18px;
    background: radial-gradient(transparent, rgba(255,0,92,.15));
    opacity:0;
    transition:.35s;
}

.step-card:hover::after{
    opacity:1;
}

/* ICON */
.step-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#fff;
    margin:0 auto 18px;
    transition:.35s ease;
}

.step-icon.blue { background: linear-gradient(135deg,#4f8bff,#2563eb); }
.step-icon.green { background: linear-gradient(135deg,#22c55e,#16a34a); }
.step-icon.yellow { background: linear-gradient(135deg,#fbbf24,#f59e0b); }
.step-icon.orange { background: linear-gradient(135deg,#ff6a88,#e11d48); }

.step-card:hover .step-icon {
    transform: scale(1.15) rotate(4deg);
    box-shadow: 0 12px 25px rgba(0,0,0,.25);
}

.step-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .steps-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .steps-section {
        display: none;
    }
    
    .steps-wrapper {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 4px 6px 16px;
        grid-template-columns: unset;
    }

    .steps-wrapper::-webkit-scrollbar {
        display: none;
    }

    .steps-header h2 {
        font-size: 22px;
        white-space: nowrap;
    }

    .step-card {
        flex: 0 0 auto;
        min-width: 220px;
        scroll-snap-align: start;
    }
}
/* ===========================
   JAIN TAGLINE DESIGN
=========================== */

.jain-tagline{
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;      /* 👑 better spacing */
    position: relative;
}


.tagline-center{
    text-align: center;
    max-width: 650px;
    position: relative;
}

.tagline-center h3{
    font-size: 32px;
    font-weight: 700;
    color: #c2410c;
    line-height: 1.4;
}

.tagline-center h3 span{
    color: #b91c1c;
}

/* ORNAMENT LINES */
.ornament{
    display: block;
    width: 440px;
    height: 4px;
    margin: 12px auto;
    background: linear-gradient(to right,#facc15,#c2410c,#facc15);
    border-radius: 10px;
    position: relative;
}

.ornament::after{
    content:"✦";
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    font-size:18px;
    color:#c2410c;
}

/* ELEPHANT */
.elephant{
    width: 250px;     /* 🔥 bigger elephant */
    height: auto;
    margin-top: -35px;
}

.elephant.left{
    transform: scaleX(1);
   
}
.elephant.right{
    transform: scaleX(1);    /* 👉 normal */
}
/* RESPONSIVE */
@media(max-width: 768px){
    .jain-tagline{
        flex-direction: column;
        gap: 20px;
    }

    .elephant{
        width: 90px;
    }

    .tagline-center h3{
        font-size: 24px;
    }
}
/* ===========================
   JAIN TAGLINE BACKGROUND
=========================== */

.jain-tagline{
    margin-top: 90px;
    padding: 60px 80px;
    display: flex;
    height: 100px;
    align-items: center;
    justify-content: center;
    gap: 80px;

    background: linear-gradient(
        135deg,
        #fff7ed,
        #fff1f2,
        #fff7ed
    );

    border-top: 2px solid #facc15;
    border-bottom: 2px solid #facc15;

    box-shadow: 
        inset 0 20px 40px rgba(250,204,21,.12),
        0 25px 60px rgba(0,0,0,.08);

    position: relative;
    top: -70px;
}

/* ================= WHY CHOOSE US ================= */

.why-section {
    background: #fff4f6;
    padding: 80px 20px;
}

.why-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.why-header h2 {
    font-size: 36px;
    font-weight: 700;
}

.why-header h2 span {
    color: #e11d48;
}

.why-header .line {
    width: 80px;
    height: 4px;
    background: #e11d48;
    border-radius: 4px;
}

/* Mobile responsive for why-header */
@media (max-width: 768px) {
    .why-header h2 {
        font-size: 24px;
        white-space: nowrap;
    }
    
    .why-header .line {
        width: 40px;
        height: 3px;
    }
    
    .why-header {
        gap: 10px;
    }
}

.why-subtitle {
    text-align: center;
    margin-top: 12px;
    color: #777;
}

.why-wrapper {
    max-width: 1200px;
    margin: 60px auto 0;
    display: flex;
    gap: 50px;
}

/* LEFT VIDEO CARD */
.why-video-card {
    flex: 1;
    background: linear-gradient(135deg, #b91c1c, #fb7185);
    border-radius: 22px;
    color: #fff;
    position: relative;
    overflow: hidden;
    height: 500px;
}

.video-content {
    padding: 40px;
}

.video-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.video-content ul {
    list-style: none;
    padding: 0;
}

.video-content li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* COUPLE IMAGE */
.video-couple {
    position: absolute;
    right: 0px;
    bottom: 60px;
    width: 220px;
}

/* PLAY BUTTON */
.play-btn {
    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: #fff;
    color: #e11d48;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    cursor: pointer;
}

/* BOTTOM WHITE STRIP */
.video-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #fff;
    color: #111;
    text-align: center;
    padding: 18px;
    font-size: 20px;
    font-weight: 700;
}

/* Mobile responsive for why-video-card */
@media (max-width: 768px) {
    .why-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .why-video-card {
        height: auto;
        min-height: 400px;
        width: 100%;
    }
    
    .video-content {
        padding: 25px;
    }
    
    .video-content h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .video-content li {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .video-couple {
        width: 140px;
        right: 10px;
        bottom: 50px;
    }
    
    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
        bottom: 100px;
    }
    
    .video-footer {
        padding: 12px;
        font-size: 16px;
    }
    
    .why-points-card {
        width: 100%;
        height: auto;
        min-height: 300px;
        overflow: hidden;
        padding: 20px 0;
        position: relative;
        margin-left: -30px;
        margin-top: -30px;
    }
    
    .why-points-scroll {
        display: flex;
        flex-direction: row;
        height: auto;
        overflow: hidden;
        padding: 0;
        gap: 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }
    
    .why-point {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        scroll-snap-align: center;
        flex-shrink: 0;
        margin: 0;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    /* Navigation arrows for mobile */
    .why-points-nav {
        display: none;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #f43f5e;
        color: white;
        border: none;
        cursor: pointer;
        z-index: 10;
        font-size: 16px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        transition: all 0.3s ease;
    }
    
    .why-points-nav.prev {
        left: 10px;
    }
    
    .why-points-nav.next {
        right: 10px;
    }
    
    .why-points-nav:hover {
        background: #e11d48;
        transform: translateY(-50%) scale(1.1);
    }
    
    /* Hide scrollbar for mobile */
    .why-points-scroll::-webkit-scrollbar {
        display: none;
    }
    
    .why-points-scroll {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    /* Navigation dots for mobile */
    .why-points-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
        padding: 0 20px;
    }
    
    .why-point-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ddd;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .why-point-dot.active {
        background: #f43f5e;
        transform: scale(1.2);
    }
    
    /* Hide mobile-only elements on desktop */
    .mobile-only {
        display: none !important;
    }
    
    /* Show navigation only on mobile */
    @media (max-width: 768px) {
        .why-points-dots {
            display: flex;
        }
        
        .why-points-nav {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .mobile-only {
            display: flex !important;
        }
    }
    
    /* Fix mobile layout for horizontal cards */
    .why-points-scroll {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow: hidden;
        padding: 0;
        gap: 0;
        width: 100%;
        height: 100%;
    }
    
    .why-point {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        flex-shrink: 0;
        scroll-snap-align: center;
        margin: 0;
        padding: 0 20px;
        box-sizing: border-box;
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.3s ease;
    }
    
    .why-point.active {
        opacity: 1;
        transform: translateX(0);
    }
    
    .why-point.prev {
        transform: translateX(-100%);
    }
    
    /* Fix mobile layout for horizontal cards */
    .why-points-scroll {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow: hidden;
        padding: 0;
        gap: 0;
        width: 100%;
        height: 100%;
    }
    
    .why-point {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        flex-shrink: 0;
        scroll-snap-align: center;
        margin: 0;
        padding: 0 20px;
        box-sizing: border-box;
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.3s ease;
    }
    
    .why-point.active {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RIGHT POINTS */
.why-points {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.why-point {
    background: #fff;
    padding: 18px 20px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.tag {
    display: inline-block;
    background: #e11d48;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 6px;
}

/* Hide mobile-only elements on desktop */
.mobile-only {
    display: none !important;
}

.why-points-dots {
    display: none !important;
}

/* Mobile responsive for why-points */
@media (max-width: 768px) {
    .why-points-card {
        width: 100%;
        height: auto;
        min-height: 300px;
        overflow: hidden;
        padding: 20px 0;
        position: relative;
    }
    
    /* Fix mobile layout for horizontal cards */
    .why-points-scroll {
        display: block;
        width: 100%;
        height: auto;
        min-height: 200px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        overflow: visible; /* Ensure content is visible */
    }
    
    .why-point {
        width: 100%;
        max-width: 320px;
        padding: 18px 20px;
        box-sizing: border-box;
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        display: block; /* Show cards by default */
        position: relative;
        margin-bottom: 18px;
    }
    
    /* Hide cards on mobile for slider */
    @media (max-width: 768px) {
        .why-points-scroll {
            overflow: visible; /* Ensure no cutoff */
            padding: 20px 20px; /* Keep side padding */
        }
        
        .why-point {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); /* Center to prevent cutoff */
            width: 40%; /* Increased width for better mobile view */
            max-width: 160px; /* Slightly larger max width */
            box-sizing: border-box;
            opacity: 0; /* Use opacity instead of display: none */
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        
        .why-point.active {
            opacity: 1 !important; /* Show active card */
            visibility: visible !important;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); /* Center to prevent cutoff */
            width: 40%; /* Increased width for better mobile view */
            max-width: 160px; /* Slightly larger max width */
            box-sizing: border-box;
        }
    }
    
    /* Show cards on desktop */
    @media (min-width: 769px) {
        .why-points-scroll {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        
        .why-point {
            display: block !important;
            position: relative;
            margin-bottom: 0;
        }
    }
    
    /* Navigation arrows for mobile */
    .why-points-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #f43f5e;
        color: white;
        border: none;
        cursor: pointer;
        z-index: 10;
        font-size: 16px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        transition: all 0.3s ease;
        display: none;
    }
    
    .why-points-nav.prev {
        left: 10px;
    }
    
    .why-points-nav.next {
        right: 10px;
    }
    
    .why-points-nav:hover {
        background: #e11d48;
        transform: translateY(-50%) scale(1.1);
    }
    
    .why-points-dots {
        display: flex !important;
        justify-content: center;
        gap: 8px;
        margin-top: -30px; /* Maximum negative margin for ultimate overlap */
        padding: 0 20px;
        position: relative;
        z-index: 10; /* Ensure dots appear above cards */
    }
    
    .why-point-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ddd;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .why-point-dot.active {
        background: #f43f5e;
        transform: scale(1.2);
    }
    
    .mobile-only {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .why-points-card {
        margin: 0 auto;
        margin-left: 12px;
        margin-right: 12px;
        width: 100%;
        max-width: 360px;
        padding: 20px 12px;
    }

    .why-points-scroll {
        padding: 16px;
    }

    .why-point,
    .why-point.active {
        width: 88%;
        max-width: 320px;
    }
}
/* RIGHT SIDE SINGLE SCROLL CARD */
.why-points-card {
    flex: 1;
    background: #fff1f3;
    border-radius: 22px;
    padding: 20px;
    height: 460px; /* same as left card */
    
    overflow: hidden;
}

/* SCROLL AREA */
.why-points-scroll {
    height: 100%;
    overflow-y: auto;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* HIDE SCROLLBAR (ALL BROWSERS) */
.why-points-scroll::-webkit-scrollbar {
    width: 0;
    display: none;
}

.why-points-scroll {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE & Edge */
}

/* ================= WHATSAPP COMMUNITY ================= */


.whatsapp-section {
    padding: 80px 20px;
}

.whatsapp-box {
    max-width: 1300px;
    margin: auto;
    background: linear-gradient(135deg, #16a34a, #4ade80);
    border-radius: 22px;
    padding: 60px;
    display: flex;
       gap: 20px;
    color: #fff;
    position: relative;
    height: 450px;
}

/* LEFT */
.whatsapp-left {
     flex: 1.4;
}

.whatsapp-left h2 {
    font-size: 65px;
    font-weight: 900;
    margin-top: -20px;
}

.whatsapp-left h2 span {
    color: #d9ff00;
}

.underline {
    width: 700px;
    height: 3px;
    background: #fff;
    margin: 12px 0;
    margin-top: -30px;
}

.subtitle {
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 20px;
}

/* ICONS */
.whatsapp-icons {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* BUTTONS */
.whatsapp-buttons {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 22px;
    margin-left: 300px;
    margin-top: -75px;    
}



.whatsapp-number i {
    margin-right: 8px;
}

.whatsapp-number,
.join-btn{
    background:#fff;
    color:#16a34a;
    padding:14px 28px;
    border-radius:14px;
    font-weight:800;
    font-size:15px;
    display:flex;
    align-items:center;
    gap:10px;
    border:2px solid transparent;
    transition:.3s ease;
}
.whatsapp-number:hover,
.join-btn:hover{
    transform:translateY(-5px) scale(1.03);
    box-shadow:0 20px 45px rgba(0,0,0,.25);
    border-color:#16a34a;
}
.join-btn i{
    transition:.3s;
}

.join-btn:hover i{
    transform:translateX(5px);
}


/* HINDI */
.hindi-text {
      font-size: 26px;
    line-height: 1.7;
    font-weight: 600;
   
}

.hindi-text span {
    color: #fffb00;
    font-weight: 700;
}

/* ================= RIGHT SIDE ================= */

.whatsapp-right {
    flex: 0.9;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* GLASS FRAME */
.wa-frame {
    width: 100%;
    max-width: 380px;
    height: 320px;
    border-radius: 22px;
    border: 2px solid rgba(255,255,255,0.35);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* INFO CARD */
.info-card {
    background: #fff;
    color: #333;
    border-radius: 16px;
    padding: 26px 28px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    position: relative;
    z-index: 2;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    margin-bottom: 14px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card i {
    color: #16a34a;
    font-size: 16px;
}

/* FLOATING ICONS */
.floating {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    z-index: 3;
}

/* chat bubble (top-right) */
.floating.chat {
    top: -18px;
    right: -18px;
    color: #22c55e;
}

/* heart (bottom-left) */
.floating.heart {
    bottom: -18px;
    left: -18px;
    color: #e11d48;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .whatsapp-box {
        flex-direction: column;
        padding: 40px 25px;
    }

    .wa-frame {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .whatsapp-section {
        display: none;
    }
}
/* ===== GLASS EFFECT FRAME (KANCH TYPE) ===== */
.wa-frame {
    width: 100%;
    max-width: 440px;
    height: 340px;
    border-radius: 26px;
    position: relative;

    /* GLASS EFFECT */
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1.5px solid rgba(255, 255, 255, 0.35);

    box-shadow:
        inset 0 0 30px rgba(255,255,255,0.25),
        0 30px 80px rgba(0,0,0,0.25);

    display: flex;
    align-items: center;
    justify-content: center;
}
@keyframes glassFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.wa-frame{
    animation: glassFloat 5s ease-in-out infinite;
}
.info-card{
    transition:.3s;
}

.info-card:hover{
    transform: scale(1.03);
    box-shadow:0 30px 60px rgba(0,0,0,.28);
}

/* ================= DOWNLOAD APP (NEW) ================= */

.download-app-new{
    background:#fff;
    padding:0;
}

/* MAIN FLEX BOX */
.download-app-container{
    max-width:100%;
    display:flex;
    align-items:center;
}

/* LEFT */
.download-app-content{
    width:50%;
    padding:80px 70px;
    display:flex;
    flex-direction:column;
}

.download-app-content h2{
    font-size:64px;
    font-weight:800;
    letter-spacing:-0.5px;
    margin-bottom:14px;
    color:#2f2f2f;
    margin-top: -50px;
}

/* ICON BADGES */
.app-feature-row{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin:8px 0 20px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:8px;
        border-radius:14px;

    padding:12px 18px;
    border-radius:12px;
    background:#f4f6ff;
    font-size:15px;
    color:#444;
}

.feature-item i{
    color:#ff4769;
    font-size:20px;
}

/* TEXT */
.download-app-content p{
    font-size:20px;
    color:#555;
    margin-bottom:20px;
}

/* PLAYSTORE BUTTON */
.google-play-btn-new{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#000;
    color:#fff;

    padding:10px 14px;
    border-radius:10px;

    width:fit-content;     /* 👈 sirf jitna content utna width */
    min-width:unset;       /* 👈 koi force width nahi */
    text-decoration:none;

    box-shadow:0 12px 30px rgba(0,0,0,.18);
}

.google-play-btn-new img{
    width:28px;
}

.btn-text span{
    font-size:9px;
}

.btn-text strong{
    font-size:16px;
}

.google-play-btn-new img{
        width:42px;

}

.btn-text{
    display:flex;
    flex-direction:column;
}

.btn-text span{
    font-size:10px;
    opacity:.8;
}

.btn-text strong{
        font-size:22px;

}

/* RIGHT IMAGE */
.download-app-image{
    width:50%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.download-app-image img{
    width:100%;
    height:500px;
    margin-right: 10px;
    
}

/* RESPONSIVE */
@media(max-width:992px){

    .download-app-container{
        flex-direction:column;
        text-align:center;
    }

    .download-app-content,
    .download-app-image{
        width:100%;
    }

    .app-feature-row{
        justify-content:center;
    }

    .download-app-content{
        padding:40px 25px;
    }

    .google-play-btn-new{
        margin: 0 auto;
    }

    .google-play-btn-new img{
        transform: scale(0.9);
    }

}

@media (max-width: 576px) {
    .google-play-btn-new img{
        width: 38px;
        transform: scale(1);
    }
}


/* ================= FOOTER BASE ================= */

.jsm-footer{
  position:relative;
  width:100%;
  height:426px;
  background:linear-gradient(92.76deg,#9C2A2A 2.04%,#CB3A46 48.15%,#F9495F 94.25%);
  color:#fff;
  font-family:'Inter', sans-serif;
  overflow:hidden;
  
}

/* ================= LOGO CIRCLE ================= */

.footer-logo-circle{
  position:absolute;
  width:63px;
  height:59px;
  left:66px;
  top:40px;
  background:#fff;
  box-shadow:0 4px 7.8px 4px rgba(0,0,0,0.25);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.footer-logo-circle img{
  width:45px;
  height:45px;
  border-radius:50%;
}

/* ================= BRAND ================= */

.footer-brand-title{
  position:absolute;
  left:160px;
  top:40px;
  font-size:38px;
  font-weight:700;
 
}

.footer-address{
  position:absolute;
  left:160px;
  top:95px;
  width:348px;
  font-size:20px;
  line-height:24px;
  font-weight:500;
   
}

/* ================= HEADINGS ================= */

.footer-heading{
  position:absolute;
  font-size:38px;
  font-weight:700;
 
  
}
 
.footer-heading.privacy{ left:499px; top:40px; }
.footer-heading.packages{ left:864px; top:40px; }
.footer-heading.contact{ left:1148px; top:40px; }

/* ================= RED LINES ================= */

.footer-line{
  position:absolute;
  height:3px;
  background:#FF4848;
  border-radius:9px;
  margin-top: -10px;
}

.privacy-line{ left:499px; top:96px; width:259px; }
.packages-line{ left:864px; top:96px; width:160px; }
.contact-line{ left:1156px; top:96px; width:160px; }
.brand-line{ left:160px; top:96px; width:295px; }
/* ================= TEXT BLOCKS ================= */

.footer-text{
  position:absolute;
  font-size:20px;
  line-height:24px;
  font-weight:500;
}

.privacy-text{ left:499px; top:90px;font-size: 18px; }
.packages-text{ left:864px; top:90px; font-size: 18px;}
.contact-text{ left:1148px; top:90px; font-size: 18px;}

/* ================= FOLLOW ================= */
.follow-text{
  position:absolute;
  left:69px;
  top:230px;
  font-size:30px;        /* 🔥 size bada */
  font-weight:700;       /* 🔥 bold */
  color:#ffffff;
  letter-spacing:0.5px;  /* thoda premium look */
}


.follow-icons{
  display:flex;
  gap:14px;
  align-items:center;
  margin-top: 230px;
  margin-left: 270px;
}

.social-icon{
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:20px;
  text-decoration:none;
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}

/* HOVER EFFECT */
.social-icon:hover{
  transform:translateY(-3px);
  box-shadow:0 6px 14px rgba(0,0,0,0.25);
}

/* OFFICIAL BRAND COLORS */
.social-icon.instagram{
  background:radial-gradient(circle at 30% 30%, 
    #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.whatsapp{
  background:#25D366;
}

.social-icon.facebook{
  background:#1877F2;
}

.social-icon.youtube{
  background:#FF0000;
}

/* ================= APP AVAILABLE ================= */

.app-text{
  position:absolute;
  left:63px;
  top:310px;
  font-size:28px;
  font-weight:600;
}

/* ================= GOOGLE PLAY ================= */

.google-play-btn{
  position:absolute;
  left:270px;
  top:300px;
  width:200px;
  height:60px;
  background:#060606;
  border-radius:12px;
  display:flex;
  align-items:center;
  gap:14px;
  padding-left:14px;
}

.google-play-btn span{
  font-size:20px;
  font-weight:600;
}

.google-play-btn img{
  width:45px;
  height:45px;
}

/* ================= ANDROID ================= */

.android-circle{
  position:absolute;
  left:579px;
  top:305px;
  width:75px;
  height:67px;
  background:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.android-circle img{
  width:45px;
}

/* ================= WHITE CURVES ================= */

.white-curve{
  position:absolute;
  background:#fff;
  border-radius:355px 0 0 0;
  padding-left: 55px;
  padding-top: 350px;
}

.curve-big{
  width:382px;
  height:472px;
  left:683px;
  top:110px;
  transform:rotate(49.45deg);
  box-shadow:0 4px 31px 8px rgba(0,0,0,0.25);
}

.curve-mid{
  width:231px;
  height:237px;
  left:955px;
  top:210px;
  transform:rotate(40.51deg);
}

.curve-small{
  width:231px;
  height:237px;
  left:1236px;
  top:180px;
  box-shadow:0 4px 31px 8px rgba(0,0,0,0.25);
}

/* ================= IMAGES ================= */

.footer-dancers{
  position:absolute;
  left:845px;
 top: 200px;
  width:350px;
}

.footer-couple{
  position:absolute;
  right:-5px;
  bottom:0;
  width:250px;
}

/* Mobile Footer Optimization */
@media (max-width: 576px) {
  .white-curve {
    display: none !important;
  }

  .footer-dancers,
  .footer-couple {
    display: none !important;
  }
  
  .jsm-footer {
    padding: 25px 15px 20px !important;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #8b0000, #a52a2a) !important;
    height: auto !important;
    min-height: auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  
  .footer-logo-circle {
    position: static !important;
    margin: 0 auto 10px !important;
    display: block !important;
    width: 60px !important;
    height: 60px !important;
  }
  
  .footer-logo-circle img {
    width: 100% !important;
    height: 100% !important;
  }
  
  .footer-brand-title {
    position: static !important;
    font-size: 20px !important;
    text-align: center !important;
    margin: 0 0 3px !important;
    color: #fff !important;
    font-weight: 600 !important;
  }
  
  .footer-line.brand-line {
    position: static !important;
    margin: 5px auto 15px !important;
    width: 50px !important;
    height: 2px !important;
    background: #fff !important;
  }
  
  .footer-address {
    position: static !important;
    font-size: 12px !important;
    text-align: center !important;
    margin-bottom: 20px !important;
    line-height: 1.4 !important;
    color: #fff !important;
    width: 100% !important;
    max-width: 360px !important;
  }

  /* Vertical sections layout */
  .footer-heading {
    position: static !important;
    font-size: 15px !important;
    text-align: center !important;
    margin: 8px 0 5px !important;
    color: #fff !important;
    font-weight: 600 !important;
  }

  .footer-line {
    position: static !important;
    margin: 3px auto 12px !important;
    width: 40px !important;
    height: 1.5px !important;
    background: #fff !important;
  }

  .footer-text {
    position: static !important;
    font-size: 12px !important;
    text-align: center !important;
    margin: 0 0 18px !important;
    line-height: 1.5 !important;
    color: #fff !important;
  }
  
  .footer-text a {
    display: block !important;
    margin-bottom: 4px !important;
    color: #fff !important;
    text-decoration: none !important;
  }
  
  .footer-text a:hover {
    opacity: 0.8;
  }
  
  .follow-text,
  .app-text {
    position: static !important;
    text-align: center;
    display: block;
    margin: 18px 0 8px;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
  }
  
  .follow-icons {
    position: static !important;
    justify-content: center;
    margin: 0 0 18px !important;
    margin-left: 0 !important;
    gap: 12px;
    display: flex;
  }
  
  .social-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
  }
  
  .google-play-btn {
    position: static !important;
    margin: 12px auto 20px;
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 12px;
  }
  
  .google-play-btn img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }
  
  .footer-bottom-bar {
    position: static;
    height: 25px;
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
  }
  
  .footer-copy {
    position: static;
    text-align: center;
    font-size: 11px;
    padding: 8px 0;
    color: #fff;
    margin: 0;
  }
}

/* ================= BOTTOM BAR ================= */

.footer-bottom-bar{
  position:absolute;
  bottom:0;
  width:100%;
  height:40px;
  background:#820000;
}

.footer-copy{
  position:absolute;
  bottom:-5px;
  left:50%;
  transform:translateX(-50%);
  font-size:16px;
  font-weight:600;
}
.footer-brand-title,
.footer-heading.privacy,
.footer-heading.packages,
.footer-heading.contact{
  top: 18px;  
  font-size:28px; /* logo ke barabar */
}
.jsm-footer a{
    color: #fff;
    text-decoration: none;
}

.jsm-footer a:hover{
    text-decoration: underline;
}
/* slider track */
.groom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.bride-slider {
    display:flex;
    gap:26px;
    overflow-x:hidden;
    scroll-behavior:smooth;
}

.groom-section .bride-track{
    display: flex;
    gap: 28px;
    transition: transform .45s ease;
}
/* ================= CTA BUTTONS ================= */

.hero-actions{
    display:flex;
    gap:22px;
    margin-top:38px;
    flex-wrap:wrap;
}

.btn-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:16px 40px;
    border-radius:16px;
    font-weight:800;
    font-size:17px;
    text-decoration:none;
    position:relative;
    overflow:hidden;
    transition:.28s ease;
}

/* ---- Register (Gradient + glow) ---- */
.btn-register{
    color:#fff;
    background:linear-gradient(135deg,#f43f5e,#fb7185);
    box-shadow:0 18px 40px rgba(244,63,94,.45);
}

.btn-register::after{
    content:"";
    position:absolute;
    top:0;
    left:-40%;
    width:40%;
    height:100%;
    transform:skewX(-25deg);
    background:rgba(255,255,255,.35);
    transition:.35s;
}

.btn-register:hover::after{
    left:140%;
}

.btn-register:hover{
    transform:translateY(-3px) scale(1.02);
    box-shadow:0 26px 55px rgba(244,63,94,.55);
}

/* ---- Download (outline + soft card) ---- */
.btn-download{
    color:#e11d48;
    background:#fff;
    border:2px solid #fda4af;
    box-shadow:0 14px 30px rgba(244,63,94,.18);
}

.btn-download:hover{
    background:#f43f5e;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 24px 45px rgba(244,63,94,.35);
}

/* icons animation */
.btn-cta i{
    transition:.25s ease;
}

.btn-cta:hover i{
    transform:translateX(4px);
}
/* ================= JAIN LOADER ================= */
#page-loader {
    position: fixed;
    inset: 0;
    background: #0b0b0f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity .4s ease, visibility .4s ease;
}

#page-loader.hide {
    opacity: 0;
    visibility: hidden;
}

/* 5 Jain Colors */
.jain-loader {
    position: relative;
    width: 110px;
    height: 110px;
}

.jain-loader span {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 6px solid transparent;
    animation: spin 1.6s linear infinite;
}

.jain-loader span:nth-child(1) { border-top-color: #ffffff; }
.jain-loader span:nth-child(2) { border-right-color: #e11d48; animation-delay: .15s; }
.jain-loader span:nth-child(3) { border-bottom-color: #facc15; animation-delay: .3s; }
.jain-loader span:nth-child(4) { border-left-color: #22c55e; animation-delay: .45s; }
.jain-loader span:nth-child(5) { border-top-color: #2563eb; animation-delay: .6s; }

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

.loader-text {
    margin-top: 18px;
    color: #e5e7eb;
    letter-spacing: 2px;
    font-size: 14px;
}

/* ===== BLOG SECTION ===== */

.blog-section {
    padding: 70px 40px;
      background: #fff1f3;
    border-radius: 20px;
    margin-top: 60px;
}

.blog-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.blog-header .line {
    width: 120px;
    height: 3px;
    background: #e53935;
}

.blog-header h2 {
    font-size: 32px;
    font-weight: 700;
}

.blog-header h2 span {
    color: #e53935;
}

.blog-slider {
    position: relative;
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 0 60px;
}

.blog-viewport {
    overflow: hidden;
    width: 100%;
}

.blog-track {
    display: flex;
    gap: 25px;
    transition: transform 0.45s ease;
    width: max-content;
}

@media (max-width: 992px) {
    .blog-slider {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .blog-header h2 {
        font-size: 22px;
        white-space: nowrap;
    }

    .blog-card {
        min-width: 260px;
    }
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.blog-body {
    padding: 18px;
}

.blog-body h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-body p {
    font-size: 14px;
    color: #555;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.blog-footer span {
    font-size: 12px;
    color: #888;
}

.blog-footer a {
    border: 1px solid #e53935;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #e53935;
    text-decoration: none;
}

.blog-footer a:hover {
    background: #e53935;
    color: #fff;
}

.blog-dots {
    text-align: center;
    margin: 25px 0;
}

.blog-dots .dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
}

.blog-dots .active {
    background: #e53935;
}

.blog-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: #e53935;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.blog-prev {
    left: 10px;
}

.blog-next {
    right: 10px;
}

@media (max-width: 992px) {
    .blog-nav {
        display: none;
    }
}

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

.blog-view a {
    border: 2px solid #e53935;
    padding: 10px 35px;
    border-radius: 30px;
    color: #e53935;
    font-weight: 600;
    text-decoration: none;
}

.blog-view a:hover {
    background: #e53935;
    color: #fff;
}
/* ================= FAQ SECTION ================= */

.faq-section {
  padding: 100px 20px;
  background: #fff3f4;
}

/* ===== HEADING ===== */
.faq-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 45px;
  color: #111;
}

.faq-heading .highlight {
  color: #c10000;
}

.faq-heading .line {
  width: 90px;
  height: 3px;
  background: #c10000;
}

/* ===== CARD ===== */
.faq-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.10);
  padding: 20px 60px;
}

/* ===== SCROLL AREA ===== */
.faq-list {
  max-height: 540px;
  overflow-y: auto;
}

/* Hide scrollbar */
.faq-list::-webkit-scrollbar {
  width: 0;
}
.faq-list {
  scrollbar-width: none;
}

/* ===== ITEM ===== */
.faq-item {
  border-bottom: 1px solid #eeeeee;
}

.faq-item:last-child {
  border-bottom: none;
}

/* ===== QUESTION ===== */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 28px 0;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  color: #111;
}

/* ===== TOGGLE ===== */
.faq-toggle {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: #fff;
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
  background: #c10000;
  color: #fff;
  border-color: #c10000;
}

/* ===== ANSWER ===== */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease;
  font-size: 17px;
  color: #555;
  line-height: 1.9;
  padding-right: 80px;
}

/* SHOW ANSWER */
.faq-item.active .faq-answer {
  max-height: 600px;
  opacity: 1;
  padding-bottom: 26px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .faq-heading {
    font-size: 20px;
    white-space: nowrap;
  }

  .faq-wrapper {
    max-width: 100%;
    padding: 20px;
    border-radius: 16px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 15px;
    padding-right: 0;
  }
}

/* ===== HAPPY MARRIAGE HEADING (BLOG STYLE) ===== */
.happy-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #111;
}

.happy-header .highlight {
  color: #c10000;
}

.happy-header .line {
  width: 90px;
  height: 3px;
  background: #c10000;
}

/* ===== CONTAINER CENTER ===== */
.happy-container{
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== CARD WRAPPER ===== */
.happy-card{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  min-height: 420px;
}

/* ===== SLIDER WRAPPER (CENTER) ===== */
.slider-wrapper{
  width: 85%;
  position: relative;
  margin: 0 auto;
  padding: 10px 50px; /* space for buttons */
}

/* ===== VIDEO SLIDER ===== */
.video-slider{
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 12px;
  scrollbar-width: none;
}

/* hide scrollbar */
.video-slider::-webkit-scrollbar{
  display: none;
}

/* ===== EACH VIDEO SLIDE ===== */
.video-slide{
  min-width: calc(20% - 10px);  /* 👉 5 videos visible */
  height: 420px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.video-slide video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== OVERLAY TEXT ON VIDEO ===== */
/* ===== GLASS STYLE OVERLAY (REFERENCE LOOK) ===== */
.video-overlay{
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Couple name (clean white) */
.video-overlay h4{
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
  margin-bottom: -20px;
}

/* ===== GLASS VERIFY BADGE (EXACT LIKE IMAGE) ===== */
.verify-badge{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  background: rgba(255,255,255,0.15);   /* glass look */
  backdrop-filter: blur(8px);           /* frosted glass */
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  width: fit-content;
}

/* verify icon color */
.verify-badge i{
  color: #4ade80;   /* green check like reference */
  font-size: 13px;
}

/* ===== LEFT / RIGHT BUTTONS ===== */
.slider-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #f43f5e;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.3s;
}

.slider-btn:hover{
  transform: translateY(-50%) scale(1.05);
}

.left-btn{ left: 5px; }
.right-btn{ right: 5px; }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px){

  .slider-wrapper{
    width: 100%;
    padding: 10px 35px;
  }

  .video-slide{
    min-width: 85%;  /* Show only 1 video at a time on mobile */
    height: 450px;  /* Increased from 350px to 450px */
  }

  .happy-header{
    font-size: 20px;  /* Further reduced from 22px to 20px */
    gap: 6px;        /* Further reduced from 8px to 6px */
    flex-wrap: nowrap; /* Prevent wrapping to multiple lines */
    white-space: nowrap; /* Force single line */
    text-align: center;
    margin-bottom: 20px; /* Reduced from default 35px to 20px */
    display: flex !important; /* Ensure flex display */
    align-items: center !important; /* Ensure lines are visible */
    justify-content: center !important; /* Center alignment */
  }

  .happy-header h2 {
    margin: 0;
    line-height: 1.1; /* Even tighter line height */
  }

  /* More specific targeting for mobile lines */
  .happy-header span.line {
    width: 40px !important;  /* Increased from 30px to 40px for better visibility */
    height: 3px !important;  /* Increased from 2px to 3px for better visibility */
    flex-shrink: 0 !important; /* Prevent lines from shrinking */
    background: #c10000 !important; /* Ensure line color is visible */
    display: inline-block !important; /* Changed from block to inline-block */
    border-radius: 2px !important; /* Add slight rounded corners */
    opacity: 1 !important; /* Ensure full opacity */
    visibility: visible !important; /* Ensure visibility */
    min-width: 40px !important; /* Minimum width */
    min-height: 3px !important; /* Minimum height */
    content: '' !important; /* Ensure content */
  }

  .happy-header .line{
    width: 40px !important;  /* Increased from 30px to 40px for better visibility */
    height: 3px !important;  /* Increased from 2px to 3px for better visibility */
    flex-shrink: 0; /* Prevent lines from shrinking */
    background: #c10000 !important; /* Ensure line color is visible */
    display: inline-block !important; /* Changed from block to inline-block */
    border-radius: 2px; /* Add slight rounded corners */
    opacity: 1 !important; /* Ensure full opacity */
    visibility: visible !important; /* Ensure visibility */
  }

  /* Increase video card size specifically for mobile */
  .video-card {
    width: 100% !important;  /* Full width for single video */
    height: 100% !important; /* Full height */
    aspect-ratio: 9 / 16;
  }
}
/* ===== VIDEO PLAY PUSH BUTTON ===== */
.video-slide{
  position: relative;
}

/* floating center button */
.video-play-btn{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: 0.3s;
}

/* show button on hover */
.video-slide:hover .video-play-btn{
  opacity: 1;
}

/* slight glow */
.video-play-btn:hover{
  background: rgba(255,255,255,0.35);
  transform: translate(-50%, -50%) scale(1.05);
}
/* ===== CONTACT PAGE ===== */

.contact-page{
  background: #fff1f3;
  padding-bottom: 60px;
}

/* HERO HEADER */
.contact-hero{
  text-align: center;
  padding: 70px 20px 40px;
  background: #fff1f3;
}
/* ----- NEW BADGE ABOVE H1 ----- */
.badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 182, 193, 0.35); /* light pink low opacity */
  color: #c10000;
  padding: 8px 14px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 14px;
}

.badge i{
  color: #c10000;
}

/* ----- COLOR SPLIT IN H1 ----- */
.contact-hero h1{
  font-size: 56px;
  font-weight: 800;
  margin: 10px 0;
}

.connect{
  color: #111; /* black/very dark */
}

.team{
  color: #c10000; /* brand red */
  margin-left: 8px;
}

.contact-hero h1{
  font-size: 38px;
  color: #111;
}

.contact-hero p{
  color: #555;
}

/* MAIN LAYOUT */
.contact-container{
  max-width: 1100px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  padding: 0 20px;
}

/* FORM CARD */
.form-card{
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.form-card h2{
  margin-bottom: 20px;
  color: #c10000;
}

.input-row{
  display: flex;
  gap: 15px;
}

form input,
form textarea{
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.send-btn{
  margin-top: 10px;
  background: #c10000;
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
}

/* RIGHT INFO BOXES */
.contact-info{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-box{
  background: white;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  text-align: center;
}

.info-box i{
  font-size: 28px;
  color: #c10000;
  margin-bottom: 8px;
}

/* MAP */
.map-section{
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.contact-page{
 background: #fff1f3;   /* <-- yahi white area change karega */
  padding-bottom: 60px;
}
/* ===== MOBILE ===== */
@media (max-width: 768px){
  .contact-container{
    grid-template-columns: 1fr;
  }

  .input-row{
    flex-direction: column;
  }
}
/* ===== SCROLL ANIMATION ===== */
.animate-card{
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease-out;
}

/* ===== MOBILE OVERRIDE FOR HAPPY HEADER LINES ===== */
@media (max-width: 768px) {
  .happy-header span.line,
  .happy-header .line {
    width: 40px !important;
    height: 3px !important;
    background: #c10000 !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    border-radius: 2px !important;
    min-width: 40px !important;
    min-height: 3px !important;
  }
}

.animate-card.show{
  opacity: 1;
  transform: translateY(0);
}

/* stagger delay */
.info-box:nth-child(1){ transition-delay: 0.1s; }
.info-box:nth-child(2){ transition-delay: 0.2s; }
.info-box:nth-child(3){ transition-delay: 0.3s; }

/* ===== INPUT FOCUS (NO BORDER) ===== */
form input:focus,
form textarea:focus{
  outline: none;
  border: none;
  box-shadow: 0 0 10px rgba(193, 0, 0, 0.2);
  background: #fff5f7;
}
