html {
    font-size: clamp(14px, 1.1vw + 4px, 21px);
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

:root {
    --primary-color: #202c45;
    /* Dark blue/grey for text */
    --gold: #c59842;
    --gold-light: #e5cd9e;
    --text-color: #4b5563;
    --bg-color: #ffffff;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body,
html {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: clip;
    width: 100%;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Header */
.header {
    background: #fff;
    padding: 0.9375rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 4.375rem;
    width: auto;
    border-radius: 10%;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    padding-bottom: 0.3125rem;
    position: relative;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -0.3125rem;
    left: 0;
    width: 100%;
    height: 0.125rem;
    background-color: var(--gold);
}

/* Call Now Button in Nav */
.nav-btn-call {
    background: var(--gold);
    color: #fff !important;
    padding: 0.6rem 1.25rem !important;
    border-radius: 2rem;
    box-shadow: 0 0.25rem 0.5rem rgba(212, 175, 55, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700 !important;
    letter-spacing: 1px;
}

.nav-menu a.nav-btn-call:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(212, 175, 55, 0.4);
    filter: brightness(1.05);
}

.nav-menu a.nav-btn-call::after {
    display: none !important;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 0.9375rem 0 1.25rem;
    margin-top: 6.25rem;
    /* Further reduced height */
    background: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 6.25rem);
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Add subtle background elements if needed, keeping it white for now based on image */
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    gap: 2.5rem;
}

.hero-content {
    flex: 1;
    max-width: 37.5rem;
    position: relative;
    z-index: 2;
}

.hero-image {
    flex: 1;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 110%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    transform: translateX(5%);
}

h1 {
    font-family: var(--font-heading);
    font-size: 2.375rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 0.9375rem;
}

.text-gold {
    color: var(--gold);
}

.divider {
    display: flex;
    align-items: center;
    margin-bottom: 1.5625rem;
    width: fit-content;
}

.divider .line {
    width: 12.5rem;
    /* Increased width */
    height: 1px;
    background-color: var(--gold);
}

.divider .diamond {
    width: 0.375rem;
    height: 0.375rem;
    background-color: var(--gold);
    transform: rotate(45deg);
    margin: 0 0.625rem;
}

.description {
    font-size: 0.875rem;
    color: var(--text-color);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.text-gold-bold {
    color: var(--gold);
    font-weight: 700;
}

.highlight-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--gold-light);
    border-radius: 0.625rem;
    padding: 0.9375rem 1.25rem;
    margin-bottom: 1.5625rem;
    background: #fffdf9;
    box-shadow: 0 0.3125rem 0.9375rem rgba(197, 152, 66, 0.05);
}

.highlight-box .icon-wrap {
    font-size: 2rem;
    color: var(--gold);
    margin-right: 1.25rem;
    padding-right: 1.25rem;
    border-right: 1px solid var(--gold);
}

.highlight-box .text-wrap p {
    font-size: 0.875rem;
    color: var(--primary-color);
    line-height: 1.5;
    margin: 0;
}

.action-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.9375rem;
    margin-bottom: 1.875rem;
    /* allow overflow to overlap hero image */
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn i:first-child {
    margin-right: 0.5rem;
    font-size: 0.875rem;
}

.btn i:last-child {
    margin-left: 0.625rem;
    font-size: 0.75rem;
}

.btn-solid {
    background: linear-gradient(135deg, #c59842 0%, #a67c33 100%);
    color: #fff;
    border: 1px solid #a67c33;
    box-shadow: 0 0.25rem 0.625rem rgba(197, 152, 66, 0.3);
}

.btn-solid:hover {
    background: linear-gradient(135deg, #a67c33 0%, #c59842 100%);
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 0.9375rem rgba(197, 152, 66, 0.4);
}

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

.btn-outline:hover {
    background: rgba(197, 152, 66, 0.05);
    transform: translateY(-0.125rem);
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.badge-text {
    font-size: 0.75rem;
    line-height: 1.3;
}

.badge-text strong {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.badge-text span {
    color: var(--text-color);
}

.badge-separator {
    width: 1px;
    height: 1.875rem;
    background-color: #e5e7eb;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.375rem;
    }

    .hero .container {
        gap: 1.25rem;
    }

    .hero-image img {
        transform: translateX(0);
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .nav-menu ul {
        gap: 1.25rem;
    }

    .action-buttons {
        gap: 0.625rem;
    }

    .btn {
        padding: 0.625rem 0.9375rem;
        font-size: 0.6875rem;
    }

    .trust-badges {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
        display: none;
        padding: 1.5rem 0;
        margin: 0;
        border-top: 1px solid #f1f5f9;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 0.9375rem;
    }

    .nav-menu a.active {
        color: var(--gold);
    }

    .hero {
        min-height: auto;
        display: block;
        padding-bottom: 3.125rem;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .slider-wrapper {
        align-items: flex-start;
        transition: transform 0.5s ease-in-out, height 0.3s ease-in-out;
    }

    .slide {
        align-items: flex-start;
    }

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

    .hero-image {
        margin-top: 2.5rem;
        justify-content: center;
    }

    .divider {
        margin: 0 auto 1.5625rem auto;
        max-width: 100%;
    }

    .divider .line {
        width: 35vw;
        max-width: 7.5rem;
    }

    .highlight-box {
        text-align: left;
    }

    .action-buttons {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .badge-separator {
        display: none;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 90%;
        max-width: 20rem;
    }

    .trust-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.9375rem;
    }
}

/* --- Slider Styles --- */
.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slide {
    min-width: 100%;
    /* Keep existing flex/alignment from .hero */
    display: flex;
    align-items: center;
}

.slider-nav {
    position: absolute;
    bottom: 1.875rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.625rem;
    z-index: 10;
}

.slider-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: #e5e7eb;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: var(--gold);
}

/* --- Banner 2 Styles --- */
.text-primary {
    color: var(--primary-color);
}

.b2-title {
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 0.77;
    margin-top: -0.625rem;
    margin-bottom: 0.3125rem;
}

.b2-title .text-primary {
    font-size: 2.5rem;
}

.b2-title+.divider {
    margin-bottom: 0.625rem;
}

.b2-title+.divider .line {
    width: 10rem;
}

.b2-pill {
    display: inline-block;
    border: 1px solid var(--gold-light);
    border-radius: 1.875rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    color: var(--text-color);
    background: #fff;
    margin-bottom: 1.875rem;
}

.b2-pill-dark {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.25rem 0.625rem;
    border-radius: 0.9375rem;
    font-weight: 700;
}

.b2-options {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    margin-bottom: 1.875rem;
}

.b2-option-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--gold);
    border-radius: 0.625rem;
    padding: 0.9375rem 1.5625rem;
    background: #fff;
    flex: 1;
    box-shadow: 0 0.25rem 0.625rem rgba(197, 152, 66, 0.05);
}

.b2-icon-circle {
    width: 2.8125rem;
    height: 2.8125rem;
    background: linear-gradient(135deg, #F3C353 0%, #D49D34 50%, #F5CE71 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    margin-right: 0.9375rem;
}

.b2-option-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.b2-or-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #F3C353 0%, #D49D34 50%, #F5CE71 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.b2-gift-wrap {
    width: 4.0625rem;
    height: 4.0625rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, #F3C353 0%, #D49D34 50%, #F5CE71 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: none !important;
    padding-right: 0 !important;
    margin-right: 1.25rem;
}

.b2-gift {
    color: #fff !important;
    font-size: 1.5rem !important;
}

.b2-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.b2-footer-text {
    font-size: 0.875rem;
    color: var(--text-color);
    flex: 1;
}

.b2-hero-img {
    transform: scale(1.15) !important;
    transform-origin: right center;
}

/* --- Banner 3 Styles --- */
.b3-hero-img {
    transform: scale(1.10) !important;
    transform-origin: right center;
}

.b3-title-container {
    width: fit-content;
    text-align: center;
    margin-bottom: 0.3125rem;
    margin-left: auto;
    margin-right: auto;
}

.b3-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    line-height: 1;
    margin: 0 0 -0.3125rem 0;
}

.b3-subtitle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9375rem;
}

.b3-line {
    flex: 1;
    height: 1px;
    background-color: var(--gold);
    min-width: 3.125rem;
}

.b3-subtitle {
    font-size: 1.375rem;
    letter-spacing: 0.25rem;
    color: var(--primary-color);
    font-weight: 700;
}

.b3-pill {
    margin-bottom: 1.5625rem;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.b3-pill-gold {
    background: linear-gradient(135deg, #F3C353 0%, #D49D34 50%, #F5CE71 100%);
    color: #fff;
    padding: 0.25rem 0.625rem;
    border-radius: 0.9375rem;
    font-weight: 700;
}

.b3-reward-box {
    background: var(--primary-color);
    border-radius: 0.9375rem;
    padding: 0.9375rem 2.5rem;
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.9375rem;
    box-shadow: 0 0.3125rem 0.9375rem rgba(33, 58, 92, 0.2);
    width: fit-content;
}

.b3-reward-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #F3C353 0%, #D49D34 50%, #F5CE71 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.5rem;
    margin-right: 1.25rem;
    flex-shrink: 0;
}

.b3-reward-text {
    color: #fff;
    font-size: 1.375rem;
    font-weight: 500;
}

.b3-reward-amount {
    font-size: 3.5rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
}

.b3-info-box {
    border: 1px solid var(--gold-light);
    border-radius: 0.625rem;
    padding: 0.9375rem;
    display: flex;
    align-items: center;
    background: #fff;
    margin-bottom: 1.5625rem;
}

.b3-info-icon {
    width: 3.125rem;
    height: 3.125rem;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.375rem;
    margin-right: 0.9375rem;
    flex-shrink: 0;
}

.b3-info-text {
    font-size: 0.8125rem;
    color: var(--text-color);
    line-height: 1.4;
}

.b3-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.b3-features {
    display: flex;
    gap: 0.9375rem;
}

.b3-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3125rem;
}

.b3-feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
}

