/* main.css */
/* =========================
   ROOT VARIABLES
========================= */
:root {
    /* COLORS */
    --primary-blue: #0d47a1;
    --black: #111111;
    --white: #ffffff;
    --text-dark: #000000;
    --text-muted: #555555;
    --border-light: #e0e0e0;
     --mag-primary: #0d47a1;
    --mag-light-bg: #f4f7fb;
    --mag-border: #e0e0e0;
    --mag-text-dark: #111;
    --mag-text-muted: #555;
    --bg-soft: #f4f8ff;

    /* LAYOUT */
    --container-padding: 30px;
    --header-padding: 40px;
    --navbar-height: 52px;
    --header-height: 95px;

    /* ICONS */
    --icon-size: 20px;
    --icon-gap: 14px;

    /* SEARCH */
    --search-width: 180px;

    /* CM IMAGE */
    --cm-height: 140px;
    --cm-right: 40px;
    --cm-top: -21px;

    /* FONTS */
    --font-primary: "Segoe UI", Arial, sans-serif;
}

/* =========================
   GLOBAL RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
}

body {
    background: var(--white);
    overflow-x: hidden;
    
}

.main-header {
    margin-bottom: 0;
}

/* =========================
   TOP BAR
========================= */
.top-bar {
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px var(--container-padding);
    font-size: 14px;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-left span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-left img,
.top-right img {
    width: var(--icon-size);
    height: var(--icon-size);
    object-fit: contain;
    display: block;
}

.top-right {
    display: flex;
    align-items: center;
    transition: all 0.35s ease;
}

.top-right a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: var(--icon-gap);
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
}

/* =========================
   SEARCH SLIDE
========================= */
.search-wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 0;
    transition: width 0.35s ease;
}

.search-wrapper input {
    height: 28px;
    padding: 0 10px;
    border: none;
    border-radius: 3px;
    outline: none;
    font-size: 13px;
}

.search-wrapper button {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    margin-left: 6px;
    font-size: 16px;
}

.top-right.search-open .search-wrapper {
    width: var(--search-width);
}

/* =========================
   STICKY HEADER
========================= */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
}

.sticky-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    pointer-events: none;
}
@media (max-width: 768px) {
    .sticky-header {
        will-change: transform;
        transform: translateZ(0);
        backface-visibility: hidden;
    }
}


.header-wrapper {
    position: relative;
}

/* =========================
   MAIN HEADER
========================= */
.main-header {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px var(--header-padding);
    height: var(--header-height);
    border-bottom: 1px solid var(--border-light);
    padding-right: 220px;
}

.logo-section img {
    height: 90px;
    width: 89px;
    object-fit: contain;
}

.govt-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0 6px;
}

/* Seal */
.govt-seal {
    height: 72px;
    width: auto;
    object-fit: contain;
}

/* Text block */
.govt-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.25;
    margin-top: 2px;
}

/* Main heading */
.govt-title {
    font-family: "Lato", sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #0b2c8a;
    letter-spacing: 0.3px;
}

/* Subtitle */
.govt-subtitle {
    margin-top: 4px;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #666666;
}



/* PERSON / CM SECTION – optional */
.person-section {
    position: relative;
    display: flex;
    align-items: center;
}

.cm-text {
    text-align: right;
    margin-right: 150px;
}

.cm-text strong {
    display: block;
    font-size: 15px;
    color: var(--text-dark);
}

.cm-text p {
    font-size: 13px;
    color: var(--text-muted);
}

.cm-photo {
    position: absolute;
    right: var(--cm-right);
    top: var(--cm-top);
    height: var(--cm-height);
    z-index: 3;
}

/* OPTIONAL SECOND LOGO */
.secondary-logo {
    height: 90px;
    margin-right: -200px;
}

/* =========================
   NAVBAR BASE
========================= */
.navbar {
    background: var(--black);
    height: var(--navbar-height);
    position: relative;
    z-index: 1;
    display: flex;          /* hamburger left, menu right */
    align-items: center;
}

/* HAMBURGER BUTTON */
.hamburger {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    padding: 0px 16px;
    padding-bottom: 20px;

    cursor: pointer;
}

/* NAV MENU (ul) */
.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 40px;
    margin: 0;
    height: 100%;
    flex: 1;
}

.navbar ul img {
    width: var(--icon-size);
    height: var(--icon-size);
    object-fit: contain;
    display: block;
}

.navbar ul li a {
    display: block;
    padding: 14px 20px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.navbar ul li a:hover {
    background: var(--primary-blue);
}

/* CLOSE BUTTON ITEM (inside mobile menu) */
.nav-close-item {
    display: none; /* hidden on desktop, shown on mobile */
}

/* =========================
   DESKTOP / LARGE TABLET
========================= */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }

    .navbar {
        height: var(--navbar-height);
    }

    .navbar ul {
        position: static;
        flex-direction: row;
        background: var(--black);
    }
}

/* =========================
   TABLET
========================= */
@media (max-width: 1200px) {
    .main-header {
        padding-right: 100px;
    }

    .secondary-logo {
        display: none;  /* hidden on medium screens; mobile overrides */
    }
}

@media (max-width: 1024px) {
    .logo-section img {
        width: 260px;
        height: 60px;
    }

    .cm-photo {
        height: 110px;
    }

    .main-header {
        padding: 15px 20px;
        height: auto;
        min-height: 80px;
    }
}

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



@media (max-width: 768px) {

     /* TOP BAR */
    .top-bar {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 8px 15px;
        text-align: center;
    }

    /* CONTACT INFO */
    .top-left {
        display: flex;
        flex-direction: row;          /* side by side */
        gap: 14px;
        font-size: 13px;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* HIDE PHONE NUMBER (first span) */
    .top-left span:first-child {
        display: none;
    }

    /* EMAIL ALIGNMENT */
    .top-left span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
    }

    /* TOP RIGHT — ONLY ODIA */
    .top-right {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 4px;
    }

    /* HIDE ICONS & SEARCH */
    .top-right a:not(:last-child),
    .search-wrapper {
        display: none !important;
    }

    /* ODIA TOGGLE */
    .top-right a:last-child {
        font-weight: 600;
        font-size: 14px;
        display: inline-block;
    }

    /* HEADER – show both logos */
  

    .logo-section img {
        height: 40px;
        width: auto;
        max-width: 180px;
    }

    /* Left govt block */
    .govt-logo-wrap {
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
        flex: 1;              /* TAKE remaining space */
        overflow: hidden;
    }

    .govt-seal {
        height: 40px;
        flex-shrink: 0;
    }

    .govt-text {
        line-height: 1.15;
        overflow: hidden;
    }

    .govt-title {
        font-size: 16px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .govt-subtitle {
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .secondary-logo {
        display: block;       /* visible on mobile */
        height: 40px;
        width: auto;
        margin-right: 0;
    }

    .person-section {
        display: none;
    }

    .cm-photo {
        position: static;
        height: 70px;
        margin-left: auto;
    }

    /* NAVBAR MOBILE BEHAVIOUR */
    .hamburger {
        display: block;
    }

    /* .navbar {
        height: 40px;
    } */

    .navbar ul {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;      /* LEFT align items */
        padding: 60px 20px 20px;      /* below bar */
        margin: 0;
        background: var(--black);
        transition: left 0.3s ease;
        overflow-y: auto;
        flex: none;
    }

    .navbar ul.active {
        left: 0;
    }

    .navbar ul li {
        width: 100%;
        text-align: left;             /* LEFT text */
        margin: 5px 0;
    }

    .navbar ul li a {
        padding: 14px 0;              /* vertical padding only */
        font-size: 16px;
        border-radius: 0;
        width: 100%;
    }

    /* CLOSE BUTTON INSIDE MENU */
    .nav-close-item {
        display: block;
        position: absolute;
        top: 10px;
        left: 20px;                   /* align with home icon */
        width: auto;
        margin: 0;
    }

    .nav-close-btn {
        background: none;
        border: none;
        color: var(--white);
        font-size: 18px;              /* smaller X */
        cursor: pointer;
        line-height: 1;
    }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
    .logo-section img {
    
        height: 40px;
    }

    .secondary-logo {
        height: 36px;
        max-width: 150px;
    }

    .cm-photo {
        height: 60px;
    }

    .top-bar {
        font-size: 12px;
    }

    .top-left span {
        font-size: 12px;
    }
}

/* =========================
   DROPDOWN STYLES - ADD TO YOUR CSS
========================= */

/* Desktop Dropdown Styles */
@media (min-width: 769px) {
    .navbar ul li.has-dropdown {
        position: relative;
    }
    
    .navbar ul li.has-dropdown > a {
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }
    
    .navbar ul li.has-dropdown .arrow {
        font-size: 8px;
        transition: transform 0.3s ease;
    }
    
    .navbar ul li.has-dropdown .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--black);
        min-width: 220px;
        list-style: none;
        padding: 8px 0;
        margin: 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.4);
        z-index: 5000;
        border-top: 2px solid var(--primary-blue);
    }
    
    .navbar ul li.has-dropdown .dropdown-menu li {
        width: 100%;
        margin: 0;
        background: var(--black);
    }
    
    .navbar ul li.has-dropdown .dropdown-menu li a {
        padding: 10px 20px;
        display: block;
        font-size: 13px;
        white-space: nowrap;
        color: var(--white);
        background: var(--black);
    }
    
    .navbar ul li.has-dropdown .dropdown-menu li a:hover {
        background: var(--primary-blue);
        color: var(--white);
    }
    
    .navbar ul li.has-dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .navbar ul li.has-dropdown:hover > a .arrow {
        transform: rotate(180deg);
    }
    
    /* Submenu Styles - Desktop */
    .navbar ul li.has-dropdown .dropdown-menu li.has-submenu {
        position: relative;
    }
    
    .navbar ul li.has-dropdown .dropdown-menu li.has-submenu > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .navbar ul li.has-dropdown .dropdown-menu li.has-submenu .bi .bi-chevron-right {
        font-size: 8px;
        margin-left: 10px;
    }
    
    .navbar ul li.has-dropdown .dropdown-menu .submenu {
        display: none;
        position: absolute;
        left: 100%;
        top: 0;
        background: var(--black);
        min-width: 200px;
        list-style: none;
        padding: 8px 0;
        margin: 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.4);
        border-top: 2px solid var(--primary-blue);
    }
    
    .navbar ul li.has-dropdown .dropdown-menu .submenu li {
        width: 100%;
        margin: 0;
        background: var(--black);
    }
    
    .navbar ul li.has-dropdown .dropdown-menu .submenu li a {
        padding: 10px 20px;
        display: block;
        font-size: 13px;
        white-space: nowrap;
        color: var(--white);
        background: var(--black);
    }
    
    .navbar ul li.has-dropdown .dropdown-menu .submenu li a:hover {
        background: var(--primary-blue);
        color: var(--white);
    }
    
    .navbar ul li.has-dropdown .dropdown-menu li.has-submenu:hover .submenu {
        display: block;
    }
}

