* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #172033;
    background: #f8fafc;
    line-height: 1.6;
}

a {
    color: #0b6f6a;
    text-decoration: none;
}

.site-header {
    padding: 10px 6vw;
    background: #0d1338;
    border-bottom: 5px solid #f6b73c;
    position: sticky;
    top: 0;
    z-index: 10;
    float: left;
    width: 100%;
}

.text-center {
    text-align: center;
}

.brand {
    float: left;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {

    height: 55px;

}

.brand-text {
    display: flex;
    flex-direction: column;
    color: white;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 21px;
}

.brand-text small {
    color: #59ccfa;
    font-size: 12px;
    font-weight: 800;
}

nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    min-height: 55px;
    font-size: 16px;
    font-weight: 800;
    float: right;
}

nav a {
    color: #edf3ff;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #edf3ff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

main {
    min-height: 70vh;
    float: left;
    width: 100%;
}

.hero,
.page-title,
.section,
.content-body,
.form-shell,
.member-detail,
.filters,
.notice-strip {
    width: min(1120px, 88vw);
    margin: 0 auto;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: 38px;
    align-items: center;
    padding: 82px 0 46px;
}

.hero h1,
.page-title h1,
.form-shell h1 {
    font-size: clamp(24px, 3.5vw, 38px);
    line-height: 1.2;
    margin: 8px auto 16px;
    color: #0d1338;
    font-weight: 700;
    letter-spacing: -0.02em;
    border-bottom: 4px solid #51cdf3;
    padding-bottom: 8px;
    width: fit-content;
}

.page-title h1,
.form-shell h1 {
    text-align: center;
}

.hero p {
    font-size: 18px;
    line-height: 1.65;
    color: #4b5563;
}

.eyebrow {
    color: #0b6f6a;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 13px;
}

.button,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    background: #e4572e;
    color: white;
    padding: 13px 20px;
    font-weight: 800;
    cursor: pointer;
    min-height: 46px;
    box-shadow: 0 10px 22px rgba(228, 87, 46, 0.2);
}

.button.small {
    padding: 9px 12px;
    min-height: 38px;
}

.button.ghost {
    background: #f6b73c;
    color: #0d1338;
    border: 1px solid #f6b73c;
}

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

.hero-panel {
    display: grid;
    gap: 14px;
}

.banner-card {
    min-height: 270px;
    border-radius: 8px;
    padding: 22px;
    display: flex;
    align-items: flex-end;
    color: white;
    font-weight: 800;
    background: #143d59;
    border: 1px solid #dfe7ef;
    overflow: hidden;
    position: relative;
}

.banner-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 26% 28%, rgba(255, 255, 255, 0.34), transparent 18%), linear-gradient(135deg, rgba(228, 87, 46, 0.95), rgba(13, 19, 56, 0.95) 55%, rgba(11, 111, 106, 0.95));
}

.banner-card::after {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
}

