   /* ---------- GLOBAL RESET & VARIABLES ---------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    :root {
      --navy: #355B8D;
      --navy-light: #1A3150;
      --navy-gradient: linear-gradient(135deg, #BBBEC1 0%, #5288C5 100%);
      --gold: #C9A227;
      --gold-light: #E5B53C;
      --white: #FFFFFF;
      --light-bg: #F5F7FA;
      --gray-border: #E2E8F0;
      --text-dark: #0B1F3A;
      --text-soft: #2D3A4F;
      --shadow-sm: 0 8px 20px rgba(0,0,0,0.02), 0 2px 6px rgba(0,0,0,0.05);
      --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
      --radius: 16px;
      --radius-sm: 8px;
      --transition: 0.25s ease;
    }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      color: var(--text-dark);
      background-color: var(--white);
      line-height: 1.6;
      scroll-behavior: smooth;
      overflow-x: hidden;
      width: 100%;
    }
    a { text-decoration: none; }
    ul { list-style: none; }
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      width: 100%;
    }
    /* ---------- ENHANCED NAVIGATION ---------- */
    nav {
      background: var(--navy-gradient);
      box-shadow: 0 8px 25px rgba(11,31,58,0.2);
      padding: 12px 0;
      position: sticky;
      top: 0;
      z-index: 9998;
      width: 100%;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 2px solid var(--gold);
    }
    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }
    .logo img {
      height: 100px;
      width: auto;
      display: block;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    }
    .nav-links {
      display: flex;
      gap: 24px;
      align-items: center;
    }
    .nav-links > li {
      position: relative;
      list-style: none;
    }
    .nav-links a {
      color: white;
      font-weight: 600;
      padding: 10px 16px;
      border-radius: 40px;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.95rem;
    }
    .nav-links a i {
      color: var(--gold);
      font-size: 0.9rem;
      transition: transform 0.3s;
    }
    .nav-links a:hover {
      background: rgba(255,255,255,0.15);
      transform: translateY(-2px);
    }
    .nav-links a:hover i {
      transform: rotate(180deg);
    }
    
    /* Dropdown menus */
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--navy-gradient);
      min-width: 260px;
      border-radius: var(--radius);
      padding: 16px 0;
      box-shadow: var(--shadow-md);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s;
      z-index: 9999;
      border: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links li:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .dropdown-menu a {
      padding: 12px 24px;
      border-radius: 0;
      white-space: nowrap;
    }
    .dropdown-menu a:hover {
      background: rgba(255,215,0,0.15);
      padding-left: 32px;
    }
    .dropdown-menu a i {
      width: 24px;
    }
    
    .hamburger { display: none; font-size: 28px; cursor: pointer; color: white; }
    
    @media (max-width: 1024px) {
      .nav-links { gap: 12px; }
      .nav-links a { padding: 8px 12px; font-size: 0.9rem; }
    }
    
    @media (max-width: 860px) {
      .hamburger { display: block; }
      .nav-links {
        position: fixed;
        top: 94px;
        left: 0;
        width: 100%;
        background: var(--navy-gradient);
        flex-direction: column;
        padding: 40px 32px;
        gap: 16px;
        box-shadow: 0 30px 30px rgba(0,0,0,0.2);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 9997;
        align-items: flex-start;
        border-top: 2px solid var(--gold);
      }
      .nav-links.active { transform: translateX(0); }
      .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 8px 0 8px 20px;
        background: rgba(0,0,0,0.2);
        margin-top: 8px;
        display: none;
      }
      .nav-links li.dropdown-open .dropdown-menu {
        display: block;
      }
      .nav-links a i { transform: none !important; }
    }
    
    /* Hero section with overlay */
    .hero-section {
      position: relative;
      padding: 120px 0;
      background: linear-gradient(135deg, rgba(11,31,58,0.9) 0%, rgba(30,58,90,0.9) 100%), 
                  url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
      background-size: cover;
      background-position: center 30%;
      background-repeat: no-repeat;
      border-bottom: 4px solid var(--gold);
    }
    
    /* Gallery Section – now includes vintage AGM/EGM images (placeholders) */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 40px;
    }
    .gallery-item {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      height: 240px;
      box-shadow: var(--shadow-md);
      cursor: pointer;
      transition: all 0.4s;
    }
    .gallery-item:hover {
      transform: scale(1.03);
      box-shadow: 0 20px 40px rgba(201,162,39,0.3);
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s;
    }
    .gallery-item:hover img {
      transform: scale(1.1);
    }
    .gallery-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(11,31,58,0.9), transparent);
      color: white;
      padding: 20px 16px 16px;
      font-weight: 600;
      transform: translateY(100%);
      transition: transform 0.3s;
    }
    .gallery-item:hover .gallery-caption {
      transform: translateY(0);
    }
    
    /* Card enhancements */
    .card {
      background: white;
      padding: 32px 24px;
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--gray-border);
      transition: var(--transition);
    }
    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 30px rgba(11,31,58,0.1);
      border-color: var(--gold);
    }
    .card i { font-size: 2.2rem; color: var(--gold); margin-bottom: 18px; }
    
    .benefits-list { list-style: disc; padding-left: 20px; margin: 20px 0; }
    .benefits-list li { margin-bottom: 12px; }
    
    /* No employment section – removed as requested */
    
    .pdf-download-card {
      background: white;
      padding: 32px;
      border-radius: var(--radius);
      border: 1px solid var(--gray-border);
      text-align: center;
      transition: 0.3s;
    }
    .pdf-download-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(11,31,58,0.1);
      border-color: var(--gold);
    }
    
    .btn {
      display: inline-block;
      font-weight: 600;
      padding: 14px 32px;
      border-radius: 40px;
      transition: var(--transition);
      border: 2px solid transparent;
      font-size: 1rem;
      cursor: pointer;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .btn-primary {
      background: var(--navy-gradient);
      color: white;
    }
    .btn-primary:hover {
      background: var(--gold);
      color: var(--navy);
      transform: translateY(-2px);
    }
    .btn-gold {
      background: var(--gold);
      color: var(--navy);
    }
    .btn-gold:hover {
      background: var(--navy);
      color: white;
      transform: translateY(-2px);
    }
    .btn-outline {
      border: 2px solid var(--navy);
      background: transparent;
    }
    .btn-outline:hover { 
      background: var(--navy-gradient); 
      color: white; 
      border-color: transparent;
    }
    .btn-download {
      background: var(--gold);
      color: var(--navy);
      border: 2px solid var(--gold);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-download:hover {
      background: transparent;
      color: var(--gold);
      border-color: var(--gold);
    }
    
    h2 {
      color: var(--navy);
      margin-bottom: 1.5rem;
      position: relative;
      font-size: 2.2rem;
      font-weight: 700;
    }
    h2:after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background: var(--gold);
      margin-top: 8px;
      border-radius: 4px;
    }
    
    .section { padding: 64px 0; border-bottom: 1px solid var(--gray-border); width: 100%; }
    .bg-light { background-color: var(--light-bg); }
    
    /* Membership Cards */
    .membership-type-card {
      background: white;
      border-radius: var(--radius);
      border: 1px solid var(--gray-border);
      overflow: hidden;
      transition: 0.3s;
    }
    .membership-type-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 30px rgba(201,162,39,0.15);
      border-color: var(--gold);
    }
    .membership-header {
      background: var(--navy-gradient);
      color: white;
      padding: 24px;
      text-align: center;
    }
    .membership-header i { font-size: 2.5rem; color: var(--gold); margin-bottom: 12px; }
    .membership-header h3 { color: white; margin-bottom: 8px; }
    .membership-body { padding: 28px; }
    
    /* floating apply btn */
    .floating-apply {
      position: fixed;
      bottom: 32px;
      right: 32px;
      background: var(--gold);
      color: var(--navy);
      width: 65px;
      height: 65px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      box-shadow: 0 8px 25px rgba(201,162,39,0.5);
      z-index: 9999;
      transition: 0.3s;
      border: 2px solid transparent;
      cursor: pointer;
    }
    .floating-apply:hover {
      background: var(--navy);
      color: var(--gold);
      border-color: var(--gold);
      transform: scale(1.1) rotate(360deg);
    }
    
    /* Auth Badge */
    .auth-badge {
      position: fixed;
      top: 120px;
      right: 24px;
      background: var(--gold);
      color: var(--navy);
      padding: 10px 24px;
      border-radius: 40px;
      font-weight: 600;
      cursor: pointer;
      z-index: 9997;
      box-shadow: 0 4px 15px rgba(201,162,39,0.4);
      border: 2px solid transparent;
      transition: all 0.3s;
    }
    .auth-badge:hover {
      background: var(--navy);
      color: var(--gold);
      border-color: var(--gold);
      transform: translateX(-5px);
    }
    
    /* Modals */
    .modal {
      display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(11,31,58,0.9); align-items: center; justify-content: center; z-index: 10000;
      overflow-y: auto;
    }
    .modal.active { display: flex; }
    .modal-content {
      background: white; max-width: 750px; width: 95%; max-height: 85vh; overflow-y: auto;
      border-radius: 24px; padding: 32px; position: relative; margin: 20px auto;
    }
    .close-modal { position: absolute; top: 16px; right: 24px; font-size: 32px; cursor: pointer; color: var(--navy); }
    
    /* Form Styles */
    .form-group { margin-bottom: 20px; }
    .form-group label { font-weight: 600; display: block; margin-bottom: 6px; }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%; padding: 12px; border: 1px solid var(--gray-border); border-radius: 8px; font-family: inherit;
    }
    .btn-submit { background: var(--navy-gradient); color: white; border: none; padding: 14px; width: 100%; border-radius: 40px; font-weight: 700; cursor: pointer; }
    .step-indicator { display: flex; justify-content: space-between; margin-bottom: 30px; flex-wrap: wrap; }
    .step { width: 16%; text-align: center; border-bottom: 4px solid #ddd; padding-bottom: 8px; font-weight: 600; }
    .step.active { border-color: var(--gold); color: var(--navy); }
    .step-form { display: block; }
    .step-form.hidden { display: none; }
    .add-btn { background: var(--light-bg); border: 1px solid var(--gray-border); padding: 8px 16px; border-radius: 30px; font-size: 0.9rem; cursor: pointer; margin: 10px 0; }
    
    /* Auth Modal */
    .auth-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(11,31,58,0.95);
      z-index: 10001;
      align-items: center;
      justify-content: center;
    }
    .auth-modal.active { display: flex; }
    .auth-container {
      background: white;
      max-width: 450px;
      width: 90%;
      border-radius: 24px;
      padding: 40px 32px;
      position: relative;
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }
    .auth-tabs {
      display: flex;
      gap: 16px;
      margin-bottom: 32px;
      border-bottom: 2px solid var(--gray-border);
    }
    .auth-tab {
      padding: 12px 24px;
      font-weight: 600;
      cursor: pointer;
      color: var(--text-soft);
      position: relative;
    }
    .auth-tab.active { color: var(--navy); }
    .auth-tab.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--gold);
    }
    .auth-form { display: none; }
    .auth-form.active { display: block; }
    .auth-form input, .auth-form select {
      width: 100%;
      padding: 14px 16px;
      border: 2px solid var(--gray-border);
      border-radius: 12px;
      font-size: 1rem;
      transition: all 0.3s;
    }
    .auth-form input:focus, .auth-form select:focus {
      border-color: var(--gold);
      outline: none;
    }
    .auth-btn {
      width: 100%;
      padding: 14px;
      background: var(--navy-gradient);
      color: white;
      border: none;
      border-radius: 40px;
      font-weight: 700;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.3s;
      margin-top: 16px;
    }
    .auth-btn:hover {
      background: var(--gold);
      color: var(--navy);
    }
    .auth-switch {
      text-align: center;
      margin-top: 24px;
      color: var(--text-soft);
    }
    .auth-switch a {
      color: var(--gold);
      font-weight: 600;
      cursor: pointer;
    }
    .close-auth {
      position: absolute;
      top: 20px;
      right: 24px;
      font-size: 28px;
      cursor: pointer;
      color: var(--navy);
    }
    .error-message {
      color: #dc2626;
      font-size: 0.9rem;
      margin-top: 8px;
      display: none;
    }
    .success-message {
      color: #059669;
      font-size: 0.9rem;
      margin-top: 8px;
      display: none;
    }
    
    /* Members Area */
    .members-area {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      color: white;
      padding: 40px 0;
      margin-top: 40px;
      display: none;
    }
    .members-area.visible { display: block; }
    .members-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 32px;
      flex-wrap: wrap;
      gap: 20px;
    }
    .members-greeting {
      font-size: 1.5rem;
      font-weight: 700;
    }
    .members-greeting span { color: var(--gold); }
    .logout-btn {
      background: transparent;
      border: 2px solid var(--gold);
      color: white;
      padding: 12px 28px;
      border-radius: 40px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }
    .logout-btn:hover {
      background: var(--gold);
      color: var(--navy);
    }
    .members-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }
    .member-card {
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      border-radius: var(--radius);
      padding: 24px;
      border: 1px solid rgba(255,255,255,0.2);
    }
    .member-card h3 {
      color: var(--gold);
      margin-bottom: 16px;
      font-size: 1.3rem;
    }
    .member-card ul { list-style: none; }
    .member-card li {
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .member-card i {
      color: var(--gold);
      width: 20px;
    }
    .member-card a {
      color: white;
      text-decoration: none;
    }
    .member-card a:hover { color: var(--gold); }
    
    /* Accordion */
    .accordion-item { border-bottom: 1px solid var(--gray-border); }
    .accordion-title { background: white; padding: 20px 0; display: flex; justify-content: space-between; cursor: pointer; font-weight: 600; }
    .accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
    .accordion-content.show { max-height: 300px; padding-bottom: 20px; }
    
    /* Map */
    .map-container {
      background: #e9edf2;
      height: 300px;
      border-radius: var(--radius);
      margin-top: 24px;
      width: 100%;
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }
    .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }
    
    /* Footer */
    footer {
      background: var(--navy-gradient);
      color: white;
      padding: 48px 0 24px;
      margin-top: 40px;
      border-top: 4px solid var(--gold);
    }
    .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 40px; }
    .footer-links a { color: rgba(255,255,255,0.8); display: block; margin-bottom: 12px; }
    .footer-links a:hover { color: var(--gold); }
    .copyright { text-align: center; padding-top: 40px; opacity: 0.7; font-size: 0.9rem; }
    
    @media (max-width: 768px) {
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .container { padding: 0 20px; }
      .btn { width: 100%; margin-bottom: 12px; }
      .floating-apply { width: 55px; height: 55px; font-size: 24px; right: 20px; bottom: 20px; }
      .hero-section { padding: 60px 0; }
      .auth-badge {
        top: auto;
        bottom: 100px;
        right: 20px;
      }
      .gallery-grid { grid-template-columns: 1fr; }
    }