.b3-feature-text {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--primary-color);
}

.b3-btn {
    background: linear-gradient(135deg, #F3C353 0%, #D49D34 50%, #F5CE71 100%);
    border: none;
    color: #fff !important;
}

/* Mobile adjustments for Banners */
@media (max-width: 768px) {
    .b2-hero-img {
        transform: scale(1) !important;
        transform-origin: center center;
    }

    .b2-title {
        font-size: 2.375rem;
        margin-top: 0.9375rem;
        line-height: 1.1;
    }

    .b2-title .text-primary {
        font-size: 1.625rem;
    }

    .b2-options {
        flex-direction: column;
        gap: 0.9375rem;
        align-items: center;
    }

    .b2-or-circle {
        margin: 0.3125rem 0;
    }

    .b2-option-box {
        width: 90%;
        max-width: 20rem;
        justify-content: center;
    }

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

    .b2-footer .btn {
        width: 90%;
        max-width: 20rem;
        justify-content: center;
        margin-top: 0.9375rem;
    }

    /* Banner 3 Mobile */
    .b3-title-container {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .b3-hero-img {
        transform: scale(1) !important;
        transform-origin: center center;
    }

    .b3-title {
        font-size: 2.625rem;
        margin-top: 0;
    }

    .b3-subtitle {
        font-size: 1.25rem;
        letter-spacing: 0.125rem;
    }

    .b3-reward-box {
        width: 90%;
        max-width: 20rem;
        margin-left: auto;
        margin-right: auto;
        padding: 0.9375rem 1.25rem;
    }

    .b3-info-box {
        width: 90%;
        max-width: 20rem;
        margin-left: auto;
        margin-right: auto;
    }

    .b3-reward-amount {
        font-size: 2.5rem;
    }

    .b3-reward-text {
        font-size: 1.125rem;
    }

    .b3-reward-icon {
        width: 3.75rem;
        height: 3.75rem;
        font-size: 1.875rem;
        margin-right: 0.9375rem;
    }

    .b3-footer {
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
    }

    .b3-features {
        width: 100%;
        justify-content: center;
        gap: 1.25rem;
    }

    .b3-btn {
        width: 90%;
        max-width: 20rem;
        justify-content: center;
    }
}

/* --- Schemes Section (Section 2) --- */
.schemes-section {
    min-height: auto;
    background-image: url('assets/sec2-back.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 1.25rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.schemes-section .container {
    max-width: 90.625rem;
}

.schemes-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.schemes-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: -0.625rem;
}

.schemes-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9375rem;
}

.schemes-divider .line {
    width: 3.75rem;
    height: 1px;
    background-color: var(--gold);
}

.schemes-divider .ornament {
    color: var(--gold);
    font-size: 0.875rem;
}

.schemes-cards-container {
    display: flex;
    gap: 0.9375rem;
    margin: 0 -13.125rem -0.625rem -13.125rem;
    align-items: stretch;
    padding: 0;
}

.scheme-card {
    position: relative;
    border-radius: 0.9375rem;
    padding: 2.1875rem 1.25rem 1.25rem;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
}

.gold-card {
    border: 0.125rem solid #b67c29;
    background-color: #fefaf0;
}

.green-card {
    border: 0.125rem solid #508044;
    background-color: #f3faf2;
}

.card-header {
    position: absolute;
    top: -0.125rem;
    /* Slight overlap with border */
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.875rem;
    border-radius: 0 0 0.9375rem 0.9375rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    white-space: nowrap;
}

.gold-header,
.gold-icon {
    background: linear-gradient(135deg, #e3ae4b 0%, #b67c29 100%);
}

.green-header,
.green-icon {
    background: linear-gradient(135deg, #6ba35a 0%, #508044 100%);
}

.card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.card-image-wrap {
    flex: 0 0 20%;
    position: relative;
    display: flex;
    align-items: center;
}

.card-floating-img {
    width: 15rem;
    position: absolute;
    left: -7.75rem;
    margin-top: 3.5rem;
    z-index: 2;
}

.card-floating-img-right {
    width: 15rem;
    position: absolute;
    right: -7.25rem;
    margin-top: 3.5rem;
    z-index: 2;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 3;
    padding: 0 0.625rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.green-card .info-item:first-child {
    margin-top: 0.6875rem;
}

.mt-10 {
    margin-top: 0.625rem;
}

.info-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.875rem;
    flex-shrink: 0;
}



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

.info-label {
    font-size: 0.6875rem;
    color: var(--text-color);
    font-weight: 600;
}

.info-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.info-value-sm {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.or-divider {
    text-align: center;
    position: relative;
    margin: 0.5rem 0;
}

.or-divider::before,
.or-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: #ddd;
}

.or-divider::before {
    left: 0;
}

.or-divider::after {
    right: 0;
}

.or-divider span {
    font-size: 0.75rem;
    color: #888;
    background: #fefaf0;
    padding: 0 0.3125rem;
    position: relative;
    z-index: 1;
}

.info-divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.05);
    margin: 0.3125rem 0;
}

.join-btn-container {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-join-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F3C353 0%, #D49D34 50%, #F5CE71 100%);
    color: #fff !important;
    padding: 0.5625rem 1.5rem;
    font-size: 0.875rem;
    border-radius: 0.625rem;
    border: none;
    box-shadow: 0 0.25rem 0.9375rem rgba(197, 152, 66, 0.4);
    font-family: var(--font-heading);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-join-now i {
    margin-left: 0.625rem;
}

.btn-join-now:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 1.25rem rgba(197, 152, 66, 0.5);
}

/* =========================================
   About Section
   ========================================= */
.about-section {
    padding: 3rem 0;
    background-color: var(--bg-color);
}

.about-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.about-subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.about-subtitle-wrapper .line {
    width: 3rem;
    height: 1px;
    background-color: var(--gold);
}

.about-subtitle-wrapper .ornament i {
    color: var(--gold);
    font-size: 0.75rem;
}

.about-subtitle {
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cinzel-font {
    font-family: 'Cinzel', serif;
}

.first-letter {
    font-size: 1.25em;
}

.about-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

.about-divider-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.about-divider-bottom .line {
    width: 3rem;
    height: 1px;
    background-color: var(--gold);
}

.ornament-bottom i {
    font-size: 1rem;
}

.about-content {
    text-align: center;
    color: #4b5563;
    line-height: 1.8;
    font-size: 0.9rem;
    max-width: 65rem;
    margin: 0 auto 2rem auto;
}

.about-content p {
    margin-bottom: 0.75rem;
}

.about-content .fw-600 {
    font-weight: 600;
}

.about-features-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border: 1px solid var(--gold-light);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.03);
    max-width: 65rem;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.feature-text h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.feature-text p {
    color: #6b7280;
    font-size: 0.8rem;
    margin: 0;
}

.feature-divider {
    width: 1px;
    height: 3rem;
    background-color: #e5e7eb;
}

/* =========================================
   Why Choose Us Section
   ========================================= */
.why-choose-us-section {
    padding: 3rem 0;
    background-color: var(--bg-color);
    background-image: url('assets/sec4-back.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.wcu-header {
    margin-bottom: 2.5rem;
}

.wcu-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.wcu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 90.625rem;
    margin: 0 auto;
}

.wcu-card {
    background: #fff;
    border: 1px solid var(--gold-light);
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.wcu-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1.5rem rgba(197, 152, 66, 0.15);
}

.wcu-icon-badge {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: #fdfaf6;
    border: 1px solid var(--gold-light);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.25rem auto;
}

.wcu-icon-badge i {
    font-size: 1.75rem;
    background: linear-gradient(135deg, #c59842, #e8d08c, #c59842);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wcu-card h4 {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.wcu-card h4::after {
    content: '';
    display: block;
    width: 2.5rem;
    height: 1px;
    background-color: var(--gold);
    margin: 0.75rem auto 0 auto;
}

.wcu-card p {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}


/* =========================================
   Mission Section
   ========================================= */
.mission-section {
    padding: 2.5rem 0;
    background-color: #ffffff;
}

.vision-section {
    background-color: var(--bg-color);
}

.mission-header {
    margin-bottom: 2.5rem;
}

.mission-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.mission-content {
    max-width: 50rem;
    margin: 0 auto;
    text-align: center;
    color: var(--primary-color);
}

.mission-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.mission-separator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem auto;
}

.mission-separator .line {
    width: 6rem;
    height: 1px;
    background-color: var(--gold);
}

.mission-separator .dot {
    width: 0.35rem;
    height: 0.35rem;
    background-color: var(--gold);
    transform: rotate(45deg);
}

.mission-btn-wrapper {
    margin-top: 2rem;
    text-align: center;
}

/* =========================================
   Process Section
   ========================================= */
.process-section {
    padding: 3rem 0;
    background-color: #fefaf0;
}

.process-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 0.5rem;
    margin-top: 3rem;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    margin-bottom: 2.5rem;
}

