* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
html {
    scroll-behavior: smooth;
}
body {
    background: #ffffff;
    color: #0f172a;
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    width: 100%;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
}

.nav-container {
    max-width: 1400px;
    margin: auto;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* BRAND */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 26px;
    color: #0f172a;
    text-decoration: none;
}

.brand img {
    max-width: 100px;
    width: 100px;
}

/* DESKTOP NAV */
.desktop-nav {
    display: flex;
    gap: 36px;
}

.desktop-nav a {
    text-decoration: none;
    color: #0f172a;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block; /* required for smooth scaling */
}

.desktop-nav a:hover {
    color: #003366;
    transform: scale(1.18); /* zoom effect */
}

/* HAMBURGER */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: #fff;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: #f5f6fa;
    color: #c00000; /* your red theme */
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    /* padding: 14px 0; */
    font-weight: 600;
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 15px;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
}
.mobile-dropdown-menu.open {
    display: block;
}
.hero {
    width: 100%;
    margin: 0;                 /* remove auto centering */
    display: flex;
    align-items: center;
    gap: 60px;
}
/* LEFT IMAGE - SMALLER */
.hero-image {
    flex: 0 0 26%; /* controls image width */
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* RIGHT CONTENT — TAKES REMAINING SPACE */
.hero-content {
    flex: 1;                   /* take all remaining width */
    padding-right: 80px;       /* space from right edge */
}
.hero-content h1 {
    font-size: 55px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 30px;
}

.btn-primary {
    padding: 12px 28px;
    background: #0b1b5c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}
.membership-hero{
    position:relative;
}

.membership-hero img{
    width:100%;
    height:auto;
    display:block;
}

.hero-overlay{
    position:absolute;
    top:50%;
    left:6%;
    transform:translateY(-50%);
    color:#fff;
    max-width:750px;
}

.hero-overlay h1{
    font-family:'Playfair Display', serif;
    font-size:72px;
    font-weight:600;
    margin-bottom:25px;
    line-height:1.1;
}

.hero-overlay p{
    font-weight:500;
    font-size:28px;
    margin-bottom:25px;
}

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

.btn-primary,
.btn-secondary{
    padding:14px 28px;
    border-radius:30px;
    font-weight:600;
    text-decoration:none;
    display:inline-block;
    transition:0.3s ease;
}

.btn-primary{
    background:#fff;
    color:#0b2c6a;
}

.btn-secondary{
    background:#0b2c6a;
    color:#fff;
}
/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 9999;
    display: none;
    flex-direction: column;
    height: fit-content;
}

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

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid #e5e7eb;
}

#closeMenu {
    font-size: 28px;
    cursor: pointer;
    color: black;
    font-weight: bold;
}

.mobile-links {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-links a {
    text-decoration: none;
    color: #0f172a;
    font-weight: 600;
    font-size: 16px;
}
/* MAIN SECTION */
.wave-section {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* TOP & BOTTOM WAVES */
.wave-top img,
.wave-bottom img {
    width: 100%;
    display: block;
}

/* MIDDLE COLORED AREA */
.wave-content {
    background: #081a63; /* your blue color */
    padding: 10px 40px;
    overflow: visible;
}

/* INNER LAYOUT */
.wave-inner {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 20px;
    box-sizing: border-box;
}

/* LEFT TEXT */
.wave-text {
    flex: 0 0 50%;
    color: #ffffff;
}

.wave-text h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

.wave-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #e5e7eb;
}

.wave-text ul {
    margin: 20px 0 30px;
    padding-left: 18px;
}

.wave-text ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #f1f5f9;
}

/* BUTTON */
.btn-light {
    display: inline-block;
    padding: 12px 26px;
    background: #ffffff;
    color: #081a63;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-light:hover {
    background: #e2e8f0;
}

/* RIGHT IMAGE */
.wave-image {
    flex: 0 0 48%;
    box-sizing: border-box;
}

/* IMAGE ITSELF */
.wave-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain; /* Prevents cropping */
    display: block;
}
.become-section {
    text-align: left;
    padding: 80px 20px;
    background: #ffffff;
}

/* "Become a" text */
/* .become-title {
    font-size: 55px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
    padding-left: 6%;
} */

/* MEMBER image */
.member-image img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* --- Member Benefits Section --- */
.benefits-section {
    padding: 60px 20px;
    background-color: #fff;
}

.benefits-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap; /* Allows wrapping on mobile */
}

.benefits-card-wrapper {
    position: relative;
    flex: 1;
    min-width: 300px;
}

/* The yellow box behind the blue card */
.yellow-accent {
    position: absolute;
    bottom: -25px;
    left: -25px;
    width: 450px;
    height: 350px;
    background-color: #df9e14;
    border-radius: 5px;
    z-index: 1;
}

.benefits-card {
    position: relative;
    background-color: #003366; /* Dark Blue */
    color: white;
    padding: 40px;
    border-radius: 4px;
    z-index: 2;
}

.benefits-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.benefits-card ul {
    list-style: none;
    padding: 0;
}

.benefits-card ul li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

/* White bullet points */
.benefits-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: white;
}

.benefits-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 300px;
}

.benefits-logo img {
    max-width: 100%;
    height: auto;
}

/* --- Footer --- */
.footer-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: flex-start;
    width: 100%;
}

/* LEFT */
.footer-left {
    text-align: left;
}

/* CENTER */
.footer-center {
    text-align: center;
}