/* Mobile Dropdown Styles */
@media (max-width: 768px) {
    .navbar ul li.has-dropdown > a,
    .navbar ul li.has-dropdown > a.dropdown-toggle {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 14px 0 !important;
    }
    
    .navbar ul li.has-dropdown .arrow {
        font-size: 10px;
        transition: transform 0.3s ease;
        margin-left: auto;
    }
    
    .navbar ul li.has-dropdown .dropdown-menu {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        background: rgba(255,255,255,0.05) !important;
        padding-left: 15px !important;
        display: none !important;
        position: relative !important;
        width: 100% !important;
        left: 0 !important;
        top: 0 !important;
        height: auto !important;
    }
    
    .navbar ul li.has-dropdown .dropdown-menu li {
        width: 100% !important;
        margin: 0 !important;
        display: block !important;
        position: relative !important;
    }
    
    .navbar ul li.has-dropdown .dropdown-menu li a {
        padding: 10px 0 !important;
        font-size: 14px !important;
        display: block !important;
        color: #ffffff !important;
        text-decoration: none !important;
        width: 100% !important;
        transition: color 0.2s ease;
    }
    
    .navbar ul li.has-dropdown .dropdown-menu li a:hover {
        color: var(--primary-blue) !important;
    }
    
    .navbar ul li.has-dropdown.active .dropdown-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .navbar ul li.has-dropdown.active > a .arrow,
    .navbar ul li.has-dropdown.active > a.dropdown-toggle .arrow {
        transform: rotate(180deg);
    }
    
    /* Submenu Styles - Mobile */
    .navbar ul li.has-dropdown .dropdown-menu li.has-submenu > a {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
    }
    
    .navbar ul li.has-dropdown .dropdown-menu li.has-submenu .bi bi-chevron-right {
        font-size: 10px;
        transition: transform 0.3s ease;
        margin-left: 8px;
    }
    
    .navbar ul li.has-dropdown .dropdown-menu .submenu {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        background: rgba(255,255,255,0.03) !important;
        padding-left: 15px !important;
        display: none !important;
        position: relative !important;
        width: 100% !important;
        left: 0 !important;  /* ADD THIS */
        top: 0 !important;   /* ADD THIS */
        height: auto !important;  /* ADD THIS */
    }
    
    .navbar ul li.has-dropdown .dropdown-menu .submenu li {
        width: 100% !important;
        margin: 0 !important;
        display: block !important;
        position: relative !important;  /* ADD THIS */
    }
    
    .navbar ul li.has-dropdown .dropdown-menu .submenu li a {
        padding: 8px 0 !important;
        font-size: 13px !important;
        color: #cccccc !important;
        display: block !important;
        width: 100% !important;
        transition: color 0.2s ease;
        text-decoration: none !important;  /* ADD THIS */
    }
    
    .navbar ul li.has-dropdown .dropdown-menu .submenu li a:hover {
        color: var(--primary-blue) !important;
    }
    
    .navbar ul li.has-dropdown .dropdown-menu li.has-submenu.active .submenu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .navbar ul li.has-dropdown .dropdown-menu li.has-submenu.active > a .bi bi-chevron-right {
        transform: rotate(90deg);
    }
}
/* =====================================
   GUARANTEED MOBILE FIX — LOGOS ONLY
===================================== */
@media (max-width: 768px) {

    /* Neutralize desktop assumptions */
    .main-header {
        padding-right: 15px !important;
        height: auto !important;
        position: relative; /* anchor */
    }

    /* LEFT LOGO BLOCK */
    .logo-section {
        padding-right: 60px; /* reserve space for right logo */
        overflow: hidden;
    }

    .govt-logo-wrap {
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
    }

    .govt-seal {
        height: 40px;
        width: auto;
        flex-shrink: 0;
    }

    .govt-text {
        line-height: 1.15;
        overflow: hidden;
    }

    .govt-title {
        font-size: 16px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .govt-subtitle {
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* RIGHT LOGO — REMOVE FROM FLOW */
    .secondary-logo {
        display: block !important;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        height: 40px;
        width: auto;
        margin: 0 !important;
    }
}


/* ===============================
   PARTNER MARQUEE SECTION
================================ */

.partner-marquee {
    background: #ffffff;
    padding: 40px 0;
    overflow: hidden;
}

/* TRACK */
.marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
}

/* PAUSE ON HOVER */
.partner-marquee:hover .marquee-track {
    animation-play-state: paused;
}

/* CARD DESIGN */
.partner-card {
    min-width: 260px;
    height: 120px;
    background: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.06),
        0 2px 6px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-4px);
}

/* LOGO IMAGE */
.partner-card img {
    max-height: 60px;
    max-width: 180px;
    object-fit: contain;
}

/* MARQUEE ANIMATION */
@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .partner-card {
        min-width: 220px;
        height: 110px;
    }

    .partner-card img {
        max-height: 50px;
    }
}
/* =========================
   FOOTER BASE
========================= */

