body {
    font-family: 'Poppins', sans-serif;
    /* background: #fafafa; */
}



/*==============================
    HEADER / NAVBAR
    (Sits in normal document flow — no longer
    absolutely positioned over the banner)
==============================*/
.main-header {
    position: relative;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    z-index: 100;
}

.custom-navbar {
    background: transparent;
    padding: 14px 0;
    box-shadow: none;
}

/* Logo */

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Logo Text */

.brand-name {
    font-family: Snell Roundhand;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: #401a30;
    margin: 0;
}

.brand-name span {
    color: #5c2444;
}

.brand-name small {
    font-size: 18px;
    color: #8a3a63;
    font-weight: 600;
}

.brand-tagline {
    font-size: 12px;
    color: #777;
    margin-top: 3px;
    letter-spacing: .4px;
    white-space: nowrap;
}

/*==============================
        TOGGLER
==============================*/

.navbar-toggler {
    border: 2px solid #7E0E17;
    padding: 6px 10px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(126, 14, 23, .2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(126, 14, 23, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/*==============================
        MENU
==============================*/

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-item {
    margin: 0 8px;
}

.navbar-nav .nav-link {
    color: #222;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #7E0E17;
}

/*==============================
      DROPDOWN
==============================*/

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
    padding: 10px 0;
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 15px;
    transition: .3s;
}

.dropdown-item:hover {
    background: #fff2f7;
    color: #e91e63;
}

/*==============================
      BUTTONS
==============================*/

.login-btn {
    border: 2px solid #7E0E17;
    color: #7E0E17;
    background: #fff;
    border-radius: 10px;
    padding: 9px 22px;
    font-weight: 600;
    transition: .3s;
    white-space: nowrap;
}

.login-btn:hover {
    background: #7E0E17;
    color: #fff;
}

.register-btn {
    background: #7E0E17;
    color: #fff;
    border-radius: 10px;
    padding: 9px 22px;
    font-weight: 600;
    transition: .3s;
    border: 2px solid #7E0E17;
    white-space: nowrap;
}

.register-btn:hover {
    background: #c2185b;
    border-color: #c2185b;
    color: #fff;
}

/*==============================
      RESPONSIVE
==============================*/

/* Large tablets / small desktops — tighten spacing before it collapses */
@media (max-width: 1199.98px) {
    .navbar-nav .nav-item {
        margin: 0 4px;
    }

    .navbar-nav .nav-link {
        font-size: 15px;
    }

    .login-btn,
    .register-btn {
        padding: 8px 18px;
        font-size: 14px;
    }
}

/* Below lg (991.98px) — collapses into hamburger menu */
@media (max-width: 991.98px) {
    .custom-navbar {
        padding: 10px 0;
    }

    .navbar-logo {
        width: 48px;
        height: 48px;
    }

    .brand-name {
        font-size: 17px;
    }

    .brand-name small {
        font-size: 15px;
    }

    .brand-tagline {
        font-size: 10px;
        white-space: normal;
    }

    .navbar-collapse {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
        padding: 16px;
        margin-top: 12px;
    }

    .navbar-nav {
        align-items: flex-start;
        width: 100%;
    }

    .navbar-nav .nav-item {
        margin: 0;
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding: 10px 4px;
        width: 100%;
    }

    .dropdown-menu {
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, .06);
        padding-left: 10px;
        width: 100%;
        margin: 0;
    }

    .navbar-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch !important;
        gap: 10px;
        padding-top: 12px;
        border-top: 1px solid rgba(0, 0, 0, .06);
        margin-top: 8px;
    }

    .navbar-actions .login-btn,
    .navbar-actions .register-btn {
        width: 100%;
        text-align: center;
        margin: 0 !important;
    }
}

/* Mobile phones */
@media (max-width: 575.98px) {
    .brand-tagline {
        display: none;
    }

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

    .brand-name {
        font-size: 16px;
    }

    .brand-name small {
        font-size: 14px;
    }
}