/* POLICY LINKS */
.policy-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 4px;
}
.policy-links a:hover {
    text-decoration: underline;
    color: #ffffffa4;
}

/* SOCIAL ICONS */
.footer-social {
    margin-top: 6px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.footer-social img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social img:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* RIGHT */
.footer-right {
    text-align: right;
}
.footer-right a {
    text-decoration: none;
    color: #fff;
}
.footer-right a:hover {
    text-decoration: underline;
    color: #ffffffa4;
}
/* FOOTER BASE */
.main-footer {
    width: 100%;
    background-color: #071562;
    color: #ffffff;
    padding: 10px 10px;
    font-size: 0.85rem;
    border-top: 1px solid #fff;
}

/* --- Back to Top Button --- */
.back-to-top {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #df9e14; /* Orange from your image */
    color: white;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 5px; /* Slightly rounded corners like the image */
    transition:
        background-color 0.3s,
        opacity 0.3s;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
    background-color: #334155; /* Darker orange on hover */
}

/* The white arrow inside the button */
.arrow-up {
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 5px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    margin-top: 10px;
}
.about-section {
    background-image: url("/images/about-bg.png");
    background-size: cover; /* makes it responsive */
    background-position: center; /* centers the image */
    background-repeat: no-repeat; /* prevents tiling */
    padding: 80px 0px;
    position: relative;
    overflow: hidden;
}

/* Main Layout */
.about-wrapper {
    max-width: 1400px;
    /* margin: auto; */
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 60px;
}

/* Left Image */
.about-image {
    position: relative;
    /* border-radius: 0 200px 200px 0; */
    overflow: hidden;
    margin-left: 0px;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Right Content */
.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
    color: #fff;
}
.wave-bottom-about img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain; /* Prevents cropping */
    display: block;
}
/* Feature Card */
.feature {
    text-align: center;
}

.feature .icon {
    font-size: 42px;
    margin-bottom: 15px;
    color: #ffbf00;
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}
.container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 60px 0px;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Text Styling */
.text-content {
    flex: 1.6; /* Takes more space */
    min-width: 350px;
    padding-left: 60px;
}
.text-content h1 {
    font-size: 55px;
    color: #1a2b3c; /* Dark Navy */
    line-height: 1.1;
    margin-bottom: 30px;
}

.intro-text,
.commitment-text {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 25px;
}

