@import url('https://fonts.googleapis.com/css2?family=Basic&family=Jaldi:wght@400;700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

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

:root {
    --color-primary: #0000FF;
    --color-secondary: #18459082;
    --color-text: #D5D8DC;
    --color-accent: #AEE736;
    --color-1: #FFC42F;
    --color-2: #184590;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-5: #3A4268F0;
    --color-6: #3A8AB1;
    --color-7: #5CC4F3;
    --color-8: #FFC802;
    --color-9: #0071BC;
    --color-10: #F9F9F9;
    --color-11: #0095F6;
    --color-12: #EAEBF0;
    --color-13: #F7F7F7;
    --color-14: #3A4268;
    --border-color1: #18459047;
    --border-color2: #18459082;

    /* Brand colors (Rotary blue + yellow) */
    --color-primary: #184590;
    --color-primary-dark: #0f2f6b;
    --color-accent: #FFC42F;
    --color-accent-dark: #e6ae20;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg-light: #F9F9F9;
    --color-border: #18459047;

    /* Footer specific */
    --color-footer-bg: #184590;
    --color-footer-bottom: #0f2f6b;

    /* Fonts */
    --font-body: 'Open Sans', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* header & footer section for all pages with responsive */
body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background: var(--color-white);
    overflow-x:hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ============================= */
/* HEADER                         */
/* ============================= */
.header-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.site-header {
    width: 100%;
    background: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-top-strip {
    height: 10px;
    background: var(--color-primary);
}

/* Main Navigation */
.nav-list {
    display: flex;
    justify-content: end;
    align-items: center;
    /* gap: 24px; */
}

.nav-link {
    font-family: "Open Sans", Sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
    text-decoration: none;
    line-height: 22.5px;
    letter-spacing: 0px;
    color: var(--color-black);
    position: relative;
    cursor: pointer;
    padding: 10px;
}

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

@media (min-width: 1024px) and (max-width: 1300px) {
    .nav-link {
        padding: 5px;
        font-size: 12px;
    }
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--color-accent);
    border-radius: 0 0 6px 6px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 50;
    margin-top: 25px;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Login Button */
.btn-login {
    display: inline-block;
    background: var(--color-2);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    padding: 5px;
    transition: background 0.3s ease;
    white-space: nowrap;
    margin-bottom: 10px;
}

.btn-login:hover {
    background: var(--color-black);
}

/* CTA Buttons (Expression / Visitor) */
.header-cta-buttons {
    padding-top: 15px;
    display: flex;
    justify-content: end;
    gap: 12px;
}

.btn-cta {
    display: inline-block;
    background-color: var(--color-2);
    font-family: "Arial", Sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    line-height: 21px;
    color: var(--color-white);
    box-shadow: 0px 0px 15px 0px #FFFFFF;
    padding: 5px 10px 5px 10px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-cta:hover {
    background: var(--color-1);
    transform: translateY(-1px);
}

/* Social Icons in Header */
.header-social {
    display: flex;
    justify-content: end;
    gap: 5px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background: var(--color-1);
    color: var(--color-2);
    font-size: 14px;
    transition: all 0.2s ease;
}

.social-icon:hover {
    background: var(--color-2);
    color: var(--color-1);
    transform: translateY(-2px);
}

/* Hamburger Button */
.hamburger-btn {
    display: none;
    background: var(--color-2);
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 5px;
    margin-left: auto;
    justify-items: center;
}

.hamburger-btn span {
    display: block;
    height: 2px;
    width: 80%;
    text-align: center;
    align-items: center;
    background: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================= */
/* MOBILE DRAWER MENU             */
/* ============================= */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    /* transition: all 0.3s ease-in-out; */
    transition: opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), 
                visibility 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);    
    will-change: opacity;  
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    /* left: -100%; */
    left: 0;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: var(--color-white);
    z-index: 999;
    transform: translateX(-100%);
    /* transition: left 0.35s ease; */
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    backface-visibility: hidden;
     -webkit-backface-visibility: hidden;
}

.mobile-drawer.active {
    /* left: 0; */
    transform: translateX(0);  
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    column-gap: 5px;
    align-items: center;
    padding: 10px;
}

.drawer-cont {
    padding: 5px 5px 5px 15px;
}

.drawer-cont .drawer-logo {
    width: 100%;
    height: 100%;
}

.drawer-close {
    background-color: var(--color-2);
    font-size: 18px;
    padding: 10px;
    border: 1px solid var(--color-2);
    color: var(--color-white);
    cursor: pointer;
    line-height: 1;
}

.drawer-close:hover {
    color: var(--color-accent);
}

.drawer-nav {
    flex: 1;
    padding: 10px 0;
}

.drawer-nav>ul>li>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Open Sans", Sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    padding: 10px 15px;
    color: var(--color-black);
    transition: all 0.2s ease;
}

.drawer-nav>ul>li>a:hover,
.drawer-nav>ul>li>a.active {
    color: var(--color-2);
}

.drawer-has-dropdown.open .drawer-dropdown-toggle i {
    transform: rotate(180deg);
}

.drawer-dropdown-toggle i {
    transition: transform 0.3s ease;
    font-size: 12px;
    padding: 4px 15px;
    border: 1px solid #184590;
    border-radius: 30px;
}

.drawer-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.drawer-has-dropdown.open .drawer-submenu {
    max-height: 300px;
}

.drawer-submenu li a {
    display: block;
    font-family: "Open Sans", Sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 15px;
    color: var(--color-black);
    border-inline-start: 8px solid transparent;
}

.drawer-submenu li a:hover {
    color: var(--color-2);
}

.drawer-cta {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid #eee;
}

.drawer-btn {
    text-align: center;
    width: 100%;
}

.drawer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid #eee;
    background: var(--color-bg-light);
}

.drawer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--color-accent);
    color: var(--color-primary);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.drawer-social a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ============================= */
