
: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: 14px;
    font-weight: bold;
    padding: 4px 0;
}

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

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

/* SOCIAL ICONS */

.top-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .top-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 26px;
        color: #fff;
        text-decoration: none;
        font-size: 15px;
        line-height: 1;
        transition: all .3s ease;
    }

        .top-social a:hover {
            color: var(--accent);
            transform: translateY(-2px);
        }


/* MOBILE */

@media (max-width: 767px) {

    .topbar {
        font-size: 11px;
        padding: 7px 0;
    }

    .top-info {
        gap: 12px;
    }

        .top-info span {
            gap: 4px;
        }

            .top-info span i {
                font-size: 13px;
                width: 15px;
                height: 15px;
            }

    .top-social {
        gap: 6px;
    }

        .top-social a {
            width: 22px;
            height: 22px;
            font-size: 13px;
        }
}

.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
========================= */

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

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

.brand-mark {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}


/* =========================
   NAV LINKS
========================= */

.nav-link {
    color: #3d4749;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 13px !important;
    position: relative;
    text-decoration: none;
}

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

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

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


/* =====================================================
   REUSABLE CUSTOM DROPDOWN
===================================================== */

.custom-dropdown {
    position: relative;
}


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

@media (min-width: 992px) {

    .custom-dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 350px;
        margin: 0;
        padding: 8px 0;
        list-style: none;
        background: #ffffff;
        border: none;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        z-index: 99999;
    }


    /* Desktop hover */

    .custom-dropdown:hover > .custom-dropdown-menu {
        display: block;
    }


    .custom-dropdown-menu li {
        width: 100%;
    }


    .custom-dropdown-menu a {
        display: block;
        padding: 9px 16px;
        color: #3d4749;
        font-size: 14px;
        text-decoration: none;
        transition: all .25s ease;
    }


        .custom-dropdown-menu a:hover {
            background: rgba(8, 127, 140, 0.08);
            color: var(--primary);
        }
}


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

@media (max-width: 991.98px) {

    .custom-dropdown {
        width: 100%;
    }


    /* CLOSED - NO SPACE */

    .custom-dropdown-menu {
        display: none !important;
        position: static !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }


    /* OPEN */

    .custom-dropdown.is-open > .custom-dropdown-menu {
        display: block !important;
        padding: 4px 0 !important;
    }


    .custom-dropdown-menu li {
        width: 100%;
    }


    .custom-dropdown-menu a {
        display: block;
        width: 100%;
        padding: 8px 20px;
        color: #3d4749;
        font-size: 13px;
        text-decoration: none;
        background: transparent;
        transition: all .2s ease;
    }


        .custom-dropdown-menu a:hover,
        .custom-dropdown-menu a:focus {
            background: rgba(8, 127, 140, 0.08);
            color: var(--primary);
        }


    /* Parent */

    .custom-dropdown-toggle {
        cursor: pointer;
    }


        /* Remove underline on mobile */

        .custom-dropdown-toggle::after {
            display: none !important;
        }
}


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

.navbar-toggler {
    border: none;
    padding: 5px 8px;
    box-shadow: none !important;
}

    .navbar-toggler:focus {
        box-shadow: none !important;
    }
/* =========================
   LOGIN / REGISTER BUTTONS
========================= */

.btn-login,
.btn-register {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 7px;
    text-decoration: none;
    transition: .3s ease;
}

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

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

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

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


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

@media (max-width: 991.98px) {

    .navbar-nav .btn-login,
    .navbar-nav .btn-register {
        display: inline-block;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .navbar-nav .ms-lg-2 {
        margin-left: 0 !important;
    }
}

.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 ================= */

.gallery-section {
    background: #fff;
}

.frct-gallery-card {
    position: relative;
    height: 260px;
    border-radius: 18px;
    overflow: hidden;
    display: block;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    cursor: pointer;
}

    /* Image */
    .frct-gallery-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .7s cubic-bezier(.25,.46,.45,.94);
    }

    /* Dark / Teal overlay */
    .frct-gallery-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(0, 0, 0, .78), rgba(8, 127, 140, .35), rgba(8, 127, 140, .05) );
        opacity: .25;
        transition: .4s ease;
    }

/* Content */
.gallery-card-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 3;
    color: #fff;
    transform: translateY(15px);
    transition: .4s ease;
}

    .gallery-card-content strong {
        display: block;
        font-size: 19px;
        font-weight: 700;
        margin-bottom: 3px;
    }

    .gallery-card-content span {
        font-size: 13px;
        opacity: .9;
    }

/* Eye button */
.gallery-view {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    display: grid;
    place-items: center;
    transform: translate(-50%, -35%);
    opacity: 0;
    z-index: 4;
    transition: .4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,.2);
}

    .gallery-view i {
        font-size: 21px;
    }

/* Hover */
.frct-gallery-card:hover img {
    transform: scale(1.10);
}

.frct-gallery-card:hover::after {
    opacity: 1;
}

.frct-gallery-card:hover .gallery-card-content {
    transform: translateY(0);
}

.frct-gallery-card:hover .gallery-view {
    opacity: 1;
    transform: translate(-50%, -50%);
}

/* Slight lift */
.frct-gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(8,127,140,.20);
    transition: .4s ease;
}


/* ================= MOBILE ================= */

@media (max-width: 767px) {

    .frct-gallery-card {
        height: 210px;
        border-radius: 14px;
    }

    .gallery-card-content {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

        .gallery-card-content strong {
            font-size: 16px;
        }

        .gallery-card-content span {
            font-size: 12px;
        }

    .gallery-view {
        width: 45px;
        height: 45px;
    }
}

.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 ================= */

.team-section {
    background: #fff;
}

.team-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(8,127,140,.10);
    box-shadow: 0 8px 28px rgba(0,0,0,.07);
    transition: all .4s ease;
}

    .team-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(8,127,140,.18);
    }


/* Image */

.team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #eef6f7;
}

    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .7s ease, filter .5s ease;
    }


/* Overlay */

.team-image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8,127,140,.55);
    opacity: 0;
    transition: .4s ease;
}

    .team-image-overlay a {
        width: 58px;
        height: 58px;
        border-radius: 50%;
        background: #fff;
        color: var(--primary);
        display: grid;
        place-items: center;
        text-decoration: none;
        font-size: 21px;
        transform: scale(.7);
        transition: .35s ease;
        box-shadow: 0 8px 25px rgba(0,0,0,.25);
    }


/* Hover */

.team-card:hover .team-image img {
    transform: scale(1.08);
}

.team-card:hover .team-image-overlay {
    opacity: 1;
}

    .team-card:hover .team-image-overlay a {
        transform: scale(1);
    }


/* Info */

.team-info {
    padding: 20px 15px 22px;
}

    .team-info h4 {
        margin: 0 0 5px;
        font-size: 20px;
        font-weight: 700;
        color: #222;
    }

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


/* Phone */

.team-phone {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    color: #666;
    font-size: 13px;
    transition: .3s ease;
}

    .team-phone i {
        color: var(--primary);
    }

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


/* ================= MOBILE ================= */