.banner-card span {
    position: relative;
    z-index: 1;
    font-size: 26px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.hero-stats div,
.stat-card,
.member-card,
.profile-panel,
.details-panel,
.form-shell,
.committee-card,
.mission-grid article,
.faq-list details {
    background: white;
    border: 2px solid #f3dfbd;
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 12px 30px rgba(13, 19, 56, 0.08);
}

.profile-panel {
    text-align: center;
}

.hero-stats span,
.stat-card span {
    display: block;
    font-size: 44px;
    font-weight: 800;
    color: #0b6f6a;
}

.hero-stats p {
    margin: 4px 0 0;
    font-size: 14px;
    line-height: 1.4;
    color: #64748b;
}

.notice-strip {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 18px;
    padding: 22px 26px;
    border: 2px solid #f6b73c;
    border-left: 8px solid #e4572e;
    border-radius: 8px;
    background: #fff3d7;
}

.notice-strip strong {
    color: #0b5b57;
    font-size: 18px;
}

.notice-strip p {
    margin: 4px 0;
    color: #334155;
}

.section {
    padding: 38px 0;
    max-width: 100%;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.split-section h2,
.section h2 {
    margin: 6px 0 0;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.15;
    color: #111827;
}

.split-section p {
    margin: 0;
    font-size: 18px;
    line-height: 1.75;
    color: #475569;
}

.prose-block {
    display: grid;
    gap: 14px;
}

.prose-block p {
    margin: 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.mission-grid span {
    color: #0b6f6a;
    font-weight: 800;
}

.mission-grid p,
.committee-card p,
.faq-list p {
    color: #475569;
    line-height: 1.65;
}

.mission-list {
    margin: 14px 0 0;
    padding-left: 20px;
    color: #475569;
    line-height: 1.65;
}

.mission-list li+li {
    margin-top: 8px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.section-note {
    margin: 8px 0 0;
    color: #64748b;
    font-weight: 700;
}

.member-grid,
.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.member-directory {
    width: min(1120px, 88vw);
    margin: 0 auto;
}

.member-card img,
.avatar,
.committee-card div {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    background: #dde9f1;
    display: grid;
    place-items: center;
    font-size: 30px;
    font-weight: 800;
    color: #0b6f6a;
}

.member-card h3,
.committee-card h3 {
    margin-bottom: 6px;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0;
}

.chips span {
    background: #e8f5f3;
    color: #0b5b57;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 13px;
}

.gallery-preview,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.gallery-content p {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 0;
}

.gallery-content img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    border: 2px solid #f3dfbd;
    box-shadow: 0 12px 30px rgba(13, 19, 56, 0.1);
    background: white;
}

.gallery-content img+img {
    margin: 0;
}

.gallery-shot,
.gallery-tile {
    min-height: 150px;
    background: linear-gradient(135deg, #dde9f1, #f8fafc);
    display: grid;
    place-items: end start;
    border-radius: 8px;
    color: #172033;
    font-weight: 800;
    padding: 18px;
    border: 1px solid #dfe7ef;
}

.gallery-shot:nth-child(2) {
    background: linear-gradient(135deg, #fee2c5, #f8fafc);
}

.gallery-shot:nth-child(3) {
    background: linear-gradient(135deg, #d9f99d, #f8fafc);
}

.gallery-shot:nth-child(4) {
    background: linear-gradient(135deg, #c7d2fe, #f8fafc);
}

.faq-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 800;
    color: #111827;
}

.management-team {
    padding-top: 18px;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.management-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    background: white;
    border: 2px solid #f3dfbd;
    box-shadow: 0 12px 30px rgba(13, 19, 56, 0.08);
}

.management-photo {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #f6b73c, #e4572e);
    color: #0d1338;
    font-size: 40px;
    font-weight: 900;
    border: 4px solid #fff3d7;
}

.management-info span {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    background: #0d1338;
    color: white;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.management-info h3 {
    margin: 10px 0 4px;
    color: #0d1338;
    font-size: 22px;
}

.management-info p {
    margin: 0 0 12px;
    color: #475569;
    font-weight: 800;
}

.management-info dl {
    display: grid;
    gap: 8px;
    margin: 0;
}

.management-info dl div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-top: 8px;
    border-top: 1px solid #f3dfbd;
}

.management-info dt {
    color: #64748b;
}

.management-info dd {
    margin: 0;
    color: #0d1338;
    font-weight: 900;
    text-align: right;
    font-size: 12px;
}

.page-title {
    padding: 56px 0 24px;
}

.content-body {
    background: white;
    border-top: 5px solid #e4572e;
    padding: 32px;
    line-height: 1.75;
}

.legal-content h2 {
    margin: 24px 0 8px;
    color: #0d1338;
}

.legal-content p {
    font-size: 17px;
    color: #475569;
}

.filters {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 24px;
}

input,
textarea,
select {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background: white;
    font: inherit;
    min-height: 44px;
}

textarea {
    min-height: 130px;
    grid-column: 1 / -1;
}

.form-shell {
    margin-top: 46px;
    margin-bottom: 46px;
}

.payment-shell {
    display: grid;
    /* grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    gap: 26px; */
    align-items: center;
}

.thank-you-shell {
    max-width: 760px;
    text-align: center;
}

.thank-you-shell p:not(.eyebrow) {
    font-size: 20px;
    line-height: 1.7;
    color: #475569;
}

.thank-you-shell .actions {
    justify-content: center;
    margin-top: 22px;
}

.payment-lead {
    font-size: 18px;
    line-height: 1.65;
    color: #475569;
}

.bank-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
}

.bank-details div {
    background: #fff8ed;
    border: 2px solid #f3dfbd;
    border-radius: 8px;
    padding: 14px;
}

.bank-details dt {
    color: #0d1338;
}

.bank-details dd {
    font-weight: 800;
    color: #e4572e;
    word-break: break-word;
}

.d-flex {
    display: flex;
    gap: 10px;
}

.qr-panel {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 5px;
    background: #fff3d7;
    border: 2px solid #f6b73c;
    border-radius: 8px;
}

.qr-panel h2 {
    margin: 0;
    color: #0d1338;
    font-size: 16px;
}

.qr-panel img {
    width: min(100%, 170px);
    border-radius: 8px;
    border: 8px solid white;
    box-shadow: 0 12px 30px rgba(13, 19, 56, 0.12);
}

.membership-fee-box {
    margin: 22px 0;
    padding: 22px;
    border-radius: 8px;
    background: #0d1338;
    color: white;
    border: 4px solid #f6b73c;
    box-shadow: 0 16px 34px rgba(13, 19, 56, 0.18);
}

.membership-fee-box span {
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: #f6b73c;
    text-transform: uppercase;
}

.membership-fee-box strong {
    display: block;
    margin: 8px 0 14px;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1;
}

.membership-fee-box ul {
    margin: 0;
    padding-left: 20px;
    line-height: 1.7;
}

.membership-fee-box li {
    color: #edf3ff;
    font-weight: 700;
}

.pay-note {
    margin: 18px 0;
    padding: 14px 16px;
    border-radius: 8px;
    background: #ecfdf5;
    color: #065f46;
}

.form-shell.narrow {
    max-width: 520px;
}

.form-shell form {
    display: grid;
    gap: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.field {
    display: grid;
    gap: 7px;
    color: #0d1338;
    font-weight: 800;
}

.field.full {
    grid-column: 1 / -1;
}

.field small {
    color: #64748b;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
}

.field-error {
    min-height: 18px;
    color: #b91c1c;
    font-size: 13px;
    font-weight: 800;
}

.dashboard-shell form {
    display: grid;
    gap: 22px;
}

.checkbox-panel,
.upload-panel {
    border: 2px solid #f3dfbd;
    border-radius: 8px;
    background: #fffdf8;
    padding: 20px;
}

.checkbox-panel legend {
    padding: 0 8px;
    font-size: 24px;
    font-weight: 900;
    color: #0d1338;
}

.checkbox-panel p,
.upload-panel p {
    margin: 4px 0 16px;
    color: #64748b;
    font-weight: 700;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
}

.check-option {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 10px 12px;
    border: 2px solid #f3dfbd;
    border-radius: 8px;
    background: white;
    color: #0d1338;
    font-weight: 800;
    cursor: pointer;
}

.check-option input {
    width: 18px;
    height: 18px;
    min-height: 0;
    accent-color: #e4572e;
}

.upload-panel {
    display: grid;
    gap: 16px;
}

.media-preview {
    display: grid;
    gap: 14px;
}

.single-preview {
    max-width: 240px;
}

.single-preview img,
.banner-preview-grid img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #f3dfbd;
    background: white;
}

.single-preview img {
    aspect-ratio: 1;
}

.banner-preview-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.banner-preview-grid figure {
    margin: 0;
    display: grid;
    gap: 10px;
}

.banner-preview-grid img {
/*    aspect-ratio: 16 / 7;*/
}

.remove-media {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #991b1b;
    font-weight: 900;
}

.remove-media input {
    width: 18px;
    height: 18px;
    min-height: 0;
    accent-color: #e4572e;
}

.ajax-message {
    margin-bottom: 14px;
    min-height: 0;
}

.ajax-message.success,
.ajax-message.error {
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 800;
}

.ajax-message.success {
    background: #ecfdf5;
    color: #065f46;
}

.ajax-message.error {
    background: #fef2f2;
    color: #991b1b;
}

.file-field {
    display: grid;
    gap: 8px;
    color: #4b5563;
}

.notice,
.errors {
    width: min(1120px, 88vw);
    margin: 18px auto;
    padding: 10px 16px;
    border-radius: 6px;
    background: #ecfdf5;
    color: #065f46;
}

.errors {
    background: #fef2f2;
    color: #991b1b;
    width: 100%;

}

.member-detail {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 24px;
    padding: 46px 0;
}

.profile-photo {
    width: 160px;
    height: 160px;
    border-radius: 98px;
    object-fit: contain;
    border: 2px solid #f6b73c;
    padding: 15px;
}

.contact-actions {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.contact-actions a,
.file-list a {
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 10px 12px;
    background: #fff;
}

.banner-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.banner-row img {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    border-radius: 8px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
}

.details-grid div {
    background: #f8fafc;
    padding: 14px;
    border-radius: 6px;
}

.details-grid .wide {
    grid-column: 1 / -1;
}

dt {
    font-weight: 800;
    color: #475569;
}

dd {
    margin: 6px 0 0;
}

.file-list {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.link-button {
    color: #0b6f6a;
    background: transparent;
    padding: 0;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    color: #0d1338;
    font-weight: 900;
    border: 2px solid white;
    box-shadow: 0 14px 28px rgba(13, 19, 56, 0.24);
}

.whatsapp-float img {
    width: 60px;
}

.site-footer {
    margin-top: 54px;
    padding: 40px 6vw 25px 6vw;
    display: grid;
    grid-template-columns: 1.2fr repeat(1, minmax(160px, 1fr));
    gap: 20px;
    background: #0d1338;
    color: white;
    border-top: 5px solid #f6b73c;
    float: left;
    width: 100%;
}

.footer-logo {
    width: 165px;
    height: auto;
}

.site-footer p {
    color: #cbd5e1;
    line-height: 1.6;
    margin: 8px 0 0;
}

.site-footer h3 {
    margin: 0 0 15px;
    font-size: 20px;
}

.site-footer a {
    color: #d9f99d;
    margin-top: 8px;
}

.site-footer .ftrMnu {
    float: left;
    width: 100%;
    list-style: square;
    margin: 10px 0 0;
    padding: 0 0 0 20px;
    line-height: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.site-footer .ftrMnu li::Marker {
    font-size: 18px;
}

.copyright {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #374151;
    font-size: 14px;
    color: #9ca3af;
}

.copyright p {
    margin: 0;
}

.empty {
    color: #64748b;
}

.pagination {
    width: min(1120px, 88vw);
    margin: 24px auto;
}

.pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px 0 18px;
}

.pager-pages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pager-link {
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 13px;
    border: 2px solid #f3dfbd;
    border-radius: 8px;
    background: white;
    color: #0d1338;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(13, 19, 56, 0.06);
}

.pager-link.active {
    background: #e4572e;
    border-color: #e4572e;
    color: white;
}

.pager-link.disabled {
    color: #94a3b8;
    background: #fff8ed;
    box-shadow: none;
    cursor: not-allowed;
}

.hide {
    display: none;
}

/* Attached-style home page redesign */
.home-slider,
.home-cta,
.home-about,
.home-vm,
.home-stats,
.home-committee,
.home-gallery,
.home-faq,
.home-management {
    width: min(1240px, 92vw);
    margin-left: auto;
    margin-right: auto;
}

.home-slider {
    margin-top: 28px;
    overflow: hidden;
    border-radius: 12px;
    background: #0b0826;
    box-shadow: 0 14px 34px rgba(13, 19, 56, 0.14);
}

.home-slides {
    display: flex;
    width: 300%;
    height: 100%;
    animation: homeSlider 15s infinite ease-in-out;
}

.home-slide {
    width: 33.333%;
    height: 100%;
}

.home-slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

@keyframes homeSlider {

    0%,
    28% {
        transform: translateX(0);
    }

    33%,
    61% {
        transform: translateX(-33.333%);
    }

    66%,
    94% {
        transform: translateX(-66.666%);
    }

    100% {
        transform: translateX(0);
    }
}

.home-cta {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.home-btn,
.home-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 900;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-btn:hover,
.home-outline-btn:hover {
    transform: translateY(-2px);
}

.home-btn.find,
.home-btn.join {
    background: #59ccfa;
    color: #120e3d;
}

.home-btn.login {
    background: #120e3d;
    color: white;
    border: 2px solid #59ccfa;
}

.home-about,
.home-vm,
.home-committee,
.home-gallery,
.home-faq,
.home-management {
    margin-top: 78px;
}

.home-about-card {
    display: grid;
    grid-template-columns: 0.9fr 1.2fr;
    gap: 40px;
    align-items: center;
    padding: 44px;
    border-radius: 16px;
    background: white;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(18, 14, 61, 0.04);
}

.home-about-media {
    min-height: 320px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #ccc;
    color: white;
    overflow: hidden;
    position: relative;
}

.home-about-media img {
    width: 100%;
    height: 510px;
    object-fit: cover;
}

.home-about-media::after {
    content: "IT";
    position: absolute;
    right: -8px;
    bottom: -54px;
    font-size: 160px;
    font-weight: 900;
    color: rgba(89, 204, 250, 0.06);
}

.media-icon {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #59ccfa;
    color: #120e3d;
    font-weight: 900;
    font-size: 28px;
}

.home-about-media strong {
    font-size: 22px;
}

.home-about-media span {
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 13px;
}

.home-kicker {
    color: #0284c7;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.home-about-copy h2,
.home-heading h2 {
    color: #120e3d;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.15;
    margin: 8px 0 18px;
}

.home-about-copy p {
    color: #475569;
    margin-bottom: 14px;
    text-align: justify;
}

.home-vm {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.home-vm-card {
    padding: 38px;
    border-radius: 16px;
    background: white;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(18, 14, 61, 0.04);
}

.home-vm-title span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: bold;
    background: #f0f9ff;
    font-size: 24px;
    color: #0284c7;
    align-items: center;
}

.home-vm-title span i {
    margin-right: 10px;
}

.home-vm-card.vision .home-vm-title span {
    background: #f0fdf4;
    color: #16a34a;
}

.home-vm-title h2 {
    color: #120e3d;
    font-size: 22px;
    line-height: 1.35;
}

.home-vm-card p,
.home-vm-card li {
    color: #475569;
}

.home-vm-card ul {
    padding-left: 20px;
    list-style: square;
}

.home-vm-card li::marker {
    font-size: 20px;
    color: #0284c7;
}

.home-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 44px;
}

.home-stats div {
    padding: 26px;
    border-radius: 14px;
    background: #120e3d;
    color: white;
    text-align: center;
}

.home-stats strong {
    display: block;
    font-size: 44px;
    color: #59ccfa;
    line-height: 1;
}

.home-stats span {
    display: block;
    margin-top: 8px;
    font-weight: 800;
}

.home-heading {
    text-align: center;
    margin-bottom: 34px;
}

.home-heading p {
    color: #64748b;
    font-weight: 600;
}

.committee-card-grid {
    display: grid;
    gap: 22px;
    margin-bottom: 28px;
}

.committee-card-grid.mentors {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.committee-card-grid.core {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-committee-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 210px;
    padding: 22px;
    border-radius: 12px;
    background: white;
    border: 1px solid #e2e8f0;
    border-top: 4px solid #59ccfa;
    box-shadow: 0 8px 18px rgba(18, 14, 61, 0.04);
}

.home-committee-card.mentor {
    border-top-color: #f1b80c;
}

.home-committee-card h3 {
    margin: 0 0 4px;
    color: #120e3d;
}

.home-committee-card span {
    color: #0284c7;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-committee-card p {
    color: #475569;
    font-weight: 700;
}

.home-committee-card footer,
.team-copy div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.home-committee-card small {
    color: #64748b;
    font-weight: 800;
}

.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.home-gallery-grid a {

    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #e2e8f0;
}

.home-gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.home-gallery-grid a:hover img {
    transform: scale(1.06);
}

.gallery-cta {
    margin-top: 24px;
    text-align: center;
}

.home-outline-btn {
    border: 2px solid #120e3d;
    color: #120e3d;
}

.home-outline-btn:hover {
    background: #120e3d;
    color: white;
}

.home-faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.home-faq-list details {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.home-faq-list summary {
    cursor: pointer;
    padding: 20px 24px;
    font-weight: 900;
    color: #120e3d;
}

.home-faq-list p {
    margin: 0;
    padding: 0 24px 20px;
    color: #475569;
}

.home-team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.home-team-card {
    overflow: hidden;
    border-radius: 14px;
    background: white;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 28px rgba(18, 14, 61, 0.07);
}

.team-photo {
    width: 100%;
    background: #e2e8f0;
    padding: 15px;
    text-align: center;
    float: left;
}

.team-photo img {
    width: 70px;
    float: left;
    vertical-align: top;
    border: 4px solid #fff;
    border-radius: 50%;
}

.team-photo .TemInfo {
    float: right;
    width: calc(100% - 90px);
    text-align: left;
    height: 70px;
    align-content: center;
}

.team-photo .TemInfo h3 {
    margin: 0;
    color: #120e3d;
    font-size: 16px;
}

.team-photo .TemInfo span {
    color: #0284c7;
}

.team-copy {
    padding: 20px;
    float: left;
    width: 100%;
    text-align: left;
}

.team-copy p {
    color: #475569;
    margin: 0;
}

.team-copy a {}


/* Slider css */
.slider-container {
    position: relative;
    width: 100%;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Moving track holding all slides */
.slide-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: margin-left 0.5s ease-in-out;
}

/* Individual Slides */
.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-size: 2rem;
    color: white;
    font-weight: bold;
}

.slide img {
    float: left;
}

/* Dummy background colors for demo instead of external images */
.slide:nth-child(1) {
    background-color: #3498db;
}

.slide:nth-child(2) {
    background-color: #e74c3c;
}

.slide:nth-child(3) {
    background-color: #2ecc71;
}

.slide:nth-child(4) {
    background-color: #f1c40f;
}

/* Navigation Arrows */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 0 5px;
    min-height: inherit;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 4px;
    user-select: none;
    transition: background-color 0.2s;
}

.nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Slider css end*/

/* Tab Navigation Styling */
.tab-menu {
    list-style: none;
    padding: 10px 0;
    margin: 0;
    display: flex;
}

.tab-menu li a {
    padding: 10px 20px;
    background: #eee;
    color: #333;
    text-decoration: none;
    border: 1px solid #ccc;
    border-bottom: none;
    margin-right: 5px;
}

/* Active Tab Navigation State */
.tab-menu li.active a {
    background: #fff;
    border-bottom: 1px solid #fff;
    font-weight: bold;
}

/* Tab Content Styling */
.tab-container {
    border: 1px solid #ccc;
    padding: 20px;
    background: #fff;

}

.tab-content {
    display: none;
    /* Hide all panels by default */
}

/* Active Content State */
.tab-content.active {
    display: block;
}



.membership-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h1 {
    color: var(--primary-dark);
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.section-header h1 span {
    color: var(--accent-blue);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0;
}

/* 3-Card Grid Layout */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.criteria-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.criteria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(18, 14, 61, 0.1);
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
}

.card-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-dark);
}

.criteria-card:nth-child(2) .card-icon-wrapper i {
    color: #0284c7;
}

.criteria-card:nth-child(3) .card-icon-wrapper i {
    color: #0369a1;
}

.criteria-card h3 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.criteria-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* Important Note Callout Box */
.important-note-box {
    background-color: #f0f7ff;
    border-left: 5px solid var(--accent-blue);
    border-top: 1px solid #ddedfd;
    border-right: 1px solid #ddedfd;
    border-bottom: 1px solid #ddedfd;
    border-radius: 0 12px 12px 0;
    padding: 25px 30px;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.note-icon {
    font-size: 1.5rem;
    color: #0284c7;
    margin-top: 2px;
}

.note-content h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.note-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #334155;
}

/* Action & Checkbox Container */
.action-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    user-select: none;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-dark);
    cursor: pointer;
}

.btn-primary {
    background-color: #120e3d;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(18, 14, 61, 0.2);
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #1d1763;
}

/* Styles for disabled state */
.btn-primary:disabled {
    background-color: #cbd5e1;
    color: #94a3b8;
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
    /* Disables clicks entirely */
}

.section-content {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    text-align: justify;
}

.BnrLst{ list-style:none; margin:0; padding:0;display: grid;grid-template-columns: repeat(3,1fr);gap: 25px;}
.BnrLst li{ float:left; width:100%;} .BnrLst img{float:left; width:100%;}




@media (max-width: 980px) {

    .d-flex {
        display: inline;
    }

    .d-flex .d-flex,
    .d-flex .bank-details {
        width: 100%;
    }

    .site-header {
        align-items: flex-start;
        /* flex-direction: column;*/
    }

    .hamburger {
        display: flex;
        align-self: center;
        float: right;
        min-height: inherit;
        margin: 0;

    }

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #0d1338;
        padding: 20px 0;
        margin-top: 10px;
    }

    nav.active {
        display: flex;
        position: fixed;
        left: 0;
        top: 74px;
        bottom: 0;
        gap: 25px;
        overflow: auto;
    }


    nav a:last-child {
        border-bottom: none;
    }

    .hero,
    .split-section,
    .mission-grid,
    .faq-section,
    .member-detail,
    .payment-shell,
    .site-footer {
        grid-template-columns: 1fr;
    }

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

    .home-about-card,
    .home-vm,
    .home-stats,
    .committee-card-grid.mentors,
    .committee-card-grid.core,
    .home-gallery-grid,
    .home-team-grid {
        grid-template-columns: 1fr;
    }

    .home-about-media {
        min-height: initial;
        padding: 0;
    }

    .home-about-media img {
        height: auto;
    }

    .home-about-card,
    .home-vm-card {
        padding: 26px;
    }
}

@media (max-width: 620px) {

    .hero,
    .section {
        padding: 30px 0;
    }

    .notice-strip,
    .filters,
    .form-grid,
    .bank-details,
    .management-card,
    .details-grid,
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .management-info dd {
        text-align: left;
    }



    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        min-height: 44px;
        padding: 0 14px;
    }

    .site-footer .ftrMnu {
        grid-template-columns: 1fr;
    }

    .tab-menu {
        flex-direction: column;
        gap: 0;
    }

    .tab-menu li {
        width: 100%;
        text-align: center;
    }

    .tab-menu li a {
        width: 100%;
        display: block;
    }

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

}

.committee-table-wrap {
    overflow-x: auto;
    background: white;
    border: 1px solid #dfe7ef;
    border-radius: 8px;
}

.committee-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 920px;
}

.committee-table th,
.committee-table td {
    padding: 13px 14px;
    border-bottom: 1px solid #e5ebf3;
    text-align: left;
    vertical-align: top;
}

.committee-table th {
    background: #0d1338;
    color: white;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0;
}

.committee-table td {
    color: #334155;
}

.committee-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.committee-table tbody tr:hover {
    background: #eef6f6;
}

/* Reference header and footer refresh */
.sticky-navbar {
    position: fixed;
    inset: 0 0 auto;
    width: 100%;
    z-index: 1000;
    background: #0d1338;
    border-bottom: 5px solid #f6b73c;
    box-shadow: 0 10px 28px rgba(13, 19, 56, 0.22);
    padding: 10px 0;
}

.nav-container {
    width: min(1240px, 92vw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.nav-logo-block {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
}

.nav-logo-block img {
    height: 52px;
    width: auto;
    display: block;
}

.brand-title {
    color: #fff;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
}

.brand-subtitle {
    margin-top: 5px;
    color: #59ccfa;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    min-height: 0;
    margin: 0;
    float: none;
    font-size: 15px;
    font-weight: normal;
}

.nav-link {
    color: #edf3ff;
    text-transform: uppercase;
    letter-spacing: 0;
}

.nav-link:hover,
.site-footer a:hover {
    color: #59ccfa;
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border: 0;
    border-radius: 8px;
    background: #59ccfa;
    color: #120e3d;
    font-size: 17px;
    font-weight: normal;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(89, 204, 250, 0.18);
}

.nav-cta-btn:hover {
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.nav-login-link {
    color: #f6b73c;
}

.nav-logout-form {
    display: inline-flex;
    margin: 0;
}

.hamburger {
    flex: 0 0 auto;
}

main {
    margin-top: 70px;
}

.site-footer {
    display: block;
    margin-top: 80px;
    padding: 0;
    background: #0d1338;
    color: #fff;
    border-top: 5px solid #f6b73c;
    float: left;
    width: 100%;
}

.footer-container {
    width: min(1240px, 92vw);
    margin: 0 auto;
    padding: 58px 0 46px;
    display: grid;
    grid-template-columns: minmax(280px, 1.25fr) minmax(220px, 0.8fr) minmax(220px, 0.8fr);
    gap: 54px;
}

.footer-logo-block {
    pointer-events: none;
}

.footer-logo-block img {
    height: 64px;
}

.footer-brand-column p {
    max-width: 560px;
    margin-top: 22px;
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 16px;
}

.footer-heading {
    margin: 0 0 18px;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
}

.footer-links-list,
.footer-contact-info {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.footer-links-list a,
.footer-contact-info a,
.footer-contact-info li {
    color: #dbeafe;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links-list li,
.footer-contact-info li {
    position: relative;

}

.footer-links-list li a:hover {
    padding-left: 5px;
}

.footer-links-list li::before {}

.footer-contact-info li::before {}

.footer-copyright-bar {
    padding: 18px 6vw;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #9ca3af;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
}

.committee-row-title {
    margin: 34px 0 18px;
    color: #120e3d;
    font-size: 24px;
    font-weight: 900;
    text-align: center;
}

.committee-card-grid.zone {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 0;
}

.zones-main-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 24px;
}

.zone-box-container {
    padding: 22px;
    border-radius: 14px;
    background: #f8fbff;
    border: 1px solid #dbeafe;
    box-shadow: 0 8px 18px rgba(18, 14, 61, 0.04);
}

/*.zone-box-container:last-child {
    grid-column: 1 / -1;
}*/

.zone-box-title {
    margin: 0 0 16px;
    color: #0284c7;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.home-committee-card.zone {
    min-height: 178px;
    border-top-color: #16a34a;
}

@media (max-width: 1180px) {
    .nav-menu {
        gap: 14px;
        font-size: 12px;
    }

    .nav-cta-btn {
        padding: 9px 12px;
    }
}

@media (max-width: 980px) {
    .sticky-navbar {
        padding: 12px 0;
    }

    .nav-container {
        align-items: center;
        flex-wrap: wrap;
    }

    .nav-logo-block img {
        height: 48px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        top: 82px;
        bottom: 0;
        z-index: 999;
        width: 100%;
        padding: 28px 6vw;
        background: #0d1338;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 22px;
        overflow: auto;
    }

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

    .footer-container,
    .zones-main-grid,
    .committee-card-grid.zone {
        grid-template-columns: 1fr;
    }

    .zone-box-container:last-child {
        grid-column: auto;
    }
}

@media (max-width: 620px) {
    main {
        margin-top: 86px;
    }

    .brand-title {
        font-size: 20px;
    }

    .brand-subtitle {
        font-size: 10px;
    }

    .nav-logo-block img {
        height: 42px;
    }

    .nav-menu {
        top: 75px;
    }

    .footer-container {
        gap: 34px;
        padding: 42px 0 34px;
    }

    .section-header h1 {
        font-size: 2rem;
    }

    .important-note-box {
        flex-direction: column;
        gap: 10px;
    }

    .note-icon {
        margin-top: 0;
    }

    .checkbox-wrapper {
        text-align: left;
        align-items: flex-start;
    }

    .checkbox-wrapper input {
        margin-top: 3px;
    }
}