
        /* ─── DESIGN TOKENS ──────────────────────────────────────── */
        :root {
            --navy: #0b1f45;
            --navy-mid: #153068;
            --blue: #1a56c4;
            --blue-lt: #e8f0fc;
            --gold: #c8973a;
            --gold-lt: #fdf3e0;
            --orange: #e05c0a;
            --orange-lt: #fff3ec;
            --white: #ffffff;
            --off: #f7f9fc;
            --g100: #eef2f8;
            --g200: #dde3ef;
            --g400: #8fa0bb;
            --g600: #4a5f7a;
            --g800: #1e2c3d;
            --green: #16a34a;
            --green-lt: #dcfce7;
            --shadow: 0 4px 24px rgba(11, 31, 69, .10);
            --shadow-lg: 0 8px 40px rgba(11, 31, 69, .16);
            --r: 10px;
            --font-d: 'Cormorant Garamond', Georgia, serif;
            --font-b: 'Outfit', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-b);
            color: var(--g800);
            background: var(--off);
            overflow-x: hidden;
        }

      

        /* ─── UTILITY ────────────────────────────────────────────── */
        .wrap {
            max-width: 1340px;
            margin: 0 auto;
            padding: 0 28px;
        }

        .sec {
            padding: 72px 0;
        }

        .sec-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 8px;
        }

        .sec-title {
            font-family: var(--font-d);
            font-size: clamp(26px, 3vw, 36px);
            font-weight: 700;
            color: var(--navy);
            line-height: 1.2;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 3px 9px;
            border-radius: 20px;
            font-size: 10.5px;
            font-weight: 700;
            letter-spacing: .03em;
        }

        .b-new {
            background: var(--green-lt);
            color: var(--green);
        }

        .b-imp {
            background: #fee2e2;
            color: #991b1b;
        }

        .b-stu {
            background: var(--blue-lt);
            color: var(--blue);
        }

        .b-mem {
            background: #fef3c7;
            color: #92400e;
        }

        .b-gen {
            background: #f3e8ff;
            color: #6b21a8;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 10px 22px;
            border-radius: 8px;
            font-family: var(--font-b);
            font-size: 13.5px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all .2s;
        }

        .btn-primary {
            background: var(--blue);
            color: #fff;
        }

        .btn-primary:hover {
            background: var(--navy);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(26, 86, 196, .3);
        }

        .btn-outline {
            background: transparent;
            color: var(--blue);
            border: 2px solid var(--blue);
        }

        .btn-outline:hover {
            background: var(--blue);
            color: #fff;
        }

        .btn-navy {
            background: var(--navy);
            color: #fff;
        }

        .btn-navy:hover {
            background: var(--navy-mid);
            transform: translateY(-1px);
        }

        .btn-sm {
            padding: 8px 16px;
            font-size: 12.5px;
        }

        .btn-ghost-white {
            background: rgba(255, 255, 255, .12);
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, .3);
        }

        .btn-ghost-white:hover {
            background: rgba(255, 255, 255, .22);
        }

        /* ═══════════════════════════════════════════════════════
   1. UTILITY STRIP
═══════════════════════════════════════════════════════ */
        .util-strip {
            background: var(--navy);
            padding: 6px 0;
            border-bottom: 1px solid rgba(255, 255, 255, .07);
        }

        .util-strip .wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
        }

        .util-left {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
        }

        .util-left a {
            font-size: 11.5px;
            color: rgba(255, 255, 255, .6);
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color .18s;
        }

        .util-left a:hover {
            color: var(--gold);
        }

        .util-left .sep {
            width: 1px;
            height: 12px;
            background: rgba(255, 255, 255, .15);
        }

        .util-right {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .util-btn {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 11.5px;
            font-weight: 500;
            cursor: pointer;
            transition: all .18s;
        }

        .util-btn-ghost {
            color: rgba(255, 255, 255, .65);
            border: 1px solid rgba(255, 255, 255, .15);
            background: transparent;
        }

        .util-btn-ghost:hover {
            color: #fff;
            border-color: rgba(255, 255, 255, .35);
        }

        .util-btn-gold {
            background: var(--gold);
            color: var(--navy);
            font-weight: 700;
            border: 1px solid var(--gold);
        }

        .util-btn-gold:hover {
            background: #dba73f;
        }

        /* ═══════════════════════════════════════════════════════
   2. MAIN HEADER
═══════════════════════════════════════════════════════ */
       

        .main-header .wrap {
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 20px;
            height: 76px;
        }

        /* Logo */
       

        .logo-sub {
            font-size: 10px;
            color: var(--g600);
            font-weight: 500;
            display: block;
            margin-top: 2px;
            max-width: 220px;
            line-height: 1.35;
        }

        .logo-tag {
            display: inline-block;
            margin-top: 4px;
            font-size: 9px;
            font-weight: 700;
            color: var(--gold);
            background: var(--gold-lt);
            border: 1px solid #f0d9a0;
            border-radius: 3px;
            padding: 1px 6px;
            letter-spacing: .06em;
        }

        /* Primary Nav */
        .primary-nav {
            display: flex;
            justify-content: center;
        }

        .nav-list {
            list-style: none;
            display: flex;
            align-items: stretch;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 0 14px;
            height: 76px;
            font-size: 13.5px;
            font-weight: 500;
            color: var(--g800);
            white-space: nowrap;
            position: relative;
            transition: color .18s;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 14px;
            right: 14px;
            height: 3px;
            background: var(--blue);
            border-radius: 3px 3px 0 0;
            transform: scaleX(0);
            transition: transform .22s;
            margin-bottom: -3px;
        }

        .nav-item:hover>.nav-link {
            color: var(--blue);
        }

        .nav-item:hover>.nav-link::after {
            transform: scaleX(1);
        }

        .nav-link .chev {
            font-size: 9px;
            color: var(--g400);
            transition: transform .2s;
        }

        .nav-item:hover>.nav-link .chev {
            transform: rotate(180deg);
            color: var(--blue);
        }

        /* Mega panels */
        .mega {
            position: absolute;
            top: calc(100% + 3px);
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: #fff;
            border-radius: var(--r);
            border: 1px solid var(--g200);
            box-shadow: var(--shadow-lg);
            padding: 26px 28px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity .22s, transform .22s, visibility .22s;
            z-index: 200;
        }

        .mega.narrow {
            left: 0;
            transform: translateX(0) translateY(10px);
            min-width: 220px;
        }

        .mega::before {
            content: '';
            position: absolute;
            top: -7px;
            left: 50%;
            transform: translateX(-50%) rotate(45deg);
            width: 12px;
            height: 12px;
            background: #fff;
            border-left: 1px solid var(--g200);
            border-top: 1px solid var(--g200);
        }

        .mega.narrow::before {
            left: 24px;
            transform: rotate(45deg);
        }

        .nav-item:hover .mega {
            opacity: 1;
            visibility: visible;
            pointer-events: all;
            transform: translateX(-50%) translateY(0);
        }

        .nav-item:hover .mega.narrow {
            transform: translateX(0) translateY(0);
        }

        .mega-grid {
            display: grid;
            gap: 0;
        }

        .mega-grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .mega-grid-4 {
            grid-template-columns: repeat(4, 1fr);
        }

        .mega-col {
            padding: 0 18px;
        }

        .mega-col:first-child {
            padding-left: 0;
        }

        .mega-col:last-child {
            padding-right: 0;
        }

        .mega-col:not(:last-child) {
            border-right: 1px solid var(--g100);
        }

        .col-head {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--blue);
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--g100);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .col-head i {
            font-size: 10px;
            color: var(--gold);
        }

        .ml {
            display: flex;
            align-items: center;
            gap: 7px;
            padding: 6px 0;
            font-size: 12.5px;
            color: var(--g600);
            transition: color .15s, padding-left .15s;
        }

        .ml i {
            font-size: 10px;
            color: var(--g400);
            width: 12px;
            flex-shrink: 0;
            transition: color .15s;
        }

        .ml:hover {
            color: var(--blue);
            padding-left: 5px;
        }

        .ml:hover i {
            color: var(--blue);
        }

        .ml.hl {
            color: var(--orange);
            font-weight: 600;
        }

        .ml.hl i {
            color: var(--orange);
        }

        .mega-promo {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
            border-radius: 8px;
            padding: 18px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .promo-tag {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--gold);
            background: rgba(200, 151, 58, .15);
            border: 1px solid rgba(200, 151, 58, .25);
            padding: 2px 9px;
            border-radius: 20px;
            width: fit-content;
        }

        .mega-promo h4 {
            font-size: 13px;
            font-weight: 600;
            color: #fff;
            line-height: 1.35;
        }

        .mega-promo p {
            font-size: 11.5px;
            color: rgba(255, 255, 255, .6);
            line-height: 1.5;
        }

        .mega-promo a {
            font-size: 12px;
            font-weight: 600;
            color: var(--gold);
            display: flex;
            align-items: center;
            gap: 4px;
            margin-top: 3px;
            transition: gap .15s;
        }

        .mega-promo a:hover {
            gap: 8px;
        }

        /* Header right */
        .header-right {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .search-form {
            position: relative;
        }

        .search-input {
            padding: 9px 16px 9px 36px;
            border: 1.5px solid var(--g200);
            border-radius: 24px;
            background: var(--g100);
            color: var(--g800);
            font-family: var(--font-b);
            font-size: 13px;
            outline: none;
            width: 190px;
            transition: all .22s;
        }

        .search-input:focus {
            width: 230px;
            background: #fff;
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(26, 86, 196, .1);
        }

        .search-input::placeholder {
            color: var(--g400);
        }

        .s-icon {
            position: absolute;
            left: 11px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--g400);
            font-size: 12px;
            pointer-events: none;
            transition: color .18s;
            margin-right: 20px;
            /* margin-left: 10px; */
        }

        .search-form:focus-within .s-icon {
            color: var(--blue);
        }

        .mob-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 20px;
            color: var(--navy);
            cursor: pointer;
            padding: 8px;
        }

        /* ═══════════════════════════════════════════════════════
   3. SUB-HEADER  (below main header, navy)
═══════════════════════════════════════════════════════ */
        .sub-header {
            background: var(--navy-mid);
            position: sticky;
            top: 76px;
            z-index: 800;
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }

        .sub-header .wrap {
            display: flex;
            align-items: stretch;
            justify-content: space-between;
        }

        .sub-nav {
            display: flex;
            list-style: none;
            overflow-x: auto;
            scrollbar-width: none;
        }

        .sub-nav::-webkit-scrollbar {
            display: none;
        }

        .sub-link {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 0 16px;
            height: 42px;
            font-size: 12px;
            font-weight: 500;
            color: rgba(255, 255, 255, .68);
            white-space: nowrap;
            position: relative;
            transition: color .16s, background .16s;
        }

        .sub-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gold);
            transform: scaleX(0);
            transition: transform .2s;
        }

        .sub-link:hover,
        .sub-link.active {
            color: #fff;
            background: rgba(255, 255, 255, .06);
        }

        .sub-link:hover::after,
        .sub-link.active::after {
            transform: scaleX(1);
        }

        .sub-link i {
            font-size: 11px;
        }

        .sub-notif-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 17px;
            height: 17px;
            border-radius: 9px;
            padding: 0 5px;
            font-size: 9.5px;
            font-weight: 700;
            background: var(--orange);
            color: #fff;
            margin-left: 3px;
        }

        .sub-tools {
            display: flex;
            align-items: center;
            border-left: 1px solid rgba(255, 255, 255, .1);
            flex-shrink: 0;
        }

        .sub-tool {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 0 16px;
            height: 42px;
            font-size: 12px;
            color: rgba(255, 255, 255, .65);
            border-right: 1px solid rgba(255, 255, 255, .08);
            white-space: nowrap;
            transition: color .16s, background .16s;
        }

        .sub-tool:hover {
            color: #fff;
            background: rgba(255, 255, 255, .06);
        }

        .sub-tool i {
            font-size: 11px;
        }

        /* ═══════════════════════════════════════════════════════
   4. HERO
═══════════════════════════════════════════════════════ */
        .hero {
            /* position: relative;
            overflow: hidden;
            min-height: 560px;
            background: linear-gradient(125deg, var(--navy) 0%, var(--navy-mid) 55%, #1d4ed8 100%);
            display: flex;
            align-items: center; */
        }

        .hero-pattern {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
            background-size: 32px 32px;
        }

        .hero-glow {
            position: absolute;
            top: -100px;
            right: -100px;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(26, 86, 196, .35) 0%, transparent 70%);
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 480px;
            gap: 60px;
            align-items: center;
            padding: 72px 0;
        }

        .hero-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, .1);
            border: 1px solid rgba(255, 255, 255, .2);
            border-radius: 24px;
            padding: 5px 16px;
            font-size: 11.5px;
            font-weight: 600;
            color: rgba(255, 255, 255, .85);
            letter-spacing: .06em;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .hero-pill span {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--gold);
            display: inline-block;
        }

        .hero h1 {
            font-family: var(--font-d);
            font-size: clamp(32px, 4vw, 52px);
            font-weight: 700;
            color: #fff;
            line-height: 1.15;
            margin-bottom: 18px;
        }

        .hero h1 em {
            color: var(--gold);
            font-style: normal;
        }

        .hero-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, .72);
            max-width: 500px;
            line-height: 1.75;
            margin-bottom: 34px;
        }

        .hero-ctas {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .hero-right {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .h-card {
            background: rgba(255, 255, 255, .09);
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: 12px;
            padding: 20px;
            backdrop-filter: blur(12px);
            cursor: pointer;
            transition: all .22s;
        }

        .h-card:hover {
            background: rgba(255, 255, 255, .16);
            transform: translateY(-3px);
        }

        .h-card .ico {
            font-size: 26px;
            margin-bottom: 10px;
        }

        .h-card h3 {
            font-size: 13.5px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 4px;
        }

        .h-card p {
            font-size: 12px;
            color: rgba(255, 255, 255, .6);
            line-height: 1.5;
        }

        /* ═══════════════════════════════════════════════════════
   5. NEWS TICKER
═══════════════════════════════════════════════════════ */
        .ticker-bar {
            background: var(--blue);
            padding: 0;
            overflow: hidden;
        }

        .ticker-inner {
            display: flex;
            align-items: stretch;
        }

        .ticker-tag {
            background: var(--orange);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 0 18px;
            display: flex;
            align-items: center;
            letter-spacing: .06em;
            text-transform: uppercase;
            flex-shrink: 0;
            white-space: nowrap;
        }

        .ticker-track {
            overflow: hidden;
            flex: 1;
            height: 40px;
            display: flex;
            align-items: center;
        }

        .ticker-items {
            display: flex;
            gap: 64px;
            animation: tick 35s linear infinite;
            white-space: nowrap;
        }

        .ticker-items:hover {
            animation-play-state: paused;
        }

        .ticker-items a {
            font-size: 13px;
            color: rgba(255, 255, 255, .88);
            transition: color .15s;
        }

        .ticker-items a:hover {
            color: #fff;
            text-decoration: underline;
        }

        .ticker-items a::before {
            content: '◆';
            margin-right: 8px;
            font-size: 7px;
            color: var(--gold);
            opacity: .8;
        }

        @keyframes tick {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* ═══════════════════════════════════════════════════════
   6. STATS + PRESIDENT  (combined section)
═══════════════════════════════════════════════════════ */
        .stats-pres {
            background: #fff;
            padding: 30px 0;
        }

        .sp-grid {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 56px;
            align-items: start;
        }

        /* Stats side */

        .stats-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 28px;
        }

        .s-card {
            background: var(--off);
            border: 1px solid var(--g200);
            border-radius: var(--r);
            padding: 11px 20px;
            position: relative;
            overflow: hidden;
            transition: all .22s;
            display: flex;
        }

        .s-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--blue);
        }

        .s-card:nth-child(2)::before {
            background: var(--orange);
        }

        .s-card:nth-child(3)::before {
            background: #059669;
        }

        .s-card:nth-child(4)::before {
            background: #7c3aed;
        }

        .s-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }

        .s-card .s-ico {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: var(--blue-lt);
            color: var(--blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            margin-right: 10px;
            margin-bottom: 14px;
        }

        .s-card:nth-child(2) .s-ico {
            background: var(--orange-lt);
            color: var(--orange);
        }

        .s-card:nth-child(3) .s-ico {
            background: #dcfce7;
            color: #059669;
        }

        .s-card:nth-child(4) .s-ico {
            background: #f3e8ff;
            color: #7c3aed;
        }

        .s-num {
            font-family: var(--font-d);
            font-size: 36px;
            font-weight: 700;
            color: var(--navy);
            line-height: 1;
        }

        .s-lbl {
            font-size: 12.5px;
            color: var(--g600);
            margin-top: 5px;
            font-weight: 500;
              margin-left: 9px;
        }

        /* President side */

        .pres-card {
            background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
            border-radius: 16px;
            overflow: hidden;
            position: relative;
        }

        .pres-top {
            padding: 24px 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 16px;
            /* border-bottom: 1px solid rgba(255, 255, 255, .1); */
        }

        .pres-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 44px;
            color: rgba(255, 255, 255, .3);
            border: 3px solid var(--gold);
            flex-shrink: 0;
        }

        .pres-name {
            font-family: var(--font-d);
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 2px;
        }

        .pres-title {
            font-size: 12px;
            color: rgba(255, 255, 255, .6);
            letter-spacing: .03em;
        }

        .pres-tenure {
            display: inline-block;
            background: rgba(200, 151, 58, .15);
            border: 1px solid rgba(200, 151, 58, .3);
            border-radius: 20px;
            padding: 3px 12px;
            font-size: 11px;
            color: var(--gold);
            font-weight: 600;
            margin-top: 4px;
        }

        .pres-body {
            padding: 24px;
        }

        .pres-quote {
            font-size: 13.5px;
            color: rgba(255, 255, 255, .82);
            line-height: 1.75;
            font-style: italic;
            padding-left: 16px;
            border-left: 3px solid var(--gold);
            margin-bottom: 20px;
        }

        .pres-meta {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0;
            border-top: 1px solid rgba(255, 255, 255, .1);
            padding-top: 16px;
            margin-bottom: 20px;
        }

        .pres-m {
            text-align: center;
            padding: 8px 0;
        }

        .pres-m:not(:last-child) {
            border-right: 1px solid rgba(255, 255, 255, .1);
        }

        .pres-m .val {
            font-family: var(--font-d);
            font-size: 20px;
            font-weight: 700;
            color: var(--gold);
        }

        .pres-m .lbl {
            font-size: 10px;
            color: rgba(255, 255, 255, .5);
            text-transform: uppercase;
            letter-spacing: .05em;
            margin-top: 2px;
          
        }

        /* ═══════════════════════════════════════════════════════
   7. NOTIFICATIONS / EVENTS / NEWS / ANNOUNCEMENTS
═══════════════════════════════════════════════════════ */
        .notif-sec {
            background: var(--off);
            padding: 30px 0;
        }

        .notif-sec-hd {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 36px;
            flex-wrap: wrap;
            gap: 16px;
        }

        .notif-4grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .n4-card {
            background: #fff;
            border: 1px solid var(--g200);
            border-radius: var(--r);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: all .22s;
        }

        .n4-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }

        .n4-head {
            padding: 18px 20px 14px;
            border-bottom: 1px solid var(--g100);
        }

        .n4-icon-row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .n4-icon {
            width: 38px;
            height: 38px;
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }

        .n4-icon.blue {
            background: var(--blue-lt);
            color: var(--blue);
        }

        .n4-icon.orange {
            background: var(--orange-lt);
            color: var(--orange);
        }

        .n4-icon.green {
            background: var(--green-lt);
            color: var(--green);
        }

        .n4-icon.purple {
            background: #f3e8ff;
            color: #7c3aed;
        }

        .n4-title {
            font-family: var(--font-d);
            font-size: 17px;
            font-weight: 700;
            color: var(--navy);
        }

        .n4-desc {
            font-size: 12.5px;
            color: var(--g600);
            line-height: 1.6;
            padding: 14px 20px;
            flex: 1;
        }

        .n4-footer {
            padding: 14px 20px;
            border-top: 1px solid var(--g100);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .n4-footer .btn {
            flex: 1;
            justify-content: center;
        }

        /* ═══════════════════════════════════════════════════════
   8. QUICK ACCESS PORTALS
═══════════════════════════════════════════════════════ */
        .portals-sec {
            background: #fff;
            padding: 30px 0;
        }

        .portals-grid {
            display: grid;
            grid-template-columns: repeat(9, 1fr);
            gap: 0;
            border: 1px solid var(--g200);
            border-radius: var(--r);
            overflow: hidden;
            margin-top: 32px;
        }

        .p-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 22px 10px;
            cursor: pointer;
            text-decoration: none;
            color: var(--g800);
            transition: all .22s;
            border-right: 1px solid var(--g200);
            position: relative;
            overflow: hidden;
        }

        .p-card:last-child {
            border-right: none;
        }

        .p-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--blue);
            transform: scaleY(0);
            transform-origin: top;
            transition: transform .2s;
        }

        .p-card:hover {
            background: var(--off);
            transform: translateY(-2px);
        }

        .p-card:hover::before {
            transform: scaleY(1);
        }

        .p-card:hover .p-ico {
            background: var(--blue);
            color: #fff;
        }

        .p-ico {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            background: var(--blue-lt);
            color: var(--blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 19px;
            transition: all .22s;
        }

        .p-name {
            font-size: 11px;
            font-weight: 600;
            color: var(--navy);
            text-align: center;
            line-height: 1.35;
        }

        /* ═══════════════════════════════════════════════════════
   9. SERVICES  (3 tabs)
═══════════════════════════════════════════════════════ */
        .services-sec {
            background: var(--off);
            padding: 30px 0;
        }

        .tabs-row {
            display: flex;
            gap: 4px;
            background: var(--g100);
            padding: 6px;
            border-radius: 10px;
            width: fit-content;
            margin-bottom: 32px;
        }

        .tab-btn {
            padding: 9px 24px;
            border-radius: 7px;
            border: none;
            font-family: var(--font-b);
            font-size: 13.5px;
            font-weight: 600;
            cursor: pointer;
            background: transparent;
            color: var(--g600);
            transition: all .2s;
        }

        .tab-btn.active {
            background: #fff;
            color: var(--navy);
            box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
        }

        .tab-pane {
            display: none;
        }

        .tab-pane.active {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            animation: fadeUp .3s ease;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(8px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .svc-card {
            background: #fff;
            border: 1px solid var(--g200);
            border-radius: var(--r);
            padding: 20px;
            display: flex;
            gap: 14px;
            align-items: flex-start;
            cursor: pointer;
            transition: all .2s;
            text-decoration: none;
        }

        .svc-card:hover {
            box-shadow: var(--shadow);
            transform: translateY(-3px);
            border-color: var(--blue-lt);
        }

        .svc-ico {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: var(--blue-lt);
            color: var(--blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            flex-shrink: 0;
            transition: all .2s;
        }

        .svc-card:hover .svc-ico {
            background: var(--blue);
            color: #fff;
        }

        .svc-card h4 {
            font-size: 13.5px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .svc-card p {
            font-size: 12px;
            color: var(--g600);
            line-height: 1.5;
        }

        /* ═══════════════════════════════════════════════════════
   10. PHOTO GALLERY  (Masonry)
═══════════════════════════════════════════════════════ */
        .gallery-sec {
            background: #fff;
            padding: 30px 0;
        }

        .gallery-hd {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 28px;
            flex-wrap: wrap;
            gap: 12px;
        }

        .masonry {
            columns: 4;
            column-gap: 14px;
        }

        .masonry-item {
            break-inside: avoid;
            margin-bottom: 14px;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            background: var(--navy-mid);
        }

        .masonry-item img {
            width: 100%;
            display: block;
            transition: transform .35s;
        }

        .masonry-item:hover img {
            transform: scale(1.06);
        }

        .gallery-ph {
            width: 100%;
            background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: rgba(255, 255, 255, .35);
        }

        .gallery-ph i {
            font-size: 28px;
        }

        .gallery-ph span {
            font-size: 11px;
            letter-spacing: .06em;
            text-transform: uppercase;
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(11, 31, 69, .75) 0%, transparent 55%);
            opacity: 0;
            transition: opacity .3s;
            display: flex;
            align-items: flex-end;
            padding: 14px;
        }

        .masonry-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay p {
            font-size: 12px;
            font-weight: 600;
            color: #fff;
            line-height: 1.4;
        }

        /* ph heights */
        .ph-tall {
            height: 280px;
        }

        .ph-mid {
            height: 200px;
        }

        .ph-short {
            height: 150px;
        }

        .ph-wide {
            height: 170px;
        }

        /* ═══════════════════════════════════════════════════════
   11. FOOTER
═══════════════════════════════════════════════════════ */
        footer {
            background: var(--navy);
        }

        /* Main footer */
        .footer-main {
            padding: 60px 0 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1.2fr 1.2fr 1.4fr;
            gap: 48px;
        }

        .f-brand p {
            font-size: 13px;
            color: rgba(255, 255, 255, .55);
            line-height: 1.75;
            max-width: 280px;
            margin-top: 14px;
        }

        .f-logo-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .f-logo-wrap img {
            height: 48px;
            width: auto;
            filter: brightness(0) invert(1);
            opacity: .85;
        }

        .f-logo-txt .name {
            font-family: var(--font-d);
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            display: block;
        }

        .f-logo-txt .sub {
            font-size: 10px;
            color: rgba(255, 255, 255, .5);
            display: block;
            margin-top: 2px;
            max-width: 200px;
            line-height: 1.35;
        }

        .social-row {
            display: flex;
            gap: 8px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .soc-a {
            width: 34px;
            height: 34px;
            border-radius: 7px;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .12);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, .6);
            font-size: 13px;
            transition: all .2s;
        }

        .soc-a:hover {
            background: var(--blue);
            color: #fff;
            border-color: var(--blue);
            transform: translateY(-2px);
        }

        .f-col h5 {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .85);
            margin-bottom: 16px;
        }

        .f-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .f-col ul li a {
            font-size: 12.5px;
            color: rgba(255, 255, 255, .55);
            transition: color .18s;
        }

        .f-col ul li a:hover {
            color: var(--gold);
        }

        .f-contact {
            font-size: 13px;
            color: rgba(255, 255, 255, .6);
            line-height: 1.9;
        }

        .f-contact a {
            color: var(--gold);
        }

        .f-contact strong {
            color: #fff;
        }

        /* Quick Links portal (click to expand) */
        .ql-bar {
            background: var(--navy-mid);
            border-top: 1px solid rgba(255, 255, 255, .1);
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }

        .ql-toggle {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 28px;
            background: none;
            border: none;
            cursor: pointer;
            font-family: var(--font-b);
            font-size: 13px;
            font-weight: 600;
            color: rgba(255, 255, 255, .8);
            transition: color .18s;
            max-width: 1340px;
            margin: 0 auto;
        }

        .ql-toggle:hover {
            color: #fff;
        }

        .ql-toggle .chev-ql {
            font-size: 11px;
            transition: transform .25s;
        }

        .ql-toggle.open .chev-ql {
            transform: rotate(180deg);
        }

        .ql-panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease;
        }

        .ql-panel.open {
            max-height: 300px;
        }

        .ql-inner {
            padding: 20px 28px 24px;
            max-width: 1340px;
            margin: 0 auto;
        }

        .ql-section-title {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 12px;
        }

        .ql-links {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 22px;
            margin-bottom: 20px;
        }

        .ql-links a {
            font-size: 12px;
            color: rgba(255, 255, 255, .55);
            transition: color .18s;
        }

        .ql-links a:hover {
            color: var(--gold);
        }

        .ql-divider {
            height: 1px;
            background: rgba(255, 255, 255, .08);
            margin: 14px 0;
        }

        /* Sub-footer */
        .sub-footer {
            background: #07152e;
            padding: 18px 0;
        }

        .sub-footer .wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }

        .sf-copy {
            font-size: 12px;
            color: rgba(255, 255, 255, .35);
        }

        .sf-motto {
            font-family: var(--font-d);
            font-size: 13px;
            color: var(--gold);
            font-style: italic;
        }

        .sf-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .sf-links a {
            font-size: 12px;
            color: rgba(255, 255, 255, .4);
            transition: color .18s;
        }

        .sf-links a:hover {
            color: var(--gold);
        }

        /* ─── RESPONSIVE ──────────────────────────────────────── */
        @media(max-width:1100px) {
            .primary-nav {
                display: none;
            }

            .mob-toggle {
                display: flex;
            }

            .main-header .wrap {
                grid-template-columns: auto 1fr auto;
            }

            .notif-4grid {
                grid-template-columns: 1fr 1fr;
            }

            .portals-grid {
                grid-template-columns: repeat(5, 1fr);
            }

            .masonry {
                columns: 3;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .hero-inner {
                grid-template-columns: 1fr;
            }

            .hero-right {
                display: none;
            }
        }

        @media(max-width:768px) {
            .sp-grid {
                grid-template-columns: 1fr;
            }

            .stats-cards {
                grid-template-columns: 1fr 1fr;
            }

            .notif-4grid {
                grid-template-columns: 1fr;
            }

            .portals-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .tab-pane.active {
                grid-template-columns: 1fr 1fr;
            }

            .masonry {
                columns: 2;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .sub-footer .wrap {
                flex-direction: column;
                text-align: center;
            }
        }

        @media(max-width:480px) {
            .portals-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .masonry {
                columns: 1;
            }

            .tab-pane.active {
                grid-template-columns: 1fr;
            }

            .hero-ctas {
                flex-direction: column;
            }
        }

        /* Floating Support Widget */
.support-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

/* Main Button */
.support-toggle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #1a56c4, #0b1f45);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(11, 31, 69, .3);
    transition: all .25s;
}

.support-toggle:hover {
    transform: scale(1.08);
}

/* Options Container */
.support-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all .25s;
}

