
:root {
    --primary: #087f8c;
    --primary-dark: #05636d;
    --accent: #f3a62a;
    --accent-light: #fff3df;
    --text: #222b2d;
    --muted: #687477;
    --light: #f7faf9;
    --white: #ffffff;
    --border: #e6eded;
    --shadow: 0 15px 45px rgba(18, 55, 60, .08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.topbar {
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    padding: 7px 0;
}

.top-info {
    display: flex;
    gap: 22px;
}

.top-info span i {
    margin-right: 5px;
}

.top-social {
    display: flex;
    gap: 14px;
}

.top-social a {
    color: #fff;
    transition: .3s;
}

.top-social a:hover {
    color: var(--accent);
}

.main-header {
    position: fixed;
    z-index: 1000;
    top: 30px;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,.97);
    box-shadow: 0 3px 20px rgba(0,0,0,.05);
    transition: .35s ease;
}

.main-header.scrolled {
    top: 0;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
}

.navbar {
    min-height: 78px;
}

.navbar-brand,
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.brand-mark {
    width: 43px;
    height: 43px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), #15a4ae);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 20px;
}

.brand-name {
    display: block;
    font-weight: 800;
    font-size: 23px;
    line-height: 1;
    letter-spacing: 1px;
}

.navbar-brand small {
    display: block;
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 3px;
}

.nav-link {
    color: #3d4749;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 13px !important;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    left: 13px;
    bottom: 3px;
    background: var(--accent);
    transition: .3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 26px);
}

.btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 11px 20px;
    transition: .3s ease;
}

.btn-login {
    border: 1px solid var(--border);
    color: var(--primary);
    background: #fff;
}

.btn-login:hover {
    background: var(--accent-light);
    color: var(--primary-dark);
}

.btn-register,
.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.btn-register:hover,
.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

.hero-section {
    position: relative;
    margin-top: 108px;
}

.hero-slide {
    min-height: 650px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* .hero-slide-1 {  */
   /* background-image: url("https://images.unsplash.com/photo-1559027615-cd4628902d4a?auto=format&fit=crop&w=2000&q=90");  */
 /* }  */

/* .hero-slide-2 { */
    /* background-image: url("https://images.unsplash.com/photo-1469571486292-0ba58a3f068b?auto=format&fit=crop&w=2000&q=90"); */
/* } */

/* .hero-slide-3 { */
    /* background-image: url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=2000&q=90"); */
/* } */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,.96) 0%,
        rgba(255,255,255,.82) 38%,
        rgba(255,255,255,.25) 72%,
        rgba(255,255,255,.05) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 650px;
    display: flex;
    align-items: center;
}
.hero-slide { 
    position: relative; 
    overflow: hidden; 
    background-position: center center; 
    background-size: 115%; 
} 
 
.hero-slide.active { 
    animation: heroZoomOut 7s ease-out forwards; 
} 
 
@keyframes heroZoomOut { 
    0% { 
        background-size: 115%; 
        background-position: center center; 
    } 
 
    100% { 
        background-size: 100%; 
        background-position: center center; 
    } 
}
/* ================= HERO CONTENT DROP EFFECT ================= */

.hero-content .eyebrow,
.hero-content h1,
.hero-content p,
.hero-content .hero-buttons {
    opacity: 0;
    transform: translateY(-80px);
}

/* Eyebrow */
.carousel-item.active .eyebrow {
    animation: contentDrop 0.55s ease-out 0.05s forwards;
}

/* Heading */
.carousel-item.active h1 {
    animation: contentDrop 0.55s ease-out 0.12s forwards;
}

/* Paragraph */
.carousel-item.active p {
    animation: contentDrop 0.55s ease-out 0.18s forwards;
}

/* Buttons */
.carousel-item.active .hero-buttons {
    animation: contentDrop 0.55s ease-out 0.25s forwards;
}

