:root {
    --main-color: #800000;
    --gold-color: #d4af37;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    overflow-x: hidden;
}

/* ✅ Mobile Header: Bigger Logo + Left Corner Alignment + Clean Text */
@media (max-width: 912px) {
    .top-header {
        padding: 4px 4px !important;
        /* Slightly reduced padding to bring logo near edge */
        background: #fff !important;
        border-bottom: 1px solid #ddd !important;
    }

    /* ✅ Maintain single-line flexible header */
    .top-header .d-flex.flex-wrap.justify-content-between.align-items-center {
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 8px !important;
    }

    /* ✅ Left side (logo + text) */
    .top-header .d-flex.align-items-center.flex-shrink-0 {
        flex: 1 1 auto !important;
        display: flex !important;
        align-items: center !important;
        gap: 0px !important;
        overflow: hidden !important;
        min-width: 0 !important;
    }



    /* ✅ Text beside logo */
    .top-header .ms-2 {
        flex: 1 1 auto !important;
        overflow: visible !important;
        white-space: normal !important;
        text-align: left !important;
        line-height: 1.2 !important;
        margin-left: 4px !important;
        /* Add tiny gap between logo & text */
    }

    /* ✅ First line — red */
    .top-header .ms-2 p:first-child {
        font-size: 9px !important;
        margin-bottom: 0 !important;
        line-height: 1.2 !important;
        color: #800000 !important;
        font-weight: 600 !important;
    }

    /* ✅ Second line — bold black */
    .top-header .ms-2 p:last-child {
        font-size: 9px !important;
        margin-bottom: 0 !important;
        line-height: 1.2 !important;
        color: #000 !important;
        font-weight: 700 !important;
    }

    /* ✅ Right section (login + support) */
    .d-flex.align-items-center.gap-3.flex-wrap.justify-content-end {
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 6px !important;
        flex-wrap: nowrap !important;
    }

    /* ✅ Login button */
    .mobile-login-btn {
        display: inline-block !important;
        background: #800000 !important;
        color: #fff !important;
        border: none !important;
        border-radius: 4px !important;
        font-size: 11px !important;
        padding: 5px 10px !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
    }



    /* ✅ Support icon next to login */
    .support-icon {
        display: inline-flex !important;
        align-items: center !important;
        gap: 3px !important;
        flex-shrink: 0 !important;
    }

    .support-icon a {
        font-size: 11px !important;
        font-weight: 600 !important;
        color: #800000 !important;
        text-decoration: none !important;
        display: flex !important;
        align-items: center !important;
        white-space: nowrap !important;
    }

    .support-icon i {
        font-size: 12px !important;
    }
}

/* 🌐 Desktop view */
.brand-logo {
    height: 100px;
    /* फक्त logo image मोठं */
    object-fit: contain;
    margin-left: 0;
    margin-bottom: 2px;
    transform: scale(1.2);
    /* logo visually 20% मोठा होईल */
    transform-origin: center;
    /* logo मधून scale होईल */
}

/* 📱 Mobile view */
@media (max-width: 768px) {
    .brand-logo {
        height: 90px;
        /* mobile साठी छोटं */
        width: auto;
        object-fit: contain;
        flex-shrink: 0;
        margin-left: -28px;
        transform: scale(1);
        /* mobile वर normal ठेवले */
    }
}

@media (max-width: 768px) {

    /* login form header खाली dropdown सारखा दिसेल */
    .login-area {
        position: absolute;
        top: 100%;
        right: 10px;
        background: #fff;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        width: 90%;
        max-width: 320px;
        z-index: 9999;
    }

    .login-area input {
        width: 100% !important;
    }

    .login-area .btn {
        width: 100%;
    }

    /* mobile वर login button दिसेल */
    .mobile-login-btn {
        background: #fff;
        color: #800000;
        font-weight: 600;
        border: 1px solid #800000;
        border-radius: 5px;
    }

    /* login form gap नीट राहावा */
    .login-inputs {
        flex-direction: column !important;
        gap: 10px !important;
    }
}

@media (max-width: 768px) {
    .login-area {
        max-width: 260px;
        /* 👈 इथे कमी-जास्त करून बघ, default 320px होता */
        padding: 10px;
        /* padding कमी केली */
    }

    .login-area input,
    .login-area button {
        height: 32px;
        /* input आणि button उंची कमी केली */
        font-size: 13px;
        /* text लहान दिसेल */
    }

    .login-area .form-check-label,
    .login-area a {
        font-size: 12px !important;
        /* लहान font */
    }

    .login-area .btn {
        padding: 5px 8px !important;
    }
}

@media (max-width: 768px) {

    /* Checkbox size कमी करा */
    .login-area .form-check-input {
        width: 14px !important;
        /* 👈 default ~20px असतो */
        height: 14px !important;
        margin-top: 2px;
        /* label align राहतो */
    }

    /* Label text लहान करा */
    .login-area .form-check-label {
        font-size: 12px !important;
        line-height: 1.2;
        margin-left: 3px;
        /* checkbox आणि text मध्ये थोडा gap */
    }
}

/* header end */
/* HERO SECTION */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-item img {
    height: 100vh;
    object-fit: cover;
    width: 100%;
    filter: brightness(0.55);
}

/* FORM OVERLAY */
.form-overlay {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 400px;
    width: 80%;
}