/* Feature List Styling */
.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.icon-box {
    width: 50px;
    height: 50px;
    /* background-color: #e8f0fe; */
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-list span {
    font-size: 1rem;
    color: #444;
}

/* Image Graphic Styling */
.image-content {
    flex: 0.7; /* Takes less space */
    position: relative;
    display: flex;
    justify-content: flex-end;
    min-width: 250px;
}

.main-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mission-section {
    position: relative;
    /* background: #0a1f5c; */
    color: #fff;
    padding: 50px 0;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

/* Waves */
.wave {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1;
}

.wave-top {
    top: 0;
}

.wave-bottom {
    bottom: 0;
}

/* Mission background color */
.mission-bg {
    background: #0a1f5c;
    color: #fff;
    padding: 0%;
}

/* Layout */
.mission-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 0%;
}

/* Left Image */
.mission-image img {
    max-width: 500px;
    width: auto;
    height: 100%;
}

/* Right Text */
.mission-text {
    padding-right: 40px;
}
.mission-text h2 {
    font-size: 50px;
    margin-bottom: 20px;
}

.mission-intro {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Mission Items */
.mission-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.mission-item img {
    width: 54px;
    height: 54px;
    border-radius: 14px;
}

.mission-item h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.mission-item p {
    font-size: 14px;
    opacity: 0.9;
}

/* Footer text */
.mission-footer {
    margin-top: 25px;
    font-size: 14px;
    line-height: 1.7;
}
.vision-section {
    padding: 10px 20px 40px 20px;
    background: #ffffff;
    font-family: "Poppins", sans-serif;
}

.vision-container {
    max-width: 1300px;
    margin: auto;
    text-align: center;
}

.vision-title {
    font-size: 42px;
    font-weight: 700;
    color: #0b1b5a;
    margin-bottom: 10px;
}

.vision-subtitle {
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 10px;
}

.vision-tagline {
    font-size: 16px;
    color: #333;
    margin-bottom: 50px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
}

/* Pillar Card */
.pillar {
    border-radius: 100px 100px 0px 0px;
    padding: 40px 20px 30px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    transition: transform 0.3s ease;
}

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

/* Colors */
.pillar.pink {
    background: #f4a0a4;
}

.pillar.yellow {
    background: #f0d48b;
}

.pillar.green {
    background: #87cfa0;
}

/* Icon Circle */
.icon-circle {
    width: 90px;
    height: 90px;
    /* background: #ffffff; */
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}

.icon-circle img {
    width: auto;
    margin: 10px;
    /* height: 100%; */
}

/* Text */
.pillar p {
    font-size: 15px;
    font-weight: 500;
    color: #111;
    line-height: 1.4;
}
.our-team-section {
    background-image: url("/images/purple-wave.png");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
    padding: 20px 20px 220px; /* IMPORTANT */
}

.team-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.team-container h1 {
    color: white;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.team-description {
    font-size: 16px;
    color: white;
    line-height: 1.8;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.team-container h2 {
    font-size: 28px;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

/* GRID */
.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    text-align: left;
}

/* ITEMS */
.work-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.icon-box {
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box img {
    width: 45px;
}

.work-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #f1f1f1;
}
.team-section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

/* GRID */
.team-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */
.team-card {
    /* border: 3px solid #0a1a6b; */
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* SHADOW */
    box-shadow: 0 12px 30px rgba(10, 26, 107, 0.18);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.team-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 22px 50px rgba(10, 26, 107, 0.28);
}

.team-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.team-card h3 {
    font-size: 24px;
    margin: 18px 15px 6px;
    text-align: center;
}

.designation {
    font-size: 14px;
    color: #555;
    text-align: center;
    padding: 0 17px 17px;
}

/* BUTTON */
.read-more-btn {
    margin: auto 15px 20px;
    background: #0a1a6b;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}

.team-card:nth-child(5) {
    grid-column: 2;
}

.team-card:nth-child(6) {
    grid-column: 3;
}

.alert-success {
    background: #e6fffa;
    color: #065f46;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}

html,
body {
    height: 100%;
}

.app-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.app-content {
    flex: 1;
}

.select2-container--default .select2-selection--single {
    height: 60px;
    padding: 0 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: normal;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 100%;
    top: 0;
    right: 10px;
}

.error-messages {
    margin-bottom: 15px;
    color: #ff4d4f;
}

.error {
    margin: 0;
    font-size: 14px;
}
.status-message {
    margin-bottom: 15px;
    color: #52c41a;
    font-weight: 500;
}
.is-invalid {
    border: 1px solid #ff4d4f;
}

.hidden {
    display: none !important;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.modal-box {
    background: #fff;
    border-radius: 18px;
    max-width: 520px;
    width: 100%;
    padding: 30px;
    text-align: center;
    position: relative;
    animation: modalFade 0.3s ease;
}

.modal-box img {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 18px;
}

.modal-box h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.modal-box p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

#modalDesc {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    text-align: left;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 28px;
    cursor: pointer;
}

.executive-section {
    padding: 30px 20px;
    /* background: #f5f4f1; */
}

.section-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1f2937;
}

/* Card */
.executive-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    padding: 40px;
    border-radius: 16px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Image */
.executive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Content */
.executive-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111827;
}

.executive-content .designation {
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 20px;
    line-height: 1.5;
    padding: 0%;
}

.executive-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 16px;
}
.chapter-section {
    padding: 60px 20px;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: "Poppins", sans-serif;
    color: #0b1a6a;
}

/* Tabs */
.chapter-tabs {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.tab-btn {
    background: #0b1a6a;
    color: #fff;
    padding: 10px 28px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
}

/* Carousel */
.carousel-wrapper {
    max-width: 1300px;
    margin: auto;
    overflow: hidden;
}
.carousel-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
}

.committee-card {
    flex: 0 0 auto;
    width: 230px;
    text-align: center;
}

.committee-card img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    border-radius: 4px;
}

/* Name */
.committee-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    margin: 14px 0 6px;
}

/* Role */
.committee-card .role {
    font-size: 14px;
    font-weight: 500;
    color: #5b6b82;
    display: block;
    margin-bottom: 10px;
    position: relative;
}

/* Divider under role */
.committee-card .role::after {
    content: "";
    width: 100%;
    height: 2px;
    background: #cfcfcf;
    display: block;
    margin: 10px auto 0;
}

/* Company */
.committee-card p {
    font-size: 13px;
    line-height: 1.5;
    color: #7a7a7a;
    margin-top: 10px;
    padding: 0 10px;
}
.advisory-section {
    background-image: url("/images/about-bg.png");
    background-size: cover; /* makes it responsive */
    background-position: center; /* centers the image */
    background-repeat: no-repeat; /* prevents tiling */
    padding: 80px 0px;
    position: relative;
    overflow: hidden;
}

/* Main Layout */
.advisory-wrapper {
    max-width: 1400px;
    /* margin: auto; */
    display: grid;
    grid-template-columns: 0.6fr 1.4fr; /* LEFT MUCH SMALLER */
    align-items: center;
    gap: 60px;
}

/* Left Image */
.advisory-image {
    position: relative;
    /* border-radius: 0 200px 200px 0; */
    overflow: hidden;
    margin-left: 0px;
}

.advisory-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Right Content */
.advisory-content {
    color: #ffffff;
    padding-right: 40px;
}

.advisory-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.advisory-text {
    font-size: 16px;
    line-height: 1.7;
    color: #e0e6ff;
    margin-bottom: 18px;
    /* max-width: 600px; */
}

.advisory-subtitle {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

/* Icon List */
.advisory-points {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.point {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    font-weight: 600;
}

.icon-box-advisory {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box-advisory img {
    width: 48px;
    height: auto;
}
.advisory-section-card {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

/* GRID */
.team-grid-advisory {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.team-card-advisory {
    /* border: 3px solid #0a1a6b; */
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* SHADOW */
    box-shadow: 0 12px 30px rgba(10, 26, 107, 0.18);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.team-card-advisory:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 22px 50px rgba(10, 26, 107, 0.28);
}
.team-card-advisory img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.team-card-advisory h3 {
    font-size: 24px;
    margin: 18px 15px 6px;
    text-align: center;
}

.designation-advisory {
    font-size: 14px;
    color: #555;
    text-align: center;
    padding: 0 17px 17px;
}

/* BUTTON */
.read-more-btn-advisory {
    margin: auto 15px 20px;
    background: #0a1a6b;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}
/* MODAL BACKDROP */
#advisoryModal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

/* MODAL BOX */
.advisory-modal-content {
    background: #fff;
    width: 100%;
    max-width: 700px;
    max-height: 85vh; /* 👈 limits height */
    overflow-y: auto; /* 👈 enables scrolling */
    border-radius: 12px;
    padding: 24px;
    position: relative;
}

/* Smooth scrolling */
.advisory-modal-content {
    scroll-behavior: smooth;
}
/* Modal Overlay */
.advisory-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.advisory-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 30px;
    cursor: pointer;
}

.advisory-modal-body {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 25px;
}

.modal-image img {
    width: 100%;
    border-radius: 12px;
}

.modal-text h2 {
    font-size: 26px;
    margin-bottom: 5px;
}

.modal-text h4 {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.modal-text p {
    font-size: 15px;
    line-height: 1.7;
    white-space: pre-line;
}

.contact-section {
    padding: 10px 20px 40px 20px;
    background: #fff;
    font-family: "Poppins", sans-serif;
}

.contact-wrapper {
    max-width: 1200px;
    margin: auto;
}

/* TOP HEADING */
.contact-title {
    font-size: 34px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #111;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* LEFT */
.contact-info h3 {
    font-size: 22px;
    margin-bottom: 18px;
    font-weight: 600;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info a {
    color: #0a3d7c;
    text-decoration: none;
}

/* MAP */
.map-box {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* FORM */
.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    background: #083b6b;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 16px 18px;
    margin-bottom: 18px;
    font-size: 15px;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #cfe1ff;
}
/* intl-tel-input minimal fix for contact us */
.contact-form .iti {
    width: 100%; /* full width */
    max-width: 100%; /* prevent shrinking */
}

.contact-form .iti input {
    width: 100%; /* stretch input inside wrapper */
    box-sizing: border-box; /* include padding in width */
    height: 54px;
    padding-left: 58px; /* for flag */
    background-color: #083b6b;
}

/* FIX oversized flag container */
.contact-form .iti__selected-flag {
    height: 54px;
    display: flex;
    align-items: center;
}

.membership-form-section .iti__country {
    color: #000 !important;
    background-color: #fff;
}

.membership-form-section .iti__search {
    color: #000 !important;
    background-color: #fff;
}

.membership-form-section .iti__country-list {
    background-color: #fff;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* CHECKBOX */
.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    margin: 8px 0 25px;
    color: #333;
    line-height: 1.4;
}

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

/* BUTTON */
.contact-form button {
    width: 160px;
    padding: 14px;
    background: #083b6b;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #062f56;
}
.hero-section {
    position: relative;
    width: 100%;
    min-height: 60vh;
    background: url("/images/member-bg.png") center center / cover no-repeat;
    display: flex;
    align-items: center;
}

/* Dark overlay for better text readability */
/* .hero-overlay {
    position: absolute;
    inset: 0;
    background: #00418b7a;
    z-index: 1;
} */

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    padding: 0 20px;
    margin: 0 auto;
}

.hero-content-membership {
    max-width: 800px;
    /* width: 300px; */
    color: #ffffff;
}

.hero-content-membership .member-head {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.2;
    color: white;
    width: 600px;
}

.hero-content-membership .member-paragraph {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
    color: white;
}

.hero-btn {
    display: inline-block;
    background: #ffffff;
    color: #0a3d62;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #f1f1f1;
    transform: translateY(-2px);
}

.membership-section {
    padding: 20px 20px;
    background: #ffffff;
    text-align: center;
}

.membership-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #0a2a4f;
}

/* Layout */
.membership-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card Base */
.membership-card {
    position: relative;
    border-radius: 0px 50px 0 0;
    padding: 15px 25px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Left Color Strip */
.membership-card .left-strip {
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 100%;
    border-radius: 0px 0 0 0;
}

/* Text */
.membership-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.membership-card p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Color Themes */
.membership-card.primary {
    background: #f99c9c;
}
.membership-card.primary .left-strip {
    background: #e11c1c;
}

.membership-card.mentorship {
    background: #f2d692;
}
.membership-card.mentorship .left-strip {
    background: #e0a100;
}

.membership-card.partner {
    background: #8fd19a;
}
.membership-card.partner .left-strip {
    background: #149c2f;
}
.member-benefits-section {
    padding: 70px 20px;
    background: #ffffff;
}
.member-benefits-section {
    padding: 70px 20px;
    background: #ffffff;
}

.member-benefits-section {
    padding: 20px 20px;
    background: #ffffff;
}

.benefits-container-member {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border: 2px solid #b8cdf2;
    border-radius: 18px;
    padding: 20px 60px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.benefits-container-member h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #0a2a4f;
    margin-bottom: 35px;
}

/* List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1rem;
    color: #0a2a4f;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Icons */
.benefits-list i {
    color: #0a2a4f;
    font-size: 1.1rem;
    margin-top: 4px;
    min-width: 20px;
}
.membership-form-section {
    padding: 20px 20px;
    background: #071562;
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    color: #ffffff;
}

.form-container h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Form Layout */
.membership-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 22px;
}

.form-row.full-width {
    grid-template-columns: 1fr;
}

/* Inputs */
.membership-form input,
.membership-form select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: #0a2a4f;
}

.membership-form input::placeholder {
    color: #9aa3b2;
}

.membership-form select {
    color: #0a2a4f;
    background: #ffffff;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 25px 0 15px;
    max-width: 100%;
}

.form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 4px;
    flex-shrink: 0;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ffffff;
}

.form-checkbox a {
    color: #6fb7ff;
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

/* Fee Text */
.fee-text {
    font-size: 0.95rem;
    margin-bottom: 30px;
    color: #ffffff;
}

/* Button */
.submit-btn {
    background: #ffffff;
    color: #0a2a4f;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #e6ecff;
    transform: translateY(-2px);
}
.privacy-section {
    padding: 20px 20px;
    background: #ffffff;
}

.privacy-container {
    max-width: 1200px;
    margin: auto;
    font-family: "Poppins", sans-serif;
    color: #1f2a44;
}

.privacy-container h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.last-updated {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.intro {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.privacy-container h2 {
    font-size: 26px;
    font-weight: 600;
    margin: 35px 0 15px;
    color: #0b2c6d;
}

.privacy-container p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

/* Numbered List Styling */
.privacy-ol {
    padding-left: 20px;
    margin: 10px 0 30px;
}

.privacy-ol li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #333;
}

/* Contact */
.contact-info-privacy {
    font-size: 15px;
    margin-top: 8px;
}

.contact-info-privacy a {
    color: #0b2c6d;
    text-decoration: none;
}

.contact-info-privacy a:hover {
    text-decoration: underline;
}
.terms-section {
    padding: 20px 20px;
    background: #ffffff;
}

.terms-container {
    max-width: 1200px;
    margin: auto;
    font-family: "Poppins", sans-serif;
    color: #1f2a44;
}

.terms-container h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.last-updated {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.terms-container p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #444;
}

.terms-container h2 {
    font-size: 26px;
    font-weight: 600;
    margin: 35px 0 15px;
    color: #0b2c6d;
}

.terms-container ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.terms-container ul li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #333;
}

.terms-container a {
    color: #0b2c6d;
    text-decoration: none;
}

.terms-container a:hover {
    text-decoration: underline;
}

.grecaptcha-badge {
    width: 70px !important;
    bottom: 90px !important; /* Move above footer */
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    left: 4px !important;
}

.grecaptcha-badge:hover {
    width: 256px !important;
}
button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Simple loader */
.btn-loader {
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
}
.upcoming-banner {
    width: 100%;
    height: 420px;
    background: url("/images/events-banner.png") center right / cover no-repeat;
    position: relative;
    overflow: hidden;
}

/* Gradient layer */
.banner-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(11, 60, 109, 0.85) 0%,
        /* Deep Logo Blue */ rgba(47, 164, 231, 0.65) 35%,
        /* Light Tech Blue */ rgba(255, 210, 63, 0.55) 65%,
        /* Logo Yellow */ rgba(192, 0, 0, 0.6) 100% /* Logo Red */
    );
    display: flex;
    align-items: center;
}

/* Red content block replaced with logo red */
.banner-content {
    background: rgba(192, 0, 0, 0.85); /* Same red as logo */
    padding: 50px 50px;
    max-width: 550px;
    margin-left: 128px;
    border-radius: 4px;
}

/* Heading using logo yellow */
.banner-content h1 {
    color: #ffcc33; /* Yellow from logo */
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 18px;
}

/* Paragraph text in white */
.banner-content p {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
}

.event-filters, .events-list  {
    max-width: 1300px; /* Matches the width of your filter buttons */
    margin: 0 auto; /* Centers the container */
    padding: 20px 60px;
    text-align: center;
}

.filter-buttons {
    display: flex;              /* switch from grid → flex */
    flex-wrap: wrap;            /* allow wrapping to next line */
    justify-content: center;    /* THIS centers the whole group */
    gap: 14px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.filter-buttons button {
    background: #b00000;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    min-width: 156px;   /* keeps nice size */
    width: auto;        /* IMPORTANT: stop full-width stretch */
    text-align: center;
}


.filter-buttons button.active {
    background: #062f56;
}

/* FILTER ROW LAYOUT */
.filter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.filter-selects {
    display: flex;
    gap: 15px;
}
/* 
.filter-selects select,
.event-search input {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
} */
/* RIGHT SIDE SEARCH */
.event-search {
    position: relative;
}
.event-search input {
    padding: 10px 14px 10px 38px; /* space for icon */
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    width: 240px;
}
/* SEARCH ICON INSIDE INPUT */
.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    opacity: 0.6;
    pointer-events: none;
}

.filter-selects select {
    padding: 10px 14px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 14px;
}

/* .event-search input {
    width: 220px;
} */


/* Center single card in grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}


/* When only ONE event card is visible */
.events-grid:has(.event-card:not([style*="display: none"]):only-of-type) {
    grid-template-columns: 1fr;   /* switch to single column */
    max-width: 650px;             /* optional — keeps nice card width */
    margin-left: auto;
    margin-right: auto;
}
.event-card {
    width: 100%;
    /* max-width: 635px; */
    margin: 0 auto;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.event-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.event-card-link:hover .event-card {
    transform: translateY(-5px);
    transition: 0.3s ease;
}

.event-body {
    padding: 20px;
    text-align: left;
}

.event-date {
    font-size: 13px;
    color: #b00000;
    font-weight: 600;
}

.event-body h3 {
    margin: 10px 0;
    font-size: 18px;
}

.event-body p {
    font-size: 14px;
    color: #555;
}

.event-btn {
    display: inline-block;
    margin-top: 12px;
    color: #b00000;
    font-weight: 600;
    text-decoration: none;
}
/* Main Container */
.etl-event-page {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px 30px;
    font-family: 'Arial', sans-serif;
}
.etl-event-cta {
    margin-top: 40px;
    text-align: center;
}

.etl-event-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
    transition: all 0.25s ease;
}

.etl-event-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.35);
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
}

.etl-event-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(37, 99, 235, 0.25);
}

/* Header Section */
.etl-event-header {
    margin-bottom: 35px;
}

.etl-event-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 14px;
     background: linear-gradient(135deg, #003366, #083b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.etl-event-date,
.etl-event-location {
    font-size: 15px;
    color: #6b7280;
    margin: 4px 0;
    letter-spacing: 0.3px;
}

/* Content Layout */
.etl-event-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Image Styling */
.etl-event-image {
    position: relative;
}

.etl-event-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* Description Card */
.etl-event-description {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.etl-event-description:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.etl-event-description h3 {
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 600;
    color: #111827;
    position: relative;
}

/* Decorative accent line under heading */
.etl-event-description h3::after {
    content: "";
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    display: block;
    margin-top: 8px;
    border-radius: 2px;
}

.etl-event-description p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #374151;
}

.no-events-message {
    text-align: center;
    padding: 20px 20px;
    font-size: 18px;
    color: #666;
    /* background: #f9f9f9; */
    border-radius: 10px;
    margin-top: 20px;
}
.et-events-section {
    padding: 80px 20px;
    background: #f8f9fc;
    text-align: center;
}

.et-carousel {
    position: relative;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.et-viewport {
    overflow: hidden;
}

.et-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}
.et-track.dragging {
    cursor: grabbing;
}
.et-slide {
    flex: 0 0 33.3333%;
}
.et-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}
.et-info {
    padding: 22px 22px 24px;
    text-align: left;
}

/* EVENT TITLE */
.et-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0a1d56;
    margin-bottom: 8px;
    line-height: 1.3;
}