.site-footer {
    background: #0b0b0b;
    color: #ffffff;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* =========================
   FOOTER MAIN (COMPACT)
========================= */

.footer-main {
    max-width: 1200px;
    margin: auto;
    padding: 40px var(--container-padding);
    display: grid;
    grid-template-columns: 0.9fr 1.2fr 1fr 1.1fr;
    column-gap: 40px;
}

/* =========================
   FOOTER COLUMNS
========================= */

.footer-col {
    min-width: 0;
}

.footer-col h4 {
    font-size: 14px;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 6px;
}

.footer-col a {
    font-size: 13px;
    color: #cccccc;
    text-decoration: none;
    line-height: 1.4;
}

.footer-col a:hover {
    color: #ffffff;
}

/* =========================
   LOGOS
========================= */

.footer-logos img {
   
    margin-bottom: 10px;
    display: block;
}

.footer-logos img[alt="Government of Odisha"] {
  
width: 60%;
   
}       

/* =========================
   MAIN MENU — TRUE 5 / 4 TOP SPLIT
========================= */

.footer-col.main-menu ul {
    display: grid;
    grid-template-rows: repeat(5, auto); /* tallest column */
    grid-auto-flow: column;             /* fill top to bottom */
    column-gap: 24px;
    row-gap: 6px;
}

/* =========================
   FEEDBACK (COMPACT)
========================= */

.footer-feedback {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #222;
    border-radius: 8px;
    padding: 14px;
}

.footer-feedback h4 {
    margin-bottom: 10px;
    font-size: large;
}

.footer-feedback-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-feedback-form input,
.footer-feedback-form textarea {
    width: 100%;
    padding: 8px 10px;
    background: #ffffff;
    border: 1px solid #333;
    color: #000000;
    font-size: 12.5px;
    border-radius: 5px;
}

.footer-feedback-form textarea {
    resize: vertical;
    min-height: 60px;
}

.footer-feedback-form input::placeholder,
.footer-feedback-form textarea::placeholder {
    color: #888;
}

.footer-feedback-form button {
    margin-top: 4px;
    padding: 8px 12px;
    background: #0d47a1;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
    align-self: flex-start;
}

/* =========================
   DIVIDERS
========================= */

.footer-divider {
    height: 1px;
    background: #1f1f1f;
    margin: 0;
}

/* =========================
   EXISTING SECTIONS (KEPT & COMPACT)
========================= */

.footer-top,
.footer-middle,
.footer-bottom {
    max-width: 1200px;
    margin: auto;
    padding: 12px var(--container-padding);
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.footer-links a {
    font-size: 12.5px;
    color: #cccccc;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-middle p,
.footer-bottom {
    font-size: 12.5px;
    color: #aaaaaa;
}

.footer-middle a {
    color: #cccccc;
}

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

@media (max-width: 900px) {

    .footer-main {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding: 30px var(--container-padding);
    }

    /* Logos full width */
    .footer-logos {
        grid-column: 1 / -1;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    /* Main Menu (left) */
    .footer-col.main-menu {
        grid-column: 1 / 2;
    }

    /* Resources (right) */
    .footer-col:not(.main-menu):not(.footer-logos):not(.footer-feedback) {
        grid-column: 2 / 3;
    }

    /* Feedback full width */
    .footer-feedback {
        grid-column: 1 / -1;
    }

    /* Menu list vertical */
    .footer-col.main-menu ul {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    .footer-feedback-form button {
        width: 100%;
    }
}


@media (max-width: 900px) {

    .footer-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-links li {
        margin: 0;
    }
}

/* =========================
   PAGINATION 
========================= */

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.pagination button {
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid #d0d0d0;
    background: #ffffff;
    color: #333333;
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination button:hover {
    background: #0d47a1;
    color: #ffffff;
    border-color: #0d47a1;
}

.pagination button.active {
    background: #0d47a1;
    color: #ffffff;
    border-color: #0d47a1;
    font-weight: 600;
}

.pagination button:focus {
    outline: none;
}

/* Mobile friendly */
@media (max-width: 480px) {
    .pagination {
        gap: 6px;
    }

    .pagination button {
        min-width: 32px;
        height: 32px;
        font-size: 12px;
    }
}
.hero-section {
            position: relative;
            width: 100%;
            min-height: 700px;
            background: linear-gradient(135deg, #ffffff 0%, #f4f4f4 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 60px;
            overflow: hidden;
        }

        .hero-container {
            max-width: 1400px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 80px;
        }

        /* Hero Text Section - LEFT SIDE */
        .hero-text-section {
            flex: 1;
            max-width: 600px;
            z-index: 10;
        }

        .hero-text-section h1 {
            font-size: 56px;
            color: var(--primary-blue);
            margin-bottom: 25px;
            font-weight: 700;
            line-height: 1.2;
            opacity: 1;
            transform: translateX(0);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .hero-text-section p {
            font-size: 20px;
            color: var(--text-muted);
            margin-bottom: 35px;
            line-height: 1.7;
            opacity: 1;
            transform: translateX(0);
            transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
        }

        .hero-cta {
            display: inline-block;
            padding: 16px 45px;
            background: var(--primary-blue);
            color: var(--white);
            text-decoration: none;
            border-radius: 5px;
            font-size: 18px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(13, 71, 161, 0.35);
            opacity: 1;
            transform: translateX(0);
        }

        .hero-cta:hover {
            background: #0a3a7a;
            transform: translateY(-3px) translateX(0) !important;
            box-shadow: 0 8px 25px rgba(13, 71, 161, 0.45);
        }

        /* Fade animations */
        .hero-text-section.changing h1 {
            opacity: 0;
            transform: translateX(-30px);
        }

        .hero-text-section.changing p {
            opacity: 0;
            transform: translateX(-30px);
        }

        .hero-text-section.changing .hero-cta {
            opacity: 0;
            transform: translateX(-30px);
        }

        /* Book Section - RIGHT SIDE */
        .book-wrapper {
            position: relative;
            flex-shrink: 0;
        }

        #flipbook {
            width: 800px;
            height: 500px;
        }

        #flipbook .page {
            width: 400px;
            height: 500px;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }

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

        .book-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 100;
        }

        .control-btn {
            width: 50px;
            height: 50px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(5px);
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-weight: bold;
        }

        .control-btn:hover:not(:disabled) {
            background: var(--primary-blue);
            color: var(--white);
            border-color: var(--primary-blue);
            transform: scale(1.1);
            backdrop-filter: blur(0);
        }

        .control-btn:disabled {
            opacity: 0.2;
            cursor: not-allowed;
        }

        /* Turn.js specific styles */
        .turn-page {
            background: var(--white);
        }

        /* Responsive */
        @media (max-width: 1400px) {
            .hero-container {
                gap: 60px;
            }

            .hero-text-section h1 {
                font-size: 48px;
            }

            #flipbook {
                width: 700px;
                height: 440px;
            }

            #flipbook .page {
                width: 350px;
                height: 440px;
            }
        }

        @media (max-width: 1200px) {
            .hero-container {
                gap: 40px;
            }

            .hero-text-section h1 {
                font-size: 42px;
            }

            .hero-text-section p {
                font-size: 18px;
            }

            #flipbook {
                width: 600px;
                height: 380px;
            }

            #flipbook .page {
                width: 300px;
                height: 380px;
            }
        }

        @media (max-width: 1024px) {
            .hero-section {
                padding: 60px 40px;
            }

            .hero-container {
                flex-direction: column;
                gap: 50px;
            }

            .hero-text-section {
                max-width: 100%;
                text-align: center;
            }

            .hero-text-section h1 {
                font-size: 44px;
            }

            #flipbook {
                width: 700px;
                height: 440px;
            }

            #flipbook .page {
                width: 350px;
                height: 440px;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                min-height: 600px;
                padding: 50px 30px;
            }

            .hero-text-section h1 {
                font-size: 36px;
            }

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

            .hero-cta {
                padding: 14px 35px;
                font-size: 16px;
            }

            #flipbook {
                width: 500px;
                height: 320px;
            }

            #flipbook .page {
                width: 250px;
                height: 320px;
            }

            .control-btn {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }

        @media (max-width: 600px) {
            .hero-section {
                padding: 40px 20px;
            }

            .hero-text-section h1 {
                font-size: 28px;
                margin-bottom: 20px;
            }

            .hero-text-section p {
                font-size: 15px;
                margin-bottom: 25px;
            }

            .hero-cta {
                padding: 12px 30px;
                font-size: 15px;
            }

            #flipbook {
                width: 400px;
                height: 260px;
            }

            #flipbook .page {
                width: 200px;
                height: 260px;
            }

            .control-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

 /* =========================
   ABOUT SECTION
========================= */

.about-section {
    padding: 90px 0;
    background: linear-gradient(
        135deg,
        rgba(13, 71, 161, 0.08) 0%,
        rgba(13, 71, 161, 0.04) 35%,
        #ffffff 100%
    );
    border-top: 1px solid var(--border-light);
}

.about-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 70px;
    align-items: start;
}

/* =========================
   LEFT CONTENT
========================= */

.about-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: 14px;
    letter-spacing: 1px;
    display: inline-block;
}

.about-title {
    font-size: 38px;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 22px;
}

.about-text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
    max-width: 560px;
}

.about-btn {
    margin-top: 26px;
    padding: 13px 34px;
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    display: inline-block;
}

/* =========================
   RIGHT COLUMN STACK
========================= */

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 22px; /* KEY FIX */
}

/* =========================
   CARDS
========================= */

.about-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.about-card.outlined {
    box-shadow: none;
    border: 1px solid var(--border-light);
}

.about-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.about-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* =========================
   TIMING CARD (SEPARATE)
========================= */

.timing-card {
    border-left: 4px solid var(--primary-blue);
}

.timing-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.timing-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14.5px;
    border-bottom: 1px dashed var(--border-light);
}

.timing-list li span {
    color: var(--text-muted);
}

.timing-list li strong {
    font-weight: 600;
}

.timing-list li.highlight {
    color: #b71c1c;
    font-weight: 600;
    border-bottom: none;
    padding-top: 14px;
}

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

@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 30px;
    }

    .about-section {
        padding: 70px 0;
    }
}
/* =========================
   EXACT STATS LAYOUT
========================= */

.stats-exact {
    padding: 80px 0;
    background: #ffffff;
}

.stats-exact-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    
}

/* BOX */

.stat-box {
    height: 220px;
    border-radius: 4px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* INNER BORDER */

.stat-box::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 4px;
}

/* ICON */

.stat-icon {
    font-size: 40px;
    margin-bottom: 18px;
    z-index: 1;
}

/* TEXT */

.stat-title {
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    z-index: 1;
}

.stat-number {
    font-size: 28px;
    font-weight: 600;
    z-index: 1;
}

/* COLORS (MATCH IMAGE) */

.stat-box.maroon {
    background: #6b2626;
}

.stat-box.blue {
    background: #0d47a1; /* replaced green */
}

.stat-box.orange {
    background: #ef7f4f;
}


/* =========================
   STAT ICON IMAGE HANDLING
========================= */

.stat-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1); /* makes icon white */
}

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