@keyframes contentDrop {
    0% {
        opacity: 0;
        transform: translateY(-80px);
    }

    70% {
        opacity: 1;
        transform: translateY(8px);
    }

    85% {
        transform: translateY(-4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.eyebrow,
.section-tag,
.mini-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(8,127,140,.09);
    padding: 8px 13px;
    border-radius: 50px;
}

.hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1.06;
    margin: 20px 0 18px;
    color: #1e292b;
    max-width: 720px;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    max-width: 610px;
    font-size: 17px;
    color: #4f5c5e;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-primary-custom {
    padding: 13px 22px;
}

.btn-outline-light-custom {
    border: 1px solid #7d898a;
    color: #303b3d;
    background: rgba(255,255,255,.55);
    padding: 13px 22px;
}

.btn-outline-light-custom:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-2px);
}

.carousel-control-prev,
.carousel-control-next {
    width: 6%;
}

.carousel-indicators {
    justify-content: flex-start;
    left: calc((100% - 1320px) / 2);
    margin-left: 0;
    bottom: 35px;
}

.carousel-indicators button {
    width: 30px;
    height: 3px;
    border: 0;
    border-radius: 3px;
}

.hero-bottom-wave {
    height: 45px;
    background: #fff;
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    clip-path: ellipse(65% 50% at 50% 100%);
}

.stats-section {
    position: relative;
    z-index: 5;
    margin-top: -20px;
}

.stats-box {
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 18px;
    overflow: hidden;
}

.stat-item {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    border-right: 1px solid var(--border);
}

.col-lg-3:last-child .stat-item {
    border-right: 0;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: #eaf7f8;
    font-size: 21px;
}

.stat-item h3 {
    margin: 0;
    color: var(--primary);
    font-size: 28px;
    font-weight: 800;
}

.stat-item p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.notice-section {
    padding: 35px 0 0;
}

.notice-card {
    min-height: 64px;
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #fff;
}

.notice-label {
    flex: 0 0 auto;
    padding: 17px 20px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 13px;
}

.notice-content {
    flex: 1;
    overflow: hidden;
    padding: 0 18px;
}

.notice-scroll {
    color: #5b6668;
    font-size: 14px;
    white-space: nowrap;
    animation: noticeMove 18s linear infinite;
}

@keyframes noticeMove {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.notice-arrow {
    width: 58px;
    height: 64px;
    display: grid;
    place-items: center;
    color: var(--primary);
    border-left: 1px solid var(--border);
}

.section-padding {
    padding: 100px 0;
}

.section-heading {
    max-width: 700px;
    margin: auto;
}

.section-heading h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4vw, 48px);
    margin: 9px 0 12px;
}

.section-heading h2 span {
    color: var(--primary);
}

.section-heading p {
    color: var(--muted);
    margin: 0 auto;
}

.about-image-wrap {
    position: relative;
    padding-right: 25px;
    padding-bottom: 25px;
}

.about-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 22px;
}

.about-image-wrap::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 150px;
    height: 150px;
    border: 3px solid var(--accent);
    border-radius: 20px;
    z-index: -1;
}

.experience-card {
    position: absolute;
    left: -15px;
    bottom: 10px;
    background: #fff;
    padding: 16px 20px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
}

.experience-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 12px;
    display: grid;
    place-items: center;
}

.experience-card strong,
.experience-card small {
    display: block;
}

.experience-card strong {
    font-size: 14px;
}

.experience-card small {
    font-size: 11px;
    color: var(--muted);
}

.about-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 37px;
    line-height: 1.3;
    margin: 12px 0 18px;
}

.about-content h3 strong {
    color: var(--primary);
}

.about-content p {
    color: var(--muted);
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0;
}

.about-points div {
    font-size: 13px;
    font-weight: 600;
}

.about-points i {
    color: var(--primary);
    margin-right: 6px;
}

.text-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
}

.text-link:hover {
    color: var(--accent);
}

.schemes-section {
    background: var(--light);
}

.scheme-card {
    height: 100%;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: #fff;
    position: relative;
    overflow: hidden;
    transition: .35s ease;
}

.scheme-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.scheme-card.featured {
    background: var(--primary);
    color: #fff;
}

.scheme-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #eaf7f8;
    color: var(--primary);
    font-size: 25px;
    margin-bottom: 22px;
}

.featured .scheme-icon {
    background: rgba(255,255,255,.15);
    color: #fff;
}

.scheme-number {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 40px;
    font-weight: 800;
    color: rgba(8,127,140,.08);
}