.step-icon {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--gold-light);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.step-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, #c59842, #e8d08c, #c59842);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-arrow {
    position: absolute;
    right: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--gold);
    z-index: 1;
}

.step-card {
    background-color: #ffffff;
    border: 1px solid var(--gold-light);
    border-radius: 0.5rem;
    padding: 2rem 0.5rem 1rem 0.5rem;
    text-align: center;
    position: relative;
    width: 100%;
    height: 100%;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.03);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--gold);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1rem;
    z-index: 3;
}

.step-card h4 {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.step-card h4::after {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background-color: var(--gold);
    margin: 0.5rem auto 0 auto;
}

.step-card p {
    color: #4b5563;
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0;
}


/* =========================================
   Live Draws Section
   ========================================= */
.live-draws-section {
    padding: 2.5rem 0;
    background: linear-gradient(to bottom, #ffffff 54%, #fefaf0 46%);
}

.live-draws-top {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.live-draws-text {
    flex: 1;
    margin-left: 2rem;
    text-align: center;
}

.live-draws-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.live-draws-divider {
    justify-content: center;
    margin: 1.5rem 0;
}

.live-draws-divider .line {
    width: 3rem;
}

.live-draws-text p {
    color: var(--primary-color);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.live-draws-image {
    flex: 1.2;
    text-align: right;
}

.live-draws-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

/* Transparency Bottom */
.transparency-bottom {
    text-align: center;
}

.transparency-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.transparency-header .line {
    width: 5rem;
    height: 1px;
    background-color: var(--gold);
}

.transparency-header .ornament {
    color: var(--gold);
    font-size: 0.75rem;
}

.transparency-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0;
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.transparency-card {
    background-color: #ffffff;
    border: 1px solid var(--gold-light);
    border-radius: 0.5rem;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.02);
}

.transparency-card .t-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #c59842, #e8d08c, #c59842);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.25rem auto;
}

.transparency-card .t-icon i {
    color: #ffffff;
    font-size: 1.75rem;
}

.transparency-card h4 {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.btn-watch-draws {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
}

/* =========================================
   Video Section
   ========================================= */
.video-section {
    padding: 2.5rem 0;
    background-color: #ffffff;
}

.video-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 34.125%;
    /* Half of 56.25% for 16:9 ratio when width is 50% */
    height: 0;
    overflow: hidden;
    max-width: 60%;
    margin: 0 auto;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* =========================================
   Social Connect Section
   ========================================= */
.social-connect-section {
    padding: 2.5rem 0;
    background-color: #fefaf0;
}

.social-connect-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.social-connect-header .line {
    flex: 1;
    height: 1px;
    background-color: var(--gold);
    max-width: 15rem;
}

.social-connect-header .ornament {
    color: var(--gold);
    font-size: 0.75rem;
}

.social-connect-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 1rem;
    white-space: nowrap;
    color: var(--primary-color);
}

.social-icons-wrapper {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.5rem;
    color: #ffffff;
    font-size: 1.75rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.insta-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.linkedin-icon {
    background-color: #0077b5;
}

.fb-icon {
    background-color: #1877f2;
}

.yt-icon {
    background-color: #ff0000;
}

/* =========================================
   Footer Section
   ========================================= */
.site-footer {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 2.5rem 0 0 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    padding-bottom: 2rem;
}

.footer-brand {
    flex: 1;
    max-width: 25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    width: 10rem;
    margin-bottom: 1rem;
    border-radius: 10%;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}

.footer-company {
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-divider {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-divider .line {
    height: 1px;
    background-color: var(--gold);
    width: 3rem;
}

.footer-divider .ornament {
    color: var(--gold);
    font-size: 0.5rem;
}

.footer-contact {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-vertical-line {
    width: 1px;
    height: 4rem;
    background-color: var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-links li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #e2e8f0;
}

.footer-links li i {
    color: var(--gold);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    width: 1.5rem;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.875rem;
    color: #cbd5e1;
}

/* Mobile Adjustments for Schemes Section */
@media (max-width: 1024px) {
    .process-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin-top: 2rem;
    }

    .process-step {
        max-width: 25rem;
        width: 90%;
    }

    .step-arrow {
        display: none;
    }

    .live-draws-top {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .live-draws-text {
        margin-left: 0;
    }

    .live-draws-text br {
        display: none;
    }

    .live-draws-divider {
        justify-content: center;
    }

    .live-draws-image {
        text-align: center;
    }

    .btn-watch-draws {
        width: 100%;
        max-width: 100%;
        padding: 1rem;
        box-sizing: border-box;
        white-space: normal;
        font-size: 1rem;
        line-height: 1.4;
    }

    .video-title {
        font-size: 2rem;
    }

    .video-wrapper {
        max-width: 90%;
        padding-bottom: 50.625%;
        /* 16:9 ratio when width is 90% */
    }

    .social-connect-title {
        font-size: 1.75rem;
        white-space: normal;
        text-align: center;
    }

    .social-connect-header .line {
        display: none;
    }

    .social-connect-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-grid {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .footer-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .footer-links li {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-vertical-line {
        width: 4rem;
        height: 1px;
        margin: 1rem 0;
    }

    .transparency-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wcu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .schemes-cards-container {
        flex-direction: column;
        gap: 3.75rem;
        margin: 2.5rem -1rem 0 -1rem;
    }

    .card-floating-img {
        left: -1.875rem;
        width: 13.75rem;
    }

    .card-floating-img-right {
        right: -1.875rem;
        width: 13.75rem;
    }
}

@media (max-width: 768px) {
    .wcu-grid {
        grid-template-columns: 1fr;
    }

    .about-header .wcu-title {
        font-size: 1.75rem;
        white-space: normal;
        display: block;
    }

    .mission-section .mission-header h2 {
        font-size: 2.1rem;
        white-space: normal;
        display: block;
    }

    .mission-btn-wrapper .btn-join-now {
        width: 14rem;
        margin: 0 auto;
        justify-content: center;
    }

    .mission-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .about-header h2 {
        font-size: 1.5rem;
        white-space: nowrap;
        display: flex;
        justify-content: center;
        gap: 0.4rem;
    }

    .about-content br {
        display: none;
    }

    .about-content {
        font-size: 0.9375rem;
        padding: 0 1rem;
    }

    .about-features-bar {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
        width: 85%;
        margin: 0 auto;
    }

    .feature-divider {
        width: 100%;
        height: 1px;
    }

    .schemes-section {
        min-height: auto;
        padding: 3.75rem 0;
    }

    .scheme-card {
        padding-bottom: 0.8rem !important;
        flex: 0 0 auto !important;
        height: max-content !important;
    }

    .card-body {
        height: auto !important;
        flex: none !important;
    }

    .schemes-header h2 {
        font-size: 2.25rem;
    }

    .card-body {
        flex-direction: column;
        gap: 1.875rem;
    }

    .card-image-wrap {
        height: 13.75rem;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .card-floating-img,
    .card-floating-img-right {
        position: relative;
        left: 0;
        right: 0;
        top: 0;
        transform: none;
        width: 15rem;
        margin-top: 2rem;
    }

    .green-card .card-body {
        flex-direction: column-reverse;
    }

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

/* =========================================
   Animations & Dynamic Hover Effects
   ========================================= */

/* Scroll Loading Animation */
.pre-animate {
    opacity: 0;
    visibility: hidden;
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    visibility: visible;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Hover Effects */
.card,
.b2-card,
.b3-card,
.wcu-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, box-shadow;
}

.card:hover,
.b2-card:hover,
.b3-card:hover,
.wcu-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.12);
}

.process-step {
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.trust-badge {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
    background-color: var(--gold-light);
    color: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.trust-badge:hover i {
    color: #fff;
}

.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

.nav-menu a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-menu a:hover {
    transform: translateY(-2px);
    color: var(--gold);
}

/* Hero Section Animations on Load / Slide Change */
.slide.active .hero-content h1 {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide.active .hero-content .divider {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
    opacity: 0;
}

.slide.active .hero-content .description {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
}

.slide.active .hero-content .highlight-box {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
}

.slide.active .hero-content .hero-buttons {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    opacity: 0;
}

.slide.active .hero-image-wrapper {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    opacity: 0;
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--gold);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 0.5rem 1rem rgba(212, 175, 55, 0.4);
    z-index: 9999;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: pulse-glow-gold 2s infinite;
}

.floating-call-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0.75rem 1.5rem rgba(212, 175, 55, 0.6);
    color: #fff !important;
}

@keyframes pulse-glow-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}