@media (max-width: 900px) {
    .stats-exact-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
/* =========================
   NEW ARRIVALS (ROOT THEME ONLY)
========================= */

.books-section {
    padding: 90px 0;
    background: linear-gradient(
        180deg,
        var(--white) 0%,
        rgba(13, 71, 161, 0.05) 100%
    );
}

/* =========================
   HEADER
========================= */

.books-header {
    max-width: 1200px;
    margin: auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.books-subtitle {
    font-size: 14px;
    color: var(--text-muted);
}

.books-title {
    font-size: 36px;
    color: var(--primary-blue);
    margin-top: 6px;
}

/* =========================
   DIVIDER
========================= */

.books-divider {
    max-width: 1200px;
    height: 2px;
    background: var(--primary-blue);
    margin: 22px auto 44px;
}

/* =========================
   NAVIGATION BUTTONS
========================= */

.books-nav {
    display: flex;
    gap: 12px;
}

.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    font-size: 22px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.nav-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* =========================
   SLIDER
========================= */

.books-slider-wrapper {
    max-width: 1200px;
    margin: auto;
    padding-left: var(--container-padding);
    overflow: hidden;
}

.books-slider {
    display: flex;
    gap: 28px;
    transition: transform 0.6s ease;
}

/* =========================
   BOOK CARD
========================= */

.book-card {
    min-width: 230px;
    background: var(--white);
    border-radius: 14px;
    padding: 14px;
    border: 1px solid var(--border-light);
}

.book-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

/* =========================
   TEXT CONTENT
========================= */

.book-meta {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.book-name {
    font-size: 16px;
    color: var(--text-dark);
    margin: 6px 0;
    line-height: 1.35;
}

.book-author {
    font-size: 14px;
    color: var(--text-muted);
}

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

@media (max-width: 768px) {
    .books-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .books-slider-wrapper {
        padding-left: 24px;
    }
}
/* =========================
   MEMBERSHIP V3
========================= */

.membership-v3 {
    padding: 110px 0;
    background: linear-gradient(
        180deg,
        var(--white),
        rgba(13, 71, 161, 0.05)
    );
}

/* HEADER */

.membership-header {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
    padding: 0 var(--container-padding);
}

.membership-eyebrow {
    font-size: 13px;
    letter-spacing: 1.2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.membership-header h2 {
    font-size: 38px;
    color: var(--primary-blue);
    margin: 10px 0;
}

.membership-header p {
    font-size: 16px;
    color: var(--text-muted);
}

/* GRID */

.membership-grid {
    max-width: 1100px;
    margin: auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


/* CARD */

.membership-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 34px;
    position: relative;
}

.membership-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.membership-card .tagline {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.membership-card .desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.membership-card .link {
    font-size: 14px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}




/* FEATURED */

.membership-card.featured {
    border: 2px solid var(--primary-blue);
    background: linear-gradient(
        180deg,
        rgba(13, 71, 161, 0.05),
        var(--white)
    );
}

.membership-card .badge {
    position: absolute;
    top: -12px;
    left: 30px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 20px;
}



/* CTA */

/* =========================
   MEMBERSHIP CTA POLISH
========================= */

.membership-cta-panel {
    max-width: 1100px;
    margin: 100px auto 0;
    padding: 40px 50px;
    background: linear-gradient(
        180deg,
        rgba(13, 71, 161, 0.04),
        rgba(13, 71, 161, 0.02)
    );
    border: 1px solid var(--border-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-text h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cta-text p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 520px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* PRIMARY CTA */

.cta-primary {
    padding: 12px 26px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

/* SECONDARY CTA */

.cta-secondary {
    font-size: 15px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .membership-cta-panel {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
    }
}
/* =========================
   MEMBERSHIP V3 RESPONSIVE
========================= */

/* TABLET */
@media (max-width: 1024px) {
    .membership-grid {
        grid-template-columns: 1fr 1fr;
    }

    .membership-card.featured {
        grid-column: span 2;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .membership-v3 {
        padding: 70px 0;
    }

    /* HEADER */
    .membership-header h2 {
        font-size: 28px;
        line-height: 1.25;
    }

    .membership-header p {
        font-size: 15px;
    }

    /* GRID → SINGLE COLUMN */
    .membership-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .membership-card.featured {
        grid-column: auto;
    }

    /* CARD */
    .membership-card {
        padding: 26px;
        border-radius: 16px;
    }

    .membership-card h3 {
        font-size: 18px;
    }

    .membership-card .desc {
        font-size: 14px;
    }

    /* BADGE */
    .membership-card .badge {
        left: 20px;
        font-size: 11px;
        padding: 5px 12px;
    }

    /* CTA PANEL */
    .membership-cta-panel {
        padding: 30px 24px;
        margin-top: 70px;
        gap: 26px;
    }

    .cta-text h3 {
        font-size: 20px;
    }

    .cta-text p {
        font-size: 14px;
    }

    .cta-actions {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .membership-header h2 {
        font-size: 24px;
    }

    .membership-card {
        padding: 22px;
    }
}
/* =========================
   NEWS SECTION
========================= */

.news-section {
    padding: 90px 0;
    background: linear-gradient(
        180deg,
        var(--white),
        rgba(13, 71, 161, 0.04)
    );
}

/* HEADER */

.news-header {
    max-width: 1200px;
    margin: auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-eyebrow {
    font-size: 14px;
    color: var(--text-muted);
}

.news-title {
    font-size: 34px;
    color: var( --primary-blue);
    margin-top: 6px;
}

/* DIVIDER */

.news-divider {
    max-width: 1200px;
    height: 2px;
    background: var(--primary-blue);
    margin: 20px auto 40px;
}

/* NAV */

.news-nav {
    display: flex;
    gap: 12px;
}

.news-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    font-size: 22px;
    cursor: pointer;
}

.news-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* SLIDER */

.news-slider-wrapper {
    max-width: 1200px;
    margin: auto;
    padding-left: var(--container-padding);
    overflow: hidden;
}

.news-slider {
    display: flex;
    gap: 28px;
    transition: transform 0.6s ease;
}

/* CARD */

.news-card {
    min-width: 320px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    padding: 14px;
}

.news-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 12px;
}

/* TEXT */

.news-date {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.news-card-title {
    font-size: 18px;
    color: var(--text-dark);
    margin: 8px 0;
    line-height: 1.35;
}

.news-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .news-slider-wrapper {
        padding-left: 24px;
    }
}

.gallery-section {
    background: #f3f5f8;
    padding: 90px 0;
}

/* HEADER */

.gallery-header {
    text-align: center;
    margin-bottom: 30px;
}

.gallery-eyebrow {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.gallery-header h2 {
    font-size: 34px;
    color: var( --primary-blue);
    margin-top: 6px;
}

/* TABS */

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 22px;
    border: 1px solid var(--border-light);
    background: #fff;
    cursor: pointer;
}

.tab-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

/* BENTO GRID */

.gallery-bento {
    max-width: 1200px;
    margin: auto;
    padding: 0 var(--container-padding);
    display: none;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}

.gallery-bento.active {
    display: grid;
}

.bento-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LARGE TILE */

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

/* FOOTER */

.gallery-footer {
    text-align: center;
    margin-top: 50px;
}

.gallery-footer a {
    font-size: 14px;
    color: var(--primary-blue);
    text-decoration: none;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .gallery-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 500px) {
    .gallery-bento {
        grid-template-columns: 1fr;
    }

    .bento-large {
        grid-column: span 1;
    }
}
/* =========================
   NOTICE SAFE SECTION
========================= */

.notice-safe {
    padding: 60px 0;
    background: #ffffff;
}

/* HEADER */

.notice-header {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0 var(--container-padding);
}

.notice-header h2 {
    font-size: 26px;
    color: var(--primary-blue);
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 10px;
}

/* GRID */

.notice-grid {
    max-width: 1200px;
    margin: auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* BOX */

.notice-box {
    border: 1px solid var(--border-light);
    padding: 20px;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.notice-box h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 6px;
}

/* =========================
   SCROLL AREA
========================= */

.notice-scroll {
    height: 160px;                  /* FIXED HEIGHT */
    overflow: hidden;
    position: relative;
    margin-bottom: 12px;
}

.notice-scroll ul {
    list-style: none;
    padding: 0;
    margin: 0;
    animation: scrollUp 14s linear infinite;
}

/* Pause on hover (important) */
.notice-scroll:hover ul {
    animation-play-state: paused;
}

/* LIST ITEMS */

.notice-box li {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

/* DATE */

.notice-box .date {
    font-weight: 600;
    color: var(--text-dark);
    margin-right: 6px;
}

/* LINKS */

.notice-box a {
    font-size: 14px;
    color: var(--primary-blue);
    text-decoration: none;
    margin-top: auto;
}

/* =========================
   SCROLL ANIMATION
========================= */

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

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

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

    .notice-scroll {
        height: 140px;
    }
}
/* =========================
   BASE
========================= */
.atglance {
    font-family: "Segoe UI", Arial, sans-serif;
    color: #111111;
    background: linear-gradient(
        135deg,
        rgba(13, 71, 161, 0.08) 0%,
        rgba(13, 71, 161, 0.04) 35%,
        #ffffff 100%
    );
}

/* =========================
   BANNER
========================= */
.atglance-banner {
    height: 240px;
     background: url("https://raw.githubusercontent.com/555-Satyajit/library/refs/heads/main/public/images/banner.jpg") center / cover no-repeat;
    position: relative; /* positioning context */
}

/* Overlay */
.atglance-banner-overlay {
    position: relative;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(13, 71, 161, 0.85),
        rgba(13, 71, 161, 0.45)
    );
}

/* Title container – stays centered vertically */
.atglance-banner-content {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    color: #ffffff;
    text-align: center;
    justify-content: center;

}

.atglance-banner-content h1 {
    font-size: 40px;
    margin: 0;
}

/* Back button – ONLY this moves */
.back-home {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: inline-block;
    border: 1px solid #ffffff;
    padding: 8px 16px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.15);
}

/* =========================
   AT A GLANCE DATA
========================= */
.atglance-body {
    background: transparent;
    padding: 70px 24px 90px;
}

.atglance-layout {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 32px;
}

.atglance-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 28px 18px;
    cursor: pointer;
    text-align: center;
    font-size: 15px;
}

.card.active {
    border-color: #0d47a1;
    color: #0d47a1;
    font-weight: 600;
}

/* Detail panel */
.atglance-details {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 28px;
}

.detail {
    display: none;
}

.detail.active {
    display: block;
}

.atglance-details h3 {
    color: #0d47a1;
    margin-bottom: 12px;
}

/* =========================
   ABOUT US – AT A GLANCE
========================= */
.about-glance {
    padding: 90px 24px;
    border-top: 1px solid #e0e0e0;
    background: transparent;
}

.about-layout {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
}

.about-image img {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e0e0e0;
}

.about-text {
    background: #ffffff;
    padding: 32px;
    border: 1px solid #e0e0e0;
}

.eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    color: #555555;
}

.about-text h2 {
    color: #0d47a1;
    margin: 10px 0 20px;
}

.about-text p {
    line-height: 1.7;
    margin-bottom: 14px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .atglance-layout,
    .about-layout {
        grid-template-columns: 1fr;
    }

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

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

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

    .back-home {
        left: 16px;
        bottom: 16px;
    }
}
/* =========================
   FACILITIES SECTION
========================= */
.facilities-section {
    background: linear-gradient(
        135deg,
        rgba(13, 71, 161, 0.06),
        #ffffff
    );
    padding: 90px 24px;
}

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

/* Header */
.facilities-header {
    max-width: 600px;
    margin-bottom: 60px;
}

.facilities-header .eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    color: #555555;
}

.facilities-header h2 {
    font-size: 34px;
    color: #0d47a1;
    margin: 8px 0 12px;
}

.facilities-intro {
    color: #555555;
    line-height: 1.6;
}

/* Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Card */
.facility-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

/* Image */
.facility-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Body */
.facility-body {
    padding: 20px 22px 24px;
}

.facility-body h3 {
    font-size: 18px;
    color: #0d47a1;
    margin-bottom: 8px;
}

.facility-body p {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 12px;
}

.facility-meta {
    font-size: 13px;
    color: #111111;
    border-top: 1px solid #e0e0e0;
    padding-top: 8px;
    display: inline-block;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .facilities-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   IMAGE-ONLY HOVER EFFECT
========================= */

/* Image wrapper */
.facility-image {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Image */
.facility-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Subtle overlay */
.facility-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.12);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hover ONLY affects image */
.facility-card:hover .facility-image img {
    transform: scale(1.05);
}

.facility-card:hover .facility-image::after {
    opacity: 1;
}
/* =========================
   LOCATION & MAPS SECTION
========================= */
.location-section {
    font-family: "Segoe UI", Arial, sans-serif;
    padding: 80px 24px;
    background: linear-gradient(
        135deg,
        rgba(13, 71, 161, 0.08) 0%,
        rgba(13, 71, 161, 0.04) 35%,
        #ffffff 100%
    );
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.section-header {
    max-width: 1200px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.section-header .eyebrow {
    font-size: 14px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.section-header h2 {
    font-size: 32px;
    color: #0d47a1;
    margin-top: 6px;
    font-weight: 600;
}

/* =========================
   BENTO GRID
========================= */
.location-bento {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* FLOOR CARDS */
.floor-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(13, 71, 161, 0.12);
}

.floor-card h3 {
    margin-bottom: 10px;
    color: #0d47a1;
    font-size: 18px;
    font-weight: 600;
}

.floor-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #111;
}

.floor-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 4px solid #0d47a1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    color: #0d47a1;
    background: #ffffff;
}

/* MAP */
.map-card {
    grid-column: span 2;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(13, 71, 161, 0.85);
    color: #ffffff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    z-index: 10;
}

/* IMAGES */
.image-large {
    grid-column: span 2;
    border-radius: 8px;
    overflow: hidden;
    min-height: 240px;
}

.image-large img,
.image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.image-large:hover img,
.image-small:hover img {
    transform: scale(1.05);
}

.image-small {
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
}

/* INFO CARDS */
.info-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(13, 71, 161, 0.12);
}

.info-card h4 {
    color: #0d47a1;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.info-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #111;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .location-section {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .location-bento {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .map-card {
        grid-column: span 2;
        min-height: 280px;
    }

    .image-large {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .location-section {
        padding: 40px 16px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .location-bento {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .map-card,
    .image-large {
        grid-column: span 1;
        min-height: 250px;
    }

    .floor-card,
    .info-card {
        padding: 20px;
    }

    .floor-badge {
        width: 36px;
        height: 36px;
        font-size: 14px;
        border-width: 3px;
    }
}
/* =========================
   MEMBERS SECTION
========================= */

.members-section {
    font-family: "Segoe UI", Arial, sans-serif;
    padding: 80px 24px;
    background: linear-gradient(
        135deg,
        rgba(13, 71, 161, 0.06),
        #ffffff
    );
}

/* HEADER */
.members-header {
    max-width: 1200px;
    margin: 0 auto 40px;
}

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

.members-header h2 {
    font-size: 32px;
    color: #0d47a1;
    margin-top: 6px;
}

/* =========================
   COUNCIL GRID
========================= */

.council-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.member-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e0e0e0;
}

.member-image {
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.member-card:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 16px 18px 22px;
}

.member-info h4 {
    color: #0d47a1;
    margin-bottom: 6px;
}

.member-info p {
    font-size: 14px;
    color: #555;
}

/* SHARE BUTTON */
.share-btn {
    position: absolute;
    right: 16px;
    bottom: 16px;
    background: #0d47a1;
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

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

.table-wrapper {
    max-width: 1200px;
    margin: auto;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    overflow-x: auto;
}

.members-table {
    width: 100%;
    border-collapse: collapse;
}

.members-table thead {
    background: #0d47a1;
    color: #ffffff;
}

.members-table th,
.members-table td {
    padding: 14px;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
    font-size: 14px;
}

.members-table img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 4px;
}

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

@media (max-width: 992px) {
    .council-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .council-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   SOCIAL ICON TOGGLE
========================= */

.member-image {
    position: relative;
    overflow: hidden;
}

/* Social icons container */
.social-icons {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;

    opacity: 0;
    transform: translateX(10px);
    pointer-events: none;

    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Individual icon */
.social-icons a {
    width: 36px;
    height: 36px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #0d47a1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* ACTIVE STATE */
.member-card.show-socials .social-icons {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}


/* =========================
   RULES & ACT SECTION
========================= */
.rules-docs-section {
            padding: 90px 24px;
            font-family: "Segoe UI", Arial, sans-serif;
            color: #111111;
            background:
                linear-gradient(
                    135deg,
                    rgba(13, 71, 161, 0.06) 0%,
                    rgba(13, 71, 161, 0.03) 35%,
                    #ffffff 100%
                );
        }

        .rules-docs-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Header */
        .rules-docs-eyebrow {
            font-size: 13px;
            text-transform: uppercase;
            color: #555555;
            letter-spacing: 0.5px;
        }

        .rules-docs-title {
            font-size: 28px;
            font-weight: 700;
            color: #0d47a1;
            margin: 6px 0 14px;
        }

        .rules-docs-intro {
            max-width: 850px;
            font-size: 15px;
            line-height: 1.7;
            color: #555555;
            margin-bottom: 40px;
        }

        /* Grid */
       .rules-docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    justify-items: center;   /* KEY FIX */
}
.rules-doc-card {
    max-width: 420px;        /* prevents over-stretch */
    width: 100%;
}


        /* Card - Enhanced Design */
        .rules-doc-card {
            border: 1px solid #e8e8e8;
            background: #ffffff;
            padding: 28px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .rules-doc-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #0d47a1 0%, #1976d2 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .rules-doc-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(13, 71, 161, 0.12);
            border-color: #d0d0d0;
        }

        .rules-doc-card:hover::before {
            transform: scaleX(1);
        }

        /* Title */
        .doc-title {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #1a1a1a;
            line-height: 1.4;
        }

        /* Description */
        .doc-desc {
            font-size: 14.5px;
            line-height: 1.65;
            color: #666666;
            margin-bottom: 18px;
            flex-grow: 1;
        }

        /* Meta */
        .doc-meta {
            font-size: 13px;
            color: #777777;
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            padding: 14px;
            background: #f8f9fa;
            border-radius: 6px;
            border-left: 3px solid #0d47a1;
        }

        .doc-meta span {
            display: flex;
            align-items: center;
        }

        .doc-meta strong {
            color: #333333;
            min-width: 85px;
        }

        /* Actions */
        .doc-actions {
            display: flex;
            gap: 10px;
        }

        .doc-btn {
            flex: 1;
            padding: 11px 16px;
            border: 2px solid #0d47a1;
            color: #0d47a1;
            text-decoration: none;
            font-size: 13.5px;
            font-weight: 600;
            background: #ffffff;
            border-radius: 6px;
            text-align: center;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .doc-btn:hover {
            background: #0d47a1;
            color: #ffffff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(13, 71, 161, 0.2);
        }

        .doc-btn.secondary {
            border-color: #d0d0d0;
            color: #444444;
            background: #f8f9fa;
        }

        .doc-btn.secondary:hover {
            border-color: #0d47a1;
            background: #f0f4f8;
            color: #0d47a1;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .rules-docs-title {
                font-size: 24px;
            }

            .rules-docs-section {
                padding: 60px 20px;
            }

            .rules-doc-card {
                padding: 24px;
            }

            .doc-actions {
                flex-direction: column;
            }
        }
/* =========================
   DIVISION SECTION
========================= */

.org-section {
    padding: 90px 24px;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #111111;

    /* Subtle institutional background */
    background:
        linear-gradient(
            135deg,
            rgba(13, 71, 161, 0.06) 0%,
            rgba(13, 71, 161, 0.03) 35%,
            #ffffff 100%
        ),
        radial-gradient(
            rgba(13, 71, 161, 0.12) 1px,
            transparent 1px
        );

    background-size:
        100% 100%,
        32px 32px;

    background-position:
        center,
        top left;
}

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

/* =========================
   TYPOGRAPHY
========================= */

.org-eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    color: #555555;
    margin-bottom: 6px;
    display: block;
}

.org-title {
    font-size: 26px;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 16px;
}

.org-intro {
    max-width: 820px;
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 50px;
}

/* =========================
   BLOCKS
========================= */

.org-block {
    margin-bottom: 48px;
    padding: 28px 28px 32px;
    border: 1px solid #e0e0e0;
    border-left: 4px solid #0d47a1;
    background: #ffffff;
}

.org-block-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #111111;
}

/* =========================
   ACCORDION
========================= */

.accordion {
    border: none;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    background: #f9fafc;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.accordion-header:hover {
    background: #f3f6fb;
}

.accordion-body {
    display: none;
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.7;
    color: #555555;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

/* =========================
   READER SERVICES CTA
========================= */

.org-note {
    font-size: 14.5px;
    color: #555555;
    margin-bottom: 14px;
}

.org-button {
    display: inline-block;
    margin-top: 6px;
    padding: 12px 18px;
    border: 1px solid #0d47a1;
    color: #0d47a1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    background: #ffffff;
}

.org-button:hover {
    background: rgba(13, 71, 161, 0.04);
}

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

@media (max-width: 768px) {
    .org-title {
        font-size: 22px;
    }

    .org-block {
        padding: 22px 20px 26px;
    }
}
/* ===============================
   MEMBERSHIP PAGE (REUSABLE)
================================ */

.membership-page {
    background: linear-gradient(
        135deg,
        rgba(13, 71, 161, 0.08) 0%,
        rgba(13, 71, 161, 0.04) 35%,
        #ffffff 100%
    );
    padding: 60px 0;
}

.membership-container {
    max-width: 1150px;
    margin: auto;
    padding: 0 30px;
}

/* HERO */

.membership-hero {
    margin-bottom: 60px;
}

.membership-eyebrow {
    font-size: 13px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: block;
}

.membership-title {
    font-size: 36px;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 14px;
}

.membership-description {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    line-height: 1.6;
}

/* DETAILS */

.membership-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.membership-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 1px solid #e0e0e0;
}

.membership-text p {
    font-size: 15px;
    color: #111;
    line-height: 1.7;
    margin-bottom: 16px;
}

.membership-section-title {
    font-size: 28px;
    font-weight: 600;
    color: #0d47a1;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #0d47a1;
}

.membership-section-title.center {
    text-align: center;
}

.membership-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #0d47a1;
    margin: 24px 0 16px;
}

/* BENEFITS */

.membership-benefits {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.membership-benefits li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
}

.membership-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #0d47a1;
}

/* PRICING */
.membership-pricing {
    background: #f5f5f5;
    padding: 40px;
    border: 1px solid #e0e0e0;
    margin-bottom: 60px;
}

.membership-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.membership-table th,
.membership-table td {
    padding: 16px 20px;
    border: 1px solid #e0e0e0;
    font-size: 15px;
}

.membership-table thead {
    background: #0d47a1;
    color: #fff;
}

.membership-table td:nth-child(2) {
    font-weight: 600;
    color: #0d47a1;
}

.membership-note {
    margin-top: 16px;
    font-size: 14px;
    color: #555;
    font-style: italic;
}

/* DOWNLOAD */
.membership-download {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 40px;
    text-align: center;
}

.membership-download-title {
    font-size: 20px;
    margin-bottom: 20px;
}

.membership-download-btn {
    display: inline-block;
    background: #0d47a1;
    color: #fff;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.membership-download-btn:hover {
    background: #083d8a;
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .membership-details {
        grid-template-columns: 1fr;
    }
    .membership-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .membership-title {
        font-size: 28px;
    }
    .membership-section-title {
        font-size: 24px;
    }
    .membership-image {
        height: 350px;
    }
    
    /* Make table responsive - Card layout on mobile */
    .membership-table thead {
        display: none;
    }
    
    .membership-table,
    .membership-table tbody,
    .membership-table tr,
    .membership-table td {
        display: block;
        width: 100%;
    }
    
    .membership-table tr {
        margin-bottom: 20px;
        border: 2px solid #0d47a1;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .membership-table td {
        text-align: left;
        padding: 12px 16px;
        position: relative;
        border: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .membership-table td:last-child {
        border-bottom: none;
    }
    
    .membership-table td:before {
        content: attr(data-label);
        font-weight: 700;
        color: #0d47a1;
        display: block;
        margin-bottom: 6px;
        text-transform: uppercase;
        font-size: 12px;
    }
    
    .membership-table td:nth-child(2) {
        background: #f8f9fa;
    }
}

@media (max-width: 480px) {
    .membership-title {
        font-size: 24px;
    }
    .membership-image {
        height: 280px;
    }
    .membership-download-btn {
        width: 100%;
        padding: 12px 20px;
    }
    
    .membership-pricing {
        padding: 20px;
    }
    
    .membership-table td {
        padding: 10px 14px;
        font-size: 14px;
    }
}


/* ===============================
   MEMBERS PAGE (GALLERY)
================================ */

.members-page {
    background: linear-gradient(
        135deg,
        rgba(13, 71, 161, 0.08) 0%,
        rgba(13, 71, 161, 0.04) 35%,
        #ffffff 100%
    );
    padding: 60px 0;
}

.members-container {
    max-width: 1150px;
    margin: auto;
    padding: 0 30px;
}

/* HERO */

.members-hero {
    margin-bottom: 60px;
}

.members-eyebrow {
    font-size: 13px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 10px;
}

.members-title {
    font-size: 36px;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 14px;
}

.members-description {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    line-height: 1.6;
}

/* GRID */

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

/* CARD */

.members-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.members-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(13, 71, 161, 0.15);
}

.members-image-wrap {
    height: 320px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.members-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.members-card:hover img {
    transform: scale(1.05);
}

/* OVERLAY */

.members-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 20px;
    background: linear-gradient(
        to top,
        rgba(13, 71, 161, 0.85),
        rgba(13, 71, 161, 0.3),
        transparent
    );
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.members-card:hover .members-overlay {
    opacity: 1;
}

/* INFO */

.members-info {
    padding: 20px;
}

.members-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.members-info p {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

.members-info span {
    font-size: 13px;
    color: #0d47a1;
    font-weight: 600;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .members-title {
        font-size: 28px;
    }

    .members-image-wrap {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .members-title {
        font-size: 24px;
    }

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

    .members-image-wrap {
        height: 320px;
    }
}
/* ===============================
   READERS SERVICE PAGE
================================ */

.readers-page {
    width: 100%;
}

/* CONTAINER */
.readers-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 30px;
}

/* HERO */
.readers-hero {
    padding: 60px 0 50px;
}

.readers-eyebrow {
    font-size: 13px;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.readers-title {
    font-size: 36px;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 14px;
}

.readers-description {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    line-height: 1.6;
}

/* CONTENT */
.readers-content {
    padding: 60px 0;
}

.readers-section {
    margin-bottom: 60px;
}

.readers-section-title {
    font-size: 32px;
    font-weight: 600;
    color: #0d47a1;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #0d47a1;
}

.readers-intro {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* DIVISIONS */
.readers-divisions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.readers-division {
    border: 1px solid #e0e0e0;
    background: #fff;
}

.readers-division-head {
    background: #0d47a1;
    padding: 20px 24px;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
}

.readers-division-body {
    padding: 24px;
    font-size: 15px;
    line-height: 1.6;
}

/* DETAILS */
.readers-detail {
    border: 1px solid #e0e0e0;
    background: #fff;
    padding: 40px;
    margin-bottom: 32px;
}

.readers-subtitle {
    font-size: 24px;
    color: #0d47a1;
    margin-bottom: 24px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.readers-detail p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* COLLECTION BOX */
.readers-collection {
    background: rgba(13, 71, 161, 0.04);
    border-left: 4px solid #0d47a1;
    padding: 20px 24px;
    margin-bottom: 20px;
}

.readers-collection h5 {
    font-size: 16px;
    color: #0d47a1;
    margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .readers-title {
        font-size: 30px;
    }

    .readers-section-title {
        font-size: 26px;
    }

    .readers-detail {
        padding: 24px 20px;
    }
}
/* ===============================
   MAGAZINE SECTION (SCOPED)
================================ */

.magazine-section {
    /* Local variables ONLY */
    --mag-primary: #0d47a1;
    --mag-light-bg: #f4f7fb;
    --mag-border: #e0e0e0;
    --mag-text-dark: #111;
    --mag-text-muted: #555;

    padding: 70px 0;
    background: var(--mag-light-bg);
    font-family: "Segoe UI", Arial, sans-serif;
}

/* CONTAINER */
.magazine-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}

/* HEADER */
.magazine-header {
    margin-bottom: 20px;
}

.magazine-tag {
    font-size: 13px;
    color: var(--mag-text-muted);
}

.magazine-title {
    font-size: 28px;
    color: var(--mag-primary);
    margin: 4px 0 0;
}

/* LANGUAGE TOGGLE */
.magazine-toggle {
    display: flex;
    gap: 12px;
    margin: 20px 0 30px;
}

.magazine-toggle-btn {
    padding: 8px 18px;
    border-radius: 6px;
    border: 1px solid var(--mag-border);
    background: #ffffff;
    cursor: pointer;
    font-size: 14px;
}

.magazine-toggle-btn.active {
    background: var(--mag-primary);
    color: #ffffff;
    border-color: var(--mag-primary);
}

/* TABLE WRAPPER */
.magazine-table-wrapper {
    background: #ffffff;
    border-radius: 10px;
    overflow-x: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* TABLE */
.magazine-table {
    width: 100%;
    border-collapse: collapse;
}

.magazine-table th {
    background: var(--mag-primary);
    color: #ffffff;
    padding: 14px;
    text-align: left;
    font-weight: 600;
}

.magazine-table td {
    padding: 14px;
    border-bottom: 1px solid var(--mag-border);
}

.magazine-table tr:last-child td {
    border-bottom: none;
}

/* STATES */
.magazine-status-yes {
    color: green;
    font-weight: bold;
}

.magazine-status-no {
    color: red;
    font-weight: bold;
}

.magazine-view {
    cursor: pointer;
    color: var(--mag-primary);
}

/* LANGUAGE TABLE SWITCH */
.magazine-lang-table {
    display: none;
}

.magazine-lang-table.active {
    display: table;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .magazine-title {
        font-size: 22px;
    }
}
/* ===============================
   MAGAZINE PAGINATION (SCOPED)
================================ */

.magazine-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.magazine-pagination button {
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid #d0d0d0;
    background: #ffffff;
    color: #333333;
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.magazine-pagination button:hover {
    background: var(--mag-primary);
    color: #ffffff;
    border-color: var(--mag-primary);
}

.magazine-pagination button.active {
    background: var(--mag-primary);
    color: #ffffff;
    border-color: var(--mag-primary);
    font-weight: 600;
}

.magazine-pagination button:focus {
    outline: none;
}

/* MOBILE */
@media (max-width: 480px) {
    .magazine-pagination {
        gap: 6px;
    }

    .magazine-pagination button {
        min-width: 32px;
        height: 32px;
        font-size: 12px;
    }
}


/* SECTION */
.video-gallery {
    padding: 80px 0;
    background: linear-gradient(
        135deg,
        rgba(13,71,161,0.05),
        #ffffff
    );
    font-family: "Segoe UI", Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}

/* HEADER */
.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.gallery-header h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin: 6px 0;
}

.gallery-header p {
    color: var(--text-muted);
    max-width: 700px;
    margin: auto;
}

/* GRID */
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

/* CARD */
.video-item {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

/* THUMB */
.video-thumb {
    position: relative;
}

.video-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* PLAY ICON */
.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: #ffffff;
    background: rgba(13,71,161,0.45);
}

/* INFO */
.video-info {
    padding: 18px 20px 22px;
}

.video-info h3 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 8px;
}

.video-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

/* LINK */
.video-link {
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* IMAGE SUCESS STORY SECTION */
.success-stories {
    padding: 80px 0;
    background: linear-gradient(
        135deg,
        rgba(13,71,161,0.06),
        #ffffff
    );
    font-family: "Segoe UI", Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}

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

.section-tag {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.section-header h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin: 6px 0;
}

.section-header p {
    color: var(--text-muted);
    max-width: 700px;
    margin: auto;
}

/* GRID */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

/* CARD */
.story-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

/* IMAGE */
.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

/* DATE BADGE */
.date-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--primary);
    color: #ffffff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 6px;
}

/* CONTENT */
.story-content {
    padding: 18px 18px 22px;
}

.story-content h3 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 10px;
}

.story-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* BUTTON */
.btn-view {
    display: inline-block;
    padding: 8px 14px;
    background: var(--primary);
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    border-radius: 6px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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


/* TENDER SECTION */

.tender-section {
    padding: 70px 0;
    background: linear-gradient(
        135deg,
        rgba(13,71,161,0.05),
        #ffffff
    );
    font-family: "Segoe UI", Arial, sans-serif;
}

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

/* HEADER */
.tender-header {
    margin-bottom: 24px;
}

.section-tag {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.tender-header h2 {
    font-size: 30px;
    color: var(--primary-blue);
    margin-top: 6px;
}

/* TABLE WRAPPER */
.tender-table-wrapper {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    overflow-x: auto;
}

/* TABLE */
.tender-table {
    width: 100%;
    border-collapse: collapse;
}

.tender-table thead th {
    background: var(--primary-blue);
    color: #ffffff;
    padding: 14px 16px;
    text-align: left;
    font-size: 14px;
}

.tender-table tbody td {
    padding: 16px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-dark);
    vertical-align: top;
}

/* DOWNLOAD BUTTON */
.download-btn {
    display: inline-block;
    padding: 8px 14px;
    background: var(--primary-blue);
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    border-radius: 6px;
    white-space: nowrap;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .tender-header h2 {
        font-size: 24px;
    }
}


/* NOTICE SECTION */
.notice-section {
    padding: 80px 0;
    background: linear-gradient(
        135deg,
        rgba(13,71,161,0.05),
        #ffffff
    );
    font-family: "Segoe UI", Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}

/* HEADER */
.notice-header {
    margin-bottom: 40px;
}

.section-tag {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.notice-header h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-top: 6px;
}

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

/* CARD */
.notice-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

/* IMAGE */
.notice-image {
    position: relative;
}

.notice-image img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

/* DATE BADGE */
.date-badge {
    position: absolute;
    left: 12px;
    background: var(--primary-blue);
    color: #ffffff;
    border-radius: 8px;
    padding: 8px 10px;
    text-align: center;
    font-weight: 600;
}

.date-badge .day {
    display: block;
    font-size: 18px;
    line-height: 1;
}

.date-badge .month {
    display: block;
    font-size: 12px;
    margin-top: 2px;
}

/* CONTENT */
.notice-content {
    padding: 20px 20px 24px;
    background: var(--bg-soft);
    flex-grow: 1;
}

.notice-content h3 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 10px;
}

.notice-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* LINK */
.view-link {
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .notice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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


/*EVENT IN NOTICE SECTION */
.events-section {
    padding: 80px 0;
    background: #ffffff;
    font-family: "Segoe UI", Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}

/* HEADER */
.events-header {
    margin-bottom: 40px;
}

.section-tag {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.events-header h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-top: 6px;
}

/* LAYOUT */
.events-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* MAIN EVENTS */
.events-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

/* EVENT CARD */
.event-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

.event-image {
    position: relative;
}

.event-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.date-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--primary-blue);
    color: #ffffff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 6px;
}

/* CONTENT */
.event-content {
    padding: 20px 22px 24px;
}

.event-content h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
}

.event-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

/* SIDEBAR */
.events-sidebar {
    background: var(--bg-soft);
    border-radius: 14px;
    padding: 22px;
}

.events-sidebar h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 16px;
}

/* UPCOMING */
.upcoming-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.upcoming-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.upcoming-item img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
}

.upcoming-date {
    font-size: 12px;
    color: var(--text-muted);
}

.upcoming-item p {
    font-size: 14px;
    color: var(--text-dark);
    margin: 4px 0 0;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .events-layout {
        grid-template-columns: 1fr;
    }
    .events-main {
        grid-template-columns: 1fr;
    }
}
.skbb-section {
    padding: 90px 24px;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #111111;
    position: relative;
    overflow: hidden;
    /* Enhanced layered background with institutional patterns */
    background:
        /* Subtle diagonal lines pattern */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(13, 71, 161, 0.02) 40px,
            rgba(13, 71, 161, 0.02) 80px
        ),
        /* Cross-hatch pattern */
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 40px,
            rgba(13, 71, 161, 0.02) 40px,
            rgba(13, 71, 161, 0.02) 80px
        ),
        /* Institutional dot grid */
        radial-gradient(
            circle,
            rgba(13, 71, 161, 0.12) 1.5px,
            transparent 1.5px
        ),
        /* Main gradient overlay */
        linear-gradient(
            135deg,
            rgba(13, 71, 161, 0.06) 0%,
            rgba(13, 71, 161, 0.03) 30%,
            #ffffff 70%,
            rgba(13, 71, 161, 0.02) 100%
        );
    background-size:
        80px 80px,
        80px 80px,
        24px 24px,
        100% 100%;
    background-position:
        0 0,
        0 0,
        0 0,
        center;
}

.skbb-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header Section - Enhanced */
.skbb-eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    color: #0d47a1;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: inline-block;
    padding-bottom: 4px;
    border-bottom: 2px solid rgba(13, 71, 161, 0.3);
}