@media (max-width: 767px) {

    .team-card {
        border-radius: 15px;
    }

    .team-image {
        height: 220px;
    }

    .team-info {
        padding: 14px 8px 17px;
    }

        .team-info h4 {
            font-size: 15px;
        }

        .team-info > span {
            font-size: 11px;
            margin-bottom: 8px;
        }

    .team-phone {
        font-size: 11px;
    }

    .team-image-overlay a {
        width: 46px;
        height: 46px;
        font-size: 17px;
    }
}

@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;
    }
}
/* =========================================================
   NGO REGISTER PAGE - FINAL FIX
   ========================================================= */

.register-page {
    width: 100%;
    min-height: 100vh;
    padding: 70px 0 80px;
    background: #f5f9f8;
}

.register-wrapper {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
}

.register-heading {
    text-align: center;
    margin-bottom: 30px;
}

    .register-heading .section-tag {
        display: inline-block;
        margin-bottom: 10px;
    }

    .register-heading h1 {
        margin: 0 0 10px;
        font-family: 'Playfair Display', serif;
        font-size: 38px;
        font-weight: 700;
        color: #163f45;
    }

        .register-heading h1 span {
            color: #087f8c;
        }

    .register-heading p {
        margin: 0;
        color: #6c7b7d;
        font-size: 15px;
    }


/* MAIN CARD */

.register-card {
    width: 100%;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #e4eeee;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
}

.register-form-box {
    padding: 40px;
}


/* TOP INFORMATION */

.registration-info {
    background: linear-gradient(135deg, #087f8c, #075d67);
    color: #fff;
    border-radius: 16px;
    padding: 25px 28px;
    margin-bottom: 30px;
}

    .registration-info h4 {
        margin: 0 0 8px;
        font-size: 20px;
        font-weight: 700;
    }

    .registration-info p {
        margin: 0;
        font-size: 14px;
        line-height: 1.7;
    }

    .registration-info .donation {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-top: 18px;
        padding: 10px 17px;
        border-radius: 10px;
        background: rgba(255,255,255,.15);
    }

        .registration-info .donation strong {
            font-size: 21px;
        }


/* SECTION TITLE */

.form-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5eeee;
    color: #087f8c;
    font-size: 18px;
    font-weight: 700;
}

    .form-section-title:first-child {
        margin-top: 0;
    }

    .form-section-title i {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(8,127,140,.10);
        border-radius: 50%;
    }


/* FORM */

.register-form-box label {
    display: block;
    margin-bottom: 7px;
    color: #34494d;
    font-size: 14px;
    font-weight: 600;
}

    .register-form-box label .required {
        color: #dc3545;
    }

.register-form-box .form-control,
.register-form-box .form-select {
    width: 100%;
    min-height: 48px;
    border: 1px solid #d8e5e5;
    border-radius: 9px;
    padding: 10px 13px;
    font-size: 14px;
    background: #fff;
}

.register-form-box textarea.form-control {
    min-height: 100px;
}

.register-form-box .form-control:focus,
.register-form-box .form-select:focus {
    border-color: #087f8c;
    box-shadow: 0 0 0 3px rgba(8,127,140,.10);
}


/* FILE */

.upload-box {
    padding: 16px;
    background: #f8fbfb;
    border: 1px dashed #b8cdce;
    border-radius: 10px;
}

    .upload-box small {
        display: block;
        margin-top: 7px;
        color: #758487;
        font-size: 12px;
    }


/* TERMS */

.terms-box {
    margin-top: 28px;
    padding: 16px;
    border-radius: 12px;
    background: #f7faf9;
    border: 1px solid #e1ebea;
}

    .terms-box .form-check {
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }

    .terms-box .form-check-input {
        margin-top: 5px;
        flex-shrink: 0;
    }

    .terms-box label {
        margin: 0;
        font-weight: 500;
        line-height: 1.6;
        color: #566668;
    }


/* BUTTON */

.register-submit-area {
    text-align: center;
    margin-top: 30px;
}

.btn-register-submit {
    min-width: 210px;
    padding: 13px 28px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #087f8c, #075d67);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s ease;
}

    .btn-register-submit:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(8,127,140,.25);
    }

.login-note {
    margin-top: 15px;
    color: #758487;
    font-size: 14px;
}

    .login-note a {
        color: #087f8c;
        font-weight: 700;
        text-decoration: none;
    }


/* MESSAGE */

.success-message,
.error-message {
    padding: 13px 16px;
    margin-bottom: 20px;
    border-radius: 9px;
    font-size: 14px;
}

.success-message {
    color: #176b35;
    background: #eaf8f0;
    border: 1px solid #bce5ca;
}

.error-message {
    color: #a12626;
    background: #fff0f0;
    border: 1px solid #f2c2c2;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .register-page {
        padding: 35px 12px 50px;
    }

    .register-wrapper {
        max-width: 100%;
    }

    .register-heading {
        margin-bottom: 22px;
    }

        .register-heading h1 {
            font-size: 28px;
            line-height: 1.3;
        }

        .register-heading p {
            font-size: 13px;
            padding: 0 10px;
        }

    .register-card {
        border-radius: 15px;
    }

    .register-form-box {
        padding: 22px 16px;
    }

    .registration-info {
        padding: 20px 17px;
        border-radius: 13px;
    }

        .registration-info h4 {
            font-size: 17px;
        }

        .registration-info .donation {
            width: 100%;
            justify-content: center;
        }

    .form-section-title {
        margin-top: 25px;
        font-size: 16px;
    }

        .form-section-title i {
            width: 32px;
            height: 32px;
        }

    .register-form-box .row {
        --bs-gutter-x: 12px;
        --bs-gutter-y: 14px;
    }

    .btn-register-submit {
        width: 100%;
    }
}
/* =========================================================
   FRCT MEMBER REGISTRATION PAGE
   ========================================================= */

