/* ===== CSS Variables ===== */
:root {
    --primary-gradient: linear-gradient(135deg, #ff6b9d 0%, #c44569 50%, #f8b500 100%);
    --secondary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --accent-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gold-gradient: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ff6b35 100%);
    --rose-gradient: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    --text-gradient: linear-gradient(135deg, #ffffff 0%, #f8f8ff 50%, #fff8dc 100%);
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    /* overflow-x: hidden; */
    /* background: #0a0a0a; */
    /* position: relative; */
    line-height: 1.6;
}

/* Navbar scroll effect styles */
/* Navbar scroll effect styles with glassmorphism */
.navbar {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: transparent;
    border: none;
}

.navbar-scrolled {
    background:  #ba8f54;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background-image: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
}

.navbar-scrolled.dark-theme {
    background: rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.721),
        0 4px 16px rgba(0, 0, 0, 0.642),
        inset 0 1px 0 rgba(255, 255, 255, 0.644);
    
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    
    background-image: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
}

.navbar-scrolled.premium-glass {
    background: rgba(255, 255, 255, 0.596) !important;
    backdrop-filter: blur(30px) saturate(200%) brightness(120%);
    -webkit-backdrop-filter: blur(30px) saturate(200%) brightness(120%);
    
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.301),
        0 6px 20px rgba(0, 0, 0, 0.253),
        0 2px 8px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.582),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    
    border: 1px solid rgb(255, 255, 255);
    border-radius: 0 0 20px 20px;
}
.navbar * {
    transition: all 0.3s ease;
}

@keyframes glassSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-scrolled {
    animation: glassSlideIn 0.4s ease-out;
}
.navbar-scrolled.dark-theme {
    background-color: rgba(0, 0, 0, 0.9) !important;
}

.navbar * {
    transition: color 0.3s ease;
}

/* ===== Banner Section ===== */
.banner-section {
    position: relative;
    min-height: 100vh;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 181, 107, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* ===== Carousel Base ===== */
.carousel {
    height: 100vh;
    position: relative;
    z-index: 2;
    border-radius: 0;
    overflow: hidden;
}

.carousel-inner {
    height: 100%;
    border-radius: 0;
}

.carousel-item {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.8s ease-out;
}

.carousel-item.active .carousel-bg-img {
    transform: scale(1.05);
}

/* ===== Carousel Overlays ===== */
.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.carousel-item.active::after {
    opacity: 1;
}
/* ===== CTA Buttons ===== */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

.btn-primary-custom:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    text-decoration: none;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s ease;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.btn-secondary-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    text-decoration: none;
}

/* ===== Navigation Controls ===== */
.carousel-control-prev,
.carousel-control-next {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
    z-index: 5;
}

.carousel-control-prev {
    left: 40px;
}

.carousel-control-next {
    right: 40px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 28px;
    height: 28px;
    background-size: 28px 28px;
    filter: brightness(0) invert(1);
}

/* ===== Custom Indicators ===== */
.carousel-indicators {
    bottom: 40px;
    margin-bottom: 0;
    z-index: 5;
}

.carousel-indicators [data-bs-target] {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 8px;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    cursor: pointer;
}

.carousel-indicators .active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
}

/* ===== Floating Hearts Animation ===== */
.floating-hearts {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 3;
}

.heart {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-size: 2rem;
    animation: floatUp 8s infinite linear;
}

.heart:nth-child(1) { left: 10%; animation-delay: 0s; }
.heart:nth-child(2) { left: 20%; animation-delay: 2s; }
.heart:nth-child(3) { left: 30%; animation-delay: 4s; }
.heart:nth-child(4) { left: 70%; animation-delay: 1s; }
.heart:nth-child(5) { left: 80%; animation-delay: 3s; }
.heart:nth-child(6) { left: 90%; animation-delay: 5s; }

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ===== Particles Background ===== */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: particleFloat 10s infinite linear;
}