.skbb-title {
    font-size: 32px;
    font-weight: 700;
    color: #0d47a1;
    margin: 12px 0 18px;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(13, 71, 161, 0.1);
}

.skbb-intro {
    max-width: 850px;
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-left: 4px solid #0d47a1;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Book Layout - Enhanced */
.skbb-book {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    margin: 60px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(13, 71, 161, 0.15);
    border-radius: 4px;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(13, 71, 161, 0.08);
}

.skbb-book-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0d47a1;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(13, 71, 161, 0.2);
}

.skbb-book-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 16px;
}

.skbb-book-image {
    position: relative;
}

.skbb-book-image img {
    width: 100%;
    border: 2px solid #e0e0e0;
    border-radius: 2px;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(13, 71, 161, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skbb-book-image img:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(13, 71, 161, 0.1);
}

.image-caption {
    display: block;
    font-size: 12.5px;
    color: #555555;
    margin-top: 10px;
    font-style: italic;
    padding-left: 8px;
    border-left: 2px solid rgba(13, 71, 161, 0.3);
}

/* Info Grid - Enhanced */
.skbb-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 70px;
}

.skbb-info-block {
    border: 1px solid rgba(13, 71, 161, 0.15);
    padding: 28px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skbb-info-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #0d47a1;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.skbb-info-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(13, 71, 161, 0.3);
}