.register-page {
    background: linear-gradient(135deg, #f5fbfb 0%, #fffaf1 100%);
    padding: 55px 0 70px;
    min-height: calc(100vh - 80px);
}

.register-wrapper {
    max-width: 1050px;
    margin: 0 auto;
}

/* ---------- Heading ---------- */

.register-heading {
    text-align: center;
    margin-bottom: 30px;
}

    .register-heading .section-tag {
        display: inline-block;
        background: rgba(8, 127, 140, 0.10);
        color: #087f8c;
        padding: 7px 18px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .8px;
        margin-bottom: 12px;
    }

    .register-heading h1 {
        color: #173b40 !important;
        font-family: 'Playfair Display', serif;
        font-size: 38px;
        font-weight: 700;
        margin: 0 0 10px;
    }

        .register-heading h1 span {
            color: #087f8c;
        }

    .register-heading p {
        color: #68787b;
        font-size: 16px;
        margin: 0;
    }


/* ---------- Main Card ---------- */

.register-card {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
    border: 1px solid rgba(8, 127, 140, .10);
    overflow: hidden;
}

.register-form-box {
    padding: 35px 40px 40px;
}


/* ---------- Registration Info ---------- */

.registration-info {
    background: linear-gradient( 135deg, rgba(8, 127, 140, .08), rgba(212, 166, 75, .10) );
    border: 1px solid rgba(8, 127, 140, .12);
    border-radius: 16px;
    padding: 22px 25px;
    margin-bottom: 28px;
}

    .registration-info h4 {
        color: #087f8c;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .registration-info p {
        color: #555;
        margin-bottom: 15px;
        font-size: 15px;
    }

.donation {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    width: fit-content;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
}

    .donation i {
        color: #c99832;
        font-size: 20px;
    }

    .donation span {
        color: #555;
        font-size: 14px;
    }

    .donation strong {
        color: #087f8c;
        font-size: 19px;
    }


/* ---------- Messages ---------- */

.success-message,
.error-message {
    padding: 13px 17px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.success-message {
    background: #e9f8ef;
    border: 1px solid #b8e6c8;
    color: #18743c;
}

.error-message {
    background: #fff0f0;
    border: 1px solid #f2c1c1;
    color: #b42318;
}


/* ---------- Section Titles ---------- */

.form-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 30px 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e6eeee;
    color: #173b40;
    font-size: 18px;
    font-weight: 700;
}

    .form-section-title:first-of-type {
        margin-top: 5px;
    }

    .form-section-title i {
        width: 34px;
        height: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 9px;
        background: rgba(8, 127, 140, .10);
        color: #087f8c;
        font-size: 16px;
    }


/* ---------- Labels ---------- */

.register-form-box label {
    color: #33494d;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 7px;
}

.required {
    color: #d04b42;
    font-weight: 700;
}


/* ---------- Inputs ---------- */

.register-form-box .form-control,
.register-form-box .form-select {
    min-height: 47px;
    border: 1px solid #dce5e6;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    color: #34474a;
    background-color: #fff;
    box-shadow: none;
    transition: all .25s ease;
}

.register-form-box textarea.form-control {
    min-height: 95px;
    resize: vertical;
}

.register-form-box .form-control::placeholder {
    color: #a0abad;
}

.register-form-box .form-control:focus,
.register-form-box .form-select:focus {
    border-color: #087f8c;
    box-shadow: 0 0 0 3px rgba(8, 127, 140, .10);
}


/* ================= PAYMENT UPLOAD ================= */

.payment-upload-area {
    width: 100%;
    background: #f8fbfb;
    border: 1px dashed #b7cfd1;
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}


/* ================= FILE ================= */

.payment-file {
    width: 420px;
    flex: 0 0 420px;
}

    .payment-file .form-control {
        width: 420px !important;
        height: 40px;
        border: 1px solid #d5e2e3;
        border-radius: 7px;
        background: #fff;
        padding: 6px 10px;
        font-size: 13px;
    }


    /* Help Text */

    .payment-file small {
        display: block;
        margin-top: 5px;
        color: #7b898b;
        font-size: 11px;
    }


/* ================= PREVIEW BUTTON ================= */

.payment-action {
    width: 100px;
    flex: 0 0 100px;
}

.payment-preview-btn {
    width: 100px !important;
    height: 40px;
    margin-bottom: 20px;
    padding: 0;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}


/* ================= IMAGE ================= */

.payment-image {
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
}

.payment-preview-image {
    display: block;
    width: 55px !important;
    height: 55px !important;
    object-fit: cover;
    border-radius: 7px;
    border: 1px solid #d5e2e3;
    background: #fff;
}


/* ================= MOBILE ================= */

@media (max-width: 576px) {

    .payment-upload-area {
        padding: 8px;
        gap: 7px;
    }


    /* File */

    .payment-file {
        width: 210px;
        flex: 0 0 210px;
    }

        .payment-file .form-control {
            width: 210px !important;
            height: 38px;
            padding: 5px 6px;
            font-size: 11px;
        }


    /* Preview */

    .payment-action {
        width: 65px;
        flex: 0 0 65px;
    }

    .payment-preview-btn {
        width: 60px !important;
        height: 34px;
        font-size: 8px;
    }

    /* Image */

    .payment-image {
        width: 45px;
        height: 45px;
        flex: 0 0 45px;
    }

    .payment-preview-image {
        width: 45px !important;
        height: 45px !important;
    }


    .payment-file small {
        font-size: 9px;
    }
}

/* ---------- Terms ---------- */

.terms-box {
    background: #f8fbfb;
    border: 1px solid #e1ebec;
    border-radius: 13px;
    padding: 17px 18px;
    margin-top: 30px;
}

    .terms-box .form-check {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .terms-box .form-check-input {
        width: 18px;
        height: 18px;
        margin-top: 3px;
        flex-shrink: 0;
        border-color: #087f8c;
    }

        .terms-box .form-check-input:checked {
            background-color: #087f8c;
            border-color: #087f8c;
        }

    .terms-box .form-check-label {
        margin: 0;
        line-height: 1.7;
        color: #5c6b6d;
        font-size: 13px;
        font-weight: 400;
    }


/* ---------- Submit ---------- */

.register-submit-area {
    text-align: center;
    margin-top: 30px;
}

.btn-register-submit {
    border: none;
    background: linear-gradient(135deg, #087f8c, #066d78);
    color: #fff;
    padding: 13px 38px;
    min-width: 190px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(8,127,140,.20);
    transition: all .25s ease;
}

    .btn-register-submit:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(8,127,140,.28);
    }

.login-note {
    margin-top: 15px;
    color: #7a8789;
    font-size: 14px;
}

    .login-note a {
        color: #087f8c;
        font-weight: 700;
        text-decoration: none;
    }

        .login-note a:hover {
            color: #c08c2d;
        }


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .register-page {
        padding: 30px 0 45px;
    }

    .register-wrapper {
        width: 100%;
    }

    .register-heading {
        margin-bottom: 22px;
        padding: 0 10px;
    }

        .register-heading h1 {
            font-size: 27px;
            line-height: 1.35;
        }

        .register-heading p {
            font-size: 14px;
        }

    .register-card {
        border-radius: 15px;
    }

    .register-form-box {
        padding: 22px 16px 28px;
    }

    .registration-info {
        padding: 17px;
        border-radius: 13px;
    }

        .registration-info h4 {
            font-size: 17px;
        }

        .registration-info p {
            font-size: 13px;
            line-height: 1.6;
        }

    .donation {
        width: 100%;
        justify-content: center;
    }

    .form-section-title {
        font-size: 16px;
        margin-top: 25px;
    }

        .form-section-title i {
            width: 30px;
            height: 30px;
        }

    .register-form-box .form-control,
    .register-form-box .form-select {
        min-height: 45px;
    }

    .btn-register-submit {
        width: 100%;
        padding: 12px 20px;
    }
}
/* ================= REGISTER TOP IMAGES ================= */

.register-top-images {
    padding: 8px 0 12px;
    font-family: Arial, sans-serif;
}

.register-images-row {
    display: grid;
    grid-template-columns: 1fr 1.3fr; /* दाईं तरफ डिटेल्स के लिए थोड़ा ज़्यादा स्पेस दिया है */
    gap: 15px;
}

.register-image-item {
    height: 190px;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* ================= REGISTER TOP IMAGES ================= */

.register-top-images {
    padding: 8px 0 12px;
}

.register-images-row {
    display: grid;
    grid-template-columns: 32% 68%;
    gap: 10px;
    align-items: stretch;
}

/* Common */
.register-image-item {
    min-height: 145px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

/* ================= QR CARD ================= */

.qr-item {
    background: linear-gradient(145deg, #ffffff, #f5f8fa);
    border: 1px solid #e1e5e8;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

    .qr-item::before {
        content: "";
        position: absolute;
        width: 90px;
        height: 90px;
        background: rgba(255, 204, 0, 0.12);
        border-radius: 50%;
        top: -45px;
        right: -35px;
    }

.qr-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

    .qr-content h3 {
        margin: 0 0 5px;
        font-size: 14px;
        color: #1a1a54;
        letter-spacing: 1.5px;
        font-weight: 800;
    }

.qr-item img {
    height: 92px;
    width: 92px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    padding: 4px;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

.upi-id {
    margin: 5px 0 0;
    font-size: 10px;
    font-weight: 700;
    color: #333;
    letter-spacing: .2px;
}


/* ================= BANK DETAILS CARD ================= */

.details-item {
    background: radial-gradient(circle at 90% 10%, rgba(255,204,0,.15), transparent 28%), linear-gradient(135deg, #241513, #3b211b 55%, #251513);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 15px 22px;
    box-shadow: 0 5px 18px rgba(43, 27, 23, 0.22);
    border: 1px solid rgba(255,255,255,.08);
}

    .details-item::after {
        content: "";
        position: absolute;
        width: 130px;
        height: 130px;
        border: 1px solid rgba(255,204,0,.12);
        border-radius: 50%;
        right: -55px;
        bottom: -65px;
    }

.details-content {
    width: 100%;
    position: relative;
    z-index: 2;
}

    .details-content h2 {
        margin: 0;
        font-size: 17px;
        color: #ffffff;
        font-weight: 800;
        letter-spacing: .4px;
    }

.tagline {
    margin: 2px 0 9px;
    font-size: 10px;
    color: #ffcc00;
    letter-spacing: 1.8px;
    font-weight: 700;
    text-transform: uppercase;
}

.bank-info {
    border-top: 1px solid rgba(255,255,255,.15);
    padding-top: 6px;
}

    .bank-info p {
        margin: 4px 0;
        font-size: 11px;
        color: #ffd84d;
        line-height: 1.25;
    }

        .bank-info p strong {
            color: #ffffff;
            display: inline-block;
            width: 78px;
            font-size: 10px;
            letter-spacing: .3px;
        }


/* ================= DESKTOP HOVER ================= */

.qr-item,
.details-item {
    transition: all .3s ease;
}

    .qr-item:hover,
    .details-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(0,0,0,.14);
    }


/* ================= MOBILE ================= */

@media (max-width: 767px) {

    .register-top-images {
        padding: 5px 0 10px;
    }

    .register-images-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .register-image-item {
        min-height: 125px;
        border-radius: 10px;
    }

    .qr-item {
        padding: 8px;
    }

    .qr-content h3 {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .qr-item img {
        height: 82px;
        width: 82px;
    }

    .upi-id {
        font-size: 9px;
        margin-top: 3px;
    }

    .details-item {
        padding: 12px 15px;
        min-height: 125px;
    }

    .details-content h2 {
        font-size: 14px;
    }

    .tagline {
        font-size: 9px;
        margin-bottom: 7px;
    }

    .bank-info {
        padding-top: 5px;
    }

        .bank-info p {
            font-size: 10px;
            margin: 3px 0;
        }

            .bank-info p strong {
                width: 70px;
                font-size: 9px;
            }
}


/* ================= VERY SMALL MOBILE ================= */

@media (max-width: 380px) {

    .register-image-item {
        min-height: 118px;
    }

    .qr-item img {
        height: 76px;
        width: 76px;
    }

    .details-item {
        padding: 10px 12px;
    }

    .details-content h2 {
        font-size: 13px;
    }

    .bank-info p {
        font-size: 9.5px;
    }
}
/* ================= MEMBER LIST ================= */

.member-list-section {
    background: #f7fbfb;
}

.member-search-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.07);
    border: 1px solid #e7eeee;
    margin-top: 30px;
}

    .member-search-card label {
        display: block;
        font-weight: 600;
        margin-bottom: 7px;
        color: #263838;
    }

    .member-search-card .form-control,
    .member-search-card .form-select {
        height: 48px;
        border-radius: 10px;
        border: 1px solid #d8e2e2;
        box-shadow: none;
    }

        .member-search-card .form-control:focus,
        .member-search-card .form-select:focus {
            border-color: #087f8c;
            box-shadow: 0 0 0 3px rgba(8,127,140,0.10);
        }


/* ================= TABLE ================= */

.member-table-wrapper {
    background: #ffffff;
    margin-top: 25px;
    padding: 15px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    overflow: hidden;
}

.member-table {
    margin-bottom: 0;
    vertical-align: middle;
}

    .member-table thead th {
        background: #087f8c;
        color: #ffffff;
        font-weight: 600;
        padding: 14px 12px;
        white-space: nowrap;
        border: none;
    }

    .member-table tbody td {
        padding: 13px 12px;
        color: #444;
        border-color: #edf1f1;
        white-space: nowrap;
    }

    .member-table tbody tr:hover {
        background: #f3fbfb;
    }

    .member-table tbody td strong {
        color: #087f8c;
    }


/* ================= MOBILE ================= */

@media (max-width: 767px) {

    .member-search-card {
        padding: 16px;
        border-radius: 14px;
    }

        .member-search-card .form-control,
        .member-search-card .form-select {
            height: 44px;
        }

    .member-table-wrapper {
        padding: 8px;
        border-radius: 12px;
    }

    .member-table {
        font-size: 13px;
    }

        .member-table thead th,
        .member-table tbody td {
            padding: 10px;
        }
}

/* =====================================================
   FRCT NIYAMAWALI SECTION
===================================================== */

.frct-rules-section {
    position: relative;
    background: #f6fbfb;
    overflow: hidden;
}

    .frct-rules-section::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(8, 127, 140, 0.045);
        top: -180px;
        left: -180px;
    }

    .frct-rules-section::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(201, 154, 46, 0.045);
        bottom: -170px;
        right: -150px;
    }

    .frct-rules-section .container {
        position: relative;
        z-index: 2;
    }


/* ---------- Heading ---------- */

.rules-heading {
    margin-bottom: 40px;
}

.rules-subtitle {
    display: inline-block;
    color: #087f8c;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.rules-heading h2 {
    color: #173f43;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
}

    .rules-heading h2 span {
        color: #087f8c;
    }

.rules-heading p {
    max-width: 750px;
    margin: 0 auto;
    color: #69787a;
    font-size: 15px;
    line-height: 1.8;
}


/* ---------- Main Document ---------- */

.rules-document {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(8, 127, 140, 0.10);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}


/* ---------- Document Header ---------- */

.rules-document-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 35px;
    background: linear-gradient( 135deg, #087f8c, #075e68 );
    color: #fff;
}

.rules-symbol {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    background: rgba(255,255,255,0.14);
    font-size: 25px;
}

.rules-document-header h3 {
    margin: 0 0 4px;
    font-size: 24px;
    font-weight: 750;
}

.rules-document-header p {
    margin: 0;
    color: rgba(255,255,255,0.82);
    font-size: 13px;
}


/* ---------- Category ---------- */

.rules-category {
    padding: 40px 40px 15px;
}

.rules-category-title {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 24px;
    margin-bottom: 10px;
    border-bottom: 2px solid #edf3f3;
}

    .rules-category-title > span {
        width: 52px;
        height: 52px;
        min-width: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 15px;
        background: rgba(8, 127, 140, 0.10);
        color: #087f8c;
        font-size: 18px;
        font-weight: 800;
    }

    .rules-category-title small {
        display: block;
        color: #c99a2e;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 4px;
    }

    .rules-category-title h3 {
        margin: 0;
        color: #183e42;
        font-size: 22px;
        font-weight: 750;
        line-height: 1.4;
    }


/* ---------- Individual Rule ---------- */

.rules-list {
    width: 100%;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 18px 0;
    border-bottom: 1px dashed #e1e9e9;
}

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

.rule-no {
    flex: 0 0 48px;
    min-width: 48px;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 7px;
    border-radius: 9px;
    background: #f0f8f8;
    color: #087f8c;
    font-size: 12px;
    font-weight: 800;
}

.rule-item p {
    flex: 1;
    margin: 0;
    color: #4f5e60;
    font-size: 14px;
    line-height: 1.85;
    text-align: justify;
}


/* ---------- Sub List ---------- */

.rules-sub-list {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

    .rules-sub-list li {
        position: relative;
        padding: 7px 0 7px 24px;
        color: #536466;
        font-size: 13px;
        line-height: 1.6;
    }

        .rules-sub-list li::before {
            content: "\f058";
            position: absolute;
            left: 0;
            top: 8px;
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #087f8c;
        }


/* ---------- Important Note ---------- */

.rules-note {
    margin: 15px 40px 10px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 13px;
    border-radius: 14px;
    background: #fff9e9;
    border-left: 4px solid #c99a2e;
    color: #5d511f;
}

    .rules-note i {
        color: #c99a2e;
        font-size: 19px;
    }

    .rules-note strong {
        font-size: 13px;
        line-height: 1.6;
    }

.rules-future {
    margin: 15px 40px 25px;
    padding: 17px 20px;
    background: #f5f9f9;
    border-radius: 12px;
    color: #5b696b;
    font-size: 13px;
    line-height: 1.8;
}


/* ---------- Marriage Rules ---------- */

.marriage-rules {
    margin-top: 25px;
    padding-top: 35px;
    border-top: 8px solid #f6fbfb;
}

.marriage-title > span {
    background: rgba(201, 154, 46, 0.12);
    color: #b48722;
}

.marriage-title small {
    color: #b48722;
}


/* ---------- Bottom Notice ---------- */

.rules-bottom-notice {
    margin: 25px 40px 40px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 15px;
    background: linear-gradient( 135deg, #087f8c, #075f68 );
    color: #fff;
}

    .rules-bottom-notice > i {
        font-size: 28px;
        color: #f2d17b;
    }

    .rules-bottom-notice strong {
        display: block;
        font-size: 15px;
        margin-bottom: 4px;
    }

    .rules-bottom-notice p {
        margin: 0;
        color: rgba(255,255,255,0.82);
        font-size: 13px;
    }


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .frct-rules-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .rules-heading {
        margin-bottom: 25px;
    }

        .rules-heading h2 {
            font-size: 27px;
            line-height: 1.3;
        }

        .rules-heading p {
            font-size: 13px;
            line-height: 1.7;
        }


    /* Header */

    .rules-document-header {
        padding: 20px;
        gap: 13px;
    }

    .rules-symbol {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 13px;
        font-size: 20px;
    }

    .rules-document-header h3 {
        font-size: 17px;
        line-height: 1.4;
    }

    .rules-document-header p {
        font-size: 11px;
    }


    /* Category */

    .rules-category {
        padding: 25px 16px 10px;
    }

    .rules-category-title {
        gap: 12px;
        padding-bottom: 18px;
    }

        .rules-category-title > span {
            width: 43px;
            height: 43px;
            min-width: 43px;
            border-radius: 11px;
            font-size: 14px;
        }

        .rules-category-title small {
            font-size: 9px;
        }

        .rules-category-title h3 {
            font-size: 17px;
        }


    /* Rules */

    .rule-item {
        gap: 10px;
        padding: 14px 0;
    }

    .rule-no {
        flex: 0 0 40px;
        min-width: 40px;
        font-size: 10px;
        padding: 5px 4px;
    }

    .rule-item p {
        font-size: 12.5px;
        line-height: 1.75;
        text-align: left;
    }


    /* Notes */

    .rules-note {
        margin: 12px 16px;
        padding: 14px;
        align-items: flex-start;
    }

        .rules-note i {
            font-size: 16px;
            margin-top: 2px;
        }

        .rules-note strong {
            font-size: 11.5px;
        }

    .rules-future {
        margin: 12px 16px 20px;
        padding: 14px;
        font-size: 11.5px;
    }


    /* Bottom */

    .rules-bottom-notice {
        margin: 20px 16px 25px;
        padding: 16px;
        gap: 12px;
    }

        .rules-bottom-notice > i {
            font-size: 22px;
        }

        .rules-bottom-notice strong {
            font-size: 13px;
        }

        .rules-bottom-notice p {
            font-size: 11px;
            line-height: 1.6;
        }
}
/* =========================
   OCCUPATION
========================= */

.occupation-main-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.occupation-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
}

.occupation-radio {
    margin: 0;
    padding: 0;
    cursor: pointer;
}

    .occupation-radio input[type="radio"] {
        margin-right: 7px;
        accent-color: #087f8c;
    }

    .occupation-radio label {
        cursor: pointer;
    }

.occupation-details {
    margin-top: 15px;
    width: 100%;
}

.occupation-field {
    display: none;
    width: 100%;
    padding: 15px;
    background: #f8fafb;
    border: 1px solid #e2e7e9;
    border-radius: 10px;
}

    .occupation-field label {
        display: block;
        margin-bottom: 7px;
        font-weight: 600;
        font-size: 14px;
    }


/* Mobile */

@media (max-width: 767px) {

    .occupation-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

@media (max-width: 480px) {

    .occupation-options {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
NEW SCHEMES & INSPIRATION
========================================================= */

.frct-inspiration-section {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(180deg, #f8fbfc 0%, #ffffff 100%);
    overflow: hidden;
}

    .frct-inspiration-section::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(15, 118, 110, 0.06);
        top: -120px;
        left: -100px;
    }

    .frct-inspiration-section::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(234, 179, 8, 0.07);
        bottom: -120px;
        right: -80px;
    }

/* ================= LAUNCH CARD ================= */

.scheme-launch-card {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 32px 36px;
    margin-top: 45px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(15, 118, 110, 0.12);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

    .scheme-launch-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 6px;
        background: linear-gradient(180deg, #0f766e, #eab308);
    }

.launch-icon {
    width: 82px;
    height: 82px;
    min-width: 82px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f766e, #115e59);
    color: #ffffff;
    font-size: 36px;
    box-shadow: 0 12px 25px rgba(15, 118, 110, 0.22);
}

.launch-content {
    flex: 1;
}

.launch-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #0f766e;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.launch-content h3 {
    margin: 0 0 10px;
    font-family: "Playfair Display", serif;
    font-size: 30px;
    color: #172033;
}

.launch-content p {
    margin: 0;
    color: #5f6878;
    line-height: 1.8;
}

.launch-content strong {
    color: #172033;
}

.launch-date {
    display: inline-block;
    margin-left: 5px;
    padding: 5px 12px;
    border-radius: 30px;
    background: #fff7d6;
    color: #9a6b00;
    font-weight: 700;
}

.launch-purpose {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
    padding: 13px 16px;
    border-radius: 12px;
    background: #f0fdfa;
    color: #115e59;
    font-size: 14px;
}

    .launch-purpose i {
        margin-top: 4px;
        color: #0f766e;
    }

/* ================= FUTURE SCHEME CARDS ================= */

.future-scheme-card {
    position: relative;
    height: 100%;
    padding: 32px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(15, 118, 110, 0.10);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.07);
    transition: all 0.3s ease;
    overflow: hidden;
}

    .future-scheme-card::after {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        right: -50px;
        top: -50px;
        background: rgba(15, 118, 110, 0.06);
    }

    .future-scheme-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    }

.future-scheme-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #f0fdfa;
    color: #0f766e;
    font-size: 28px;
    margin-bottom: 18px;
}

.future-scheme-card.death .future-scheme-icon {
    background: #fff1f2;
    color: #dc2626;
}

.future-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 30px;
    background: #fff7d6;
    color: #9a6b00;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.future-scheme-card h4 {
    position: relative;
    z-index: 1;
    font-size: 21px;
    line-height: 1.5;
    color: #172033;
    margin-bottom: 12px;
}

.future-scheme-card p {
    position: relative;
    z-index: 1;
    color: #687284;
    line-height: 1.8;
    margin-bottom: 0;
}

/* ================= INSPIRATIONAL THOUGHT ================= */

.frct-thought-box {
    position: relative;
    z-index: 2;
    padding: 45px 55px;
    border-radius: 28px;
    background: linear-gradient(135deg, #115e59, #0f766e);
    color: #ffffff;
    box-shadow: 0 20px 55px rgba(15, 118, 110, 0.20);
    overflow: hidden;
}

    .frct-thought-box::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 10% 20%, rgba(255,255,255,0.08), transparent 30%), radial-gradient(circle at 90% 80%, rgba(255,255,255,0.07), transparent 30%);
        pointer-events: none;
    }