/* EVENT CATEGORY / TOPIC */
.et-info p {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 14px;
    line-height: 1.5;
}

/* DATE + LOCATION LINE */
.et-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0a1d56;
    background: #eef2ff;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.et-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(10, 29, 86, 0.08);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.et-card:hover { transform: translateY(-6px); }

.et-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-bottom: 1px solid #f1f3f8;
}

.et-info { padding: 20px; text-align: left; }

.et-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0a1d56;
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
}

.et-prev { left: -60px; }
.et-next { right: -60px; }

.et-dots { margin-top: 25px; }

.et-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    margin: 0 6px;
    background: #cfd6e4;
}
.etl-event-details {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.et-dots button.active { background: #0a1d56; }

.membership-hero {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.membership-hero img {
    width: 100%;
    height: auto;
    display: block;
}
/* ===== SPONSORS SECTION ===== */

.sponsors-section {
  margin: 70px 0;
  text-align: center;
  overflow: hidden;
}

.sponsors-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 35px;
}

.sponsors-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* DEFAULT (1–5 logos) */
.sponsors-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Sponsor Card */
.sponsor-logo {
  flex: 0 0 auto;
  background: #fff;
  padding: 18px 28px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.sponsor-logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
}

.sponsor-logo:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.1);
}

/* 🚀 Carousel Mode (ONLY when JS adds class) */
.sponsors-track.carousel {
  flex-wrap: nowrap;
  width: max-content;
  animation: sponsorScroll 15s linear infinite;
}