.skbb-info-block:hover::before {
    transform: scaleY(1);
}

.skbb-info-block h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0d47a1;
}

.skbb-info-block p {
    font-size: 14px;
    line-height: 1.7;
    color: #555555;
}

/* Table Section - Enhanced */
.skbb-table-section {
    margin-bottom: 70px;
}

.skbb-section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0d47a1;
    padding-bottom: 10px;
    border-bottom: 3px solid rgba(13, 71, 161, 0.2);
}

.table-wrapper {
    border: 1px solid rgba(13, 71, 161, 0.15);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.95);
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
    color: #ffffff;
}

th {
    padding: 16px 14px;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

td {
    padding: 16px 14px;
    font-size: 14px;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
}

tbody tr {
    transition: background 0.2s ease;
}

tbody tr:hover {
    background: rgba(13, 71, 161, 0.04);
}

tbody tr:last-child td {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 900px) {
    .skbb-section {
        padding: 60px 20px;
    }
    
    .skbb-title {
        font-size: 26px;
    }
    
    .skbb-book {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 28px;
    }
    
    .skbb-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .table-wrapper {
        overflow-x: auto;
    }
}

@media (max-width: 600px) {
    .skbb-section {
        padding: 40px 16px;
    }
    
    .skbb-title {
        font-size: 24px;
    }
    
    .skbb-book {
        padding: 20px;
    }
}
/* ===============================
   CONTACT PAGE (ISOLATED)
================================ */

.contactx-page {
    padding: 70px 0;
    background: linear-gradient(
        135deg,
        rgba(13, 71, 161, 0.08) 0%,
        rgba(13, 71, 161, 0.04) 35%,
        #ffffff 100%
    );
    font-family: "Segoe UI", Arial, sans-serif;
}

/* CONTAINER */
.contactx-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}