.thought-content {
    position: relative;
    z-index: 2;
}

.thought-label {
    display: block;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    color: #fff3b0;
}

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

.thought-item {
    display: flex;
    gap: 12px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.10);
    transition: all 0.3s ease;
}

    .thought-item:hover {
        background: rgba(255,255,255,0.14);
        transform: translateY(-4px);
    }

    .thought-item > i {
        font-size: 24px;
        color: #facc15;
        flex-shrink: 0;
    }

    .thought-item p {
        margin: 0;
        font-size: 15px;
        line-height: 1.8;
        color: rgba(255,255,255,0.92);
    }

.thought-decoration {
    position: absolute;
    z-index: 1;
    opacity: 0.08;
    font-size: 130px;
}

    .thought-decoration.left {
        left: -20px;
        top: -35px;
    }

    .thought-decoration.right {
        right: -15px;
        bottom: -45px;
        font-size: 100px;
    }

/* ================= MOBILE ================= */

@media (max-width: 767px) {

    .frct-inspiration-section {
        padding: 65px 0;
    }

    .scheme-launch-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px 22px;
        gap: 18px;
    }

    .launch-icon {
        width: 65px;
        height: 65px;
        min-width: 65px;
        font-size: 28px;
    }

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

    .launch-date {
        margin-top: 6px;
        margin-left: 0;
    }

    .future-scheme-card {
        padding: 25px 22px;
    }

    .frct-thought-box {
        padding: 32px 20px;
        border-radius: 22px;
    }

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

    .thought-item {
        padding: 17px;
    }

        .thought-item p {
            font-size: 14px;
        }

    .thought-decoration {
        display: none;
    }


    /* =========================
   ADMIN LOGIN
========================= */

    .admin-login-wrap {
        margin-top: 20px;
    }

    .footer-admin-login {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 9px 18px;
        background: var(--primary);
        color: #fff;
        border-radius: 7px;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        transition: all .3s ease;
    }

        .footer-admin-login i {
            font-size: 15px;
        }

        .footer-admin-login:hover {
            color: #fff;
            background: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(0,0,0,.15);
        }
    /* =========================================
   STATE / DISTRICT SELECT2
   ========================================= */

    .register-form-box .select2-container {
        width: 100% !important;
    }

        /* Main visible dropdown */
        .register-form-box .select2-container .select2-selection--single {
            height: 48px !important;
            min-height: 48px !important;
            width: 100% !important;
            border: 1px solid #d8e5e5 !important;
            border-radius: 9px !important;
            background-color: #fff !important;
            box-sizing: border-box !important;
        }

            /* Selected text */
            .register-form-box .select2-container .select2-selection--single .select2-selection__rendered {
                height: 46px !important;
                line-height: 46px !important;
                padding: 0 40px 0 13px !important;
                font-size: 14px !important;
                color: #34474a !important;
                box-sizing: border-box !important;
            }

            /* Arrow */
            .register-form-box .select2-container .select2-selection--single .select2-selection__arrow {
                height: 46px !important;
                top: 1px !important;
                right: 5px !important;
            }

    /* Focus / Open */
    .register-form-box .select2-container--focus .select2-selection--single,
    .register-form-box .select2-container--open .select2-selection--single {
        border-color: #2a9d8f !important;
        box-shadow: 0 0 0 3px rgba(42,157,143,.08) !important;
    }

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

    .register-form-box .select2-results__options {
        max-height: 200px !important;
        overflow-y: auto !important;
    }

    /*  Select2 */
    .register-form-box .select2-search--dropdown .select2-search__field {
        height: 38px !important;
        padding: 6px 10px !important;
        font-size: 14px !important;
        box-sizing: border-box !important;
    }

    /*==============Search textbox width Droupdwoun======*/

    .select2-container {
        box-sizing: border-box;
        display: inline-block;
        margin: 0;
        position: relative;
        vertical-align: middle;
    }

        .select2-container .select2-selection--single {
            box-sizing: border-box;
            cursor: pointer;
            display: block;
            height: 45px;
            user-select: none;
            -webkit-user-select: none;
        }

            .select2-container .select2-selection--single .select2-selection__rendered {
                display: block;
                padding-left: 8px;
                padding-right: 20px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

            .select2-container .select2-selection--single .select2-selection__clear {
                background-color: transparent;
                border: none;
                font-size: 1em;
            }

        .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
            padding-right: 8px;
            padding-left: 20px;
        }

        .select2-container .select2-selection--multiple {
            box-sizing: border-box;
            cursor: pointer;
            display: block;
            min-height: 32px;
            user-select: none;
            -webkit-user-select: none;
        }

            .select2-container .select2-selection--multiple .select2-selection__rendered {
                display: inline;
                list-style: none;
                padding: 0;
            }

            .select2-container .select2-selection--multiple .select2-selection__clear {
                background-color: transparent;
                border: none;
                font-size: 1em;
            }

        .select2-container .select2-search--inline .select2-search__field {
            box-sizing: border-box;
            border: none;
            font-size: 100%;
            margin-top: 5px;
            margin-left: 5px;
            padding: 0;
            max-width: 100%;
            resize: none;
            height: 18px;
            vertical-align: bottom;
            font-family: sans-serif;
            overflow: hidden;
            word-break: keep-all;
        }

            .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
                -webkit-appearance: none;
            }

    .select2-dropdown {
        background-color: white;
        border: 1px solid #aaa;
        border-radius: 4px;
        box-sizing: border-box;
        display: block;
        position: absolute;
        left: -100000px;
        width: 100%;
        z-index: 1051;
    }

    .select2-results {
        display: block;
    }

    .select2-results__options {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .select2-results__option {
        padding: 6px;
        user-select: none;
        -webkit-user-select: none;
    }

    .select2-results__option--selectable {
        cursor: pointer;
    }

    .select2-container--open .select2-dropdown {
        left: 0;
    }

    .select2-container--open .select2-dropdown--above {
        border-bottom: none;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .select2-container--open .select2-dropdown--below {
        border-top: none;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .select2-search--dropdown {
        display: block;
        padding: 4px;
    }

        .select2-search--dropdown .select2-search__field {
            padding: 4px;
            width: 100%;
            box-sizing: border-box;
        }

            .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
                -webkit-appearance: none;
            }

        .select2-search--dropdown.select2-search--hide {
            display: none;
        }

    .select2-close-mask {
        border: 0;
        margin: 0;
        padding: 0;
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        min-height: 100%;
        min-width: 100%;
        height: auto;
        width: auto;
        opacity: 0;
        z-index: 99;
        background-color: #fff;
        filter: alpha(opacity=0);
    }

    .select2-hidden-accessible {
        border: 0 !important;
        clip: rect(0 0 0 0) !important;
        -webkit-clip-path: inset(50%) !important;
        clip-path: inset(50%) !important;
        height: 1px !important;
        overflow: hidden !important;
        padding: 0 !important;
        position: absolute !important;
        width: 1px !important;
        white-space: nowrap !important;
    }

    .select2-container--default .select2-selection--single {
        background-color: #fff;
        border: 1px solid #aaa;
        border-radius: 4px;
    }

        .select2-container--default .select2-selection--single .select2-selection__rendered {
            color: #444;
            line-height: 28px;
        }

        .select2-container--default .select2-selection--single .select2-selection__clear {
            cursor: pointer;
            float: right;
            font-weight: bold;
            height: 26px;
            margin-right: 20px;
            padding-right: 0px;
        }

        .select2-container--default .select2-selection--single .select2-selection__placeholder {
            color: #999;
        }

        .select2-container--default .select2-selection--single .select2-selection__arrow {
            height: 26px;
            position: absolute;
            top: 1px;
            right: 1px;
            width: 20px;
        }

            .select2-container--default .select2-selection--single .select2-selection__arrow b {
                border-color: #888 transparent transparent transparent;
                border-style: solid;
                border-width: 5px 4px 0 4px;
                height: 0;
                left: 50%;
                margin-left: -4px;
                margin-top: -2px;
                position: absolute;
                top: 50%;
                width: 0;
            }

    .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
        float: left;
    }

    .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
        left: 1px;
        right: auto;
    }

    .select2-container--default.select2-container--disabled .select2-selection--single {
        background-color: #eee;
        cursor: default;
    }

        .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
            display: none;
        }

    .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
        border-color: transparent transparent #888 transparent;
        border-width: 0 4px 5px 4px;
    }

    .select2-container--default .select2-selection--multiple {
        background-color: white;
        border: 1px solid #aaa;
        border-radius: 4px;
        cursor: text;
        padding-bottom: 5px;
        padding-right: 5px;
        position: relative;
    }

        .select2-container--default .select2-selection--multiple.select2-selection--clearable {
            padding-right: 25px;
        }

        .select2-container--default .select2-selection--multiple .select2-selection__clear {
            cursor: pointer;
            font-weight: bold;
            height: 20px;
            margin-right: 10px;
            margin-top: 5px;
            position: absolute;
            right: 0;
            padding: 1px;
        }

        .select2-container--default .select2-selection--multiple .select2-selection__choice {
            background-color: #e4e4e4;
            border: 1px solid #aaa;
            border-radius: 4px;
            box-sizing: border-box;
            display: inline-block;
            margin-left: 5px;
            margin-top: 5px;
            padding: 0;
            padding-left: 20px;
            position: relative;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            vertical-align: bottom;
            white-space: nowrap;
        }

        .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
            cursor: default;
            padding-left: 2px;
            padding-right: 5px;
        }

        .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
            background-color: transparent;
            border: none;
            border-right: 1px solid #aaa;
            border-top-left-radius: 4px;
            border-bottom-left-radius: 4px;
            color: #999;
            cursor: pointer;
            font-size: 1em;
            font-weight: bold;
            padding: 0 4px;
            position: absolute;
            left: 0;
            top: 0;
        }

            .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
                background-color: #f1f1f1;
                color: #333;
                outline: none;
            }

    .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
        margin-left: 5px;
        margin-right: auto;
    }

    .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display {
        padding-left: 5px;
        padding-right: 2px;
    }

    .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
        border-left: 1px solid #aaa;
        border-right: none;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
    }

    .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear {
        float: left;
        margin-left: 10px;
        margin-right: auto;
    }

    .select2-container--default.select2-container--focus .select2-selection--multiple {
        border: solid black 1px;
        outline: 0;
    }

    .select2-container--default.select2-container--disabled .select2-selection--multiple {
        background-color: #eee;
        cursor: default;
    }

    .select2-container--default.select2-container--disabled .select2-selection__choice__remove {
        display: none;
    }

    .select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .select2-container--default .select2-search--dropdown .select2-search__field {
        border: 1px solid #aaa;
    }

    .select2-container--default .select2-search--inline .select2-search__field {
        background: transparent;
        border: none;
        outline: 0;
        box-shadow: none;
        -webkit-appearance: textfield;
    }

    .select2-container--default .select2-results > .select2-results__options {
        max-height: 200px;
        overflow-y: auto;
    }

    .select2-container--default .select2-results__option .select2-results__option {
        padding-left: 1em;
    }

        .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
            padding-left: 0;
        }

        .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
            margin-left: -1em;
            padding-left: 2em;
        }

            .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
                margin-left: -2em;
                padding-left: 3em;
            }

                .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
                    margin-left: -3em;
                    padding-left: 4em;
                }

                    .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
                        margin-left: -4em;
                        padding-left: 5em;
                    }

                        .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
                            margin-left: -5em;
                            padding-left: 6em;
                        }

    .select2-container--default .select2-results__option--group {
        padding: 0;
    }

    .select2-container--default .select2-results__option--disabled {
        color: #999;
    }

    .select2-container--default .select2-results__option--selected {
        background-color: #ddd;
    }

    .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
        background-color: #5897fb;
        color: white;
    }

    .select2-container--default .select2-results__group {
        cursor: default;
        display: block;
        padding: 6px;
    }

    .select2-container--classic .select2-selection--single {
        background-color: #f7f7f7;
        border: 1px solid #aaa;
        border-radius: 4px;
        outline: 0;
        background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);
        background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
        background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
    }

        .select2-container--classic .select2-selection--single:focus {
            border: 1px solid #5897fb;
        }

        .select2-container--classic .select2-selection--single .select2-selection__rendered {
            color: #444;
            line-height: 28px;
        }

        .select2-container--classic .select2-selection--single .select2-selection__clear {
            cursor: pointer;
            float: right;
            font-weight: bold;
            height: 26px;
            margin-right: 20px;
        }

        .select2-container--classic .select2-selection--single .select2-selection__placeholder {
            color: #999;
        }

        .select2-container--classic .select2-selection--single .select2-selection__arrow {
            background-color: #ddd;
            border: none;
            border-left: 1px solid #aaa;
            border-top-right-radius: 4px;
            border-bottom-right-radius: 4px;
            height: 26px;
            position: absolute;
            top: 1px;
            right: 1px;
            width: 20px;
            background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
            background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
            background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
            background-repeat: repeat-x;
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
        }

            .select2-container--classic .select2-selection--single .select2-selection__arrow b {
                border-color: #888 transparent transparent transparent;
                border-style: solid;
                border-width: 5px 4px 0 4px;
                height: 0;
                left: 50%;
                margin-left: -4px;
                margin-top: -2px;
                position: absolute;
                top: 50%;
                width: 0;
            }

    .select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
        float: left;
    }

    .select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
        border: none;
        border-right: 1px solid #aaa;
        border-radius: 0;
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
        left: 1px;
        right: auto;
    }

    .select2-container--classic.select2-container--open .select2-selection--single {
        border: 1px solid #5897fb;
    }

        .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
            background: transparent;
            border: none;
        }

            .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
                border-color: transparent transparent #888 transparent;
                border-width: 0 4px 5px 4px;
            }

    .select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
        border-top: none;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        background-image: -webkit-linear-gradient(top, #fff 0%, #eee 50%);
        background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);
        background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
    }

    .select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
        border-bottom: none;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%);
        background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
        background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
    }

    .select2-container--classic .select2-selection--multiple {
        background-color: white;
        border: 1px solid #aaa;
        border-radius: 4px;
        cursor: text;
        outline: 0;
        padding-bottom: 5px;
        padding-right: 5px;
    }

        .select2-container--classic .select2-selection--multiple:focus {
            border: 1px solid #5897fb;
        }

        .select2-container--classic .select2-selection--multiple .select2-selection__clear {
            display: none;
        }

        .select2-container--classic .select2-selection--multiple .select2-selection__choice {
            background-color: #e4e4e4;
            border: 1px solid #aaa;
            border-radius: 4px;
            display: inline-block;
            margin-left: 5px;
            margin-top: 5px;
            padding: 0;
        }

        .select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
            cursor: default;
            padding-left: 2px;
            padding-right: 5px;
        }

        .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
            background-color: transparent;
            border: none;
            border-top-left-radius: 4px;
            border-bottom-left-radius: 4px;
            color: #888;
            cursor: pointer;
            font-size: 1em;
            font-weight: bold;
            padding: 0 4px;
        }

            .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
                color: #555;
                outline: none;
            }

    .select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
        margin-left: 5px;
        margin-right: auto;
    }

    .select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display {
        padding-left: 5px;
        padding-right: 2px;
    }

    .select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
    }

    .select2-container--classic.select2-container--open .select2-selection--multiple {
        border: 1px solid #5897fb;
    }

    .select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
        border-top: none;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
        border-bottom: none;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .select2-container--classic .select2-search--dropdown .select2-search__field {
        border: 1px solid #aaa;
        outline: 0;
    }

    .select2-container--classic .select2-search--inline .select2-search__field {
        outline: 0;
        box-shadow: none;
    }

    .select2-container--classic .select2-dropdown {
        background-color: #fff;
        border: 1px solid transparent;
    }

    .select2-container--classic .select2-dropdown--above {
        border-bottom: none;
    }

    .select2-container--classic .select2-dropdown--below {
        border-top: none;
    }

    .select2-container--classic .select2-results > .select2-results__options {
        max-height: 200px;
        overflow-y: auto;
    }

    .select2-container--classic .select2-results__option--group {
        padding: 0;
    }

    .select2-container--classic .select2-results__option--disabled {
        color: grey;
    }

    .select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
        background-color: #3875d7;
        color: #fff;
    }

    .select2-container--classic .select2-results__group {
        cursor: default;
        display: block;
        padding: 6px;
    }

    .select2-container--classic.select2-container--open .select2-dropdown {
        border-color: #5897fb;
    }
    /* =========================================
   FRCF DOB CALENDAR DESIGN
========================================= */

    #ui-datepicker-div {
        z-index: 99999 !important;
    }

    .ui-datepicker {
        width: 320px !important;
        padding: 15px !important;
        border: none !important;
        border-radius: 16px !important;
        background: #ffffff !important;
        box-shadow: 0 12px 35px rgba(0,0,0,0.18) !important;
        font-family: 'DM Sans', sans-serif !important;
    }

    /* Header */

    .ui-datepicker-header {
        border: none !important;
        border-radius: 10px !important;
        background: #0b6b57 !important;
        color: #ffffff !important;
        padding: 10px !important;
    }

    .ui-datepicker-title {
        font-size: 16px !important;
        font-weight: 700 !important;
    }

    /* Previous / Next */

    .ui-datepicker-prev,
    .ui-datepicker-next {
        top: 9px !important;
        cursor: pointer !important;
    }

    .ui-datepicker-prev-hover,
    .ui-datepicker-next-hover {
        border: none !important;
        background: rgba(255,255,255,0.15) !important;
    }

    /* Calendar Table */

    .ui-datepicker table {
        margin: 10px 0 0 !important;
    }

    .ui-datepicker th {
        color: #0b6b57 !important;
        font-weight: 700 !important;
        padding: 8px 4px !important;
    }

    .ui-datepicker td {
        padding: 3px !important;
    }

        /* Date */

        .ui-datepicker td a {
            border: none !important;
            background: transparent !important;
            color: #333 !important;
            text-align: center !important;
            padding: 8px !important;
            border-radius: 8px !important;
            transition: all 0.2s ease !important;
        }

            .ui-datepicker td a:hover {
                background: #e7f5f1 !important;
                color: #0b6b57 !important;
            }

    /* Selected Date */

    .ui-datepicker .ui-state-active {
        background: #0b6b57 !important;
        color: #ffffff !important;
        font-weight: 700 !important;
    }

    /* Today */

    .ui-datepicker .ui-state-highlight {
        background: #f4b942 !important;
        color: #222 !important;
        border-radius: 8px !important;
    }

    /* Month / Year Dropdown */

    .ui-datepicker select.ui-datepicker-month,
    .ui-datepicker select.ui-datepicker-year {
        border: none !important;
        border-radius: 5px !important;
        padding: 3px 5px !important;
        font-size: 14px !important;
        cursor: pointer !important;
    }

    /* Mobile Responsive */

    @media (max-width: 480px) {

        .ui-datepicker {
            width: calc(100vw - 30px) !important;
            max-width: 350px !important;
            font-size: 14px !important;
            padding: 12px !important;
        }

            .ui-datepicker td a {
                padding: 7px 4px !important;
            }

            .ui-datepicker th {
                padding: 6px 2px !important;
            }
    }

    .dob-error {
        display: block;
        color: #dc3545 !important;
        font-size: 13px;
        font-weight: 600;
        margin-top: 5px;
        min-height: 18px;
    }

    .ui-datepicker {
        z-index: 99999 !important;
    }