.featured .scheme-number {
    color: rgba(255,255,255,.12);
}

.scheme-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.scheme-card p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 22px;
}

.featured p {
    color: rgba(255,255,255,.75);
}

.scheme-card a {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

.featured a {
    color: var(--accent);
}

.how-section {
    background: #fff;
}

.process-card {
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px 22px;
    height: 100%;
    position: relative;
    transition: .3s;
}

.process-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.process-number {
    color: var(--accent);
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 14px;
}

.process-icon {
    width: 65px;
    height: 65px;
    margin: auto auto 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #eaf7f8;
    color: var(--primary);
    font-size: 25px;
}

.process-card h4 {
    font-size: 18px;
}

.process-card p {
    color: var(--muted);
    font-size: 13px;
    margin: 0;
}

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

.cta-box {
    background: linear-gradient(110deg, var(--primary), #0a9ba8);
    color: #fff;
    padding: 45px 50px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    overflow: hidden;
    position: relative;
}

.cta-box::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -90px;
    top: -100px;
    border: 45px solid rgba(255,255,255,.07);
    border-radius: 50%;
}

.cta-box > * {
    position: relative;
    z-index: 2;
}

.cta-box span {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
}

.cta-box h2 {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    margin: 8px 0;
}

.cta-box p {
    margin: 0;
    color: rgba(255,255,255,.8);
}

.btn-light-custom {
    background: #fff;
    color: var(--primary);
    white-space: nowrap;
    padding: 14px 22px;
}

.btn-light-custom:hover {
    background: var(--accent);
    color: #fff;
}

.gallery-section {
    background: var(--light);
}

.gallery-item {
    display: block;
    height: 260px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8,127,140,.75);
    display: grid;
    place-items: center;
    opacity: 0;
    transition: .35s;
}

.gallery-overlay i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--primary);
    font-size: 20px;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.contact-info-box,
.contact-form-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 10px 35px rgba(0,0,0,.04);
}

.contact-section {
    background: #fff;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 26px;
}

.contact-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: #eaf7f8;
    color: var(--primary);
    display: grid;
    place-items: center;
}

.contact-info-item span {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-item p {
    margin: 3px 0 0;
    font-weight: 600;
    font-size: 14px;
}

.contact-socials,
.footer-socials {
    display: flex;
    gap: 9px;
}

.contact-socials a,
.footer-socials a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #eaf7f8;
    color: var(--primary);
    transition: .3s;
}

.contact-socials a:hover,
.footer-socials a:hover {
    background: var(--primary);
    color: #fff;
}

.contact-form-box label {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
}

.form-control {
    border: 1px solid var(--border);
    border-radius: 9px;
    padding: 12px 14px;
    font-size: 13px;
    box-shadow: none !important;
}

.form-control:focus {
    border-color: var(--primary);
}

.footer {
    background: #142326;
    color: #fff;
    padding: 70px 0 0;
}

.footer-brand {
    color: #fff;
    margin-bottom: 18px;
}

.footer-brand small {
    display: block;
    color: #9eacad;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-brand strong {
    font-size: 23px;
}

.footer-about {
    color: #aeb9ba;
    font-size: 13px;
    max-width: 360px;
}

.footer-socials a {
    background: rgba(255,255,255,.08);
    color: #fff;
}

.footer h5 {
    font-size: 15px;
    margin-bottom: 20px;
}

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

.footer li {
    margin-bottom: 10px;
    color: #aeb9ba;
    font-size: 13px;
}

.footer li a {
    color: #aeb9ba;
    transition: .3s;
}

.footer li a:hover {
    color: var(--accent);
    padding-left: 3px;
}

.footer-contact i {
    color: var(--accent);
    width: 20px;
}

.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: #879495;
    font-size: 11px;
}