/* FOOTER                         */
/* ============================= */
.site-footer {
    background: var(--color-footer-bg);
    color: var(--color-white);
    position: relative;
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 64px 16px 16px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    /* gap: 40px; */
}

.footer-col {
    color: var(--color-white);
    padding: 10px;
}

/* Footer About */
.footer-logo-div {
    width: 100%;
    /* height: 50px; */
}

.footer-logo {
    width: auto;
    margin-bottom: 5px;
}

.footer-description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 14.4px;
}

/* Footer Headings */
.footer-heading {
    font-family: "Jaldi", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 0px;
    color: var(--color-8);
    margin-bottom: 12px;
}

.footer-heading-line {
    width: 40px;
    height: 2px;
    background: var(--color-accent);
    margin-bottom: 24px;
}

/* Footer Info */
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.7;
}

.footer-contact-list li i {
    color: var(--color-accent);
    font-size: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact-list li span {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-white);
}

.footer-contact-list li a {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-white);
}

.footer-contact-list li a:hover {
    color: var(--color-accent);
}

/* Facebook Placeholder */
.facebook-placeholder {
    background: rgba(255, 255, 255, 0.08);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    padding: 30px 20px;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.facebook-placeholder .small-note {
    font-size: 12px;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.5);
}

/* Footer App Column */
.footer-app {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.store-btn {
    display: block;
    width: 100%;
    max-width: 200px;
    transition: transform 0.2s ease;
}

.store-btn:hover {
    transform: translateY(-2px);
}

.store-btn img {
    width: 100%;
    border-radius: 4px;
}

.fb-group-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 240px;
    background: #1877F2;
    color: var(--color-white);
    padding: 12px 16px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
}

.fb-group-btn i {
    font-size: 18px;
}

.fb-group-btn:hover {
    background: #1465c4;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    background: var(--color-14);
    padding: 16px;
}
.footer-bottom-div{
   width: 1140px;
   height: 100%;
   margin: 0 auto;
}
.footer-bottom-container { 
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* gap: 20px; */
    /* flex-wrap: wrap; */
}

.copyright {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    font-family: var(--font-body);
    color: var(--color-white);
}

.brand-highlight {
    color: var(--color-accent);
    font-weight: 400;
}

.footer-bottom-social {
    display: flex;
    justify-content: end;
    gap: 14px;
    padding: 10px;
}

.footer-bottom-social a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    transition: all 0.2s ease;
}

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

/* Scroll to Top */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    color: var(--color-primary);
    border: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 90;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* ============================= */
/* RESPONSIVE BREAKPOINTS         */
/* ============================= */

@media (min-width: 300px) and (max-width: 1200px) {
    .footer-bottom-div{
        width: 100%;
        padding: 0 12px;
    }
    .footer-bottom-social{
        margin-right: 50px;
    }
}


@media (min-width: 1020px) {   

    .header-logo {
        width: 26.922%;
        padding: 10px;
    }

    .header-row-top {
        width: 57.41%;
        padding: 10px;
    }

    .header-row-login-top {
        width: 15%;
        padding: 10px;
        text-align: end;
    }
}

@media (min-width: 770px) and (max-width: 1021px) {
    .footer-bottom-div{
        width: 100%;
        padding: 0 12px;
    }
    .header-container {
        width: 100%;
        padding: 0 12px 10px 12px;
    }

    .header-logo {
        width: 20%;
    }

    .header-row-top {
        width: 65%;
    }

    .header-row-login-top {
        width: 15%;
        text-align: end;
    }

    .nav-link {
        font-size: 10px;
        padding: 5px;
    }
}

@media (max-width: 770px) {

    /* (ye 3 lines pehle se hain) */
    .header-row-top .main-nav {
        display: none;
    }

    .hamburger-btn {
        display: flex !important;
        align-items: center;
    }

    /* ===== NAYA - Row layout ===== */

    /* Container ko wrap karo taaki rows ban sakein */
    .header-container {
        flex-wrap: wrap;
        padding: 0 12px;
    }

    /* Logo - apni size */
    .header-logo {
        flex-shrink: 0;
        width: 50%;
        padding: 10px;
    }

    /* Login + Social - right side, column me (login upar, social neeche) */
    .header-row-login-top {
        margin-left: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 5px;
        padding: 5px 10px;
    }

    .btn-login-container {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
    }

    /* CTA buttons - Row 2, full width */
    .header-row-top {
        order: 3;
        width: 100%;
        padding: 10px;
    }

    .header-cta-buttons {
        justify-content: start;
        padding-top: 0;
    }

    /* CTA buttons right aligned (aapke existing .header-cta-buttons me justify-content: end already hai) */
    .header-row-bottom {
        width: 100%;
    }

    /* ===== ORDER set karo - hamburger beech me ===== */
    .header-logo {
        order: 1;
    }

    .hamburger-btn {
        order: 2;
    }

    .header-row-login-top {
        order: 3;
    }

    .header-row-top {
        order: 4;
    }
}

/* Tablet (1024px) - Hamburger appears */
@media (min-width: 1200px) {
    .footer-grid {
        width: 1140px;
        margin: 0 auto;
    }

    .myrmb-card .myrmb-img {
        width: 75%;
        border: 2px solid var(--color-1);
    }

    .store-btn {
        min-width: 250px;
    }
}

@media (min-width: 1020px) {
    .myrmb-card .myrmb-img {
        width: 75%;
        border: 2px solid var(--color-1);
    }
}

@media (min-width: 320px) and (max-width: 1020px) {
    .myrmb-card .myrmb-img {
        width: 40%;
        border: 2px solid var(--color-1);
    }
}