.particle:nth-child(1) { width: 4px; height: 4px; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { width: 6px; height: 6px; left: 25%; animation-delay: 2s; }
.particle:nth-child(3) { width: 3px; height: 3px; left: 40%; animation-delay: 4s; }
.particle:nth-child(4) { width: 5px; height: 5px; left: 60%; animation-delay: 1s; }
.particle:nth-child(5) { width: 4px; height: 4px; left: 75%; animation-delay: 3s; }
.particle:nth-child(6) { width: 7px; height: 7px; left: 90%; animation-delay: 5s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* ===== Slide Up Animation ===== */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Progress Bar ===== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b9d, #c44569, #f8b500);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .slide-content {
        max-width: 700px;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        height: 100vh;
    }
    
    .slide-content {
        padding: 1rem;
        max-width: 90%;
    }
    
    .slide-content h1 {
        font-size: clamp(2.5rem, 7vw, 4rem);
        margin-bottom: 1rem;
    }
    
    .slide-content h2 {
        font-size: clamp(1rem, 4vw, 1.5rem);
        margin-bottom: 1.5rem;
    }
    
    .slide-content p {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 20px;
    }
    
    .carousel-control-next {
        right: 20px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
        background-size: 20px 20px;
    }
    
    .heart {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .slide-content h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .slide-content h2 {
        font-size: 1.2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
    
    .carousel-indicators {
        bottom: 20px;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 12px;
        height: 12px;
        margin: 0 5px;
    }
}

/* ===== Performance Optimizations ===== */
.carousel-item {
    will-change: transform;
}

.carousel-bg-img {
    will-change: transform;
}

.btn-primary-custom,
.btn-secondary-custom {
    will-change: transform;
}

.carousel-control-prev,
.carousel-control-next {
    will-change: transform;
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
    .carousel-item,
    .carousel-bg-img,
    .btn-primary-custom,
    .btn-secondary-custom,
    .carousel-control-prev,
    .carousel-control-next,
    .heart,
    .particle {
        animation: none;
        transition: none;
    }
}

.top-banner-top{
    position: relative;
    width: 100%;
    height: 80vh;
}
.topbar{
    position: absolute;
    padding: 10px 0px;
    left: 0;
    width: 100%;
    /* height: 60px; */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
@media screen and (max-width: 768px) {
    .topbar{
        padding: 0px 0px;
    }
    
}
.navbar-brand img{
    width: 200px;
}
.nav-link{
    color: #ffffff!important;
    font-weight: 500;
    font-size: 1rem;
    margin: 0 15px;
    transition: color 0.3s ease;
}
.nav-link:hover{
    color: #f8b500 !important;
}
.search-section{
    position: absolute;
    top:200px;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 500;
    align-items: center;
    justify-content: center;
}

/* ----------------- Connect with matches the way you like  -------------------- */
.matches-section {
            padding: 10rem 0px 0px 6rem;
            position: relative;
            overflow: hidden;
        }

        .matches-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="hearts" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,6 C10,3 7,1 5,3 C3,1 0,3 0,6 C0,10 5,15 10,20 C15,15 20,10 20,6 C20,3 17,1 15,3 C13,1 10,3 10,6 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>') repeat;
            animation: float 20s ease-in-out infinite;
            opacity: 0.1;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }
        .matches-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .matches-content {
            position: relative;
        }

        .match-heading {
            font-size: clamp(1.8rem, 2vw, 4rem);
            font-weight: 800;
            text-align: center;
            color: white;
            line-height: 1.1;
            margin-bottom: 2rem;
            position: relative;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        @keyframes glow {
            from { box-shadow: 0 0 10px #ffd700; }
            to { box-shadow: 0 0 20px #ffd700, 0 0 30px #ffd700; }
        }

        .match-text {
            border-radius: 20px;
            padding: 2.5rem;
            transform: translateY(20px);
            opacity: 0;
            animation: slideUp 1s ease-out 0.5s forwards;
        }

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

        .match-text p {
            color: rgba(36, 31, 31, 0.95);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-weight: 400;
        }

        .match-text p:last-child {
            margin-bottom: 0;
        }

        .matches-visual {
            position: relative;
            perspective: 1000px;
        }

        .image-container {
            position: relative;
            transform-style: preserve-3d;
            animation: rotateY 6s ease-in-out infinite;
        }

        @keyframes rotateY {
            0%, 100% { transform: rotateY(0deg) rotateX(0deg); }
            25% { transform: rotateY(5deg) rotateX(2deg); }
            75% { transform: rotateY(-5deg) rotateX(-2deg); }
        }

        .main-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 25px;
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
        }

        .main-image:hover {
            transform: scale(1.05) rotateY(5deg);
            box-shadow: 
                0 35px 70px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.2);
        }

        .floating-hearts {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
            border-radius: 25px;
        }

        .heart {
            position: absolute;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.5rem;
            animation: floatHeart 4s ease-in-out infinite;
        }

        .heart:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
        .heart:nth-child(2) { top: 60%; right: 20%; animation-delay: 1s; }
        .heart:nth-child(3) { top: 80%; left: 50%; animation-delay: 2s; }

        @keyframes floatHeart {
            0%, 100% { 
                transform: translateY(0px) scale(1); 
                opacity: 0.6; 
            }
            50% { 
                transform: translateY(-15px) scale(1.2); 
                opacity: 1; 
            }
        }

        .stats-overlay {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 1rem;
            display: flex;
            justify-content: space-around;
            transform: translateY(100px);
            opacity: 0;
            animation: slideUpStats 1s ease-out 1.2s forwards;
        }

        @keyframes slideUpStats {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

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

        .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            display: block;
            color: #ffd700;
        }

        .stat-label {
            font-size: 0.8rem;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .connect-button {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #ffd700, #ffed4e);
            color: #333;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
        }
        @media (max-width: 768px) {
            .matches-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .match-text {
                padding: 2rem;
            }
            .main-image {
                height: 300px;
            }
        }
         /* -------------work section start here----------------------- */

         .how-it-works-section {
            padding: 3rem 0;
            position: relative;
             background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 25%, #ee5a6f 75%, #ff6b6b 100%); 
            overflow: hidden;
        }

        .how-it-works-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="dots" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
            animation: drift 15s linear infinite;
        }

        @keyframes drift {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(-100px) translateY(-100px); }
        }
        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            position: relative;
        }

        .work-step {
            background: rgb(158, 154, 154);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            padding: 3rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
            cursor: pointer;
            transform: translateY(50px);
            opacity: 0;
            animation: slideUpStagger 0.8s ease-out forwards;
        }

        .work-step:nth-child(1) { animation-delay: 0.2s; }
        .work-step:nth-child(2) { animation-delay: 0.4s; }
        .work-step:nth-child(3) { animation-delay: 0.6s; }

        @keyframes slideUpStagger {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .work-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.459) 0%, rgba(255,255,255,0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-step:hover::before {
            opacity: 1;
        }

        .work-step:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .step-number {
            position: absolute;
            top: -15px;
            right: 30px;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: white;
            font-size: 1.1rem;
            box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4);
            animation: pulse 2s ease-in-out infinite;
        }

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

        .step-icon-container {
            position: relative;
            margin-bottom: 2rem;
        }

        .step-icon {
            font-size: 4rem;
            background: linear-gradient(135deg, #ffd700, #ffed4e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            display: block;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .work-step:hover .step-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .icon-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .work-step:hover .icon-glow {
            opacity: 1;
        }

        .work-step h3 {
            font-size: 1rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .work-step p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            line-height: 1.6;
            font-weight: 300;
        }

        .connecting-line {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 20%, rgba(255,255,255,0.3) 80%, transparent 100%);
            z-index: 1;
            animation: flow 3s ease-in-out infinite;
        }

        @keyframes flow {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.7; }
        }

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

        .floating-shape {
            position: absolute;
            opacity: 0.1;
            animation: float 8s ease-in-out infinite;
        }

        .floating-shape:nth-child(1) {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-shape:nth-child(2) {
            top: 20%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-shape:nth-child(3) {
            bottom: 15%;
            left: 20%;
            animation-delay: 4s;
        }

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

        .cta-container {
            text-align: center;
            margin-top: 4rem;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
            position: relative;
            overflow: hidden;
        }

        .cta-button::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 ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
        }

        @media (max-width: 768px) {
            .steps-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .work-step {
                padding: 2rem 1.5rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .connecting-line {
                display: none;
            }
        }

        @media (min-width: 769px) {
            .steps-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* ------------------- Success Stories / Testimonials -------------------------- */
        .success-stories-section {
            padding: 4rem 0;
            position: relative;
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            overflow: hidden;
        }

        .success-stories-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="love-pattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25,15 C25,8 18,3 12,8 C6,3 -1,8 -1,15 C-1,25 12,40 25,50 C38,40 51,25 51,15 C51,8 44,3 38,8 C32,3 25,8 25,15 Z" fill="rgba(255,182,193,0.1)" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23love-pattern)"/></svg>') repeat;
            animation: loveFloat 25s linear infinite;
        }

        @keyframes loveFloat {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(-50px) translateY(-50px); }
        }
        .section-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .section-title {
            font-size: clamp(1.8rem, 2vw, 4rem);
            font-weight: 800 !important;
            background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            position: relative;
        }
        .stats-bar {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 2rem;
        }

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

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #ff6b6b;
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: rgba(0, 0, 0, 0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2.5rem;
            margin-bottom: 3rem;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 25px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
            cursor: pointer;
            transform: translateY(50px);
            opacity: 0;
            animation: slideUpTestimonial 0.8s ease-out forwards;
        }

        .testimonial-card:nth-child(1) { animation-delay: 0.2s; }
        .testimonial-card:nth-child(2) { animation-delay: 0.4s; }
        .testimonial-card:nth-child(3) { animation-delay: 0.6s; }

        @keyframes slideUpTestimonial {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 182, 193, 0.1) 0%, rgba(255, 218, 185, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .testimonial-card:hover::before {
            opacity: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }

        .couple-photos {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
            position: relative;
        }

        .couple-photo {
            width: 80px !important;
            height: 80px;
            border-radius: 50%;
            border: 4px solid white;
            object-fit: cover;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            position: relative;
            transition: all 0.3s ease;
        }

        .couple-photo:first-child {
            margin-right: -10px;
            z-index: 2;
        }

        .couple-photo:last-child {
            margin-left: -10px;
            z-index: 1;
        }

        .testimonial-card:hover .couple-photo:first-child {
            transform: translateX(-5px) scale(1.1);
        }

        .testimonial-card:hover .couple-photo:last-child {
            transform: translateX(5px) scale(1.1);
        }

        .heart-connector {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.2rem;
            color: #ff6b6b;
            background: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
            z-index: 3;
            animation: heartbeat 2s ease-in-out infinite;
        }

        @keyframes heartbeat {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.2); }
        }

        .couple-names {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .couple-names h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .couple-details {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .couple-detail {
            background: rgba(255, 107, 107, 0.1);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            color: #ff6b6b;
            font-weight: 500;
        }

        .quote-icon {
            font-size: 2rem;
            color: #ff6b6b;
            opacity: 0.3;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #444;
            font-style: italic;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .testimonial-text::before,
        .testimonial-text::after {
            content: '"';
            font-size: 3rem;
            color: #ff6b6b;
            opacity: 0.2;
            position: absolute;
            font-family: Georgia, serif;
        }

        .testimonial-text::before {
            top: -10px;
            left: -10px;
        }

        .testimonial-text::after {
            bottom: -30px;
            right: -10px;
        }

        .relationship-timeline {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            background: rgba(255, 107, 107, 0.05);
            border-radius: 15px;
            margin-top: 1.5rem;
        }

        .timeline-item {
            text-align: center;
            flex: 1;
        }

        .timeline-icon {
            font-size: 1.2rem;
            color: #ff6b6b;
        }

        .timeline-text {
            font-size: 0.8rem;
            color: #666;
            margin-top: 0.3rem;
        }
        .cta-title {
            font-size: 2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1rem;
        }

        .cta-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2rem;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
            color: white;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
            position: relative;
            overflow: hidden;
        }

        .cta-button::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 ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
        }

        @media (max-width: 768px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .testimonial-card {
                padding: 2rem;
            }

            .stats-bar {
                gap: 2rem;
            }

            .couple-details {
                flex-direction: column;
                gap: 0.5rem;
            }

            .relationship-timeline {
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* ----------------- Why Choose Us / Features  --------------------------*/
        .features-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #f9ca24);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.25);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
        }

        .feature-icon i {
            font-size: 2rem;
            color: white;
        }

        .feature-title {
            font-size: 1rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }

        .feature-card:hover .feature-title {
            color: #667eea;
        }

        .feature-description {
            color: #666;
            line-height: 1.6;
            font-size: 15px;
        }

        .stats-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 10px;
            padding: 20px;
            background: rgba(255,255,255,0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

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

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            display: block;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .feature-card {
                padding: 30px 20px;
            }
            
            .stats-section {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .cta-section {
            text-align: center;
            margin-top: -16px;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
            color: white;
            padding: 9px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            background: linear-gradient(135deg, #140b5a, #ff6b6b);
        }


        /* -----------------------footer section start here-------------------------------- */

        .footer {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            margin-top: auto;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: #ff69b4;
            font-size: 20px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer ul {
            list-style: none;
        }

        .footer ul li {
            margin-bottom: 12px;
        }

        .footer ul li a {
            color: #e8eaed;
            text-decoration: none ;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #ff69b4;
        }

        .footer-section p {
            color: #e8eaed;
            line-height: 1.6;
            font-size: 14px;
            margin-bottom: 15px;
        }

          .footer  .contact-info {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

          .footer  .contact-info i {
            width: 20px;
            margin-right: 10px;
            color: #ff69b4;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: #ff69b4;
            transform: translateY(-2px);
        }

        .app-download {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .app-download img {
            height: 45px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .app-download img:hover {
            transform: scale(1.05);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom p {
            color: #b8bcc8;
            font-size: 14px;
        }

        .footer-links {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .footer-bottom a {
            color: #e8eaed;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: #ff69b4;
        }

        .newsletter {
            margin-top: 20px;
        }

        .newsletter-form {
            display: flex;
            margin-top: 15px;
            max-width: 300px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 25px 0 0 25px;
            outline: none;
            font-size: 14px;
        }

        .newsletter-form button {
            padding: 12px 20px;
            background-color: #ff69b4;
            color: white;
            border: none;
            border-radius: 0 25px 25px 0;
            cursor: pointer;
            font-size: 14px;
            transition: background-color 0.3s ease;
        }

        .newsletter-form button:hover {
            background-color: #e55aa0;
        }

        .stats {
            display: flex;
            gap: 30px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

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

        .stat-number {
            font-size: 24px;
            font-weight: bold;
            color: #ff69b4;
        }

        .stat-label {
            font-size: 12px;
            color: #b8bcc8;
            margin-top: 5px;
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-links {
                justify-content: center;
            }
            
            .stats {
                justify-content: center;
            }
        }

        /* ---------------  cta section  ------------ */
    .cta-section {
      border-radius: 0;
      overflow: hidden;
    }

.cta-section h2 {
    letter-spacing: -0.5px;
}

.cta-section .btn-primary {
    background-color: #ff6b35;
    border: none;
}

.cta-section .btn-primary:hover {
    background-color: #ff3d00;
}
/* ----------login section start here------------- */
.login-container {
            max-width: 400px;
            margin: 50px auto;
            padding: 40px 30px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .logo {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ff6b6b, #ff5252);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: white;
            font-size: 28px;
            font-weight: bold;
        }
        
        .welcome-text {
            color: #6c757d;
            font-size: 24px;
            font-weight: 400;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .form-label {
            color: #6c757d;
            font-weight: 400;
            margin-bottom: 8px;
        }
        
        .form-control {
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            padding: 12px 16px;
            font-size: 16px;
            height: auto;
            background-color: #fff;
        }
        
        .form-control:focus {
            border-color: #20c997;
            box-shadow: 0 0 0 0.2rem rgba(32, 201, 151, 0.25);
        }
        
        .form-control::placeholder {
            color: #adb5bd;
        }
        
        .form-check {
            margin: 20px 0;
        }
        
        .form-check-input:checked {
            background-color: #20c997;
            border-color: #20c997;
        }
        
        .form-check-label {
            color: #6c757d;
            font-size: 14px;
        }
        
        .info-icon {
            color: #6c757d;
            margin-left: 5px;
            font-size: 12px;
        }
        
        .forgot-link {
            color: #20c997;
            text-decoration: none;
            font-size: 14px;
            float: right;
        }
        
        .forgot-link:hover {
            color: #1ba882;
            text-decoration: underline;
        }
        
        .btn-login {
            background-color: #20c997;
            border: none;
            padding: 12px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 4px;
            width: 100%;
        }
        
        .btn-login:hover {
            background-color: #1ba882;
        }
        
        .or-divider {
            text-align: center;
            color: #adb5bd;
            margin: 20px 0;
            font-size: 14px;
        }
        
        .btn-otp {
            background-color: #20c997;
            border: none;
            padding: 12px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 4px;
            width: 100%;
            margin-bottom: 30px;
        }
        
        .btn-otp:hover {
            background-color: #1ba882;
        }
        
        .signup-text {
            text-align: center;
            color: #6c757d;
            font-size: 14px;
        }
        
        .signup-link {
            color: #6c757d;
            text-decoration: none;
            font-weight: 500;
        }
        
        .signup-link:hover {
            color: #495057;
            text-decoration: underline;
        }
        
        .clearfix::after {
            content: "";
            display: table;
            clear: both;
        }
        /*  */

        
        .form-container {
            max-width: 500px;
            margin: 0 auto;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            border: 1px solid #e9ecef;
            position: relative;
            padding: 40px 35px;
        }
        
        .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            color: #adb5bd;
            cursor: pointer;
            padding: 0;
        }
        
        .close-btn:hover {
            color: #6c757d;
        }
        .dob-row {
            display: flex;
            gap: 15px;
        }
        
        .dob-row .form-select {
            flex: 1;
        }
        
        .form-title {
            color: #6c757d;
            font-size: 22px;
            font-weight: 400;
            text-align: center;
            margin-bottom: 35px;
            line-height: 1.4;
        }
        
        .form-label {
            color: #6c757d;
            font-weight: 400;
            margin-bottom: 8px;
            font-size: 15px;
        }
        
        .form-control, .form-select {
            border: 1px solid #d1d5db;
            border-radius: 4px;
            padding: 12px 16px;
            font-size: 16px;
            height: auto;
            background-color: #fff;
            color: #495057;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: #20c997;
            box-shadow: 0 0 0 0.2rem rgba(32, 201, 151, 0.25);
        }
        
        .form-control::placeholder {
            color: #adb5bd;
            font-size: 16px;
        }
        
        .form-select {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
        }
        
        .name-row {
            display: flex;
            gap: 15px;
        }
        
        .name-row .form-control {
            flex: 1;
        }
        
        .gender-options {
            display: flex;
            gap: 30px;
            /* margin-top: 10px; */
        }
        
        .form-check {
            display: flex;
            align-items: center;
        }
        
        .form-check-input {
            margin-right: 8px;
            margin-top: 0;
        }
        
        .form-check-input:checked {
            background-color: #20c997;
            border-color: #20c997;
        }
        
        .form-check-label {
            color: #6c757d;
            font-size: 16px;
            margin-bottom: 0;
        }
        
        .info-icon {
            color: #adb5bd;
            margin-left: 8px;
            font-size: 14px;
            cursor: help;
        }
        
        .community-label {
            display: flex;
            align-items: center;
        }
        
        .btn-next {
            background-color: #20c997;
            border: none;
            padding: 15px;
            font-size: 18px;
            font-weight: 500;
            border-radius: 4px;
            width: 100%;
            margin: 5px 0 5px;
            color: white;
        }
        
        .btn-next:hover {
            background-color: #1ba882;
        }
        
        .login-text {
            text-align: center;
            color: #6c757d;
            font-size: 16px;
        }
        
        .login-link {
            color: #20c997;
            text-decoration: none;
            font-weight: 500;
        }
        
        .login-link:hover {
            color: #1ba882;
            text-decoration: underline;
        }
        
        .mb-4 {
            margin-bottom: 1.5rem;
        }
        
        .mb-3 {
            margin-bottom: 1rem;
        }


        /*------------------------------- scroll to top -------------------------------- */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #1e3a8a 0%, #ec4899 100%);
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
            z-index: 1000;
        }
        .scroll-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
        /* --------------- download app section   -------------- */
        .bg-decoration {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            z-index: 0;
        }
        
        .bg-decoration:nth-child(1) {
            width: 120px;
            height: 120px;
            background: #8b5cf6;
            top: 10%;
            left: 5%;
        }
        
        .bg-decoration:nth-child(2) {
            width: 80px;
            height: 80px;
            background: #06b6d4;
            top: 20%;
            right: 15%;
        }
        
        .bg-decoration:nth-child(3) {
            width: 100px;
            height: 100px;
            background: #f59e0b;
            bottom: 30%;
            left: 10%;
        }
        
        .bg-decoration:nth-child(4) {
            width: 60px;
            height: 60px;
            background: #ec4899;
            bottom: 20%;
            right: 25%;
        }

        .main-section {
            position: relative;
            z-index: 2;
            padding: 80px 0;
            background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
        }
        .section-description {
            font-size: 1.1rem;
            color: #64748b;
            line-height: 1.8;
            margin-bottom: 3rem;
        }

        .download-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .download-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .download-btn.android {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
        }
        .download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            color: white;
        }

        .download-btn i {
            font-size: 1.5rem;
        }
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }  
            .download-buttons {
                justify-content: center;
            }
        }