/* //banner// */

/*==============================
    HERO BANNER
    (Starts below the navbar now — height is
    calculated instead of forcing full 100vh)
==============================*/
.hero-banner {
    position: relative;
    min-height: calc(100vh - 90px);
    min-height: calc(100dvh - 90px);
    /* better mobile viewport handling */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

.hero-banner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 160px;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0),
            #fff5f8,
            #ffffff);
    pointer-events: none;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, .92),
            rgba(255, 255, 255, .55),
            rgba(255, 255, 255, .1));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
    width: 100%;
    padding: 40px 0;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    color: #7E0E17;
    margin: 0 0 18px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 30px;
    color: #444;
    max-width: 520px;
}

/*==============================
      FEATURE LIST
==============================*/

.banner-features {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 16px 30px;
    margin: 0 0 34px;
}

.feature-item-logo {
    display: flex;
    align-items: center;
    color: #4a1010;
    font-size: 15px;
    font-weight: 500;
}

.feature-item-logo i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-right: 10px;
    color: #fff;
    font-size: 13px;
    background: #d81b60;
    border-radius: 50%;
    flex-shrink: 0;
}

/*==============================
      CTA BUTTONS
==============================*/

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    font-size: 16px;
    font-weight: 600;
    padding: 13px 32px;
    border-radius: 50px;
    transition: .3s;
}

.hero-buttons .btn-danger {
    background: #d81b60;
    border: 2px solid #d81b60;
    color: #fff;
}

.hero-buttons .btn-danger:hover {
    background: #c2185b;
    border-color: #c2185b;
}

.hero-buttons .btn-light {
    background: #fff;
    border: 2px solid #d81b60;
    color: #d81b60;
}

.hero-buttons .btn-light:hover {
    background: #d81b60;
    color: #fff;
}

/*==============================
      RESPONSIVE
==============================*/

/* Large tablets / small desktops */
@media (max-width: 1199.98px) {
    .hero-content {
        max-width: 560px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 17px;
    }
}

/* Tablets */
@media (max-width: 991.98px) {
    .hero-banner {
        min-height: auto;
        padding: 70px 0 100px;
        background-position: 65% center;
        /* keep the subject in frame as width shrinks */
    }

    .overlay {
        background: linear-gradient(to right,
                rgba(255, 255, 255, .95),
                rgba(255, 255, 255, .75),
                rgba(255, 255, 255, .35));
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
        max-width: 100%;
    }

    .banner-features {
        gap: 14px 24px;
        margin-bottom: 28px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .hero-banner {
        padding: 50px 0 90px;
        background-position: 70% center;
    }

    .hero-banner::after {
        height: 110px;
    }

    .overlay {
        background: linear-gradient(180deg,
                rgba(255, 255, 255, .95),
                rgba(255, 255, 255, .85));
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .banner-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 26px;
    }

    .feature-item-logo {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 13px 24px;
    }
}

/* Extra small phones */
@media (max-width: 399.98px) {
    .hero-banner {
        padding: 40px 0 80px;
        background-position: 75% center;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .feature-item-logo {
        font-size: 13px;
    }

    .feature-item-logo i {
        width: 24px;
        height: 24px;
        font-size: 11px;
        margin-right: 8px;
    }

    .hero-buttons .btn {
        font-size: 14px;
        padding: 12px 20px;
    }
}

/* Short / landscape screens — prevent the old 100vh from
   forcing awkward extra whitespace on landscape phones/tablets */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-banner {
        min-height: auto;
        padding: 40px 0 60px;
    }
}







/*==============================
    FLOATING FEATURE CARD
==============================*/

.feature-floating {
    position: relative;
    margin-top: -70px;
    z-index: 20;
    padding: 0 15px;
}

.feature-card {
    background: #fff;
    border-radius: 25px;
    padding: 35px 20px;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.feature-box-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: .3s;
}

.feature-box-logo i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    flex-shrink: 0;

    border-radius: 50%;
    font-size: 26px;

    background: #fff4f7;
    color: #e91e63;

    margin-bottom: 15px;
    transition: .3s;
}