.support-options.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Buttons */
.support-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #1e2c3d;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0,0,0,.1);
    transition: all .2s;
    white-space: nowrap;
}

.support-btn i {
    font-size: 14px;
}

/* Individual Colors */
.support-btn.chat {
    border-left: 4px solid #1a56c4;
}

.support-btn.call {
    border-left: 4px solid #e05c0a;
}

.support-btn.whatsapp {
    border-left: 4px solid #25D366;
}

/* Hover */
.support-btn:hover {
    transform: translateX(-4px);
}


/* Sticky Right Side Icons */
.sticky-side-icons {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sticky-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 54px;
    height: 54px;
    overflow: hidden;
    padding: 0 16px;
    color: #fff;
    text-decoration: none;
    border-radius: 12px 0 0 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.16);
    transition: all 0.25s ease;
    margin-left: auto;
}

.sticky-icon i {
    font-size: 18px;
    min-width: 18px;
    text-align: center;
}

.sticky-icon span {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Hover expand */
.sticky-icon:hover {
    width: 150px;
    color: white;
}

.sticky-icon:hover span {
    opacity: 1;
}

/* Individual colors */
.sticky-icon.gallery {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

.sticky-icon.login {
    background: linear-gradient(135deg, #1a56c4, #0b1f45);
}

.sticky-icon.events {
    background: linear-gradient(135deg, #e05c0a, #b45309);
}
section.hero img {
    display: block;
}
.team-member_one {
    position: relative;
    padding: 0 30px;
    z-index: 1;
}
.team-member_one .member-img img {
    width: 90%;
    border-radius: 10px;
}
.team-member_one .member-info {
    padding: 20px 0 18px;
}
.team-member_one .member-info h3.title {
    font-size: 18px;
    line-height: 22px;
}
.team-member_one .member-info p.position {
    font-weight: 600;
    padding-bottom: 10px;
}
.message-box {
    padding-top: 10px;
    border-top: 1px solid rgba(31, 30, 23, 0.071);
}
.arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.team-member_one:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    border: 5px solid rgb(65 65 177 / 17%);
    width: 100%;
    height: 58%;
    border-radius: 5px;
    z-index: -1;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.team-member_one:hover:after {
    border-color: #000080;
}
h3.title a {
    color: black;
}
.arrow-btn:hover {
    background-color: #e0eaff;
    transform: scale(1.08);
}
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background-color: #ffffff;
}
/* Mobile */
@media (max-width: 768px) {
    .sticky-side-icons {
        right: 10px;
        top: auto;
        bottom: 20px;
        transform: none;
        flex-direction: column;
        gap: 8px;
    }

    .sticky-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }

    .sticky-icon span {
        display: none;
    }

    .sticky-icon:hover {
        width: 50px;
    }
}