@keyframes sponsorScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* Animation */
@keyframes scaleFade {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* RESPONSIVE */
@media (max-width: 1390px) {
    .hero-content h1 {
        font-size: 30px;
    }
}
@media (max-width: 1024px) {
    .hero-overlay{
        left:6%;
    }
    .hero-overlay h1 {
        font-size: 48px;
    }
    .hero-overlay p {
        font-size: 24px;
    }
    .hero-content h1 {
        font-size: 26px;
    }
    .hero-content p {
        font-size: 14px;
    }
    .brand {
        font-size: 16px;
    }
    .desktop-nav a {
        font-size: 14px;
    }
    .benefits-section {
        padding: 60px 50px;
    }
    /* About Section */
    .about-wrapper {
        /* grid-template-columns: 1fr; */
        gap: 40px;
        padding: 0 20px;
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }

    /* Leadership Section */
    .content-wrapper {
        /* flex-direction: column; */
        gap: 50px;
        padding-left: 40px;
    }

    .text-content {
        flex: 1;
        padding-left: 0;
        /* text-align: center; */
    }

    .image-content {
        justify-content: center;
    }

    .main-image-wrapper img {
        max-width: 420px;
        width: 100%;
        height: auto;
    }
    .icon-circle img {
        width: 120px;
    }
    .our-team-section {
        padding: 20px 20px 95px;
    }
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-card:nth-child(5),
    .team-card:nth-child(6) {
        grid-column: auto;
    }
    .advisory-title {
        font-size: 40px;
    }

    .advisory-content {
        padding-right: 20px;
    }
    .hero-content-membership .member-head {
        font-size: 1.4rem;
        text-align: left;
        width: auto;
    }
    .hero-content-membership {
        text-align: left;
    }
    /* .membership-wrapper {
        grid-template-columns: repeat(2, 1fr);
    } */
    .benefits-container-member {
        padding: 40px 35px;
    }

    .benefits-container-member h2 {
        font-size: 1.8rem;
    }
    .upcoming-banner {
        height: 360px;
        background-position: center;
    }

    .banner-content {
        margin-left: 40px;
        padding: 40px;
        max-width: 460px;
    }

    .banner-content h1 {
        font-size: 34px;
    }

    .events-list {
        padding: 20px 40px;
    }

    .event-filters {
        padding: 30px 40px;
    }
    .desktop-nav {
        gap: 25px;
    }
    /* .events-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 400px));
    }
    .event-card  {
        max-width: 400px;
    } */
    .filter-buttons button {
        width: 177px;
    }
}
@media (max-width: 992px) {
    .membership-hero img {
        max-height: 300px;
        object-fit: cover;
    }
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
        font-size: 42px;
    }

    .hero {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }

    .hero-content h1 {
        font-size: 34px;
    }
    .hero-content {
        padding: 30px;
    }
    .wave-inner {
        flex-direction: column-reverse;
        text-align: left;
    }

    .wave-text,
    .wave-image {
        flex: 0 0 100%;
    }
    .become-title {
        font-size: 40px;
    }

    .member-image img {
        max-width: 100%;
    }
    .benefits-container {
        flex-direction: column;
        text-align: center;
    }

    .benefits-card {
        width: 500px;
    }

    .benefits-card ul {
        text-align: left;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 6px;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
        justify-self: center;
    }
    /* About Section */
    .about-section {
        padding: 60px 0;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature {
        text-align: center;
    }

    .feature .icon img {
        width: 45px;
        height: auto;
    }

    /* Leadership Section */
    .text-content {
        padding-right: 40px;
    }
    .text-content h1 {
        font-size: 38px;
        line-height: 1.2;
    }
    .icon-box {
        width: 42px;
        height: 42px;
    }

    .image-content {
        justify-content: center;
    }
    .content-wrapper {
        flex-direction: column-reverse;
        align-items: flex-end;
    }
    .main-image-wrapper img {
        max-width: 100%;
    }
    .mission-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .mission-text {
        text-align: left;
        padding: 30px;
    }
    .vision-title {
        font-size: 32px;
    }

    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 26px;
        justify-items: center;
    }
    .pillar {
        border-radius: 200px 200px 0px 0px;
    }
    .our-team-section {
        padding: 20px 20px 170px;
        background-size: cover;
    }
    .work-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
    .work-item .icon-box {
        margin-right: 0px;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .team-section {
        padding: 50px;
    }
    .executive-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .executive-image {
        max-width: 260px;
        margin: 0 auto;
    }
    .guidance-list li {
        justify-content: center;
    }
    .advisory-content {
        text-align: left;
        padding: 20px;
    }

    .advisory-text {
        margin-left: auto;
        margin-right: auto;
    }
    .advisory-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .advisory-image img {
        max-width: 600px;
    }
    .team-grid-advisory {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 12px;
    }
    .team-card-advisory h3 {
        font-size: 39px;
    }

    .designation-advisory {
        font-size: 20px;
    }
    .read-more-btn-advisory {
        font-size: 18px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    .hero-section {
        min-height: 70vh;
        text-align: center;
    }

    .hero-content-membership {
        margin: 0 auto;
    }

    .hero-content-membership h1 {
        font-size: 5rem;
    }

    .hero-content-membership p {
        font-size: 2rem;
    }
    .membership-wrapper {
        grid-template-columns: 1fr;
    }

    .membership-title {
        font-size: 1.8rem;
    }

    .membership-card {
        min-height: 150px;
        padding: 30px 20px;
    }

    .membership-card h3 {
        font-size: 1.2rem;
    }

    .membership-card p {
        font-size: 0.95rem;
    }
    .benefits-container-member {
        padding: 30px 20px;
        border-radius: 14px;
    }

    .benefits-container-member h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .benefits-list li {
        font-size: 0.95rem;
        gap: 10px;
    }

    .benefits-list i {
        font-size: 1rem;
    }
    .form-row {
        grid-template-columns: 1fr !important;
    }

    .form-container h2 {
        font-size: 1.8rem;
    }

    .form-checkbox {
        flex-direction: row;
    }
    .privacy-container h1 {
        font-size: 32px;
    }
    .privacy-section {
        padding: 40px;
    }
    .privacy-container h2 {
        font-size: 22px;
    }

    .privacy-container p,
    .privacy-ol li {
        font-size: 14px;
    }
    .terms-container h1 {
        font-size: 34px;
    }
    .terms-container h2 {
        font-size: 22px;
    }
    .brand {
        font-size: 24px;
    }
    .committee-card {
        min-width: 100%; /* only 1 card visible */
    }
    /* Banner */
    .upcoming-banner {
        height: auto;
    }

    .banner-overlay {
        padding: 60px 20px;
    }

    .banner-content {
        margin: 0 auto;
        max-width: 100%;
        text-align: center;
    }

    .banner-content h1 {
        font-size: 30px;
    }

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

    /* Filters */
    .event-filters {
        padding: 30px 20px;
    }

    .filter-buttons {
        gap: 10px;
    }

    .filter-buttons button {
        padding: 8px 16px;
        font-size: 13px;
    }

    .filter-selects {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .filter-selects select {
        width: 100%;
        /* max-width: 320px; */
    }

    /* Events */
    .events-list {
        padding: 20px;
    }
    .events-grid {
        display: flex;
        flex-direction: column;
    }
    .etl-event-title {
        font-size: 24px;
    }
    .etl-event-date,
    .etl-event-location {
        font-size: 15px;
    }
    .etl-event-content {
        flex-direction: column;
    }
    .event-card  {
        max-width: 100%;
    }
    .filter-row {
        flex-direction: column;
        align-items: stretch;
    }

    .event-search input {
        width: 100%;
    }

    .filter-selects {
        justify-content: space-between;
    }
    .et-slide {
        flex: 0 0 50%;
    }
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-overlay{
        left:5%;
        right:5%;
    }

    .hero-overlay h1{
        font-size:34px;
    }

    .hero-overlay p{
        font-size:18px;
    }
    .btn-primary, .btn-secondary {
        padding: 7px 21px;
        font-size: 12px;
    }
    .team-container h1 {
        font-size: 36px;
    }

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

    .team-container h2 {
        font-size: 24px;
    }
    .team-section {
        padding: 30px;
    }
    .carousel-track {
        gap: 20px;
    }

    .committee-card {
        min-width: 70%;
    }

    .nav-btn {
        display: none;
    }
    .team-grid-advisory {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 12px;
    }
    .hero-content-membership h1 {
        font-size: 5rem;
    }

    .hero-content-membership p {
        font-size: 3rem;
    }
    .team-card img {
        height: 220px;
    }

    .section-title {
        font-size: 28px;
    }
    .advisory-modal-body {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 425px) {
    .hero-overlay h1{
        font-size:28px;
    }

    .hero-overlay p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:flex-start;
    }

    .btn-primary,
    .btn-secondary{
        width:auto;
    }
    .membership-hero img {
        height: 300px;
    }
    .benefits-card {
        width: 350px;
    }
    .yellow-accent {
        position: absolute;
        bottom: -25px;
        left: -25px;
        width: 300px;
        height: 400px;
        background-color: #df9e14;
        border-radius: 5px;
        z-index: 1;
    }
    .benefits-card h2 {
        text-align: left;
    }
    .benefits-section {
        padding: 60px 30px;
    }
    .benefits-card-wrapper {
        min-width: auto;
    }
    .benefits-logo {
        min-width: 250px;
    }
    .become-section {
        padding: 20px 20px;
    }
    .text-content h1 {
        font-size: 30px;
    }

    .intro-text,
    .commitment-text {
        font-size: 0.95rem;
    }

    .feature-list span {
        font-size: 0.95rem;
    }

    .main-image-wrapper img {
        max-width: 100%;
    }
    .mission-image img {
        max-width: 350px;
    }
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
        justify-items: center;
    }

    .pillar {
        border-radius: 100px 100px 0px 0px;
        min-height: auto;
        padding: 30px 20px;
    }
    .team-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }

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

    .section-title {
        font-size: 28px;
    }
    .modal-box {
        max-height: 90vh;
        overflow-y: auto;
        padding: 20px;
    }

    .modal-box img {
        width: 130px;
        height: 130px;
    }
    .section-heading {
        font-size: 28px;
    }

    .executive-content h3 {
        font-size: 22px;
    }

    .executive-content p {
        font-size: 15px;
    }
    .team-card img {
        height: 220px;
    }

    .section-title {
        font-size: 28px;
    }
    .advisory-content h2 {
        font-size: 30px;
    }

    .image-circle {
        width: 260px;
        height: 260px;
    }
    .advisory-title {
        font-size: 32px;
    }

    .point {
        font-size: 16px;
    }

    .icon-box {
        width: 44px;
        height: 44px;
    }

    .icon-box img {
        width: 22px;
    }
    .team-grid-advisory {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 12px;
    }

    .team-card-advisory {
        max-width: 100%;
    }

    .team-card-advisory img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }
    .hero-section {
        min-height: 60vh;
    }

    .hero-content-membership h1 {
        font-size: 5rem;
    }

    .hero-content-membership p {
        font-size: 3rem;
    }

    .hero-btn-membership {
        padding: 10px 22px;
        font-size: 0.9rem;
    }
    /* Banner */
    .banner-content {
        padding: 28px 22px;
        border-radius: 10px;
    }

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

    .banner-content p {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Filters */
    .filter-buttons {
        justify-content: center;
    }

    .filter-buttons button {
        font-size: 12px;
        padding: 8px 14px;
    }

    /* Event cards */
    .event-card img {
        height: 180px;
    }

    .event-body h3 {
        font-size: 16px;
    }

    .event-body p {
        font-size: 13px;
    }

    /* Modal */
    .event-modal-content {
        width: 92%;
        margin: 40px auto;
        padding: 22px;
    }

    .modal-image-full img {
        height: 220px;
    }

    .modal-title {
        font-size: 22px;
    }
    .et-slide {
        flex: 0 0 100%;
    }
}
@media (max-width: 375px) {
    .benefits-card {
        width: 300px;
    }
    .yellow-accent {
        position: absolute;
        bottom: -25px;
        left: -25px;
        width: 300px;
        height: 500px;
        background-color: #df9e14;
        border-radius: 5px;
        z-index: 1;
    }
    .content-wrapper {
        padding: 0 15px;
        flex-direction: column-reverse; /* Image on top */
        align-items: center;
        text-align: left;
    }

    .image-content {
        justify-content: center;
        min-width: 0; /* 🚫 remove forced width */
        width: 100%;
    }

    .main-image-wrapper img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    .text-content {
        padding-left: 0;
        padding-right: 0;
        min-width: 100%;
    }
}
@media (max-width: 320px) {
    .benefits-card {
        width: 270px;
    }
    .yellow-accent {
        position: absolute;
        bottom: -25px;
        left: -25px;
        width: 250px;
        height: 550px;
        background-color: #df9e14;
        border-radius: 5px;
        z-index: 1;
    }
    .mission-image img {
        max-width: 300px;
    }
}