/* HEADER */
.contactx-header {
    text-align: center;
    margin-bottom: 50px;
}

.contactx-header h1 {
    font-size: 32px;
    color: #0d47a1;
    margin-bottom: 8px;
}

.contactx-header p {
    color: #555555;
}

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

/* INFO CARD */
.contactx-card {
    background: #cfe8ff;
    border-radius: 18px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ITEM */
.contactx-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.contactx-item:last-child {
    margin-bottom: 0;
}

.contactx-item p {
    margin: 0;
    color: #111111;
    line-height: 1.5;
}

/* ICON */
.contactx-icon {
    width: 46px;
    height: 46px;
    background: #0d47a1;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* MAP */
.contactx-map {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.contactx-map iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contactx-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   PUBLICATION SECTION
========================= */

.publication-section {
    padding: 90px 24px;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #111111;

    background:
        linear-gradient(
            135deg,
            rgba(13, 71, 161, 0.06) 0%,
            rgba(13, 71, 161, 0.03) 35%,
            #ffffff 100%
        );
         position: relative;  /* ADD THIS */
    z-index: 1; 
}

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

/* Header */
.publication-eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    color: #555555;
}

.publication-title {
    font-size: 28px;
    font-weight: 700;
    color: #0d47a1;
    margin: 6px 0 14px;
}

.publication-intro {
    max-width: 850px;
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 36px;
}

/* Categories */
.publication-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.publication-categories button {
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    font-size: 13.5px;
    cursor: pointer;
}

.publication-categories button.active {
    border-color: #0d47a1;
    color: #0d47a1;
    font-weight: 600;
}

/* Table */
.publication-table-wrapper {
    border: 1px solid #e0e0e0;
    overflow-x: auto;
    background: #ffffff;
}

.publication-table {
    width: 100%;
    border-collapse: collapse;
}

.publication-table thead {
    background: #0d47a1;
    color: #ffffff;
}

.publication-table th,
.publication-table td {
    padding: 14px 12px;
    font-size: 14px;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
}

.publication-table tbody tr:hover {
    background: #f9fafc;
}

/* Responsive */
@media (max-width: 900px) {
    .publication-title {
        font-size: 24px;
    }
}
/*VIDEO SUCESS STORIES SECTION */
.video-success-section {
    padding: 80px 0;
    background: linear-gradient(
        135deg,
        rgba(13,71,161,0.06),
        #ffffff
    );
    font-family: "Segoe UI", Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}

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

.section-tag {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.section-header h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin: 6px 0;
}

.section-header p {
    color: var(--text-muted);
    max-width: 720px;
    margin: auto;
}

/* GRID */
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

/* CARD */
.video-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

/* THUMBNAIL */
.video-thumb {
    position: relative;
}

.video-thumb img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

/* PLAY ICON */
.play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: #ffffff;
    background: rgba(13,71,161,0.45);
}

/* /VIDEO SUCESS STORY CONTENT */
.video-content {
    padding: 18px 18px 22px;
}

.video-content h3 {
    font-size: 16px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.video-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* BUTTON */
.btn-play {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-blue);
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    border-radius: 6px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}
/* ===============================
   LIBRARIES SECTION (AT A GLANCE 2ND SECTION)
================================ */

.libsx-section {
    padding: 80px 0;
    background: linear-gradient(
        135deg,
        rgba(13, 71, 161, 0.04),
        #ffffff
    );
    font-family: "Segoe UI", Arial, sans-serif;
}

/* CONTAINER */
.libsx-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}