.form-container {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--main-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.form-container h4 {
    color: var(--main-color);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.btn-register {
    background-color: var(--main-color);
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: 5px;
    width: 100%;
    padding: 10px;
    transition: 0.3s;
}

.btn-register:hover {
    background-color: var(--gold-color);
    color: #fff;
}

.footer-logo {
    height: 150px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 992px) {
    .footer-logo {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .footer-logo {
        height: 90px;
    }
}

/* Social icons positioning */
.footer-top .social-icons {
    position: absolute;
    right: 10%;
    top: 45%;
    transform: translateY(-50%);
    display: flex;
    gap: 10px;
}

.footer-top {
    position: relative;
}

/* ✅ Proper filled circular icons */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: var(--main-color);
    /* filled background */
    border-radius: 50%;
    color: #fff;
    /* white icons */
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* ✅ Hover: gold color highlight */
.social-link:hover {
    background-color: var(--gold-color);
    color: var(--main-color);
}

/* Responsive reset for mobile */
@media (max-width: 991px) {
    .footer-top .social-icons {
        position: static;
        justify-content: center;
        margin-top: 15px;
        transform: none;

    }
}

/* Store buttons */
.store-btn {
    height: 45px;
    transition: transform 0.3s ease;
}

.store-btn:hover {
    transform: scale(1.05);
}

.footer-link {
    color: inherit;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--main-color);
}

/* 📱 Mobile Footer Alignment Fix */
@media (max-width: 768px) {
    footer {
        text-align: center;
    }

    .footer-logo {
        display: block;
        margin: 0 auto 15px;
        height: 90px;
    }

    .social-icons {
        justify-content: center !important;
        margin-bottom: 15px;
    }

    .store-btn {
        display: block;
        margin: 10px auto;
    }

    .footer-links,
    .footer-info {
        text-align: center;
    }

    .footer-links a,
    .footer-info a {
        display: inline-block;
        margin: 5px 10px;
    }
}


/* ✅ MOBILE RESPONSIVE FIX */
@media (max-width: 991px) {
    .hero-section {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .carousel-container {
        position: relative;
        height: 250px;
        width: 100%;
    }

    .carousel-item img {
        height: 250px;
        object-fit: cover;
    }

    /* Form goes BELOW slider on mobile */
    .form-overlay {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        z-index: 1;
        margin-top: 20px;
        margin-bottom: 30px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .form-container {
        background: #fff;
        border: 1px solid #ddd;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        width: 90%;
        max-width: 450px;
        padding: 25px;
    }

    .login-area {
        width: 100%;
    }

    .login-inputs {
        flex-direction: column;
        align-items: stretch;
    }

    .login-inputs input,
    .btn-login {
        width: 100%;
    }

    .login-options {
        display: flex;
        justify-content: space-between;
        font-size: 13px;
    }
}

.choose-card {
    transition: all 0.4s ease;
    background: #fff;
}

.choose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--gold-color);
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--main-color), var(--gold-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(128, 0, 0, 0.3);
}

.icon-circle i {
    transition: transform 0.3s ease;
}

.choose-card:hover .icon-circle i {
    transform: scale(1.2);
}

.success-stories {
    background: url('../img/bg-wed.jpg') center center/cover no-repeat;
    position: relative;
    color: #fff;
    min-height: 400px;
    /* ✅ Add this */
}


.success-stories .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.success-stories .container {
    position: relative;
    z-index: 2;
}

.testimonial-box {
    max-width: 800px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 280px;
    /* ✅ Equal card height on desktop */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Carousel icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

/* ✅ Mobile View Fix */
@media (max-width: 768px) {
    .testimonial-box {
        padding: 2rem 1.5rem;
        min-height: 350px;
        /* ✅ same card height for all testimonials on mobile */
        width: 90%;
        margin: 0 auto;
    }

    .success-stories h2 {
        font-size: 1.75rem;
    }

    .success-stories .stars span {
        font-size: 1.25rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 10%;
    }
}

/* Floating Heart Animation */
.hearts-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.heart {
    position: absolute;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
    animation: floatUp 10s linear infinite;
}

.heart::before,
.heart::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: inherit;
    border-radius: 50%;
}

.heart::before {
    top: -9px;
    left: 0;
}

.heart::after {
    left: -9px;
    top: 0;
}

/* Random heart placement */
.heart:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.heart:nth-child(2) {
    left: 25%;
    animation-delay: 2s;
    width: 15px;
    height: 15px;
}

.heart:nth-child(3) {
    left: 40%;
    animation-delay: 4s;
    background: rgba(255, 255, 255, 0.4);
}

.heart:nth-child(4) {
    left: 55%;
    animation-delay: 1s;
    width: 25px;
    height: 25px;
}

.heart:nth-child(5) {
    left: 70%;
    animation-delay: 3s;
}

.heart:nth-child(6) {
    left: 85%;
    animation-delay: 5s;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
}

.heart:nth-child(7) {
    left: 15%;
    animation-delay: 6s;
    background: rgba(255, 255, 255, 0.5);
}

.heart:nth-child(8) {
    left: 65%;
    animation-delay: 8s;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(45deg);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) rotate(45deg);
        opacity: 0;
    }
}

section .container {
    position: relative;
    z-index: 2;
}


.btn-danger {
    background-color: var(--main-color);
    border: none;
}

.btn-danger:hover {
    background-color: #c2185b;
}

/* 💠 Profile Card Styling */
.profile-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    font-weight: 500;
    color: #333;
    border: 1px solid #f3dcdc;
    cursor: pointer;
    /* tapable */
}