/* If using Flaticon image/SVG downloads instead of an icon-webfont,
   use this block instead of the ".feature-box-logo i" rule above.
   Images can't be tinted with `color`, so size the wrapper here and
   pad it so the icon sits smaller inside the circle. */
.feature-box-logo img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    padding: 16px;
    box-sizing: border-box;
    flex-shrink: 0;

    border-radius: 50%;
    background: #fff4f7;

    margin-bottom: 15px;
    transition: .3s;
}

.feature-box-logo h6 {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 16px;
}

.feature-box-logo p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.feature-box-logo:hover {
    transform: translateY(-8px);
}

.feature-box-logo:hover i,
.feature-box-logo:hover img {
    background: #e91e63;
    color: #fff;
}

/*==============================
      RESPONSIVE
==============================*/

/* Tablets: 3 per row, wraps to 2 rows */
@media (max-width: 992px) {
    .feature-floating {
        margin-top: -50px;
    }

    .feature-card {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px 15px;
        border-radius: 20px;
        padding: 30px 15px;
    }
}

/* Large phones: 2 per row */
@media (max-width: 576px) {
    .feature-floating {
        margin-top: -30px;
    }

    .feature-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 10px;
        padding: 25px 12px;
        border-radius: 16px;
    }

    .feature-box-logo i,
    .feature-box-logo img {
        width: 56px;
        height: 56px;
        font-size: 22px;
        margin-bottom: 10px;
    }

    .feature-box-logo h6 {
        font-size: 14px;
    }

    .feature-box-logo p {
        font-size: 12px;
    }
}

/* Very small phones: keep 2 per row but tighten further */
@media (max-width: 360px) {
    .feature-card {
        gap: 20px 8px;
    }

    .feature-box-logo i,
    .feature-box-logo img {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}



/* info section */

/*==============================
    HOW AI MATCHMAKING WORKS
==============================*/

.ai-work-section {
    padding: 90px 0;
    background: #fff;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
}

.section-title span {
    color: #7E0E17;
}

.title-line {
    width: 80px;
    height: 4px;
    background: #7E0E17;
    margin: 15px auto 0;
    border-radius: 50px;
    position: relative;
}

.title-line::after {
    content: "❤";
    position: absolute;
    left: 50%;
    top: -12px;
    transform: translateX(-50%);
    color: #7E0E17;
    background: #fff;
    padding: 0 8px;
}

.work-card {
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 20px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .3s;
    position: relative;
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .1);
}

.step {
    width: 45px;
    height: 45px;
    background: #7E0E17;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.work-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #7E0E17;
    margin-bottom: 15px;
}

.work-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-size: 15px;
}

/*==============================
      RESPONSIVE
==============================*/