.footer-bottom i {
    color: var(--accent);
}

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 57px;
    height: 57px;
    border-radius: 50%;
    background: #19b968;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(25,185,104,.35);
    z-index: 999;
    animation: whatsappPulse 2.2s infinite;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.08);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(25,185,104,.35); }
    50% { box-shadow: 0 10px 35px rgba(25,185,104,.65); }
}

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 95px;
    width: 43px;
    height: 43px;
    border: 0;
    border-radius: 11px;
    background: var(--primary);
    color: #fff;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 998;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 991px) {
    .topbar {
        display: none;
    }

    .main-header {
        top: 0;
    }

    .navbar {
        min-height: 70px;
    }

    .navbar-collapse {
        background: #fff;
        padding: 15px 0 20px;
    }

    .nav-link {
        padding: 10px 0 !important;
    }

    .nav-link::after {
        left: 0;
    }

    .hero-section {
        margin-top: 70px;
    }

    .hero-slide,
    .hero-content {
        min-height: 590px;
    }

    .carousel-indicators {
        left: 30px;
    }

    .stats-section {
        margin-top: 0;
        padding-top: 20px;
    }

    .stat-item {
        border-bottom: 1px solid var(--border);
    }

    .about-image-wrap {
        max-width: 700px;
        margin: auto;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .hero-slide,
    .hero-content {
        min-height: 590px;
    }

    .hero-overlay {
        background: linear-gradient(
            90deg,
            rgba(255,255,255,.96),
            rgba(255,255,255,.76)
        );
    }

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

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

    .section-padding {
        padding: 70px 0;
    }

    .stat-item {
        justify-content: flex-start;
        padding: 15px 12px;
        gap: 10px;
    }

    .stat-icon {
        width: 43px;
        height: 43px;
        font-size: 18px;
    }

    .stat-item h3 {
        font-size: 22px;
    }

    .stat-item p {
        font-size: 10px;
    }

    .notice-label span {
        display: none;
    }

    .notice-label {
        width: 50px;
        justify-content: center;
        padding: 17px 10px;
    }

    .about-image {
        height: 370px;
    }

    .experience-card {
        left: 5px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 32px 25px;
    }

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

    .gallery-item {
        height: 180px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        right: 18px;
        bottom: 18px;
        width: 52px;
        height: 52px;
    }

    .back-to-top {
        right: 18px;
        bottom: 80px;
    }
}


/* ================= BETI VIVAH SAHYOG VITRAN ================= */

.distribution-section {
    background: #fff;
}

.distribution-image-wrap {
    position: relative;
    padding-right: 22px;
    padding-bottom: 22px;
}

.distribution-image-wrap::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 145px;
    height: 145px;
    border: 3px solid var(--accent);
    border-radius: 20px;
    z-index: 0;
}

.distribution-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(18,55,60,.10);
}

.distribution-badge {
    position: absolute;
    z-index: 3;
    left: -15px;
    bottom: 5px;
    background: #fff;
    border-radius: 15px;
    padding: 15px 19px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 40px rgba(18,55,60,.12);
}

.distribution-badge > i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 20px;
}

.distribution-badge strong,
.distribution-badge small {
    display: block;
}

.distribution-badge strong {
    font-size: 14px;
}

.distribution-badge small {
    color: var(--muted);
    font-size: 10px;
}

.distribution-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 38px;
    line-height: 1.3;
    margin: 10px 0 18px;
}

.distribution-content h3 strong {
    color: var(--primary);
}

.distribution-content p {
    color: var(--muted);
    font-size: 14px;
}

.distribution-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin-top: 24px;
}

.distribution-highlight {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    transition: .3s ease;
}

.distribution-highlight:hover {
    transform: translateY(-3px);
    border-color: rgba(8,127,140,.25);
    box-shadow: 0 8px 25px rgba(18,55,60,.06);
}

.highlight-icon {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #eaf7f8;
    color: var(--primary);
}

.distribution-highlight strong,
.distribution-highlight span {
    display: block;
}

.distribution-highlight strong {
    font-size: 12px;
}

.distribution-highlight span {
    color: var(--muted);
    font-size: 10px;
    line-height: 1.4;
}

.distribution-stats {
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(18,55,60,.05);
}

.distribution-stat {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid var(--border);
    text-align: center;
}

.distribution-stat i {
    color: var(--primary);
    font-size: 21px;
    margin-bottom: 5px;
}

.distribution-stat strong {
    color: var(--primary);
    font-size: 24px;
    line-height: 1.2;
}

.distribution-stat span {
    color: var(--muted);
    font-size: 11px;
}