@media (max-width: 1024px) {
    .footer-grid {
        width: 100%;
        margin: 0;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Small Tablet (768px) */
@media (max-width: 767px) {
    .footer-container {
        padding: 50px 20px 30px;
    }

    .footer-grid {
        width: 100%;
        margin: 0;
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .myrmb-img {
        width: 40%;
    }

    .footer-heading {
        font-size: 20px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

/* Mobile (425px) */
@media (max-width: 426px) {
    .footer-bottom-container {
        padding: 0;
    }

    .header-logo {
        width: 70%;
    }

    .header-row-login-top {
        order: 3;
        width: 100%;
        margin-left: 0;
    }

    /* Login + social ek line me - login left, social right */
    .btn-login-container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 50px;
        width: 100%;
    }

    .header-cta-buttons {
        justify-content: center;
    }

    /* CTA buttons Row 3 me */
    .header-row-top {
        order: 4;
    }
}

/* Mobile (480px) */
@media (max-width: 480px) {
    .header-row-bottom {
        padding: 10px;
    }

    .hamburger-btn {
        padding-right: 10px;
    }

    .btn-login {
        margin-bottom: 0;
    }

    .header-row-top {
        width: 100%;
        padding: 0;
    }

    .btn-cta {
        font-size: 10px;
    }

    .mobile-drawer {
        width: 290px;
    }

    .footer-container {
        padding: 40px 18px 24px;
    }

    .footer-heading {
        font-size: 18px;
    }

    .footer-description,
    .footer-contact-list li {
        font-size: 13px;
    }

    .copyright {
        font-size: 13px;
    }
}

/* Extra small mobile (320px aur chhoti screens) */
@media (max-width: 360px) {
    .mobile-drawer {
        width: 100%;
        max-width: 95%;
    }
}

/* header & footer section for all pages with responsive */

/************************************************************************/

/* main section home page  */

/* ============================================ */
/* IMAGE SLIDER / CAROUSEL                       */
/* ============================================ */

.slider-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Track jo saari slides ko hold karta hai */
.slider-track {
    display: flex;
    /* transition: transform 0.5s ease-in-out; */
    will-change: transform;
}

/* Ek slide */
.slide {
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    height: 650px;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* ============================= */
/* ARROWS                         */
/* ============================= */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(24, 69, 144, 0.7);
    /* Rotary blue with transparency */
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(24, 69, 144, 1);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow-left {
    left: 20px;
}

.slider-arrow-right {
    right: 20px;
}

/* ============================= */
/* DOTS                           */
/* ============================= */
.slider-dots {
    display: none;
}

/* ============================================ */
/* RESPONSIVE                                    */
/* ============================================ */
@media (min-width: 1024px) and (max-width: 1200px) {
    .slide img {
        height: 500px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .slide img {
        height: 350px;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .slider-arrow-left {
        left: 14px;
    }

    .slider-arrow-right {
        right: 14px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .slide img {
        height: 250px;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .slider-arrow-left {
        left: 10px;
    }

    .slider-arrow-right {
        right: 10px;
    }

    /* .slider-dots {
        bottom: 12px;
        gap: 8px;
    } */
    .slider-dot {
        width: 9px;
        height: 9px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .slide img {
        height: 180px;
    }

    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .slider-arrow-left {
        left: 6px;
    }

    .slider-arrow-right {
        right: 6px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }
}

/* main section home page  */

/************************************************************************/

/* message-page-container */
.banner {
    width: 100%;
    height: 100%;
}

.banner-container {
    width: 100%;
    max-width: 100%;
    height: 100%;
    border: 1px solid var(--border-color1);
}

.banner-container img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.upcoming-speaker-section {
    margin: 50px 0;
}

.upcoming-speaker-section .speaker-section-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.upcoming-speaker-section .speaker-section-container .speaker-section-div {
    width: 100%;
    padding: 10px;
}

.speaker-section .speaker-section-title {
    width: 100%;
    text-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.speaker-section .speaker-section-title h1 {
    font-family: "Jaldi", Sans-serif;
    font-size: 40px;
    font-weight: 700;
    text-transform: capitalize;
    text-decoration: none;
    line-height: 52px;
    color: var(--color-2);
}

.speaker-section .speaker-section-title .hr-line {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    padding: 5px 0;
    display: flex;
    justify-content: center;
    justify-items: center;
}

.speaker-section .speaker-section-title span {
    width: 10%;
    margin: 0 auto;
    border-block-start: 2px solid var(--color-1);
}

.speaker-section .speaker-section-content {
    display: grid;
    row-gap: 10px;
    grid-template-columns: repeat(5, 1fr);
    margin-bottom: 20px;
}

.speaker-section .speaker-section-content .image-div {
    padding: 10px;
}

.speaker-section .speaker-section-content .image-div img {
    width: 100%;
    max-width: 100%;
    border: 1px solid var(--color-2);
}

/* ============================= */
/* RESPONSIVE - MEDIA QUERIES     */
/* ============================= */
@media (min-width: 1030px) {
    .upcoming-speaker-section .speaker-section-container .speaker-section-div {
        /* width: 80%; */
        margin: 0 auto;
    }
}

@media (min-width: 1020px) {
    .speaker-section .speaker-section-content {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 767px) and (max-width: 1020px) {
    .speaker-section .speaker-section-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 500px) and (max-width: 767px) {
    .speaker-section .speaker-section-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 375px) and (max-width: 500px) {
    .speaker-section .speaker-section-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .upcoming-speaker-section .speaker-section-container {
        padding: 0 12px;
    }
}

@media (min-width: 280px) and (max-width: 375px) {
    .speaker-section .speaker-section-content {
        grid-template-columns: 1fr;
    }

    .speaker-section .speaker-section-title span {
        width: 20%;
    }

    .upcoming-speaker-section .speaker-section-container {
        padding: 0 12px;
    }
}

/* message-page-container */

/************************************************************************/
/* Banner responsive section on home page */
.banner-section{
    background-image: url('../assets/bg-2.webp');
    padding: 50px 0;
}
.banner-section-container{
    max-width: 1140px;
    margin: 0 auto;
}
.banner-section-content{
    display: grid;
    place-content: center;
    place-items: center;
}
.banner-section-div{
    width: 100%;
    padding: 16px;
    text-align: center;
}
.banner-Img-div{
    width: 50%;
    margin: 0 auto;
    margin-bottom: 5px;
    padding: 3px;
}
.banner-Img-div img{
    border: 1px solid var(--color-2);
    padding: 5px;
}
.banner-content-div {
    margin-bottom: 3px;
}
.banner-content-div h3{
    font-family: "Jaldi", Sans-serif;
    font-size: 45px;
    font-weight: 700;
    text-decoration: none;
    line-height: 58.5px;
    letter-spacing: 0px;
    color: var(--color-2);
}
.banner-paragraph{
    width: 45%;
    margin: 0 auto;
    text-align: center;
    padding: 10px;
    margin-bottom: 14.4px;
}
.banner-paragraph p{
    font-family: "Basic", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    line-height: 27px;
    color: var(--color-black);
}
.banner-image-div{
    margin-bottom: 5px;
}
.banner-image-div img{
    width: 100%;
    height: auto;
}
/* ============================================ */
/* RESPONSIVE                                    */
/* ============================================ */
@media (min-width: 767px) and (max-width: 1020px) {
    .banner-paragraph{
        width: 70%;
    }
    .banner-Img-div{
        width: 70%;
    }
}
@media (min-width: 300px) and (max-width: 500px) {
    .banner-paragraph{
        width: 100%;
    }
    .banner-Img-div{
        width: 100%;
    }
    .banner-content-div h3{
        font-size: 32px;
        line-height: 32px;
    }
    .banner-image-div{
        padding: 10px;
    }
    .banner-image-div img {
        width: 80%;
        margin: 0 auto;
    }
}
@media (min-width: 500px) and (max-width: 767px){
    .banner-paragraph{
        width: 90%;
    }
    .banner-Img-div{
        width: 80%;
    }
    .banner-content-div h3{
        font-size: 32px;
        line-height: 32px;
    }
    .banner-image-div{
        padding: 10px;
    }
    .banner-image-div img {
        width: 80%;
        margin: 0 auto;
    }
}
/* Banner responsive section on home page */

/************************************************************************/

/* Why Join RMB responsive section on home page */

.why-join-section {
    position: relative;
    width: 100%;
    background-image: url('../assets/team-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Dark overlay - photo dim karne ke liye */
.why-join-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);    /* 78% black overlay */
    z-index: 1;
}

/* Content container - overlay ke upar */
.why-join-container {
    position: relative;
    z-index: 2;
}

/* Heading - yellow */
.why-join-title {
    font-family: "Jaldi", Sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-decoration: none;
    line-height: 62.4px;
    color: var(--color-1);
    margin-bottom: 20px;
    text-align: center;
}

/* Description paragraph - white */
.description-dev{
    margin-bottom: 20px;
}
.why-join-description {
    font-family: "Open Sans", Sans-serif;
    font-size: 19px;
    font-weight: 400;
    text-decoration: none;
    line-height: 28.5px;
    margin-bottom: 14.4px;
    color: var(--color-white); 
}

/* Bulleted list - left aligned (description ke neeche) */

.why-join-list {
    list-style: disc;
    padding-left: 40px;
}

.why-join-list li {
    font-family: "Open Sans", Sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 28.5px;
    color: var(--color-white); 
}

/* ============================================ */
/* RESPONSIVE                                    */
/* ============================================ */

/* Small Mobile */
@media (max-width: 480px) {
    .why-join-title{
        font-size: 45px;
    }
    .why-join-list li{
        font-size: 16px;
    }
    .why-join-description{
        font-size: 16px;
    }
    .why-join-list{
        padding-left: 30px;
    }
}

/* Why Join RMB responsive section on home page */

/************************************************************************/

/* Cards responsive section on home page */

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

.info-card {
    background: var(--color-white, #ffffff);
    border: 1px solid #18459082;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Hover - blue background */
.info-card:hover {
    background: var(--color-2, #184590);
    border-color: var(--color-2, #184590);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(24, 69, 144, 0.25);
}

.card-icon {
    display: flex;
    align-items: center;    
}
.img-div{
    width: 90px;
    height: auto;
    margin-right: 15px;
}
.img-div img {
    width: 100%;
    height: 100%;  
}

.card-title {
    font-family: "Open Sans", Sans-serif;
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 25px;    
    color: var(--color-2);
    transition: color 0.4s ease;
}
.card-content{
    margin-bottom: 10px;
    padding: 10px;
    transition: color 0.4s ease;
}
.card-text {
    font-family: "Basic", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    line-height: 27px;
    color: #3A8AB1;
    margin-bottom: 14.4px;
    transition: color 0.4s ease;
}

/* Hover state: text white ho jaye */
.info-card:hover .card-title,
.info-card:hover .card-text {
    color: var(--color-white, #ffffff);
}

/* ============================================ */
/* RESPONSIVE                                    */
/* ============================================ */

/* Tablet - thoda kam padding */
@media (max-width: 1025px) {    
    .card-title {
        font-size: 18px;
    }    
}
@media (min-width: 320px) and (max-width:1020px) {
    .info-card{
        padding: 20px;
    }
}
/* Mobile - 1 column */
@media (max-width: 767px) {   
    .card-icon .img-div {
        width: 60px;
    }
    .card-title {
        font-size: 15px;
    }
    .card-text {
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 600px) {
   .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Cards responsive section on home page */

/************************************************************************/

/* RMB Banner responsive section on home page */
.rmb-banner-section{
    background-image: url('../assets/rmb-banner.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 50px 0;
}

.rmb-banner-container{
    max-width: 1140px;
    margin: 0 auto;
}
.rmb-banner-content{
    padding: 16px;
    text-align: center;
}

.rmb-banner-title{
    font-family: "Jaldi", Sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-decoration: none;
    line-height: 62.4px;
    letter-spacing: 0px;
    color: var(--color-1);
}

@media (min-width: 300px) and (max-width: 480px) {
    .rmb-banner-title{
        font-size: 32px;
        line-height: 32px;
    }    
}
@media (min-width: 481px) and (max-width: 767px) {
    .rmb-banner-title{
        font-size: 40px;
        line-height: 40px;
    }    
}
@media (min-width: 768px) and (max-width: 1020px) {
    .rmb-banner-title{
        font-size: 45px;
        line-height: 45px;
    }    
}

/* RMB Banner responsive section on home page */

/************************************************************************/

/* RMB Core Values responsive section on home page */

.rmb-core-values-section{
    background-image: url('../assets/bg-2.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 50px 0;
}

.rmb-core-values-container{
    max-width: 1140px;
    margin: 0 auto;
}

.rmb-core-values-content{
    display: grid;
    place-content: center;
    place-items: center;
    padding: 10px;
    text-align: center;
}

.rmb-core-values-title{
    font-family: "Jaldi", Sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    line-height: 20px;
    letter-spacing: 0px;
    color: var(--color-black);
}

.cover-title-div{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.line{
    width: 170px;
    border-top: 3px dotted #000;
}

.core-values-img{
    width: 100%;
    max-width: 550px;
}

@media (min-width: 300px) and (max-width: 480px) {
    .rmb-core-values-title{
        font-size: 16px;
        line-height: 16px;
    }
    .line{
        width: 70px;
    }
    .core-values-img{
        max-width: 100%;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .rmb-core-values-title{
        font-size: 18px;
        line-height: 18px;
    }
    .line{
        width: 100px;
    }
    .core-values-img{
        max-width: 80%;
    }
}

@media (min-width: 768px) and (max-width: 1020px) {
    .rmb-core-values-title{
        font-size: 20px;
        line-height: 20px;
    }
    .line{
        width: 150px;
    }
    .core-values-img{
        max-width: 100%;
    }
}

/* RMB Core Values responsive section on home page */

/************************************************************************/

/* RMB Counter Number responsive section on home page */

.stats-section {
    background-image: linear-gradient(rgba(0, 113, 188, 0.5), rgba(0, 113, 188, 0.5)), url('../assets/bg-1.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 80px 16px;
}

.stats-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    padding: 10px;
    min-width: 220px;
}

/* White circle with icon */
.stat-icon {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    background: var(--color-white, #ffffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid #69727d;
}

.stat-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--color-9);   
}

/* Content (number + label) */
.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: "Jaldi", Sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-decoration: none;
    line-height: 62.4px;
    color: var(--color-white);
    margin-top: 8px;
}

.stat-label {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-white, #ffffff);
}

/* ============================================ */
/* RESPONSIVE                                    */
/* ============================================ */

/* Large tablet - 2 columns */
@media (max-width: 991px) {    
    .stat-item {
        flex: 0 0 calc(50% - 15px);   
        min-width: 0;
    }
}

/* Mobile */
@media (max-width: 500px) {    
    .stats-container{
        width: 100%;
    }
    .stat-item {
        flex: 0 0 80%;  
        margin: 0 auto;   
        justify-content: flex-start;
    }
}

/* Small mobile */
@media (max-width: 380px) {
    .stat-icon {
        width: 58px;
        height: 58px;
    }
    .stat-item {
        flex: 0 0 100%;  
        justify-content: flex-start;
    }
}

/* RMB Counter Number responsive section on home page */

/************************************************************************/

/* photo gallery responsive section on home page */

.gallery-section {
    width: 100%;
    padding: 50px 0;
    background: var(--color-white, #ffffff);
}

.gallery-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 16px;
}

/* Grid - Desktop: 5 columns */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 40px;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;        
    overflow: hidden;
    cursor: pointer;
    background: var(--color-2); 
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 800ms cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 800ms cubic-bezier(0.25, 0.1, 0.25, 1),
                box-shadow 0.3s ease;
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

.gallery-item.visible {
    opacity: 1;
    transform: scale(1); 
}

/* .gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(24, 69, 144, 0.25);
} */

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

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 69, 144, 0.5);  
    opacity: 0;                          
    transition: opacity 0.3s ease;
    pointer-events: none;                
    z-index: 1;
}
.gallery-item:hover::after {
    opacity: 1;   
}

/* Hidden items (View More se khulenge) */
.gallery-item.hidden {
    display: none;
}

/* View More Button */
.gallery-btn-wrapper {
    text-align: center;
}

.gallery-view-more {
    display: inline-block;
    background: var(--color-2, #184590);
    color: #ffffff;
    border: none;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 36px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.gallery-view-more:hover {
    background: var(--color-primary-dark, #0f2f6b);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 69, 144, 0.3);
}

.gallery-view-more.hide {
    display: none;
}

/* ============================================ */
/* LIGHTBOX (Bada view popup)                    */
/* ============================================ */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--color-1, #FFC42F);
    color: var(--color-2, #184590);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-counter {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
}

/* ============================================ */
/* RESPONSIVE                                    */
/* ============================================ */

/* Large Tablet - 4 columns */
@media (max-width: 1199px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
}

/* Tablet - 3 columns */
@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .gallery-container {
        padding: 0 20px;
    }
}

/* Mobile - 2 columns */
@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .gallery-section {
        padding: 35px 0;
    }
    .gallery-view-more {
        font-size: 14px;
        padding: 10px 28px;
    }
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .lightbox-prev {
        left: 12px;
    }
    .lightbox-next {
        right: 12px;
    }
}

/* Small Mobile - 1 column */
@media (max-width: 380px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* photo gallery responsive section on home page */

/************************************************************************/

/* meeting page container */

.meeting-content {
    margin-bottom: 20px;
}

.meeting-content h3 {
    font-family: "Open Sans", Sans-serif;
    font-size: 25px;
    font-weight: 700;
    text-decoration: none;
    line-height: 25px;
    color: var(--color-black);
}

.meeting-content ul {
    margin-left: 20px;
    list-style: disc;
}

.meeting-content ul li {
    font-family: "Basic", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: var(--color-black);
}

.meeting-container .br-line {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    justify-items: center;
}

.meeting-container .br-line span {
    width: 100%;
    border-block-start: 1px solid var(--border-color2);
}

.meeting-container .meeting-content p {
    font-family: "Basic", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: var(--color-black);
}

.meeting-container .meeting-content1 h3 {
    font-family: "Jaldi", Sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 37.5px;
    letter-spacing: 0px;
    color: var(--color-2);
}

/* meeting page container */

/************************************************************************/

/* Board of Directors page container */

.board-director-content {
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.board-director-content .image-div-section img {
    width: 100%;
    max-width: 100%;
    border: 1px solid var(--color-2);
}

@media (min-width: 375px) and (max-width: 550px) {
    .speaker-section .board-director-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 280px) and (max-width: 375px) {
    .speaker-section .board-director-content {
        grid-template-columns: 1fr;
    }
}

/* Board of Directors page container */

/************************************************************************/

/* FAQ page container */
.speaker-section .speaker-section-title1 {
    width: 100%;
    margin-bottom: 20px;
}

.speaker-section .speaker-section-title1 .hr-line {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    padding: 5px 0;
    display: flex;
}

.speaker-section .speaker-section-title1 span {
    width: 10%;
    border-block-start: 2px solid var(--color-1);
}

.faq-container {
    max-width: 1200px;
    margin: auto;
}

.faq-item {
    border: 1px solid #D5D8DC;
    background: #fff;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    border: 1px solid #D5D8DC;
    background: #fff;
    padding: 15px 20px;
    text-align: left;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    line-height: 27px;
    align-items: center;
    font-family: "Open Sans", Sans-serif;
    color: var(--color-2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-answer p {
    font-size: 18px;
    line-height: 27px;
    font-family: "Basic", Sans-serif;
    font-weight: 400;
    color: var(--color-black);
    margin-bottom: 14.4px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-ans-div {
    padding: 15px 20px;
    margin-bottom: 14.4px;
}


/* FAQ page container */

/************************************************************************/

/* members page container */

.upcoming-speaker-section .speaker-section-container .speaker-section-div1 {
    width: 100%;
}

.upcoming-speaker-section .speaker-section-container1 {
    width: 100%;
    padding: 0 20px;
}

.pdf-container {
    width: 100%;
    height: auto;
    overflow-y: auto;
    scrollbar-width: thin;
}

.pdf-container::-webkit-scrollbar {
    width: 6px;
}

.pdf-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.pdf-container::-webkit-scrollbar-thumb {
    background: #b5b5b5;
    border-radius: 10px;
}

/* members page container */

/************************************************************************/

/* about RMB page container */

.about-rmb-content {
    margin-bottom: 20px;
}

.about-rmb-content p {
    font-family: "Basic", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: var(--color-black);
    margin-bottom: 14.4px;
}

.about-rmb-content p a {
    color: var(--color-primary);
    text-decoration: underline;
}

.mission-statement {
    margin-bottom: 20px;
}

.mission-statement h2 {
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-size: 25px;
    font-weight: 700;
    line-height: 25px;
    color: var(--color-2);
}

.mission-statement .mission-statement-content {
    font-family: "Basic", Sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    color: var(--color-black);
    margin-bottom: 14.4px;
}

.mission-statement p {
    font-family: "Basic", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: var(--color-black);
    margin-bottom: 14.4px;
}

/* about RMB page container */

/************************************************************************/

/* about RMB Nagpur page container */


.committee-section {
    max-width: 1400px;
    margin: auto;
    text-align: center;
    position: relative;
}

.committee-title {
    font-family: var(--font-body);
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0px;
    color:var(--color-black);
    margin-bottom: 20px;
}

.top-arrow {    
    margin-bottom: 20px;
}

.top-arrow .fa-solid{
    font-size: 35px;
    line-height: 1;
}

.small-arrow {    
    margin-bottom: 20px;
}

.small-arrow .fa-solid{
    font-size: 20px;
    line-height: 1;
}

.committee-wrapper {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid var(--color-black);
    position: relative;
}

.committee-box {
    width: 33.33%;
    padding: 10px;
    position: relative;
    border-right: 2px solid var(--color-black);
}

.committee-box:first-child {
    border-left: none;
}

.committee-box:last-child {
    border-right: 2px solid var(--color-black);
}

.committee-heading {
    font-family: var(--font-body);
    font-size: 25px;
    line-height: 25px;
    font-weight: 700;
    color: var(--color-2);
    margin-bottom: 20px;
}

.committee-list {
    list-style: none;
}

.committee-list li {
    font-family: "Basic", Sans-serif;
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    color: #000;
    margin-bottom: 14.4px;
}
.space-container{
    height: 50px;
    margin-bottom: 20px;
}

@media( max-width: 500px ) {
    .committee-wrapper {
        flex-direction: column;
    }

    .committee-box {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid var(--color-black);
        min-height: auto;
    }
    .committee-box:last-child {
        border-right: none;
        border-bottom: none;
    }
}

.general-membership-info {
    margin-bottom: 20px;
}

.general-membership-info h2 {
    text-align: center;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-size: 25px;
    font-weight: 700;
    line-height: 25px;
    color: var(--color-2);
}

.general-membership-info ol {
    padding-left: 40px;
}

.general-membership-info ol li {
    font-family: "Basic", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: var(--color-black);
}

@media (min-width: 280px) and (max-width: 500px) {
    .general-membership-info ol {
        padding-left: 30px;
    }
}

/* about RMB Nagpur page container */

/************************************************************************/

/* about RMB In India page container */

.board-director-content1 {
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

@media (min-width: 500px) and (max-width: 680px) {
    .speaker-section .board-director-content1 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 280px) and (max-width: 500px) {
    .speaker-section .board-director-content1 {
        grid-template-columns: 1fr;
    }
}
.about-rmb-india-content{
    padding: 10px;
    width: 100%;
    text-align: center;
    align-items: center;

}
.speaker-section-titles h5{
    font-family: "Jaldi", Sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    line-height: 33px;
    color: var(--color-black);
}
.speaker-section-titles .hr-line {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    padding: 5px 0;
    display: flex;
    justify-content: center;
    justify-items: center;
}
.speaker-section-titles span {
    width: 10%;
    margin: 0 auto;
    border-block-start: 2px solid var(--color-1);
}
.footer-bottom-social-1 {
    display: flex;
    justify-content: center;
}

.footer-bottom-social-1 a {
    color: var(--color-2);
    font-size: 25px;
    line-height: 25px;
    width: 41px;
    height: 41px;
    transition: all 0.2s ease;
}

/* about RMB In India page container */

/*****************************************************************************************************/

/* My RMB page container */
.my-rmb-contianer{
    width: 100%;
    text-align: start;
    align-items: center;
    margin-bottom: 20px;
}
.my-rmb-contianer .my-rmb-img-container{    
    width: 20%;
    margin: 0 auto;
}
.my-rmb-contianer .my-rmb-img-container img{
    width: 100%;
    max-width: 100%;
    padding: 10px;
}
.my-rmb-contianer .my-rmb-section-title h5{
    font-family: "Jaldi", Sans-serif;
    font-size: 35px;
    font-weight: 700;
    text-transform: capitalize;
    text-decoration: none;
    line-height: 52.5px;
    color: var(--color-black);
}
.my-rmb-contianer .my-rmb-content p{
    font-family: "Basic", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: var(--color-black);
    margin-bottom: 14.4px;
}
.speaker-section .my-rmb-section-title .hr-line {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    padding: 5px 0;
    display: flex;
    justify-items: center;
}

.speaker-section .my-rmb-section-title span {
    width: 10%;
    border-block-start: 2px solid var(--color-1);
}
.my-rmb-contianer .my-rmb-content{
    margin-bottom: 20px;
}
.my-rmb-contianer .my-rmb-content .web-app-link{
    font-family: "Open Sans", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 22.5px;
    color: var(--color-black);    
}
.my-rmb-contianer .my-rmb-content .web-app-link a{    
    color: var(--color-primary);
}
.my-rmb-contianer .rmb-registration-img{    
    padding: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.my-rmb-contianer .rmb-hr-line{ 
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 0;
    display: flex;
    justify-content: center;
}
.my-rmb-contianer .rmb-hr-line span{ 
    width: 100%;
    border-block-start: 1px solid var(--border-color2);
}
.my-rmb-contianer .rmb-app-img-container .rmb-registration-app-img{ 
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 25%);
    padding: 10px;
    gap: 20px;
}
.my-rmb-contianer .rmb-app-img-container .rmb-android-app-img{ 
    background-color: #AEE736;
    border-radius: 30px;
    padding: 20px;
}
.my-rmb-contianer .rmb-app-img-container .google-img img{ 
    width: 22%;    
    padding: 10px;
}
.my-rmb-contianer .rmb-group{ 
   padding: 10px;
}
.my-rmb-contianer .rmb-group .my-rmb-section-title h5{
    font-family: "Jaldi", Sans-serif;
    font-size: 35px;
    font-weight: 700;
    text-decoration: none;
    line-height: 52.5px;
    color: var(--color-black);
}
.my-rmb-contianer .rmb-group .group-grid-container{
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
}
.my-rmb-contianer .rmb-group .grid-content{
    width: 78%;
    padding: 10px;
}
.my-rmb-contianer .rmb-group .grid-content p{
    font-family: "Basic", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: var(--color-black);
    margin-bottom: 14.4px;
}
.my-rmb-contianer .rmb-group .group-grid-img{
    padding: 10px;
    width: 22%;
}
.my-rmb-contianer .rmb-group .group-grid-img img{
    display: inline-block;
    vertical-align: middle;
}
.my-rmb-contianer .rmb-disclaimer-container .disclaimer-img-container{
    width: 100%;
    padding: 10px;
    align-items: center;
    display: flex;
    justify-content: center;
}
.my-rmb-contianer .rmb-disclaimer-container .disclaimer-content{    
    padding: 10px;
}
.my-rmb-contianer .rmb-disclaimer-container .disclaimer-content h5{    
    font-family: "Basic", Sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    line-height: 33px;
    color: var(--color-2);
    margin-bottom: 14.4px;
}
.my-rmb-contianer .rmb-disclaimer-container .disclaimer-content p{
    font-family: "Basic", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: var(--color-black);
    margin-bottom: 14.4px;
}
@media (min-width: 501px) and (max-width: 767px) {
    .my-rmb-contianer .my-rmb-img-container{
        width: 70%;
    }
    .my-rmb-contianer .rmb-app-img-container .rmb-registration-app-img{
        grid-template-columns: repeat(2, 40%);
    }
    
    .my-rmb-contianer .rmb-app-img-container .google-img img{
        width: 50%; 
    }
     .my-rmb-contianer .rmb-group .group-grid-container{
        flex-direction: column;
    }
    .my-rmb-contianer .rmb-group .grid-content{
        width: 100%;
    }
    .my-rmb-contianer .rmb-group .group-grid-img{
        width: 100%;
        display: flex;
        justify-content: center;
    }
}
@media (min-width: 400px) and (max-width: 500px) {
    .my-rmb-contianer .my-rmb-img-container{
        width: 70%;
    }
    .my-rmb-contianer .rmb-app-img-container .rmb-registration-app-img{
        grid-template-columns: 1fr;
        width: 80%;
    }
    
    .my-rmb-contianer .rmb-app-img-container .google-img img{
        width: 80%; 
    }
     .my-rmb-contianer .rmb-group .group-grid-container{
        flex-direction: column;
    }
    .my-rmb-contianer .rmb-group .grid-content{
        width: 100%;
    }
    .my-rmb-contianer .rmb-group .group-grid-img{
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

@media (min-width: 280px) and (max-width: 400px) {
    .my-rmb-contianer .rmb-group .my-rmb-section-title h5{
        font-size: 25px;
        line-height: 33px;
    }
    .my-rmb-contianer .my-rmb-img-container{
        width: 70%;
    }
    .my-rmb-contianer .rmb-app-img-container .rmb-registration-app-img{
        grid-template-columns: 1fr;
        width: 100%;
    }
    .my-rmb-contianer .rmb-app-img-container .google-img img{
        width: 100%; 
    }
    .my-rmb-contianer .rmb-group .group-grid-container{
        flex-direction: column;
    }
    .my-rmb-contianer .rmb-group .grid-content{
        width: 100%;
    }
    .my-rmb-contianer .rmb-group .group-grid-img{
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

/* My RMB page container */

/*****************************************************************************************************/

/* RMB Contact page container */
.contact-info-title{
    margin-bottom: 20px;
}
.contact-info-title h3{
    font-family: "Jaldi", Sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 37.5px;
    letter-spacing: 0px;
    color: var(--color-black);
    text-align: center;
}
.contact-info-list-section{
    display: flex;
    justify-content: center;
    justify-items: center;
}
.contact-info-item{
    width: 33.33%;
    padding: 10px;
    text-align: center;
}
.info-icon{
    height: 50px;
    width: 50px;
    margin: 0 auto 20px auto;
}
.info-icon .fa-solid{
    font-size: 50px;
    color: var(--color-2);    
}
.contact-info-item h5{
    font-family: "Jaldi", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 0px;
    margin-bottom: 20px;
    color: var(--color-2);
}
.contact-info-item p{
    font-family: "Open Sans", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    line-height: 27px;
    letter-spacing: 0px;
    margin-bottom: 20px;
    color: var(--color-black);
}
.contact-info-hr-line{
    padding: 5px 0;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    justify-items: center;
}
.contact-info-hr-line span{
    width: 15%;
    border-block-start: 2px solid var(--color-1);
}
@media (min-width: 280px) and (max-width: 650px) {   
    .contact-info-list-section{
        flex-direction: column;
    }
    .contact-info-item{
        width: 100%;
    }
    .info-icon .fa-solid{
        font-size: 40px;
    }    
}
@media (min-width: 426px) and (max-width: 650px) {   
     .contact-info-item p{
        width: 70%;
        margin: 0 auto;
    }   
}
@media (min-width: 651px) and (max-width: 767px) {    
    .contact-info-list-section{
        flex-direction: row;
    }
    .contact-info-item{
        width: 33.33%;
    }
    .info-icon .fa-solid{
        font-size: 45px;
    }
}
/* ============================================ */
/* CONTACT FORM SECTION                          */
/* ============================================ */

.contact-section {
    width: 100%;
    margin-top: 30px;
    background: var(--color-white, #ffffff);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

/* ============================================ */
/* LEFT: LOGO                                    */
/* ============================================ */

.contact-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;    
    margin-right: 30px;
}

.contact-logo img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================ */
/* RIGHT: FORM WRAPPER                           */
/* ============================================ */

.contact-form-wrapper {
    background: #3A4268F0;
    padding: 10px;
}

.contact-form-title {
    font-family: "Open Sans", sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 54px;
    color: var(--color-white, #ffffff);
    margin-bottom: 20px;
}

/* ============================================ */
/* FORM FIELDS                                   */
/* ============================================ */

.contact-form {
    margin-bottom: 20px;
    padding: 0 5px;
    display: flex;
    flex-direction: column;
    /* gap: 18px; */
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group .form-input,
.form-textarea {
    width: 100%;
    background: transparent;
    border: 1px solid #3A8AB1;
    color: var(--color-white, #ffffff);
    font-family: "Open Sans", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    line-height: 22.5px;
    padding: 8px 16px;
    /* border-radius: 4px; */
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--color-1, #FFC42F);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    font-family: "Open Sans", sans-serif;
}

/* Invalid state */
.form-input.invalid,
.form-textarea.invalid {
    border-color: #ff6b6b;
}

/* Error message below field */
.form-error {
    color: #ff8888;
    font-size: 13px;
    margin-top: 4px;
    min-height: 0;
    display: none;
}

.form-error.show {
    display: block;
}

/* ============================================ */
/* SUCCESS MESSAGE                               */
/* ============================================ */

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4CAF50;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 5px;
}

.form-success.show {
    display: flex;
}

.form-success i {
    color: #4CAF50;
    font-size: 18px;
}

/* ============================================ */
/* SUBMIT BUTTON                                 */
/* ============================================ */

.form-submit-btn {
    align-self: flex-start;
    background: var(--color-1, #FFC42F);
    color: var(--color-black, #000000);
    border: none;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background: var(--color-accent-dark, #e6ae20);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 196, 47, 0.4);
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-submit-btn i {
    font-size: 14px;
}

/* ============================================ */
/* RESPONSIVE                                    */
/* ============================================ */

/* Tablet */


/* Mobile - stack columns (logo upar, form neeche) */
@media (min-width: 481px) and (max-width: 767px) {       
    .contact-logo img {
        width: 100%;
        margin-right: 0;
        padding-bottom: 20px;
    }
    .contact-form-title{
        font-size: 32px;
    }
}

/* Small mobile */
@media (min-width: 481px) and (max-width: 600px) { 
    .contact-container {
        grid-template-columns: 1fr;
    }   
    .contact-logo img {
        width: 80%;
        margin-right: 0;
        padding-bottom: 20px;
    }
    .contact-form-title{
        font-size: 32px;
    }
}
@media (min-width: 280px) and (max-width: 480px) {   
    .contact-container {
        grid-template-columns: 1fr;
    }  
    .contact-logo img {
        width: 100%;
        margin-right: 0;
        padding-bottom: 20px;
    }
    .contact-form-title{
        font-size: 32px;
    }
}
/* RMB Contact page container */

/*****************************************************************************************************/