/* Tablets */
@media (max-width: 992px) {
    .ai-work-section {
        padding: 70px 0;
    }

    .section-title {
        margin-bottom: 45px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .work-card {
        padding: 30px 22px;
    }
}

/* Large phones */
@media (max-width: 576px) {
    .ai-work-section {
        padding: 55px 0;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .section-title h2 {
        font-size: 22px;
        line-height: 1.4;
    }

    .title-line {
        width: 64px;
    }

    .work-card {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .step {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 16px;
    }

    .work-card h4 {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .work-card p {
        font-size: 14px;
        line-height: 1.65;
    }
}






/* membership section */

.smart-match-section {
    padding: 100px 0;
    background: #fff8fa;
}

.section-tag {
    color: #e91e63;
    font-weight: 600;
    letter-spacing: 2px;
}

.section-title-logo {
    font-size: 35px;
    font-weight: 700;
    margin: 15px 0;
}

.section-title-logo span {
    color: #7E0E17;
}

.section-desc {
    color: #666;
    margin-bottom: 30px;
}

.match-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.match-list div {
    font-size: 16px;
}

.match-list i {
    color: #e91e63;
    margin-right: 10px;
}

.profile-wrapper {
    position: relative;
    height: 520px;
}

.profile-card {
    position: absolute;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}

.profile-card img {
    width: 100%;
    display: block;
}

.profile-body {
    padding: 20px;
}

.match-score {
    color: #0aa66c;
    font-weight: 600;
}

.big {
    width: 300px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.left {
    width: 220px;
    left: 20px;
    top: 50px;
    transform: rotate(-6deg);
}

.right {
    width: 200px;
    right: 10px;
    top: 50px;
    transform: rotate(6deg);
}

/* ===== RESPONSIVE ===== */

/* Large tablets / small laptops */
@media (max-width: 991px) {
    .smart-match-section {
        padding: 60px 0;
    }

    .section-title-logo {
        font-size: 28px;
    }

    .col-lg-5,
    .col-lg-7 {
        text-align: center;
    }

    .match-list {
        text-align: left;
        max-width: 480px;
        margin: 0 auto;
    }

    .profile-wrapper {
        height: 420px;
        max-width: 480px;
        margin: 40px auto 0;
    }

    .big {
        width: 240px;
    }

    .left {
        width: 170px;
        top: 30px;
        left: 0;
    }

    .right {
        width: 160px;
        top: 30px;
        right: 0;
    }
}

/* Tablets / large phones */
@media (max-width: 767px) {
    .profile-wrapper {
        height: 380px;
        max-width: 380px;
    }

    .big {
        width: 210px;
    }

    .left {
        width: 140px;
        top: 40px;
        left: 0;
    }

    .right {
        width: 130px;
        top: 40px;
        right: 0;
    }

    .profile-body h4,
    .profile-body h5 {
        font-size: 15px;
    }

    .profile-body p {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .match-score {
        font-size: 13px;
    }
}

/* Small phones — switch to a clean stacked layout instead of overlapping */
@media (max-width: 575px) {
    .smart-match-section {
        padding: 40px 0;
    }

    .section-title-logo {
        font-size: 24px;
    }

    .match-list {
        grid-template-columns: 1fr;
    }

    .profile-wrapper {
        position: static;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 260px;
    }

    .profile-card {
        position: static;
        width: 100% !important;
        transform: none !important;
    }
}







/* after membership */
.app-section {
    overflow-x: hidden;
}

.app-box {
    background: linear-gradient(135deg, #c85be8, #4b2fc7);
    border-radius: 25px;
    padding: 60px;
    color: #fff;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(75, 47, 199, 0.35);
}

/* subtle decorative glow — purely visual, doesn't affect layout */
.app-box::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.app-box h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.app-box h2 span {
    color: #ffd7e8;
}

.app-box p {
    margin: 20px 0;
    color: #f4f4f4;
}

.mobile-img {
    width: 180px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease;
}

.mobile-img:hover {
    transform: translateY(-6px);
}

.mobile-img.second {
    margin-left: -60px;
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
}

.store-buttons img {
    height: 55px;
    margin-right: 0;
    border-radius: 8px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.store-buttons img:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.qr-code {
    width: 170px;
    max-width: 100%;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ===== Stats ===== */

.app-stats {
    margin-top: 40px;
    row-gap: 30px;
}

.app-stats .col {
    flex: 1 1 16.66%;
}

.app-stats h4 {
    color: #e91e63;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 4px;
}

.app-stats p {
    margin: 0;
    color: #666;
    font-size: 14px;
}




/* ===== RESPONSIVE ===== */

@media (max-width: 991px) {
    .app-box {
        padding: 40px 30px;
        text-align: center;
    }

    .app-box h2 {
        font-size: 34px;
    }

    .store-buttons {
        justify-content: center;
        margin-top: 10px;
    }

    .mobile-img {
        width: 150px;
        margin-bottom: 20px;
    }

    .qr-code {
        margin-top: 25px;
    }

    .app-stats .col {
        flex: 1 1 33.33%;
    }
}

@media (max-width: 767px) {
    .app-box {
        padding: 35px 20px;
        border-radius: 18px;
    }

    .app-box h2 {
        font-size: 26px;
    }

    .app-box p {
        font-size: 14px;
    }

    .store-buttons img {
        height: 45px;
    }

    .mobile-img {
        width: 130px;
    }

    .qr-code {
        width: 140px;
    }

    .app-stats {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 20px;
    }


    .app-stats .col {
        flex: 1 1 50%;
        margin-bottom: 10px;
    }

    .app-stats h4 {
        font-size: 20px;
    }

    .app-stats p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .app-stats {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 18px;
    }

    .app-stats h4 {
        font-size: 19px;
    }
}





.carousel-wrap {
    position: relative;
    padding: 0 45px;
    /* room for arrows so they never overflow the viewport */
}

.couple-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    margin: auto;
}

.couple-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.couple-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, .15));
}

.card-content {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 0 15px;
}

.card-content h3 {
    font-size: 28px;
    font-family: cursive;
    margin-bottom: 8px;
}

.card-content hr {
    width: 80%;
    border: 1px solid rgba(255, 255, 255, .8);
    margin: 8px auto;
    opacity: 1;
}

.card-content p {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
}

/* Carousel arrows  contained within the padded wrapper, never overflow */
.carousel-control-prev,
.carousel-control-next {
    width: 45px;
    opacity: 1;
}

.carousel-control-prev {
    left: -45px;
    justify-content: flex-start;
}

.carousel-control-next {
    right: -45px;
    justify-content: flex-end;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    background-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
}



/* ===== Hover reveal description ===== */
.couple-desc {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition: max-height .4s ease, opacity .35s ease, margin-top .4s ease;
}

.couple-card:hover .couple-desc {
    max-height: 160px;
    opacity: 1;
    margin-top: 10px;
}

.couple-desc p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, .92);
    margin: 0 0 10px;
}

.couple-desc .read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    color: #fff;
    text-decoration: none;
}

.couple-desc .read-more:hover {
    text-decoration: underline;
    color: #fff;
}

/* Deepen the overlay + slight zoom on hover for polish */
.couple-overlay {
    transition: background .35s ease;
}

.couple-card:hover .couple-overlay {
    background: linear-gradient(to top, rgba(126, 14, 23, .93), rgba(126, 14, 23, .35));
}

.couple-card img {
    transition: transform .5s ease;
}

.couple-card:hover img {
    transform: scale(1.05);
}


/* Tap-to-reveal state for touch devices (mirrors the :hover behavior) */
.couple-card.active .couple-desc {
    max-height: 160px;
    opacity: 1;
    margin-top: 10px;
}

.couple-card.active .couple-overlay {
    background: linear-gradient(to top, rgba(126, 14, 23, .93), rgba(126, 14, 23, .35));
}

/* ===== Tablet (768px - 991px) ===== */
@media (max-width: 991.98px) {
    .couple-card img {
        height: 260px;
    }

    .card-content h3 {
        font-size: 24px;
    }

    .card-content p {
        font-size: 13px;
    }

    .carousel-wrap {
        padding: 0 40px;
    }
}

/* ===== Mobile (below 768px) ===== */
@media (max-width: 767.98px) {
    .couple-card {
        width: 92%;
    }

    .couple-card img {
        height: 220px;
    }

    .card-content h3 {
        font-size: 20px;
    }

    .card-content p {
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .carousel-wrap {
        padding: 0 30px;
    }

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

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

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 32px;
        height: 32px;
        background-size: 12px;
    }
}

/* ===== Extra small (below 400px) ===== */
@media (max-width: 399.98px) {
    .couple-card img {
        height: 190px;
    }

    .card-content h3 {
        font-size: 18px;
    }

    .carousel-wrap {
        padding: 0 22px;
    }

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

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










.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(90deg, #f63d74, #ff6b6b);
    border-radius: 20px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.cta-content {
    color: #fff;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.cta-content p {
    margin: 0;
    opacity: .95;
    font-size: 18px;
}

.cta-button {
    flex-shrink: 0;
}

.cta-button .btn {
    background: #fff;
    color: #e91e63;
    border-radius: 10px;
    padding: 14px 35px;
    font-weight: 700;
    white-space: nowrap;
    display: inline-block;
}

.cta-left,
.cta-right {
    color: rgba(255, 255, 255, .25);
    font-size: 80px;
    flex-shrink: 0;
    position: relative;
    line-height: 1;
}

.small-heart {
    position: absolute;
    left: 90px;
    top: 70px;
    font-size: 35px;
}

.ring-icon {
    font-size: 90px;
}

/* ===================================================
   Large tablets / small desktops (992px - 1199px)
   =================================================== */
@media (max-width: 1199.98px) {
    .cta-content h2 {
        font-size: 36px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-left,
    .cta-right {
        font-size: 60px;
    }

    .ring-icon {
        font-size: 70px;
    }

    .small-heart {
        left: 65px;
        top: 50px;
        font-size: 28px;
    }
}

/* ===================================================
   Tablets (768px - 991px) — decorations shrink further,
   layout stays in a row but gets tighter
   =================================================== */
@media (max-width: 991.98px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-box {
        padding: 35px 30px;
        gap: 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-left,
    .cta-right {
        font-size: 42px;
    }

    .ring-icon {
        font-size: 50px;
    }

    .small-heart {
        left: 45px;
        top: 32px;
        font-size: 20px;
    }

    .cta-button .btn {
        padding: 12px 26px;
        font-size: 15px;
    }
}

/* ===================================================
   Mobile (below 768px) — stack everything vertically,
   hide decorative icons so text has room to breathe
   =================================================== */
@media (max-width: 767.98px) {
    .cta-section {
        padding: 45px 0;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 35px 24px;
        gap: 18px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-left,
    .cta-right {
        display: none;
        /* decorative only — avoids crowding on small screens */
    }

    .cta-button .btn {
        width: 100%;
        text-align: center;
        padding: 13px 20px;
    }
}

/* ===================================================
   Extra small phones (below 400px)
   =================================================== */
@media (max-width: 399.98px) {
    .cta-content h2 {
        font-size: 20px;
    }

    .cta-content p {
        font-size: 13px;
    }

    .cta-box {
        padding: 28px 18px;
        border-radius: 14px;
    }
}

/* footer */








/*=========== TOP FOOTER ===========*/
.footer {
    background: #14233d;
    color: #fff;
    padding: 70px 0 20px;
}

.footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 65px;
    margin-bottom: 20px;
}

.footer-text {
    color: #bfc8d5;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

.footer ul li a {
    color: #bfc8d5;
    text-decoration: none;
    transition: .3s;
}

.footer ul li a:hover {
    color: #ff4d7a;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .3s;
    flex-shrink: 0;
}

.social-icons a:hover {
    background: #ff4d7a;
}

.store-btn {
    width: 170px;
    display: block;
    margin-bottom: 12px;
}

.footer hr {
    border-color: rgba(255, 255, 255, .08);
    margin: 40px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #bfc8d5;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
}

.developer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.developer-logo img {
    height: 28px;
    width: auto;
}

/* ===================================================
   Large tablets / small desktops (992px - 1199px)
   =================================================== */
@media (max-width: 1199.98px) {
    .footer {
        padding: 60px 0 20px;
    }

    .store-btn {
        width: 150px;
    }
}

/* ===================================================
   Tablets (768px - 991px)
   =================================================== */
@media (max-width: 991.98px) {
    .footer {
        padding: 50px 0 20px;
    }

    .footer-logo img {
        height: 55px;
    }

    .store-btn {
        width: 140px;
    }
}

/* ===================================================
   Mobile (below 768px)
   =================================================== */
@media (max-width: 767.98px) {
    .footer {
        padding: 45px 0 20px;
        text-align: center;
    }

    .footer h5 {
        margin-bottom: 15px;
        margin-top: 5px;
        font-size: 17px;
    }

    .footer ul li {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .footer-text {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .social-icons {
        margin-bottom: 8px;
    }

    .store-btn {
        width: 150px;
        margin: 0 auto 12px;
    }

    .footer hr {
        margin: 30px 0 16px;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 12px;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .developer-logo {
        justify-content: center;
    }
}

/* ===================================================
   Extra small phones (below 400px)
   =================================================== */
@media (max-width: 399.98px) {
    .footer-logo img {
        height: 48px;
    }

    .footer h5 {
        font-size: 16px;
    }

    .footer ul li,
    .footer-text {
        font-size: 13px;
    }

    .store-btn {
        width: 135px;
    }
}








#registerModal {
    --rm-maroon: #5c2444;
    --rm-maroon-dark: #401a30;
    --rm-pink: #8a3a63;
    --rm-cream: #FBF7F9;
    --rm-rose-tint: #F3E8EE;
    --rm-ink: #3a2233;
    --rm-ink-soft: #8c7a86;
    --rm-border-soft: #E4D3DE;
    font-family: 'Poppins', sans-serif;
}

.register-modal {
    border: none;
    border-radius: 24px;
    background: var(--rm-cream);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.register-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(92, 36, 68, .06);
    color: var(--rm-ink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.register-modal-close:hover {
    background: var(--rm-rose-tint);
    color: var(--rm-maroon);
}

.register-modal .modal-body {
    padding: 52px 48px 44px;
}

.register-modal-head {
    text-align: center;
    max-width: 460px;
    margin: 0 auto 36px;
}

.register-modal-eyebrow {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--rm-pink);
}

.register-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--rm-maroon);
    margin: 10px 0 10px;
}

.register-modal-sub {
    font-size: 14.5px;
    color: var(--rm-ink-soft);
    margin: 0;
}

/*.register-modal-grid {*/
/*    display: grid;*/
/*    grid-template-columns: 1fr 1fr;*/
/*    gap: 22px;*/
/*}*/


.register-modal-grid {
    display: flex;
    justify-content: center;
}

.register-modal-grid .register-card {
    width: 100%;
    max-width: 420px;
}


.register-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 1.5px solid var(--rm-border-soft);
    border-radius: 18px;
    padding: 34px 26px 28px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.register-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(92, 36, 68, .12);
    border-color: var(--rm-pink);
}

.register-card-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: var(--rm-rose-tint);
    color: var(--rm-maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.register-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--rm-maroon);
    margin: 0 0 10px;
}

.register-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--rm-ink-soft);
    margin: 0 0 26px;
    flex: 1;
}

.register-card-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 20px;
    border-radius: 999px;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .15s ease, border-color .2s ease;
}

.register-card-btn-solid {
    background: var(--rm-maroon);
    border: 1.5px solid var(--rm-maroon);
    color: #fff;
}

.register-card-btn-solid:hover {
    background: var(--rm-maroon-dark);
    border-color: var(--rm-maroon-dark);
    color: #fff;
    transform: translateY(-1px);
}

.register-card-btn-outline {
    background: transparent;
    border: 1.5px solid var(--rm-maroon);
    color: var(--rm-maroon);
}

.register-card-btn-outline:hover {
    background: var(--rm-maroon);
    color: #fff;
    transform: translateY(-1px);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 767.98px) {

    .register-modal-grid {
        display: flex;
        justify-content: center;
    }

    .register-modal-grid .register-card {
        max-width: 100%;
    }

    .register-card {
        padding: 26px 22px 24px;
    }
}

@media (max-width: 575.98px) {
    .register-modal {
        border-radius: 18px;
    }

    .register-modal .modal-body {
        padding: 40px 18px 28px;
    }

    .register-modal-close {
        top: 14px;
        right: 14px;
    }
}