@media (max-width: 991px) {
    .distribution-image-wrap {
        max-width: 700px;
        margin: auto;
    }

    .distribution-content {
        margin-top: 15px;
    }
}

@media (max-width: 575px) {
    .distribution-image {
        height: 360px;
    }

    .distribution-content h3 {
        font-size: 31px;
    }

    .distribution-highlights {
        grid-template-columns: 1fr;
    }

    .distribution-stat {
        min-height: 105px;
        border-bottom: 1px solid var(--border);
    }

    .distribution-badge {
        left: 0;
    }
}


/* ================= BETI VIVAH SAHYOG ================= */

.beti-vivah-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.beti-vivah-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -220px;
    top: 80px;
    border-radius: 50%;
    background: rgba(243,166,42,.06);
}

.beti-vivah-image {
    position: relative;
    padding: 0 22px 22px 0;
}

.beti-vivah-image::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 150px;
    height: 150px;
    border: 3px solid var(--accent);
    border-radius: 20px;
    z-index: 0;
}

.beti-vivah-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 22px;
}

.vivah-badge {
    position: absolute;
    z-index: 3;
    left: -15px;
    bottom: 5px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.vivah-badge > i {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--accent);
    background: var(--accent-light);
}

.vivah-badge strong,
.vivah-badge small {
    display: block;
}

.vivah-badge strong {
    font-size: 14px;
}

.vivah-badge small {
    color: var(--muted);
    font-size: 10px;
}

.vivah-intro h3 {
    font-family: "Playfair Display", serif;
    font-size: 37px;
    line-height: 1.3;
    margin: 10px 0 15px;
}

.vivah-intro h3 strong {
    color: var(--primary);
}

.vivah-intro p {
    color: var(--muted);
    font-size: 14px;
}

.vivah-stats {
    margin-top: 25px;
}

.vivah-stat-card {
    height: 100%;
    padding: 18px 15px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: #fff;
    text-align: center;
    transition: .3s ease;
}

.vivah-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.vivah-stat-icon {
    width: 43px;
    height: 43px;
    margin: 0 auto 10px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #eaf7f8;
    color: var(--primary);
}

.vivah-stat-card strong {
    display: block;
    color: var(--primary);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.2;
}

.vivah-stat-card span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 10px;
}

.vivah-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin: 24px 0;
}

.vivah-points div {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
}

.vivah-points i {
    color: var(--primary);
    margin-top: 4px;
}

.vivah-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-outline-primary-custom {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: #fff;
}

.btn-outline-primary-custom:hover {
    background: var(--primary);
    color: #fff;
}

.distribution-highlight {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 23px 28px;
    border-radius: 17px;
    background: linear-gradient(110deg, #f1fafb, #fff9ed);
    border: 1px solid var(--border);
}

.distribution-icon {
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--accent);
    font-size: 24px;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
}

.distribution-text {
    flex: 1;
}

.distribution-text span {
    color: var(--primary);
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 800;
}

.distribution-text h4 {
    font-size: 17px;
    margin: 2px 0 2px;
}

.distribution-text p {
    color: var(--muted);
    margin: 0;
    font-size: 12px;
}