/* 💫 Hover / Touch Active Effect */
.profile-card:hover,
.profile-card:active,
.profile-card:focus {
    background: var(--main-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

/* ✨ Smooth entry animation */
.profile-card {
    animation: fadeInUp 0.6s ease both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 📱 Responsive Spacing */
@media (max-width: 768px) {
    .profile-card {
        font-size: 14px;
        padding: 12px 8px;
    }
}

/* 🔹 Buttons Above Form */
.register-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.btn-top {
    background-color: #800000;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 22px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-top:hover {
    background-color: #800000;
    transform: translateY(-2px);
}

/* 🔹 Mobile Responsive */
@media (max-width: 576px) {
    .register-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .btn-top {
        width: 80%;
        font-size: 14px;
        padding: 9px 0;
    }
}



/* ✅ Red underline below header (Final version with visible thickness) */
.top-header {
    background-color: #fff !important;
    border-bottom: none !important;
    position: relative;
    z-index: 10;
}

/* 🔹 Create broad red line below header */
.top-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #800000;
    /* dark red tone */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    /* subtle depth effect */
}


/* ✅ Position tagline over carousel images */
.carousel-container {
    position: relative;
    overflow: hidden;
}

/* ✅ Hero tagline styling */
.hero-tagline {
    position: absolute;
    top: 45%;
    left: 8%;
    transform: translateY(-50%);
    color: #ffd700;
    text-align: left;
    z-index: 2;
    animation: fadeUp 1.5s ease-in-out;
}

/* ✅ Main title */
.hero-tagline h4:first-child {
    font-size: 58px;
    /* bigger title */
    font-weight: 800;
    letter-spacing: 1px;
    margin: 10px 0;
    color: #ffd700;
    /* gold color */
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
    animation: slideInLeft 1.8s ease-out;
}

/* ✅ Tagline text */
.hero-tagline h4:last-child {
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 5px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    animation: fadeIn 2s ease-in;
}

/* ✅ Responsive design for mobile */
@media (max-width: 768px) {
    .hero-tagline {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .hero-tagline h4:first-child {
        font-size: 36px;
    }

    .hero-tagline h4:last-child {
        font-size: 20px;
    }
}

/* ✨ Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* 🎨 Background */
.browse-section {
    background: linear-gradient(135deg, #fff7f7, #ffeaea, #fff0f0);
    position: relative;
    overflow: hidden;
}

/* ✨ Section title */
.browse-title {
    color: var(--main-color);
    font-size: 38px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    text-shadow: 1px 1px 4px rgba(128, 0, 0, 0.2);
    animation: fadeDown 1.2s ease-in-out;
}

/* 🩷 Subtitle */
.browse-subtitle {
    color: #555;
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 1.5s ease-in;
}

/* 💫 Profile cards */
.profile-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px 15px;
    font-weight: 600;
    color: var(--main-color);
    font-size: 18px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

/* 🧿 Hover animation */
.profile-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: linear-gradient(145deg, #fff5f5, #ffe8e8);
    border-color: var(--main-color);
    box-shadow: 0 8px 16px rgba(128, 0, 0, 0.2);
    color: #800000;
}

/* 💻 Responsive adjustments */
@media (max-width: 768px) {
    .browse-title {
        font-size: 28px;
    }

    .profile-card {
        font-size: 16px;
        padding: 20px 10px;
    }
}

/* 🌈 Animation keyframes */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Button Style */
.search-btn {
    background: linear-gradient(135deg, #800000, #b22222);
    color: #fff;
    border: none;
    padding: 12px 30px;
    /* थोडं मोठं padding desktop साठी */
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: inline-block;
    margin-top: 10px;
}

/* Hover effect */
.search-btn:hover {
    background: linear-gradient(135deg, #a00000, #d40000);
    transform: scale(1.05);
}

/* ✅ Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .search-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
        border-radius: 25px;
    }

    .hero-tagline h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .search-btn {
        width: 80%;
        /* full-width type look mobile वर */
        font-size: 0.9rem;
        padding: 6px;
        border-radius: 6px;
    }

    .hero-tagline h4 {
        font-size: 1rem;
        line-height: 1.4;
    }
}

/* Section background */
.browse-section {
    background: linear-gradient(135deg, #fff7f7, #ffeaea);
}

/* Profile card box */
.profile-card {
    background: #fff;
    border: 2px solid var(--gold-color);
    border-radius: 15px;
    padding: 25px 10px;
    font-weight: 500;
    color: var(--main-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 150px;
    /* ensure equal height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.profile-card:hover {
    transform: translateY(-5px);
    background: #fff5f5;
    box-shadow: 0 6px 12px rgba(128, 0, 0, 0.3);
}

/* Gradient circle around icon */
.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--main-color), var(--gold-color));
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
    margin-bottom: 8px;
}

/* White icon inside */
.icon-circle i {
    color: #fff;
    font-size: 24px;
}

/* Responsive grid spacing */
@media (max-width: 768px) {
    .profile-card {
        height: 140px;
        font-size: 14px;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
    }

    .icon-circle i {
        font-size: 20px;
    }
}

/* ===== SEARCH BOX SECTION ===== */
.search-section {
    background: linear-gradient(135deg, #fff8f8, #fff1f1);
    padding: 40px 0;
}

.search-box {
    background: linear-gradient(135deg, #ffffff, #fff7f7);
    border: 2px solid #d4af37;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 1100px;
    /* ✅ Wider for desktop */
    margin: 0 auto;
    text-align: center;
    transition: all 0.3s ease;
}

.search-box:hover {
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

.search-box label {
    color: #800000;
    font-weight: 600;
    font-size: 16px;
}

.search-box .form-select {
    border: 1.8px solid #cfcfcf;
    border-radius: 10px;
    padding: 8px 12px;
    width: 100px;
    font-size: 15px;
    transition: all 0.3s ease-in-out;
    background: #fff;
}

.search-box .form-select:focus {
    border-color: #d4af37;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.6);
}

.search-btn {
    background: linear-gradient(90deg, #b30000, #800000);
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(179, 0, 0, 0.3);
}

.search-btn:hover {
    background: linear-gradient(90deg, #800000, #b30000);
    transform: scale(1.05);
}

.search-text {
    font-weight: 600;
    font-size: 17px;
    color: #333;
    margin-left: 10px;
}

.search-text span {
    color: #b30000;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .search-box {
        padding: 25px 15px;
    }

    .search-box form {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .search-box label {
        margin-bottom: 3px;
    }

    .search-box .form-select,
    .search-btn {
        width: 100%;
        max-width: 300px;
    }

    .search-text {
        display: block;
        margin-top: 10px;
    }
}

/* Move Help & Support and Information slightly to the right */
.footer-top .col-lg-2,
.footer-top .col-lg-3 {
    position: relative;
    left: 20px;
    /* 🔹 Adjust this value as needed (30–50px works best) */
}

/* On mobile, reset alignment so it stays centered */
@media (max-width: 768px) {

    .footer-top .col-lg-2,
    .footer-top .col-lg-3 {
        left: 0;
        text-align: center;
    }
}

/* ✅ FORM OVERLAY */
.form-overlay {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 400px;
    width: 90%;
}

.form-container {
    background: #fff;
    border: 2px solid #b50000;
    /* red border like your form */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.form-container h4 {
    color: #800000;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

/* ✅ Red Input Fields */
.form-control,
.form-select {
    border: 1px solid #d60000 !important;
    border-radius: 5px;
    padding: 10px;
    font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
    border-color: #800000 !important;
    box-shadow: 0 0 5px rgba(128, 0, 0, 0.4);
}

/* ✅ Top Buttons */
.register-buttons {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.btn-top {
    flex: 1;
    padding: 10px;
    font-weight: 700;
    border-radius: 5px;
    border: none;
    transition: 0.3s;
}

.btn-register-now {
    background-color: #c70000;
    color: #fff;
}

.btn-register-now:hover {
    background-color: #a00000;
}

.btn-signup {
    background-color: #555;
    color: #fff;
}

.btn-signup:hover {
    background-color: #333;
}

/* ✅ Submit Button */
.btn-register {
    background-color: #c70000;
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: 5px;
    width: 100%;
    padding: 12px;
    transition: 0.3s;
}

.btn-register:hover {
    background-color: #a00000;
    color: #fff;
}

/* ✅ Checkbox styling */
.form-check-label {
    font-size: 0.9rem;
    color: #333;
}

.form-check-input:checked {
    background-color: #c70000;
    border-color: #c70000;
}

/* ✅ Form goes BELOW slider on mobile */
@media (max-width: 768px) {
    .form-overlay {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        z-index: 1;
        margin-top: 20px;
        margin-bottom: 30px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .form-container {
        background: #fff;
        border: 1px solid #ddd;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        width: 90%;
        max-width: 450px;
        padding: 25px;
    }
}

/* ✅ Signup/Login Form Styling */
#signupForm {
    padding: 15px;
}

.login-input {
    border: 1px solid #d11a2a;
    border-radius: 6px;
    padding: 10px 12px;
    width: 100%;
    font-size: 14px;
}

.login-input:focus {
    outline: none;
    border-color: #b00020;
    box-shadow: 0 0 4px rgba(209, 26, 42, 0.3);
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    user-select: none;
    font-size: 16px;
    opacity: 0.7;
}

.login-link {
    font-size: 13px;
    color: #b00020;
    text-decoration: none;
}

.login-link:hover {
    text-decoration: underline;
}

.btn-signin {
    background-color: #d11a2a;
    color: #fff;
    font-weight: bold;
    border: none;
    padding: 10px;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.btn-signin:hover {
    background-color: #b00020;
}

.form-check-label {
    font-size: 13px;
}

#signupForm h4 {
    color: #333;
    font-weight: 600;
}

@media (max-width: 768px) {
    .top-header .right-section {
        width: 100%;
        justify-content: center !important;
    }

    .top-header .login-inputs {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .top-header .login-inputs input,
    .top-header .login-inputs button {
        width: 100% !important;
    }

    .modal-dialog {
        max-width: 90% !important;
    }
}

/* ✅ Global Fix for Mobile Cut Issue */
html,
body {
    width: 100%;
    overflow-x: hidden !important;
}

* {
    box-sizing: border-box;
}

/* SECTION WRAPPER */
.about-luxury {
    background: radial-gradient(circle at top left, #fff5f5 0%, #fff 60%);
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
}

/* GLASS CARD */
.about-lux-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
}

/* IMAGE SIDE */
.about-lux-img {
    flex: 1;
    position: relative;
}

.about-lux-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-lux-img img:hover {
    transform: scale(1.05);
}

/* TEXT SIDE */
.about-lux-text {
    flex: 1.1;
    padding: 60px 50px;
    color: #222;
}

.lux-tag {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #b11e1e;
    font-weight: 700;
}

.lux-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin: 15px 0;
    line-height: 1.3;
}

.lux-title span {
    color: #b11e1e;
}

.lux-divider {
    width: 70px;
    height: 3px;
    background: #b11e1e;
    border-radius: 2px;
    margin: 15px 0;
}

.about-lux-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* BUTTONS */
.btn-primary-lux {
    display: inline-block;
    background: #b11e1e;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-primary-lux:hover {
    background: #8c1515;
}

.btn-outline-lux {
    display: inline-block;
    margin-left: 15px;
    padding: 12px 28px;
    border-radius: 30px;
    border: 2px solid #b11e1e;
    color: #b11e1e;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-outline-lux:hover {
    background: #b11e1e;
    color: #fff;
}

/* DECORATIVE LIGHT EFFECTS */
.about-luxury::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(177, 30, 30, 0.2) 0%, transparent 70%);
    filter: blur(40px);
}

.about-luxury::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(177, 30, 30, 0.1) 0%, transparent 70%);
    filter: blur(40px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-lux-card {
        flex-direction: column;
    }

    .about-lux-img img {
        height: 300px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .about-lux-text {
        text-align: center;
        padding: 40px 20px;
    }

    .lux-divider {
        margin: 10px auto;
    }

    .btn-outline-lux {
        display: block;
        margin: 15px auto 0;
    }
}

@media (max-width: 576px) {
    .lux-title {
        font-size: 26px;
    }
}

/* ✅ Responsive for search section */
@media (max-width: 768px) {

    .search-section {
        padding: 20px 10px !important;
    }

    .search-box {
        width: 90% !important;
        margin: 0 auto !important;
        padding: 20px !important;
    }

    .search-box form {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
    }

    /* Looking For + Age fields stacked neatly */
    .search-box label {
        display: block;
        font-size: 1rem;
        margin-bottom: 5px;
        font-weight: 600;
    }

    .search-box select {
        width: 80% !important;
        max-width: 220px;
        margin: 0 auto !important;
        font-size: 0.95rem;
        text-align: center;
    }

    /* Age range alignment */
    .search-box .d-flex {
        flex-direction: row !important;
        justify-content: center;
        gap: 8px !important;
        flex-wrap: wrap;
    }

    /* Search button styling */
    .search-box button {
        width: 60%;
        max-width: 200px;
        margin: 10px auto 0 auto;
        font-size: 1rem;
        border-radius: 8px;
    }

    /* Tagline styling */
    .search-box span,
    .search-box p {
        display: block;
        text-align: center;
        font-size: 1rem !important;
        margin-top: 10px;
    }
}

/* ✅ Extra small devices (below 480px) */
@media (max-width: 480px) {

    .search-box select {
        width: 100% !important;
        font-size: 0.9rem;
    }

    .search-box button {
        width: 100% !important;
        max-width: none;
    }

    .search-box span {
        font-size: 0.95rem;
    }
}

.info-section {
    background: #fff;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.info-card {
    padding: 30px 25px;
    text-align: left;
    border-right: 1px solid #ddd;
    height: 100%;
}

.info-card:last-child {
    border-right: none;
}

.icon i {
    font-size: 48px;
    color: #d4a017;
    /* gold color */
}

.info-card h5 {
    color: #b18104;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.info-card a {
    text-decoration: none;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.info-card a:hover {
    color: #d60000;
}

.info-card a i {
    font-size: 18px;
    vertical-align: middle;
    margin-right: 5px;
}

/* ✅ Responsive Styles */
@media (max-width: 991px) {
    .info-card {
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .info-card:last-child {
        border-bottom: none;
    }
}

/* 🌸 TERMS SECTION STYLING */
.terms-wrapper {
    background: linear-gradient(180deg, #fff, #fef3f3);
    padding: 70px 15px;
}

.terms-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
    transition: 0.3s;
}

.terms-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.terms-box h2 {
    color: #d60000;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.terms-box p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.terms-box h5 {
    color: #d60000;
    font-weight: 600;
    margin-top: 30px;
    border-left: 4px solid #ffb5b5;
    padding-left: 10px;
}

.terms-box ul {
    margin-left: 20px;
}

.terms-box ul li {
    margin-bottom: 8px;
}

.support-card {
    background: #fff7f7;
    border: 1px solid #ffd9d9;
    padding: 20px;
    border-radius: 10px;
    margin-top: 25px;
}

.support-card strong {
    color: #d60000;
}

@media (max-width: 768px) {
    .terms-box {
        padding: 25px;
    }

    .terms-box h2 {
        font-size: 24px;
    }

    .terms-box h5 {
        font-size: 18px;
    }
}

/* ✅ Sticky Header (Always Visible) */
.top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    /* white background */
    z-index: 1000;
    /* stay above everything */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    /* light shadow */
    transition: all 0.3s ease;
}

/* ✅ Prevent content from hiding behind header */
body {
    padding-top: 100px;
    /* header height space */
}

/* 🌟 SAFETY & SECURITY SECTION */
.safety-section {
    background: #fff;
    padding: 70px 20px;
    font-family: 'Poppins', sans-serif;
}

.safety-container {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 50px 40px;
}

.safety-title {
    text-align: center;
    margin-bottom: 35px;
}

.safety-title i {
    color: #d60000;
    font-size: 45px;
    margin-bottom: 15px;
}

.safety-title h2 {
    font-weight: 700;
    color: #b30000;
}

.safety-title p {
    color: #666;
    font-size: 15px;
}

.safety-container h5 {
    color: #222;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.safety-container h5 i {
    color: #d60000;
    font-size: 18px;
}

.safety-container p,
.safety-container li {
    color: #444;
    font-size: 15px;
    line-height: 1.8;
}

.safety-container ul {
    padding-left: 22px;
    margin-bottom: 25px;
}

.highlight-box {
    background: #fff5f5;
    border-left: 5px solid #d60000;
    padding: 15px 18px;
    border-radius: 10px;
    color: #333;
    margin-top: 20px;
}

.support-card {
    background: #fff3e0;
    border-left: 5px solid #ff9800;
    border-radius: 10px;
    padding: 25px;
    margin-top: 35px;
}

.support-card h5 {
    color: #b30000;
    font-weight: 600;
    margin-bottom: 10px;
}

.support-card a {
    color: #d60000;
    text-decoration: none;
    font-weight: 600;
}

/* 🌐 Responsive Design */
@media (max-width: 992px) {
    .safety-container {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .safety-section {
        padding: 50px 15px;
    }

    .safety-container {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .safety-title i {
        font-size: 38px;
    }

    .safety-title h2 {
        font-size: 1.7rem;
    }

    .safety-title p {
        font-size: 14px;
    }

    .safety-container p,
    .safety-container li {
        font-size: 14px;
        line-height: 1.7;
    }

    .highlight-box {
        padding: 12px 14px;
        font-size: 14px;
    }

    .support-card {
        padding: 18px;
    }

    .support-card ul {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .safety-title h2 {
        font-size: 1.5rem;
    }

    .safety-container {
        padding: 20px 15px;
    }

    .safety-container h5 {
        font-size: 15px;
    }
}

/* 🌸 how it work Main Section */
.matchmaking-section {
    padding: 60px 15px;
}

.matchmaking-container {
    max-width: 1000px;
    margin: auto;
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.matchmaking-container:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.matchmaking-title {
    text-align: center;
    margin-bottom: 35px;
}

.matchmaking-title i {
    color: #d60000;
    font-size: 48px;
    transition: all 0.4s ease;
}

.matchmaking-title:hover i {
    transform: rotate(15deg) scale(1.1);
}

.matchmaking-title h2 {
    font-weight: 700;
    color: #222;
    margin-top: 10px;
}

.matchmaking-title p {
    color: #666;
    font-size: 15px;
    max-width: 700px;
    margin: 10px auto;
}

.matchmaking-section h5 {
    color: #d60000;
    font-weight: 600;
    margin-top: 28px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.matchmaking-section h5 i {
    color: #d60000;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.matchmaking-section h5:hover {
    color: #a00000;
    transform: translateX(5px);
}

.matchmaking-section h5:hover i {
    transform: scale(1.2);
    color: #a00000;
}

.matchmaking-section p {
    color: #444;
    font-size: 15px;
    margin-bottom: 12px;
}

.highlight-box {
    background: linear-gradient(90deg, #ffeaea, #fff);
    border-left: 5px solid #d60000;
    padding: 18px 20px;
    border-radius: 10px;
    margin-top: 35px;
    font-weight: 500;
    text-align: center;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.highlight-box:hover {
    background: linear-gradient(90deg, #fff5f5, #fff);
    transform: scale(1.02);
}

.highlight-box i {
    color: #d60000;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .matchmaking-container {
        padding: 25px 20px;
    }

    .matchmaking-title h2 {
        font-size: 22px;
    }

    .matchmaking-section h5 {
        font-size: 16px;
    }
}

/* ---------- PERFECT MATCH SECTION ---------- */
.perfect-match-section {
    padding: 70px 0;
}

.perfect-match-section h2 {
    color: var(--main-color);
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.perfect-match-section p.lead {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.icon-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(128, 0, 0, 0.2);
}

.icon-card i {
    font-size: 45px;
    color: var(--main-color);
    margin-bottom: 15px;
}

.icon-card h5 {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.icon-card p {
    color: #666;
    font-size: 15px;
}

/* ---------- CALL TO ACTION (Perfect Match CTA) ---------- */
.cta-banner {
    background: linear-gradient(135deg, #fff6f6, #ffe8e8);
    color: #333;
    text-align: center;
    padding: 60px 20px;
    border-radius: 15px;
    margin-top: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-banner:hover {
    background: linear-gradient(135deg, #ffeaea, #ffd6d6);
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(128, 0, 0, 0.15);
}

.cta-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: skewX(-25deg);
    transition: 0.75s;
}

.cta-banner:hover::after {
    left: 130%;
}

.cta-banner h3 {
    font-weight: 700;
    color: #800000;
    margin-bottom: 12px;
}

.cta-banner p {
    color: #444;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.cta-banner a {
    background: var(--main-color);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(128, 0, 0, 0.25);
    position: relative;
    z-index: 2;
}

.cta-banner a:hover {
    background: #a00000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(128, 0, 0, 0.3);
}

/* ---------- MOBILE RESPONSIVE STYLES ---------- */
@media (max-width: 992px) {
    .perfect-match-section {
        padding: 50px 0;
    }

    .icon-card {
        padding: 25px 15px;
    }

    .icon-card i {
        font-size: 40px;
    }

    .cta-banner {
        padding: 50px 15px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .perfect-match-section h2 {
        font-size: 1.7rem;
    }

    .perfect-match-section p.lead {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .icon-card {
        padding: 25px 15px;
    }

    .icon-card h5 {
        font-size: 1rem;
    }

    .icon-card p {
        font-size: 14px;
    }

    .cta-banner {
        padding: 40px 20px;
        margin-top: 40px;
    }

    .cta-banner h3 {
        font-size: 1.4rem;
    }

    .cta-banner p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .cta-banner a {
        padding: 10px 22px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .icon-card {
        padding: 20px 10px;
    }

    .cta-banner {
        padding: 35px 15px;
    }

    .cta-banner h3 {
        font-size: 1.2rem;
    }

    .cta-banner p {
        font-size: 0.9rem;
    }

    .cta-banner a {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}

/* ---------- Popup Background ---------- */
.popup-register-box {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    padding: 40px 15px;
    overflow: hidden;
    /* prevents outer scroll */
}

/* ---------- Popup Box ---------- */
.modal-content {
    background: #fff;
    width: 95%;
    max-width: 480px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
    animation: slideDown 0.3s ease;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    /* ✅ full form inside modal */
}

/* ---------- Slide Animation ---------- */
@keyframes slideDown {
    from {
        transform: translateY(-25px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ---------- Close Button ---------- */
.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 22px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

/* ---------- Heading ---------- */
.modal-content h2 {
    text-align: center;
    color: #d40000;
    font-weight: 700;
    margin: 20px 0 10px 0;
    font-size: 1.4rem;
}

.modal-content hr {
    border: none;
    border-top: 2px dashed #d40000;
    margin: 0 25px 20px 25px;
}

/* ---------- Tabs (Compact & Clean) ---------- */
.tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 0 25px;
}

.tabs button {
    flex: 1;
    padding: 6px 0;
    /* ✅ smaller height */
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13.5px;
    /* ✅ slightly smaller text */
    transition: all 0.2s ease;
}

.tabs .active {
    background-color: #d40000;
    color: #fff;
}

.tabs .inactive {
    background-color: #555;
    color: #fff;
}

.tabs button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}


/* ----------  rigister today Scrollable Form ---------- */
.modal-content form {
    flex: 1;
    overflow-y: auto;
    /* ✅ form scrolls independently */
    padding: 0 25px 15px 25px;
}

.modal-content input,
.modal-content select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
}

.modal-content input:focus,
.modal-content select:focus {
    border-color: #d40000;
}

/* ---------- Phone Group ---------- */
.phone-group {
    display: flex;
    gap: 10px;
}

/* ---------- Password Field ---------- */
.password-field {
    position: relative;
}

.password-field input {
    width: 100%;
    padding-right: 38px;
}

.password-field span {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
    font-size: 18px;
}

/* ---------- Terms ---------- */
.terms {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 20px 0;
}

.terms input[type="checkbox"] {
    accent-color: #d40000;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.terms label {
    font-size: 13px;
    color: #555;
}

.terms a {
    color: #d40000;
    text-decoration: none;
    font-weight: 500;
}

.terms a:hover {
    text-decoration: underline;
}

/* ---------- Submit Button ---------- */
.modal-content button[type="submit"] {
    width: 100%;
    background-color: #d40000;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    padding: 12px 0;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 15px;
    transition: background 0.3s;
}

.modal-content button[type="submit"]:hover {
    background-color: #a80000;
}

/* ---------- Info Box ---------- */
.info-box {
    background: #f8f8f8;
    border-radius: 5px;
    padding: 15px 20px;
    margin: 10px 25px 20px 25px;
}

.info-box h4 {
    color: #d40000;
    margin-bottom: 10px;
    font-size: 1rem;
}

.info-box p {
    font-size: 13px;
    color: #444;
    margin-bottom: 6px;
}

/* ---------- Scrollbar Styling ---------- */
.modal-content form::-webkit-scrollbar {
    width: 6px;
}

.modal-content form::-webkit-scrollbar-thumb {
    background-color: #d40000;
    border-radius: 3px;
}

/* ---------- Responsive ---------- */
@media (max-width: 480px) {
    .modal-content {
        width: 95%;
        border-radius: 8px;
    }

    .modal-content h2 {
        font-size: 1.2rem;
    }

    .modal-content form {
        padding: 0 20px 15px 20px;
    }
}
/* signup form popup */
#loginPopup {
    z-index: 1000 !important;
    transition: opacity 0.3s ease;
}

/* ✅ Always center & proper width modal */
#familyFriendModal .modal-dialog {
    max-width: 420px;
    /* fixed perfect width */
    margin: auto;
    /* ensures it stays centered horizontally */
}

#familyFriendModal .modal-content {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    padding: 10px 0 15px;
}

/* ✅ Title alignment & spacing */
#familyFriendModal .modal-title {
    font-weight: 700;
    color: #d40000;
    text-align: center;
    width: 100%;
}

/* ✅ Center the input section */
#familyFriendModal .form-select,
#familyFriendModal .form-control {
    height: 42px;
    border: 1px solid #d40000;
    border-radius: 6px;
}

#familyFriendModal .form-select:focus,
#familyFriendModal .form-control:focus {
    box-shadow: 0 0 5px rgba(212, 0, 0, 0.3);
    outline: none;
}

/* ✅ Buttons styling */
#familyFriendModal .btn {
    min-width: 100px;
    border-radius: 6px;
}

#familyFriendModal .btn-danger {
    background-color: #d40000;
    border-color: #d40000;
}

#familyFriendModal .btn-danger:hover {
    background-color: #b00000;
    border-color: #b00000;
}

/* ✅ Make sure modal stays on top */
#familyFriendModal {
    z-index: 9999 !important;
}

/* ✅ Dim background */
.modal-backdrop.show {
    opacity: 0.6 !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
}
/* signup form popup end */

  /* ✅ Privacy Policy Styling */
.privacy-section {
  background-color: #fff;
  padding: 80px 0;
}

.privacy-section p,
.privacy-section li {
  color: #333;
  line-height: 1.9;
  font-size: 17px;
  transition: color 0.3s ease;
}

.privacy-section ul {
  padding-left: 30px;
  margin-top: 10px;
}

.privacy-section h2 {
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.privacy-section h5 {
  font-size: 20px;
  color: var(--main-color, #800000);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 10px;
  border-left: 4px solid var(--main-color, #800000);
  padding-left: 12px;
  transition: all 0.3s ease;
}

.privacy-section h5 i {
  font-size: 18px;
  color: #c50000;
  margin-right: 6px;
  transition: transform 0.3s ease;
}

/* ✅ Hover Effects */
.privacy-section h5:hover {
  color: #d4af37; /* gold hover color */
  border-left-color: #d4af37;
  transform: translateX(5px);
}

.privacy-section h5:hover i {
  transform: scale(1.2);
  color: #d4af37;
}

.privacy-section a {
  color: var(--main-color, #800000);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.privacy-section a:hover {
  color: #d4af37;
  text-decoration: underline;
}

/* ✅ Responsive Design */
@media (max-width: 992px) {
  .privacy-section {
    padding: 60px 15px;
  }

  .privacy-section h2 {
    font-size: 2rem;
  }

  .privacy-section h5 {
    font-size: 19px;
  }

  .privacy-section p,
  .privacy-section li {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .privacy-section {
    padding: 50px 10px;
  }

  .privacy-section h2 {
    font-size: 1.7rem;
  }

  .privacy-section h5 {
    font-size: 18px;
    border-left-width: 3px;
  }

  .privacy-section p,
  .privacy-section li {
    font-size: 15px;
    line-height: 1.8;
  }
} 

/* ✅ Page Header Banner */
  .page-header {
    background: url('img/about-img1.jpg') center/cover no-repeat;
    height: 370px;
    position: relative;
  }

  .page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
  }

  .page-header .content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 15px;
  }

  .page-header h1 {
    font-weight: 700;
    font-size: 3rem;
  }

  .page-header p {
    font-size: 1.1rem;
    color: #ffdadf;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  /* ✅ Contact Section */
  .contact-section {
    padding: 70px 0;
  }

  .contact-section h2 {
    color: var(--main-color);
    font-weight: 700;
    margin-bottom: 20px;
  }

  .contact-section p {
    color: #555;
    font-size: 1rem;
  }

  /* ✅ Equal Box Styling */
  .contact-info,
  .contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
  }

  /* ✨ Hover Effect */
  .contact-info:hover,
  .contact-form:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(128, 0, 0, 0.25);
    border: 1px solid var(--gold-color);
  }

  .contact-info i {
    color: var(--main-color);
    font-size: 20px;
    margin-right: 10px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    font-size: 15px;
  }

  .contact-form input:focus,
  .contact-form textarea:focus,
  .contact-form select:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 0.2rem rgba(128, 0, 0, 0.15);
  }

  .btn-submit {
    background-color: var(--main-color);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    transition: all 0.3s ease;
  }

  .btn-submit:hover {
    background-color: var(--gold-color);
    color: #000;
    transform: scale(1.05);
  }

  /* ✅ Make both columns equal height */
  .row.g-4.align-items-start {
    align-items: stretch !important;
  }

  /* ✅ Responsive Adjustments */
  @media (max-width: 992px) {
    .contact-info,
    .contact-form {
      height: auto;
    }
  }

  @media (max-width: 768px) {
    .page-header h1 {
      font-size: 2rem;
    }

    .page-header {
      height: 280px;
    }

    .contact-section {
      padding: 40px 15px;
    }

    .contact-info,
    .contact-form {
      margin-bottom: 25px;
    }
  }
  
    /* ---------- Bride Page Cards ---------- */
.bride-list {
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
}

.bride-card {
  background: #ffffff;
  border-radius: 14px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.bride-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(214, 59, 59, 0.18);
}

/* Image */
.bride-img {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.bride-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-bottom: 2px solid #d60000;
}

.bride-card:hover img {
  transform: scale(1.07);
}

/* Info section */
.bride-info h5 {
  font-size: 18px;
  letter-spacing: 0.5px;
}

.bride-info p {
  color: #6b6b6b;
  font-weight: 500;
}

/* View Profile Button */
.btn-view {
  background: linear-gradient(90deg, #800000 0%, #800000 100%);
  color: #fff !important;
  padding: 8px 22px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  border: none;
  transition: 0.3s;
}

.btn-view:hover {
  background: linear-gradient(90deg, #d4af37 0%, #d4af37 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(214, 59, 59, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .bride-img {
    height: 280px;
  }
}
/* ===== Pagination Styles ===== */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  font-family: 'Poppins', sans-serif;

  /* 🟢 हे दोन नवीन ओळी footer पासून थोडं वर ठेवतात */
  margin-top: 40px;
  margin-bottom: 60px; 
}

.page-btn {
  background-color: #a51217; /* dark red */
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 25px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.25s ease-in-out;
}

.page-btn:hover:not(:disabled) {
  background-color: #d01b23;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(208, 27, 35, 0.25);
}

.page-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.page-info {
  font-weight: 500;
  color: #6b6b6b;
  font-size: 15px;
}

@media (max-width: 576px) {
  .pagination-wrapper {
    flex-direction: column;
    gap: 10px;
  }
}
/* FAQ Heading */
#faqAccordion .btn {
    background: #f3f3f3;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

/* Hover effect */
#faqAccordion .btn:hover {
    background: #e8e8e8;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.15);
}

/* Active Opened Tab */
#faqAccordion .btn:not(.collapsed) {
    background: #d60000;
    color: #fff;
    border-color: #c40000;
    box-shadow: 0px 2px 8px rgba(214, 0, 0, 0.3);
}

/* Body */
#faqAccordion .card-body {
    background: #fff;
    border-left: 3px solid #d60000;
    border-radius: 0 0 8px 8px;
    padding: 15px;
    font-size: 14px;
    color: #444;
    box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
}

/* Each card block */
#faqAccordion .card {
    border: none !important;
    background: transparent;
}

/* FAQ container space */
#faqAccordion .card-header {
    border: none;
}

/* Query Form Styling */
form .form-control {
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 10px;
    transition: 0.3s ease;
}

form .form-control:focus {
    border-color: #d60000;
    box-shadow: 0 0 5px rgba(214, 0, 0, 0.4);
}

button.btn-danger {
    background: #d60000;
    border: none;
    border-radius: 6px;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

button.btn-danger:hover {
    background: #b00000;
    transform: translateY(-2px);
    box-shadow: 0px 3px 8px rgba(214, 0, 0, 0.4);
}

/* Floating Hearts */
.hearts-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}
.heart {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(183, 28, 28, 0.15);
    transform: rotate(45deg);
    animation: floatHearts 8s linear infinite;
}
.heart::before,
.heart::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 50%;
}
.heart::before { top: -10px; left: 0; }
.heart::after { left: -10px; top: 0; }

@keyframes floatHearts {
    0% { transform: translateY(100vh) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-10vh) rotate(45deg); opacity: 0; }
}

/* Heart Positions */
.heart:nth-child(1) { left: 10%; animation-delay: 0s; }
.heart:nth-child(2) { left: 25%; animation-delay: 2s; }
.heart:nth-child(3) { left: 40%; animation-delay: 4s; }
.heart:nth-child(4) { left: 60%; animation-delay: 1s; }
.heart:nth-child(5) { left: 80%; animation-delay: 3s; }

/* 🌈 New Button Color (Purple → Pink Gradient) */
.franchisee-btn {
    background: linear-gradient(90deg, #7b3f00, #f2c94c); /* Brown → Gold */
    color: #fff;
    border-radius: 50px;
    padding: 12px 40px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}
.franchisee-btn:hover {
    background: linear-gradient(90deg, #f2c94c, #7b3f00); /* Reverse gradient on hover */
    transform: translateY(-3px);
}

/* Hover Effect */
.franchisee-btn:hover {
    background: linear-gradient(90deg, #f2c94c, #7b3f00); /* Gold → Brown reverse */
    transform: translateY(-3px);
}


/* 📱 Mobile Responsive Fixes */
@media (max-width: 576px) {
    .franchisee-btn {
        padding: 12px 25px;
        width: 90%;
        font-size: 1rem;
    }

    h2.display-6 {
        font-size: 1.7rem;
    }

    p.fs-5 {
        font-size: 1rem;
        padding: 0 10px;
    }
}


/* Hide all steps by default */
.form-step {
    display: none;
}
.form-step.active {
    display: block;
}

/* Next / Signup Button */
.signup-btn {
    background: linear-gradient(90deg, #7b3f00, #f2c94c); /* Brown → Gold */
    border-radius: 50px;
    padding: 10px 25px;
    transition: all 0.3s ease;
    border: none;
}

/* Hover Effect */
.signup-btn:hover {
    background: linear-gradient(90deg, #f2c94c, #7b3f00); /* Reverse Gold → Brown */
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Back Button Style (Softer tone of Brown–Gold) */
.back-btn {
    background: linear-gradient(90deg, #a87100, #e5b453); /* Light Brown → Gold */
    border-radius: 50px;
    padding: 10px 25px;
    border: none;
    transition: all 0.3s ease;
}

/* Back Button Hover Effect */
.back-btn:hover {
    background: linear-gradient(90deg, #e5b453, #a87100); /* Reverse gradient */
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* Responsive Fix */
@media (max-width: 576px) {
    .card {
        padding: 25px !important;
    }
}
/* Login Button */
.login-btn {
    background: linear-gradient(90deg, #7b3f00, #f2c94c);
    border-radius: 50px;
    padding: 10px 25px;
    border: none;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: linear-gradient(90deg, #f2c94c, #7b3f00);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Responsive Fix */
@media (max-width: 768px) {
    section {
        background-position: center;
        background-attachment: scroll;
    }
    .col-lg-5 {
        margin: 0 auto;
    }
}
body{
    overflow-x: hidden;
}
@media (max-width: 576px) {

    /* Heading Proper Alignment */
    .policy-title-line {
        border-left: none !important;
        padding-left: 0 !important;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 17px !important;
    }

    /* Icons size adjust */
    .policy-title-line i {
        font-size: 18px !important;
    }

    /* Paragraph Alignment */
    .policy-text {
        text-align: justify !important;
        line-height: 24px !important;
        font-size: 14px !important;
        padding: 0 5px !important;
    }

    /* List Proper Alignment */
    .policy-list {
        padding-left: 20px !important;
    }

    .policy-list li {
        text-align: justify !important;
        margin-bottom: 10px !important;
        font-size: 14px !important;
        line-height: 22px !important;
    }

    /* Section padding */
    .policy-section {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
}

/* Common floating button style */
/*Whatsapp btn */
/* Call Button */
/* COMMON BUTTON STYLE */
.float-call,
.float-whatsapp,
.float-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 20px;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 999;
    
}

/* CALL BUTTON */
.float-call {
    bottom: 135px;
    background-color: #d4af37;  /* Blue */
}

/* WHATSAPP BUTTON */
.float-whatsapp {
    bottom: 75px;
    background-color: #25D366;  /* Green */
}

/* BACK TO TOP BUTTON */
.float-top {
    bottom: 15px;
    background-color: #800000;  /* Pink */
}

/* ICON COLOR */
.float-call i,
.float-whatsapp i,
.float-top i {
    color: #fff;
    font-size: 23px;
    
}

/* MOBILE RESPONSIVE FIX */
@media (max-width: 576px) {
    .float-call,
    .float-whatsapp,
    .float-top {
        width: 45px;
        height: 45px;
        font-size: 22px;
        right: 15px;
    }

    .float-call { bottom: 125px; }
    .float-whatsapp { bottom: 70px; }
    .float-top { bottom: 15px; }
}
.float-call,
.float-whatsapp,
.float-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 20px;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 999;
    text-decoration: none !important; /* 🔥 underline remove */
}
     /* 🌸 MAIN SECTION */
.matrimony-section {
    padding: 50px 0;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

/* 📌 FORM BOX */
.matrimony-section .register-box {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

/* 🔥 FORM TITLE */
.matrimony-section .form-title {
    text-align: center;
    margin-bottom: 25px;
    color: #800000;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 22px;
}

/* ✏ INPUT + SELECT */
.matrimony-section .form-control,
.matrimony-section .form-select {
    height: 44px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: 0.3s;
}

/* 📝 TEXTAREA */
.matrimony-section textarea.form-control {
    min-height: 110px;
    resize: none;
}

/* ✨ FOCUS EFFECT */
.matrimony-section .form-control:focus,
.matrimony-section .form-select:focus {
    border-color: #800000;
    box-shadow: 0 0 6px rgba(128,0,0,0.4);
}

/* 🔻 SECTION SUB-HEADERS */
.matrimony-section h4 {
    background: #800000;
    color: #fff;
    padding: 10px 14px;
    font-size: 18px;
    border-radius: 6px;
}

/* 🔘 RADIO BUTTON */
.matrimony-section input[type="radio"] {
    transform: scale(1.2);
}

/* 🔴 OTP BUTTON */
.matrimony-section .btn-teal {
    background: #800000 !important;
    color: #fff !important;
    padding: 12px 35px;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* 🔴 HOVER */
.matrimony-section .btn-teal:hover {
    background: #a00000 !important;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .matrimony-section .register-box {
        padding: 20px;
    }
    .matrimony-section h4 {
        font-size: 16px;
    }
}
.matrimony-section .otp-btn-wrap {
    text-align: center;
}

.matrimony-section .otp-btn-wrap button {
    display: inline-block;
}
/* FULL SECTION BOX HOVER EFFECT */
.matrimony-section .register-box {
    transition: 0.4s ease;
}

.matrimony-section .register-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(128, 0, 0, 0.20);
    border-color: #d8c2c2;
}
/* 🔵 Desktop Width Control */
@media (min-width: 992px) {
    .matrimony-section .register-box {
        width: 70%;      /* 👉 येथे कमी-जास्त करू शकतो */
        margin: 0 auto;  /* center ला */
    }
}