/* HEADER */
.libsx-header {
    margin-bottom: 50px;
}

.libsx-tag {
    font-size: 13px;
    color: #555555;
    text-transform: uppercase;
}

.libsx-header h2 {
    font-size: 32px;
    color: #0d47a1;
    margin-top: 6px;
}

.libsx-header p {
    color: #555555;
}

/* GRID */
.libsx-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* COLUMN */
.libsx-column {
    background: #f7f9fd;
    padding: 28px 28px 32px;
    border-radius: 14px;
    border-left: 4px solid #0d47a1;
}

/* TITLE */
.libsx-title {
    font-size: 22px;
    color: #0d47a1;
    margin-bottom: 18px;
}

/* ACCORDION */
.libsx-accordion {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

/* ITEM */
.libsx-item + .libsx-item {
    border-top: 1px solid #e0e0e0;
}

/* HEADER BUTTON */
.libsx-header-btn {
    width: 100%;
    background: #ffffff;
    border: none;
    padding: 16px 18px;
    font-size: 15px;
    font-weight: 600;
    color: #111111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

/* ICON */
.libsx-icon {
    font-size: 20px;
    color: #0d47a1;
    transition: transform 0.2s ease;
}

/* BODY */
.libsx-body {
    display: none;
    padding: 16px 18px 20px;
    background: #f9fbff;
}

.libsx-body p,
.libsx-body li {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
}

.libsx-body ul {
    padding-left: 18px;
}

/* ACTIVE */
.libsx-item.active .libsx-body {
    display: block;
}

.libsx-item.active .libsx-icon {
    transform: rotate(45deg);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .libsx-grid {
        grid-template-columns: 1fr;
    }
}
/* PAGINATION */
.magazine-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}