.distribution-btn {
    flex: 0 0 auto;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.distribution-btn:hover {
    color: var(--accent);
}

@media (max-width: 767px) {
    .vivah-intro h3 {
        font-size: 30px;
    }

    .vivah-points {
        grid-template-columns: 1fr;
    }

    .distribution-highlight {
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 20px;
    }

    .distribution-text {
        flex-basis: calc(100% - 75px);
    }

    .distribution-btn {
        margin-left: 73px;
    }
}

@media (max-width: 575px) {
    .beti-vivah-image img {
        height: 350px;
    }

    .vivah-badge {
        left: 5px;
    }

    .distribution-text {
        flex-basis: 100%;
    }

    .distribution-btn {
        margin-left: 0;
    }
}


/* ================= ACTUAL FRCT CONTENT ================= */

.account-card {
    background: #f7faf9;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.account-card > div:first-child span,
.account-card > div:first-child strong {
    display: block;
}

.account-card > div:first-child span {
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.account-card > div:first-child strong {
    font-size: 20px;
    margin-top: 4px;
}

.account-details {
    display: flex;
    gap: 28px;
}

.account-details small,
.account-details b {
    display: block;
}

.account-details small {
    color: var(--muted);
    font-size: 10px;
}

.account-details b {
    font-size: 13px;
}

.actual-stat-visual {
    min-height: 460px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 80% 20%, rgba(243,166,42,.25), transparent 30%),
        linear-gradient(135deg, #eaf7f8, #ffffff);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    box-shadow: 0 18px 45px rgba(18,55,60,.08);
}

.actual-stat-visual .visual-icon {
    width: 85px;
    height: 85px;
    border-radius: 24px;
    background: var(--primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 38px;
    margin-bottom: 22px;
}

.actual-stat-visual strong {
    color: var(--primary);
    font-family: "Playfair Display", serif;
    font-size: 52px;
    line-height: 1.1;
}

.actual-stat-visual span {
    max-width: 380px;
    margin-top: 12px;
    font-size: 18px;
    font-weight: 600;
}

.actual-stat-visual small {
    margin-top: 12px;
    color: var(--muted);
    font-size: 11px;
}

.team-section {
    background: #fff;
}

.team-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 20px;
    text-align: center;
    height: 100%;
    transition: .35s ease;
}

.team-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.team-avatar {
    width: 78px;
    height: 78px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #eaf7f8;
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 34px;
}

.team-card h4 {
    font-size: 17px;
    margin-bottom: 3px;
}

.team-card > span {
    display: block;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card a {
    color: var(--muted);
    font-size: 12px;
}

.team-card a:hover {
    color: var(--primary);
}

@media (max-width: 991px) {
    .account-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .account-details {
        flex-wrap: wrap;
        gap: 15px 25px;
    }
}

@media (max-width: 575px) {
    .actual-stat-visual {
        min-height: 360px;
    }

    .actual-stat-visual strong {
        font-size: 40px;
    }
}


.frct-about-visual {
    background:
        radial-gradient(circle at 80% 20%, rgba(243,166,42,.28), transparent 30%),
        linear-gradient(135deg, #eaf7f8, #ffffff);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary);
    box-shadow: 0 18px 45px rgba(18,55,60,.08);
}

.frct-about-visual .visual-icon {
    width: 82px;
    height: 82px;
    border-radius: 24px;
    background: var(--primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 35px;
    margin-bottom: 18px;
}

.frct-about-visual strong {
    font-family: "Playfair Display", serif;
    font-size: 48px;
}

.frct-about-visual span {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.frct-about-visual small {
    margin-top: 7px;
    color: var(--muted);
    font-size: 11px;
}

.frct-gallery-card {
    min-height: 220px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: .35s ease;
}

.frct-gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.frct-gallery-card i {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: #eaf7f8;
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 15px;
}

.frct-gallery-card strong {
    font-size: 17px;
}

.frct-gallery-card span {
    color: var(--muted);
    font-size: 12px;
}

@media (max-width: 575px) {
    .frct-about-visual strong {
        font-size: 38px;
    }

    .frct-gallery-card {
        min-height: 170px;
    }
}
.cursor-bubble {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    animation: bubbleBurst 0.65s ease-out forwards;
}

.bubble-teal {
    background: #087f8c;
    box-shadow: 0 0 10px rgba(8, 127, 140, 0.8);
}

.bubble-golden {
    background: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

@keyframes bubbleBurst {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.4);
    }

    40% {
        opacity: 0.9;
    }

    100% {
        opacity: 0;
        transform:
            translate(
                calc(-50% + var(--x)),
                calc(-50% + var(--y))
            )
            scale(1.8);
    }
}

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

.main-header .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(12px);
    min-width: 230px;
    margin-top: 12px !important;
    padding: 10px;
    border: none;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
}

/* Mouse hover par submenu open */
.main-header .dropdown:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Dropdown items */
.main-header .dropdown-menu .dropdown-item {
    padding: 11px 15px;
    border-radius: 9px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

/* Hover effect */
.main-header .dropdown-menu .dropdown-item:hover {
    background: #087f8c;
    color: #fff;
    transform: translateX(4px);
}

/* Dropdown arrow */
.main-header .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.25s ease;
}

.main-header .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* ================= FRCT LOGO ================= */

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
}

.brand-mark {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

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

.brand-name {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
    color: #087f8c;
}

.brand-text small {
    font-size: 10px;
    color: #777;
    margin-top: 2px;
}

@media (max-width: 991.98px) {

    .brand-mark {
        width: 48px;
        height: 48px;
    }

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

    .brand-text small {
        font-size: 9px;
    }
}
/* आकस्मिक निधन पर आर्थिक सहयोग योजना */
.frct-support-section {
    background: #f7f9fc;
}

.support-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
}

.marriage-card {
    text-align: center;
    border-top: 5px solid #087f8c;
}

.support-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff3d5;
    color: #d89000;
    font-size: 30px;
}

.support-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: #fff3d5;
    color: #a96b00;
    font-weight: 700;
    font-size: 14px;
}

.support-badge.danger {
    background: #ffe8e8;
    color: #c62828;
}

.support-card h2 {
    margin: 18px 0;
    font-weight: 800;
    color: #17233c;
}

.support-highlight {
    max-width: 900px;
    margin: auto;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.support-highlight strong {
    color: #c78300;
}

.btn-support {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
    padding: 13px 25px;
    border-radius: 30px;
    background: #d99a17;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.btn-support:hover {
    color: #fff;
    transform: translateY(-2px);
}

.death-card {
    border-top: 5px solid #087f8c;
}

.alert-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.alert-date {
    background: #fff4f4;
    border-radius: 15px;
    padding: 15px 20px;
    text-align: center;
}

.alert-date small {
    display: block;
    color: #777;
}

.alert-date strong {
    display: block;
    color: #c62828;
    margin-top: 5px;
}

.mandatory-box {
    margin: 25px 0;
    padding: 15px 20px;
    border-radius: 12px;
    background: #fff4e5;
    color: #a55d00;
}

.pool-info,
.qr-note {
    padding: 22px;
    border-radius: 15px;
    background: #f7f9fc;
    margin-top: 20px;
}

.pool-info h3 {
    color: #17233c;
    font-weight: 800;
}

.pool-card {
    height: 100%;
    padding: 28px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #e9edf3;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.pool-title {
    margin-bottom: 20px;
}

.pool-title span {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 25px;
    background: #eef5ff;
    color: #245ba8;
    font-weight: 800;
}

.member-name {
    font-size: 20px;
    font-weight: 800;
    margin: 15px 0;
    color: #222;
}

.member-details {
    padding-left: 20px;
    line-height: 1.9;
    color: #555;
}

.pool-card h5 {
    margin-top: 25px;
    font-weight: 800;
}

.bank-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.bank-details div {
    padding: 12px;
    background: #f8fafc;
    border-radius: 10px;
}

.bank-details span {
    display: block;
    font-size: 12px;
    color: #777;
}

.bank-details strong {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    word-break: break-word;
}

.bank-details .minimum {
    background: #eaf8ef;
}

.bank-details .minimum strong {
    color: #15803d;
    font-size: 18px;
}

.qr-wrapper {
    text-align: center;
    margin-top: 25px;
}

.qr-wrapper img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    padding: 8px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
}

.upload-process {
    padding: 30px;
    border-radius: 20px;
    background: #f8fafc;
}

.upload-process h3 {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 800;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.process-item {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
}

.process-item span {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #17233c;
    color: #fff;
    font-weight: 800;
}

.process-item p {
    margin: 12px 0 0;
    color: #555;
    line-height: 1.6;
}

.important-note {
    margin-top: 30px;
    padding: 25px;
    border-radius: 15px;
    background: #fff0f0;
    border-left: 5px solid #c62828;
}

.important-note h3 {
    color: #c62828;
    font-weight: 800;
}

.important-note p {
    margin: 8px 0 0;
    line-height: 1.8;
}

.frct-signature {
    text-align: center;
    margin-top: 30px;
    color: #555;
}

.frct-signature > strong {
    color: #c78300;
    font-size: 20px;
}

@media (max-width: 991px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .alert-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .support-card {
        padding: 22px 16px;
    }

    .bank-details {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .pool-card {
        padding: 20px 15px;
    }

    .support-card h2 {
        font-size: 24px;
    }
}

