/* ============================================
       CSS VARIABLES & ROOT
    ============================================ */
    :root {
      --green-deep:   #145A32;
      --green-mid:    #1e7d47;
      --green-light:  #A6BB8A;
      --olive:        #8a9e6e;
      --off-white:    #FAFAF7;
      --cream:        #F2F2EC;
      --text-dark:    #1a2616;
      --text-mid:     #3d5130;
      --text-light:   #6b7d5e;
      --border:       rgba(20,90,50,.12);
      --shadow:       0 4px 24px rgba(20,90,50,.10);
      --shadow-lg:    0 12px 48px rgba(20,90,50,.16);
      --radius:       12px;
      --radius-lg:    20px;
      --transition:   all .3s cubic-bezier(.4,0,.2,1);
    }

    /* ============================================
       RESET & BASE
    ============================================ */
    *, *::before, *::after { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--off-white);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; }

    .serif { font-family: 'Source Serif 4', serif; }

    section { position: relative; }

    img { max-width: 100%; }

    a { color: var(--green-deep); text-decoration: none; transition: var(--transition); }
    a:hover { color: var(--green-mid); }

    .text-green  { color: var(--green-deep) !important; }
    .text-olive  { color: var(--green-light) !important; }
    .bg-deep     { background: var(--green-deep); }
    .bg-off-white{ background: var(--off-white); }
    .bg-cream    { background: var(--cream); }

    /* ============================================
       NAVBAR
    ============================================ */
    #mainNav {
      background: rgba(250,250,247,.97);
      backdrop-filter: blur(12px);
      border-bottom: 1.5px solid var(--border);
      padding: .15rem 0;
      transition: var(--transition);
      z-index: 1050;
    }
    #mainNav.scrolled {
      box-shadow: 0 2px 20px rgba(20,90,50,.10);
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .brand-badge {
      width: 44px; height: 44px;
      background: var(--green-deep);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .brand-badge svg { width: 26px; height: 26px; fill: var(--green-light); }
    .brand-text { line-height: 1.1; }
    .brand-text .city-of {
      font-family: 'DM Sans', sans-serif;
      font-size: .65rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--text-light);
      font-weight: 500;
    }
    .brand-text .city-name {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--green-deep);
      display: block;
    }
    .brand-text .city-sub {
      font-family: 'DM Sans', sans-serif;
      font-size: .6rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--olive);
      font-weight: 500;
    }

    .navbar-nav .nav-link {
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: .875rem;
      letter-spacing: .02em;
      color: var(--text-dark);
      padding: .45rem .85rem !important;
      border-radius: 6px;
      transition: var(--transition);
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: var(--green-deep);
      background: rgba(20,90,50,.08);
    }
    .nav-btn {
      background: var(--green-deep);
      color: #fff !important;
      border-radius: 8px;
      padding: .45rem 1.1rem !important;
      font-size: .8rem !important;
      letter-spacing: .04em;
      text-transform: uppercase;
    }
    .nav-btn:hover {
      background: var(--green-mid) !important;
      color: #fff !important;
    }

    /* ============================================
       HERO
    ============================================ */
    #hero {
      min-height: 100vh;
      background: var(--green-deep);
      display: flex;
      align-items: center;
      overflow: hidden;
      position: relative;
    }

    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 80% 80% at 70% 50%, rgba(166,187,138,.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 10% 80%, rgba(20,90,50,.8) 0%, transparent 70%);
      background-color: var(--green-deep);
    }

    /* Decorative SVG landscape */
    .hero-landscape {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      width: 100%; height: auto;
      opacity: .15;
    }

    /* Floating card */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(166,187,138,.2);
      border: 1px solid rgba(166,187,138,.35);
      border-radius: 30px;
      padding: .35rem 1rem;
      font-size: .75rem;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--green-light);
      margin-bottom: 1.5rem;
      animation: fadeUp .8s ease both;
    }
    .hero-badge::before {
      content: '';
      width: 7px; height: 7px;
      background: #6fdc8c;
      border-radius: 50%;
      box-shadow: 0 0 0 3px rgba(111,220,140,.25);
      animation: pulse 2s ease infinite;
    }

    @keyframes pulse {
      0%,100% { box-shadow: 0 0 0 3px rgba(111,220,140,.25); }
      50%      { box-shadow: 0 0 0 6px rgba(111,220,140,.10); }
    }

    .hero-title {
      font-size: clamp(2.5rem, 6vw, 3.7rem);
      font-weight: 900;
      line-height: 1.05;
      color: #fff;
      letter-spacing: -.02em;
      animation: fadeUp .8s .1s ease both;
    }
    .hero-title .accent { color: var(--green-light); }

    .hero-sub {
      font-family: 'Source Serif 4', serif;
      font-size: clamp(1rem, 2vw, 1.2rem);
      font-weight: 300;
      color: rgba(255,255,255,.72);
      max-width: 560px;
      line-height: 1.7;
      animation: fadeUp .8s .2s ease both;
    }

    .hero-actions { animation: fadeUp .8s .3s ease both; }

    .btn-hero-primary {
      background: var(--green-light);
      color: var(--green-deep);
      font-weight: 600;
      font-size: .875rem;
      letter-spacing: .04em;
      padding: .85rem 2rem;
      border-radius: 10px;
      border: none;
      transition: var(--transition);
    }
    .btn-hero-primary:hover {
      background: #bbd19f;
      color: var(--green-deep);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(166,187,138,.4);
    }
    .btn-hero-ghost {
      background: rgba(255,255,255,.1);
      color: rgba(255,255,255,.85);
      font-weight: 500;
      font-size: .875rem;
      letter-spacing: .04em;
      padding: .85rem 1.75rem;
      border-radius: 10px;
      border: 1.5px solid rgba(255,255,255,.25);
      transition: var(--transition);
    }
    .btn-hero-ghost:hover {
      background: rgba(255,255,255,.1);
      color: #fff;
      border-color: rgba(255,255,255,.5);
    }

    /* Hero right visual */
    .hero-visual {
      position: relative;
      animation: fadeIn 1s .4s ease both;
    }
    .hero-seal {
      width: min(380px, 90%);
      border-radius: 50%;
      border: 2px solid rgba(166,187,138,.2);
      box-shadow: 0 0 0 20px rgba(166,187,138,.04), 0 0 0 40px rgba(166,187,138,.02);
      padding: 16px;
      background: rgba(166,187,138,.06);
    }

    .hero-stat-row {
      display: flex;
      gap: 1.5rem;
      margin-top: 2.5rem;
      animation: fadeUp .8s .45s ease both;
    }
    .hero-stat {
      border-left: 2px solid rgba(166,187,138,.35);
      padding-left: 1rem;
    }
    .hero-stat .num {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--green-light);
      line-height: 1;
    }
    .hero-stat .lbl {
      font-size: .7rem;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: rgba(255,255,255,.5);
      margin-top: 3px;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    /* ============================================
       QUICK LINKS STRIP
    ============================================ */
    #quickLinks {
      background: var(--green-deep);
      border-top: 1px solid rgba(166,187,138,.15);
      padding: 1.5rem 0;
    }
    .quick-link-item {
      display: flex;
      align-items: center;
      gap: .65rem;
      color: rgba(255,255,255,.8);
      font-size: .85rem;
      font-weight: 500;
      padding: .5rem 1rem;
      border-radius: 8px;
      transition: var(--transition);
      white-space: nowrap;
    }
    .quick-link-item:hover {
      background: rgba(166,187,138,.15);
      color: var(--green-light);
      transform: translateY(-2px);
    }
    .quick-link-item i { font-size: 1.1rem; color: var(--green-light); }

    /* ============================================
       SECTION LABELS
    ============================================ */
    .section-label {
      font-family: 'DM Sans', sans-serif;
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--olive);
      margin-bottom: .6rem;
      display: flex;
      align-items: center;
      gap: .5rem;
    }
    .section-label::before {
      content: '';
      display: block;
      width: 20px;
      height: 2px;
      background: var(--green-light);
      border-radius: 2px;
    }

    .section-title {
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.18;
    }

    .section-desc {
      font-family: 'Source Serif 4', serif;
      font-size: 1rem;
      color: var(--text-light);
      line-height: 1.75;
    }

    /* ============================================
       ABOUT SECTION
    ============================================ */
    #about { padding: 6rem 0; background: var(--off-white); }

    .about-card {
      background: #474747;
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      border: 1.5px solid var(--border);
      box-shadow: var(--shadow);
      height: 100%;
    }
    .about-icon-box {
      width: 52px; height: 52px;
      background: rgba(255,255,255,.15);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      font-size: 1.4rem;
      color: #fff;
    }
    .about-card h5 {
      font-size: 1.1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.5rem;
    }
    .about-card p {
      font-size: 0.9rem;
      color: #FAFAF7;
      line-height: 1.7;
      margin: 0;
    }

    .about-main-text {
      font-family: 'Source Serif 4', serif;
      font-size: 1.05rem;
      line-height: 1.85;
      color: var(--text-mid);
    }

    .divider-leaf {
      width: 40px; height: 3px;
      background: linear-gradient(90deg, var(--green-deep), var(--green-light));
      border-radius: 3px;
      margin: 1.25rem 0;
    }

    /* ============================================
       ANNOUNCEMENTS / NEWS
    ============================================ */
    #announcements { padding: 6rem 0; background: var(--cream); }

    .announce-card {
      background: #fff;
      border-radius: var(--radius);
      border: 1.5px solid var(--border);
      overflow: hidden;
      transition: var(--transition);
      box-shadow: var(--shadow);
    }
    .announce-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: var(--green-light);
    }
    .announce-tag {
      display: inline-block;
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: .25rem .65rem;
      border-radius: 20px;
      background: rgba(20,90,50,.1);
      color: var(--green-deep);
      margin-bottom: .65rem;
    }
    .announce-tag.urgent { background: rgba(220,38,38,.1); color: #dc2626; }
    .announce-tag.event  { background: rgba(166,187,138,.25); color: var(--text-mid); }

    .announce-card-body { padding: 1.5rem; }
    .announce-card-body h6 {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1.4;
      margin-bottom: .5rem;
    }
    .announce-card-body p {
      font-size: .85rem;
      color: var(--text-light);
      line-height: 1.65;
      margin-bottom: .75rem;
	  min-height:68px;
    }
    .announce-date {
      font-size: .72rem;
      font-weight: 500;
      color: var(--text-light);
      display: flex;
      align-items: center;
      gap: .35rem;
    }
    .announce-date i { color: var(--green-light); }

    /* ============================================
       EVENTS CALENDAR
    ============================================ */
    #events { padding: 6rem 0; background: var(--off-white); }

    .calendar-wrapper {
      background: #fff;
      border-radius: var(--radius-lg);
      border: 1.5px solid var(--border);
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    .cal-header {
      background: var(--green-deep);
      padding: 1.25rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: #fff;
    }
    .cal-header h6 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin: 0;
      color: #fff;
    }
    .cal-nav-btn {
      background: rgba(166,187,138,.2);
      border: none;
      color: var(--green-light);
      width: 32px; height: 32px;
      border-radius: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition);
      font-size: .9rem;
    }
    .cal-nav-btn:hover { background: rgba(166,187,138,.35); }

    .cal-days-header {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      background: rgba(20,90,50,.04);
      border-bottom: 1px solid var(--border);
    }
    .cal-day-name {
      padding: .65rem .4rem;
      text-align: center;
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--text-light);
    }
    .cal-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 1px;
      background: var(--border);
    }
    .cal-cell {
      background: #fff;
      min-height: 56px;
      padding: .4rem;
      display: flex;
      flex-direction: column;
      cursor: pointer;
      transition: var(--transition);
    }
    .cal-cell:hover { background: rgba(20,90,50,.04); }
    .cal-cell.other-month .day-num { color: #ccc; }
    .cal-cell.today .day-num {
      background: var(--green-deep);
      color: #fff;
      width: 24px; height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .day-num {
      font-size: .75rem;
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1;
      margin-bottom: 3px;
    }
    .cal-event-dot {
      width: 100%;
      background: var(--green-light);
      border-radius: 3px;
      font-size: .55rem;
      padding: 1px 3px;
      color: var(--green-deep);
      font-weight: 600;
      margin-top: 2px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .cal-event-dot.urgent { background: #fecaca; color: #dc2626; }

    .event-list-item {
      display: flex;
      gap: 1rem;
      padding: 1rem 0;
      border-bottom: 1px solid var(--border);
      transition: var(--transition);
    }
    .event-list-item:last-child { border-bottom: none; }
    .event-list-item:hover { padding-left: .25rem; }

    .event-date-badge {
      flex-shrink: 0;
      width: 48px;
      background: rgba(20,90,50,.07);
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: .4rem;
    }
    .event-date-badge .ev-day {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--green-deep);
      line-height: 1;
    }
    .event-date-badge .ev-mon {
      font-size: .6rem;
      text-transform: uppercase;
      letter-spacing: .08em;
      font-weight: 600;
      color: var(--olive);
    }
    .event-info h6 {
      font-family: 'Playfair Display', serif;
      font-size: .95rem;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: .2rem;
    }
    .event-meta {
      font-size: .78rem;
      color: var(--text-light);
      display: flex;
      gap: .75rem;
      flex-wrap: wrap;
    }
    .event-meta span { display: flex; align-items: center; gap: .3rem; }
    .event-meta i { color: var(--green-light); }

    .btn-subscribe {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: rgba(20,90,50,.08);
      color: var(--green-deep);
      font-size: .8rem;
      font-weight: 600;
      padding: .55rem 1.1rem;
      border-radius: 8px;
      border: 1.5px solid var(--border);
      transition: var(--transition);
    }
    .btn-subscribe:hover {
      background: var(--green-deep);
      color: #fff;
      border-color: var(--green-deep);
    }

    /* ============================================
       DOCUMENTS
    ============================================ */
    #documents { padding: 6rem 0; background: var(--cream); }

    .doc-category {
      background: #fff;
      border-radius: var(--radius);
      border: 1.5px solid var(--border);
      overflow: hidden;
      box-shadow: var(--shadow);
      margin-bottom: 1rem;
    }
    .doc-category-header {
      display: flex;
      align-items: center;
      gap: .75rem;
      padding: 1rem 1.25rem;
      background: rgba(20,90,50,.04);
      border-bottom: 1px solid var(--border);
      cursor: pointer;
      transition: var(--transition);
      user-select: none;
    }
    .doc-category-header:hover { background: rgba(20,90,50,.08); }
    .doc-cat-icon {
      width: 34px; height: 34px;
      background: var(--green-deep);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green-light);
      font-size: .95rem;
      flex-shrink: 0;
    }
    .doc-category-header h6 {
      font-size: .9rem;
      font-weight: 600;
      color: var(--text-dark);
      margin: 0;
      flex: 1;
    }
    .doc-count {
      font-size: .72rem;
      font-weight: 600;
      background: rgba(20,90,50,.1);
      color: var(--green-deep);
      padding: .15rem .55rem;
      border-radius: 20px;
    }
    .doc-chevron { color: var(--text-light); transition: var(--transition); font-size: .9rem; }
    .doc-category.open .doc-chevron { transform: rotate(180deg); }

    .doc-list { padding: .5rem 0; display: none; }
    .doc-category.open .doc-list { display: block; }

    .doc-item {
      display: flex;
      align-items: center;
      gap: .75rem;
      padding: .65rem 1.25rem;
      transition: var(--transition);
      cursor: pointer;
    }
    .doc-item:hover { background: rgba(20,90,50,.04); }
    .doc-item-icon {
      font-size: 1.1rem;
      color: #dc2626;
      flex-shrink: 0;
    }
    .doc-item-icon.pdf  { color: #dc2626; }
    .doc-item-icon.word { color: #2563eb; }
    .doc-item-icon.img  { color: #d97706; }
    .doc-item-name {
      font-size: .85rem;
      font-weight: 500;
      color: var(--text-dark);
      flex: 1;
    }
    .doc-item-size { font-size: .72rem; color: var(--text-light); }
    .doc-item-dl {
      font-size: .8rem;
      color: var(--green-deep);
      opacity: 0;
      transition: var(--transition);
    }
    .doc-item:hover .doc-item-dl { opacity: 1; }

    .private-area-card {
      background: var(--green-deep);
      border-radius: var(--radius-lg);
      padding: 2rem;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .private-area-card::before {
      content: '';
      position: absolute;
      top: -30px; right: -30px;
      width: 180px; height: 180px;
      background: rgba(166,187,138,.1);
      border-radius: 50%;
    }
    .private-area-card::after {
      content: '';
      position: absolute;
      bottom: -50px; left: -20px;
      width: 200px; height: 200px;
      background: rgba(166,187,138,.06);
      border-radius: 50%;
    }
    .private-area-card .lock-icon {
      width: 56px; height: 56px;
      background: rgba(166,187,138,.2);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: var(--green-light);
      margin-bottom: 1.25rem;
      position: relative; z-index: 1;
    }
    .private-area-card h5 {
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      position: relative; z-index: 1;
    }
    .private-area-card p {
      font-size: .85rem;
      color: rgba(255,255,255,.72);
      line-height: 1.65;
      position: relative; z-index: 1;
    }
    .btn-leadership {
      background: var(--green-light);
      color: var(--green-deep);
      font-weight: 700;
      font-size: .82rem;
      letter-spacing: .04em;
      padding: .65rem 1.4rem;
      border-radius: 9px;
      border: none;
      transition: var(--transition);
      position: relative; z-index: 1;
      cursor: pointer;
    }
    .btn-leadership:hover {
      background: #bbd19f;
      transform: translateY(-2px);
    }

    /* ============================================
       GOVERNMENT / LEADERSHIP
    ============================================ */
    #government { padding: 6rem 0; background: var(--off-white); }

    .leader-card {
      background: #fff;
      border-radius: var(--radius);
      border: 1.5px solid var(--border);
      padding: 1.5rem;
      text-align: center;
      transition: var(--transition);
      box-shadow: var(--shadow);
    }
    .leader-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: var(--green-light);
    }
    .leader-avatar {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--green-deep), var(--olive));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: #fff;
      margin: 0 auto 1rem;
    }
    .leader-card .role {
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--olive);
      margin-bottom: .3rem;
    }
    .leader-card .name {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: .5rem;
    }
    .leader-card .contact-links {
      display: flex;
      gap: .5rem;
      justify-content: center;
      margin-top: .75rem;
    }
    .leader-contact-btn {
      width: 30px; height: 30px;
      border-radius: 7px;
      background: rgba(20,90,50,.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .8rem;
      color: var(--green-deep);
      transition: var(--transition);
    }
    .leader-contact-btn:hover {
      background: var(--green-deep);
      color: #fff;
    }

    /* ============================================
       NOTIFICATIONS STRIP
    ============================================ */
    #notifications { padding: 6rem 0; background: var(--green-deep); }

    .notif-feature {
      text-align: center;
      color: #fff;
      padding: 1.5rem;
    }
    .notif-icon {
      width: 64px; height: 64px;
      background: rgba(166,187,138,.15);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      color: var(--green-light);
      margin: 0 auto 1rem;
      border: 1px solid rgba(166,187,138,.2);
    }
    .notif-feature h5 {
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: .5rem;
    }
    .notif-feature p {
      font-size: .85rem;
      color: rgba(255,255,255,.65);
      line-height: 1.65;
      margin: 0;
    }

    .signup-form-wrap {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(166,187,138,.2);
      border-radius: var(--radius-lg);
      padding: 2rem;
      max-width: 520px;
      margin: 0 auto;
    }
    .signup-form-wrap h4 {
      font-size: 1.35rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: .5rem;
    }
    .signup-form-wrap p {
      font-size: .88rem;
      color: rgba(255,255,255,.65);
      margin-bottom: 1.5rem;
    }
    .form-control-dark {
      background: rgba(255,255,255,.1);
      border: 1.5px solid rgba(166,187,138,.25);
      border-radius: 9px;
      color: #fff;
      font-size: .88rem;
      padding: .75rem 1rem;
      transition: var(--transition);
    }
    .form-control-dark::placeholder { color: rgba(255,255,255,.45); }
    .form-control-dark:focus {
      background: rgba(255,255,255,.14);
      border-color: var(--green-light);
      box-shadow: 0 0 0 3px rgba(166,187,138,.2);
      color: #fff;
      outline: none;
    }
    .form-check-label-light {
      font-size: .78rem;
      color: rgba(255,255,255,.6);
    }
    .form-check-input:checked { background-color: var(--green-light); border-color: var(--green-light); }

    .btn-signup {
      background: var(--green-light);
      color: var(--green-deep);
      font-weight: 700;
      font-size: .875rem;
      padding: .75rem 2rem;
      border-radius: 9px;
      border: none;
      width: 100%;
      transition: var(--transition);
      cursor: pointer;
    }
    .btn-signup:hover {
      background: #bbd19f;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(166,187,138,.3);
    }

    /* ============================================
       CONTACT
    ============================================ */
    #contact { padding: 6rem 0; background: var(--off-white); }

    .contact-card {
      background: #fff;
      border-radius: var(--radius-lg);
      border: 1.5px solid var(--border);
      padding: 2.5rem;
      box-shadow: var(--shadow);
      height: 100%;
    }

    .contact-info-item {
      display: flex;
      gap: 1rem;
      padding: 1.1rem 0;
      border-bottom: 1px solid var(--border);
      align-items: flex-start;
    }
    .contact-info-item:last-child { border-bottom: none; }
    .contact-info-icon {
      width: 40px; height: 40px;
      background: rgba(20,90,50,.08);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: var(--green-deep);
      flex-shrink: 0;
    }
    .contact-info-text { font-size: .87rem; }
    .contact-info-text .label {
      font-size: .68rem;
      text-transform: uppercase;
      letter-spacing: .1em;
      font-weight: 600;
      color: var(--text-light);
      margin-bottom: .15rem;
    }
    .contact-info-text .value {
      color: var(--text-dark);
      font-weight: 500;
      line-height: 1.5;
    }

    .form-group-custom label {
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: .04em;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: .4rem;
    }
    .form-control-custom {
      background: var(--off-white);
      border: 1.5px solid var(--border);
      border-radius: 9px;
      font-size: .9rem;
      color: var(--text-dark);
      padding: .7rem 1rem;
      transition: var(--transition);
      width: 100%;
    }
    .form-control-custom:focus {
      background: #fff;
      border-color: var(--green-deep);
      box-shadow: 0 0 0 3px rgba(20,90,50,.1);
      outline: none;
    }
    .form-control-custom::placeholder { color: #b0b8aa; }

    .disclaimer-box {
      background: rgba(220,38,38,.05);
      border: 1px solid rgba(220,38,38,.15);
      border-radius: 8px;
      padding: .75rem 1rem;
      font-size: .75rem;
      color: #9a3030;
      margin-top: 1rem;
    }
    .disclaimer-box i { color: #dc2626; }

    .btn-submit {
      background: var(--green-deep);
      color: #fff;
      font-weight: 600;
      font-size: .875rem;
      padding: .8rem 2rem;
      border-radius: 9px;
      border: none;
      transition: var(--transition);
      cursor: pointer;
    }
    .btn-submit:hover {
      background: var(--green-mid);
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }

    /* ============================================
       LOGIN MODAL
    ============================================ */
    .modal-content {
      border-radius: var(--radius-lg);
      border: none;
      overflow: hidden;
    }
    .modal-header-custom {
      background: var(--green-deep);
      padding: 1.5rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .modal-header-custom h5 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
      margin: 0;
    }
    .modal-close-btn {
      background: rgba(166,187,138,.2);
      border: none;
      color: var(--green-light);
      width: 32px; height: 32px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: .9rem;
      transition: var(--transition);
    }
    .modal-close-btn:hover { background: rgba(166,187,138,.35); }
    .modal-body-custom { padding: 2rem; background: #fff; }

    .login-field label {
      font-size: .75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .06em;
      color: var(--text-light);
      margin-bottom: .4rem;
      display: block;
    }

    /* ============================================
       FOOTER
    ============================================ */
    #footer {
      background: var(--text-dark);
      color: rgba(255,255,255,.65);
      padding: 4rem 0 2rem;
    }
    .footer-brand .brand-text .city-of { color: rgba(255,255,255,.45); }
    .footer-brand .brand-text .city-name { color: #fff; }
    .footer-brand .brand-text .city-sub { color: var(--green-light); }
    .footer-brand .brand-badge { background: rgba(166,187,138,.15); }

    .footer-desc {
      font-size: .85rem;
      line-height: 1.7;
      color: rgba(255,255,255,.5);
      margin-top: .75rem;
    }

    .footer-heading {
      font-family: 'Playfair Display', serif;
      font-size: .9rem;
      font-weight: 700;
      color: rgba(255,255,255,.9);
      margin-bottom: 1.1rem;
      letter-spacing: .03em;
    }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: .5rem; }
    .footer-links a {
      font-size: .84rem;
      color: rgba(255,255,255,.5);
      transition: var(--transition);
      display: flex;
      align-items: start;
      gap: .4rem;
    }
    .footer-links a:hover {
      color: var(--green-light);
      padding-left: .25rem;
    }
    .footer-links a i{font-size:0.65rem; color: var(--green-light); padding-top:2px;}

    .footer-divider {
      border-color: rgba(255,255,255,.08);
      margin: 2.5rem 0 1.5rem;
    }
    .footer-bottom {
      font-size: .78rem;
      color: rgba(255,255,255,.35);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: .75rem;
    }
    .footer-bottom a { color: rgba(255,255,255,.45); }
    .footer-bottom a:hover { color: var(--green-light); }

    .social-icons { display: flex; gap: .5rem; }
    .social-icon {
      width: 34px; height: 34px;
      border-radius: 8px;
      background: rgba(255,255,255,.07);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .9rem;
      color: rgba(255,255,255,.5);
      transition: var(--transition);
    }
    .social-icon:hover {
      background: rgba(166,187,138,.2);
      color: var(--green-light);
    }

    /* ============================================
       SCROLL TO TOP
    ============================================ */
    #scrollTop {
      position: fixed;
      bottom: 2rem; right: 2rem;
      width: 44px; height: 44px;
      background: var(--green-deep);
      color: #fff;
      border-radius: 50%;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      cursor: pointer;
      opacity: 0;
      transform: translateY(16px);
      transition: var(--transition);
      z-index: 999;
      box-shadow: 0 4px 16px rgba(20,90,50,.35);
    }
    #scrollTop.show { opacity: 1; transform: translateY(0); }
    #scrollTop:hover { background: var(--green-mid); }

    /* ============================================
       TOAST NOTIFICATIONS
    ============================================ */
    .toast-container-custom {
      position: fixed;
      top: 80px; right: 1.5rem;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      gap: .5rem;
    }
    .toast-custom {
      background: #fff;
      border-radius: var(--radius);
      padding: 1rem 1.25rem;
      box-shadow: var(--shadow-lg);
      border-left: 4px solid var(--green-deep);
      display: flex;
      align-items: flex-start;
      gap: .75rem;
      min-width: 280px;
      max-width: 340px;
      animation: slideInRight .3s ease;
    }
    .toast-custom.success { border-color: #16a34a; }
    .toast-custom.error   { border-color: #dc2626; }
    .toast-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .05rem; }
    .toast-icon.success { color: #16a34a; }
    .toast-icon.info    { color: var(--green-deep); }
    .toast-body-t { flex: 1; }
    .toast-title { font-size: .82rem; font-weight: 700; color: var(--text-dark); margin-bottom: .15rem; }
    .toast-msg   { font-size: .78rem; color: var(--text-light); line-height: 1.4; }

    @keyframes slideInRight {
      from { opacity: 0; transform: translateX(20px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    /* ============================================
       UTILITIES
    ============================================ */
    .btn-green {
      background: var(--green-deep);
      color: #fff;
      border: none;
      font-weight: 600;
      font-size: .875rem;
      padding: .7rem 1.6rem;
      border-radius: 9px;
      transition: var(--transition);
      cursor: pointer;
    }
    .btn-green:hover {
      background: var(--green-mid);
      color: #fff;
      transform: translateY(-2px);
    }
    .btn-outline-green {
      background: transparent;
      color: var(--green-deep);
      border: 1.5px solid var(--green-deep);
      font-weight: 600;
      font-size: .875rem;
      padding: .68rem 1.6rem;
      border-radius: 9px;
      transition: var(--transition);
      cursor: pointer;
    }
    .btn-outline-green:hover {
      background: var(--green-deep);
      color: #fff;
    }

    .fade-in-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .fade-in-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
	
	
	/* ============================================
   HERO CAROUSEL OVERRIDES
============================================ */
#hero .carousel-item {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  max-height:675px;
}

#hero .carousel-inner,
#hero .carousel {
  min-height: 100vh;
}

/* Prev / Next arrows */
.hero-carousel-ctrl {
  width: 52px;
  opacity: 1 !important;
  bottom: -40px; /* above indicators */
}

.hero-ctrl-inner {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.10);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}

.hero-carousel-ctrl:hover .hero-ctrl-inner {
  background: var(--green-light);
  border-color: var(--green-light);
  color: var(--green-deep);
}

/* Dot indicators */
.hero-carousel-indicators {
  bottom: 2.2rem;
  gap: 6px;
  margin: 0;
  justify-content: center;
}

.hero-carousel-indicators button {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.30);
  border: none;
  opacity: 1;
  transition: var(--transition);
}

.hero-carousel-indicators button.active {
  background: var(--green-light);
  width: 52px;
}

/* Mobile */
@media (max-width: 768px) {
  #hero .carousel-item { min-height: auto; padding: 8rem 0 6rem; }
  #hero .carousel-inner,
  #hero .carousel { min-height: auto; }
  .hero-carousel-ctrl { display: none; }
}


/* ============================================
   GALLERY CAROUSEL
============================================ */
.gallery-section {
  background: var(--cream);
  padding: 5rem 0;
}

.gallery-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: .5rem;
}

/* Gallery image blocks */
.gal-img {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gal-img-tall  { height: 460px; }
.gal-img-half  { height: 220px; }
.gal-img-sq    { height: 220px; }

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 90, 50, 0.72) 0%,
    transparent 55%
  );
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.1rem;
  opacity: 0;
  transition: opacity .35s ease;
}

.gal-img:hover .gal-overlay { opacity: 1; }

.gal-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(166, 187, 138, 0.20);
  border: 1px solid rgba(166, 187, 138, 0.40);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .28rem .75rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* Carousel wrapper */
.gallery-inner {
  position: relative;
  padding: 0 0 3rem;
}

/* Controls */
.gal-ctrl {
  width: auto;
  top: auto;
  bottom: 0;
  height: 44px;
  opacity: 1 !important;
}

.carousel-control-prev.gal-ctrl { left: calc(50% - 58px); }
.carousel-control-next.gal-ctrl { right: calc(50% - 58px); }

.gal-ctrl-inner {
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--green-deep);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.gal-ctrl:hover .gal-ctrl-inner {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: #fff;
}

/* Indicators */
.gallery-indicators {
  position: static;
  margin: 1.5rem 0 2rem;
  gap: 6px;
  justify-content: center;
}

.gallery-indicators button {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(20, 90, 50, 0.20);
  border: none;
  opacity: 1;
  transition: var(--transition);
}

.gallery-indicators button.active {
  background: var(--green-deep);
  width: 46px;
}

/* Responsive */
@media (max-width: 768px) {
  .gal-img-tall { height: 280px; }
  .gal-img-half { height: 150px; }
  .gal-img-sq   { height: 150px; }
  .gal-overlay  { opacity: 1; }
}

@media (max-width: 576px) {
  .gallery-section { padding: 3rem 0; }
  .gal-img-tall { height: 220px; }
  .gal-img-half,
  .gal-img-sq   { height: 130px; }
}
	
	
	/* Custom Style */
	.herosectioncls{background-image:url('../images/herobg01.webp')!important; background-color:transparent!important; background-repeat:no-repeat; background-position:top left; 
	background-size:cover;}
	.hero-bg{background-color:transparent; background:linear-gradient(to right, rgba(0,0,0,8.0), rgba(20, 90, 50, 0.5), rgba(20, 90, 50, 0.0));}
	.hero-badge{color:#fff;}
	.container{max-width:1240px;}
	.hero-stat .lbl{color:#fff;}
	
	.aboutcardone{background-image:url('../images/about01.jpg'); background-repeat:no-repeat; background-position:top left; background-size:cover;}
	.abtimgone{background-image:url('../images/about02.jpg');}
	.abtimgtwo{background-image:url('../images/about03.jpg');}
	.abtimgthree{background-image:url('../images/about04.jpg');}
	
	.announcementssec{background-image:url('../images/announcementbg.jpg'); 
	background-repeat:no-repeat; background-position:top left; background-size:cover;}
	.eventssec{background:transparent!important; background-image:url('../images/eventsbg.jpg')!important; background-repeat:no-repeat!important; background-position:top left; background-size:cover!important;}
	
	#events h2.section-title{color:#fff;}
	#events .section-desc{color:#fff;}
	
	.btn-subscribe{color:#fff; background:rgba(20,90,50,0.8);}
	
	.governmentsec{background:transparent!important; background-image:url('../images/govbg01.jpg')!important; background-repeat:no-repeat!important; background-position:top left; background-size:cover!important;}
	#government h2.section-title{color:#fff;}
	#government .section-desc{color:#fff;}
	
	.contactbgsec{background:transparent!important; 
	background-image:url('../images/contactbg01.jpg')!important; background-repeat:no-repeat!important; background-position:top left; background-size:cover!important;}
	#contact h2.section-title{color:#fff;}
	#contact .section-desc{color:#fff;}
	
	.carousel-indicators [data-bs-target]{border-top:2px solid transparent; 
	border-bottom:2px solid transparent;}
	
	.gmapcls{background:rgba(20,90,50,.06); border-radius:var(--radius); height:207px; display:flex; align-items:center; justify-content:center; margin-top:1.5rem; border:1.5px solid var(--border); flex-direction:column; gap:.5rem; color:var(--text-light);}
	
	#galleryCarousel .carousel-indicators.gallery-indicators{display:none!important;}
	#galleryCarousel .gal-ctrl{bottom:-1.2rem;}
	
	.mainlogotop{width:110px;}
	.midtxtcls{font-size:20px!important;}
	
	.populcountrycls{width:100%; text-align:center; color:#fff; margin-bottom:0; font-size:20px;}
	.populcountrysec{width:100%; padding:1.7rem 0; background-color:#145A32;}
	

    /* ============================================
       RESPONSIVE
    ============================================ */
    @media (max-width: 768px) {
      #hero { padding: 8rem 0 4rem; min-height: auto; }
      .hero-stat-row { flex-wrap: wrap; gap: 1rem; }
      .hero-visual { display: none; }
      .cal-cell { min-height: 40px; }
      .cal-event-dot { display: none; }
    }

    @media (max-width: 576px) {
      .brand-badge { width: 38px; height: 38px; }
      .navbar-nav { padding: 1rem 0; border-top: 1px solid var(--border); margin-top: .5rem; }
    }