* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f8f1e9;
}

/* NAVBAR */
/* ================= NAVBAR FIXED ================= */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #f8f1e9;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

/* DROPDOWN WRAPPER */
/* DROPDOWN WRAPPER */
.dropdown {
  position: relative;
}

/* DROPDOWN MENU */
.dropdown-menu {
  position: absolute;
  top: 140%;
  left: 0;

  background: #ffffff; /* ✅ LIGHT BG */
  border-radius: 14px;

  padding: 10px 0;
  min-width: 200px;

  display: none;

  border: 1px solid #eee;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);

  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s ease;

  z-index: 1000;
}

/* SHOW STATE */
.dropdown.active .dropdown-menu {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

/* MENU ITEMS */
/* ================= DROPDOWN (FINAL THEME MATCH) ================= */

.dropdown {
  position: relative;
}

/* MENU BOX */
.dropdown-menu {
  position: absolute;
  top: 140%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);

  /* ✅ THEME COLORS */
  background: #f8f1e9; /* cream */

  border: 1px solid #e6dcd2;
  border-radius: 16px;

  padding: 8px 0;
  min-width: 220px;

  display: none;

  /* subtle premium shadow */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  opacity: 0;
  transition: all 0.25s ease;

  z-index: 1000;
}

/* SHOW */
.dropdown.active .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* LINKS */
.dropdown-menu a {
  display: block;
  padding: 14px 22px;

  color: #5a0f2e; /* maroon */
  font-size: 14px;
  font-weight: 500;

  text-decoration: none;
  transition: all 0.25s ease;

  position: relative;
}

/* HOVER (GOLD + CLEAN) */
.dropdown-menu a:hover {
  background: #fffaf3; /* soft cream highlight */
  padding-left: 28px;
}

/* REMOVE ANY UNDERLINE */
.dropdown-menu a::after {
  display: none !important;
}

/* GOLD SIDE ACCENT */
.dropdown-menu a::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);

  width: 0;
  height: 2px;
  background: #c9a25d;

  transition: 0.3s ease;
}

.dropdown-menu a:hover::before {
  width: 12px;
}

/* HOVER EFFECT */
.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  padding-left: 26px;
}

/* REMOVE UNDERLINE (IMPORTANT) */
.dropdown-menu a::after {
  display: none !important;
}

/* OPTIONAL: GOLD ACCENT LINE ON HOVER */
.dropdown-menu a::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);

  width: 0;
  height: 2px;
  background: #c9a25d;

  transition: 0.3s;
}

.dropdown-menu a:hover::before {
  width: 10px;
}

/* CONTAINER */
.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;

  /* 🔥 FIX: SAME HEIGHT ALWAYS */
  height: 65px;
  padding: 0 20px;
}

/* LOGO */
/* ===============================
   NAVBAR LOGO (PREMIUM TEXT LOGO)
=============================== */

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* circle icon */
.logo-icon {
  width: 42px;
  height: 42px;
  background: #7a0c2e;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #f4d3a1;
  font-size: 18px;
  font-weight: bold;
}

/* text container */
.logo-text h2 {
  font-size: 18px;
  margin: 0;
  font-family: "Playfair Display", serif;
  color: #5a0f2e;
  letter-spacing: 1px;
}

/* sub text */
.logo-text p {
  margin: 0;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #888;
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 26px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  position: relative;
}

/* HOVER LINE */
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #5a0f2e;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ACTIVE */
.nav-links a.active {
  color: #5a0f2e;
  font-weight: 500;
}

/* BUTTON */
.nav-btn {
  background: #5a0f2e;
  color: white;
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
}

/* BODY OFFSET */
body {
  padding-top: 65px;
}

.btn-primary {
  background: #7a0c2e;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  margin-left: 10px;
  cursor: pointer;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("banner.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(90, 15, 46, 0.85);
  top: 0;
  left: 0;
}

.hero-content {
  position: relative;
  max-width: 700px;
  color: white;
}

.tagline {
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  line-height: 1.2;
}

.hero h1 span {
  color: #d4af37;
}

.desc {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.buttons {
  margin-top: 30px;
}

.overlay {
  background: linear-gradient(rgba(90, 15, 46, 0.9), rgba(90, 15, 46, 0.85));
}

/* ABOUT SECTION */

/* ================= ABOUT HOME ================= */

.about-home {
  padding: 60px 80px; /* 👈 side spacing */
  background: #f8f1e9;
}

/* CONTAINER */
.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.about-image {
  position: relative;
}

.about-image img {
  width: 90%;
  border-radius: 16px;
}

/* BADGE */
.about-badge {
  position: absolute;
  bottom: 11px;
  right: 20px;
  background: white;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-badge strong {
  display: block;
  font-size: 20px;
  color: #5a0f2e;
}

.about-badge span {
  font-size: 12px;
  color: #777;
}

.about-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.about-label .line {
  width: 40px;
  height: 1.5px;
  background-color: #7a0c2e; /* same maroon */
}

.about-label .text {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7a0c2e;
  font-weight: 600;
}

/* CONTENT */
.about-content h2 {
  font-size: 36px;
  color: #5a0f2e;
  margin-bottom: 15px;
}

.about-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* TAG */
.section-tag {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a6d5c;
  margin-bottom: 10px;
  display: block;
}

/* FEATURES GRID */
.about-features {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.feature-box {
  background: white;
  padding: 10px;
  margin-bottom: 5px;
  border-radius: 10px;
  border: 1px solid #eee;
}

.feature-box h4 {
  color: #5a0f2e;
  margin-bottom: 5px;
}

.feature-box p {
  font-size: 13px;
  color: #666;
}

/* ==========================================================
   chairperson PREVIEW
========================================================== */

.chairperson-preview {
  max-width: 1200px;
  width: 100%;

  margin: 90px auto;
  padding: 70px 30px 0;

  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: flex-start;

  border-top: 1px solid #e4d8cc;

  overflow: hidden;
}

/* ==========================================================
   IMAGE
========================================================== */
/* ==========================================
      CHAIRPERSON IMAGE
========================================== */

.chairperson-image {
  position: relative;

  width: 100%;

  max-width: 320px;

  height: 440px;

  margin: auto;

  overflow: hidden;

  border-radius: 170px 170px 26px 26px;

  border: 3px solid #d2a85a;

  background: #fff;

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.12),
    0 0 0 8px rgba(210, 168, 90, 0.08);

  transition: 0.45s ease;
}

.chairperson-image:hover {
  transform: translateY(-8px);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.18),
    0 0 0 10px rgba(210, 168, 90, 0.1);
}

.chairperson-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center top;

  transition: transform 0.5s ease;
}

.chairperson-image:hover img {
  transform: scale(1.05);
}

/* ==========================================================
   OVERLAY
========================================================== */
/* ==========================================
      CHAIRPERSON BADGE
========================================== */

.chairperson-badge {
  position: absolute;

  left: 50%;

  bottom: 16px;

  transform: translateX(-50%);

  width: 72%;

  background: linear-gradient(135deg, #7a1239, #5a0f2e);

  color: #fff;

  border-radius: 16px;

  padding: 4px 1px;

  text-align: center;

  border: 1px solid rgba(255, 255, 255, 0.18);

  backdrop-filter: blur(8px);

  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.badge-icon {
  display: block;

  font-size: 12px;

  color: #d8b15a;

  margin-bottom: 4px;
}

.chairperson-badge h4 {
  margin: 0;

  font-family: "Playfair Display", serif;

  font-size: 20px;

  font-weight: 600;

  color: #fff;
}

/* ==========================================================
   CONTENT
========================================================== */

.chairperson-content {
  display: flex;
  flex-direction: column;
  justify-content: center;

  height: 100%;
}

.chairperson-label {
  display: inline-block;

  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: #c9a25d;

  font-weight: 600;

  margin-bottom: 18px;
}

.chairperson-content h3 {
  font-family: "Playfair Display", serif;

  font-size: 60px;

  line-height: 1.08;

  color: #5a0f2e;

  margin-bottom: 20px;
}

.chairperson-designation {
  max-width: 520px;

  font-size: 20px;

  color: #555;

  line-height: 1.6;

  margin-bottom: 30px;

  font-weight: 500;
}

.chairperson-content p {
  max-width: 640px;

  font-size: 18px;

  color: #666;

  line-height: 1.9;

  margin-bottom: 18px;
}
/*==============================
      MESSAGE CARD
==============================*/

/*=========================================
        CHAIRPERSON MESSAGE CARD
=========================================*/

.message-card {
  width: 100%;

  margin: 18px 0;

  padding: 22px 24px;

  background: #fff;

  border-left: 4px solid #d2a85a;

  border-radius: 18px;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);

  overflow-wrap: break-word;
}

/* Greeting */

.greeting {
  font-family: "Playfair Display", serif;

  font-size: 24px;

  font-weight: 600;

  color: #6a1737;

  margin: 0 0 16px;
}

/* Intro */

.message-intro {
  font-size: 17px;

  line-height: 1.8;

  color: #555;

  margin-bottom: 18px;
}

/* Body Text */

.message-card p {
  font-size: 12px;
  line-height: 1.75;
  color: #666;
  margin: 0 0 16px;
}

/* Single Divider */

.message-divider {
  width: 60px;

  height: 2px;

  background: #d2a85a;

  margin: 14px 0;
}

/* Quote */

.message-quote {
  margin: 0;

  padding: 14px 20px;

  background: #fcf8f2;

  border-left: 4px solid #d2a85a;

  font-family: "Playfair Display", serif;

  font-style: italic;

  font-size: 18px;

  line-height: 1.7;

  color: #6a1737;
}

/* Remove extra spacing from last paragraph */

.message-card p:last-of-type {
  margin-bottom: 0;
}

/* ===============================
   Chairperson Signature
================================= */

.chairperson-sign {
  margin-top: 8px;
}

.chairperson-signature {
  font-family: "Alex Brush", cursive;

  font-size: 30px;

  color: #5a0f2e;

  line-height: 1.1;

  margin-bottom: 10px;

  opacity: 0.95;
}

.chairperson-org {
  font-family: "Cormorant Garamond", serif;

  font-size: 14px;

  letter-spacing: 2px;

  color: #8b6a42;

  text-transform: uppercase;

  font-weight: 600;

  max-width: 620px;

  line-height: 1.5;
}

/* ==========================================================
   BUTTON
========================================================== */

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: fit-content;

  margin-top: 8px;

  padding: 14px 34px;

  border: 2px solid #5a0f2e;

  border-radius: 8px;

  color: #5a0f2e;

  font-weight: 600;

  text-decoration: none;

  transition: 0.35s;
}

.btn-outline:hover {
  background: #5a0f2e;
  color: #fff;
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 992px) {
  .chairperson-image {
    max-width: 280px;

    height: 450px;
  }

  .chairperson-badge h4 {
    font-size: 24px;
  }
}
@media (max-width: 1100px) {
  .chairperson-preview {
    grid-template-columns: 1fr;

    gap: 40px;

    text-align: center;
  }

  .chairperson-content {
    align-items: center;
  }

  .chairperson-image {
    max-width: 320px;
  }

  .chairperson-image img {
    height: 460px;
  }
}

/*==================================================
                EVENTS SECTION
==================================================*/

.events-section {
  padding: 110px 8%;
  background: #faf7f2;
  position: relative;
  overflow: hidden;
}

.events-section .section-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 70px;
}

.events-section .section-tag {
  display: inline-block;
  color: #c9a25d;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.events-section .section-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  color: #5a0f2e;
  margin-bottom: 20px;
}

.events-section .section-heading p {
  max-width: 760px;
  margin: auto;
  font-size: 17px;
  line-height: 1.9;
  color: #666;
}

/*==================================================
                SLIDER
==================================================*/

.events-slider {
  position: relative;
  max-width: 1350px;
  margin: auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.events-track {
  display: flex;
  width: 100%;
}

.event-slide {
  position: relative;
  min-width: 100%;
  display: none;
}

.event-slide.active {
  display: block;
}

.event-slide img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: 0.6s;
}

.event-slide:hover img {
  transform: scale(1.05);
}

/*==================================================
                OVERLAY
==================================================*/

.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7) 5%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.2) 100%
  );

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 70px;
}

.event-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: #c9a25d;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.event-overlay h3 {
  font-family: "Playfair Display", serif;
  font-size: 54px;
  color: #fff;
  max-width: 700px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.event-date {
  color: #f6e8be;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 22px;
}

.event-description {
  max-width: 560px;
  color: #fff;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 35px;
}

/*==================================================
                BUTTON
==================================================*/

.events-section .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  background: #fff;
  color: #5a0f2e;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: 0.35s;
  border: none;
}

.events-section .btn-outline:hover {
  background: #c9a25d;
  color: #fff;
  transform: translateY(-3px);
}

/*==================================================
            PREVIOUS / NEXT
==================================================*/

.event-prev,
.event-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 55px;
  height: 55px;

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(10px);

  color: #fff;

  font-size: 22px;

  cursor: pointer;

  transition: 0.35s;

  z-index: 5;
}

.event-prev {
  left: 25px;
}

.event-next {
  right: 25px;
}

.event-prev:hover,
.event-next:hover {
  background: #c9a25d;

  transform: translateY(-50%) scale(1.08);
}

/*==================================================
                DOTS
==================================================*/

.slider-dots {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 14px;

  margin-top: 35px;
}

.dot {
  width: 13px;

  height: 13px;

  border-radius: 50%;

  background: #d7c5a2;

  cursor: pointer;

  transition: 0.35s;
}

.dot.active {
  width: 42px;

  border-radius: 50px;

  background: #5a0f2e;
}

/*==================================================
            RESPONSIVE
==================================================*/

@media (max-width: 992px) {
  .events-section {
    padding: 90px 6%;
  }

  .events-section .section-heading h2 {
    font-size: 46px;
  }

  .event-slide img {
    height: 470px;
  }

  .event-overlay {
    padding: 50px;
  }

  .event-overlay h3 {
    font-size: 42px;
  }

  .event-description {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .events-section {
    padding: 80px 5%;
  }

  .events-section .section-heading h2 {
    font-size: 36px;
  }

  .events-section .section-heading p {
    font-size: 15px;
  }

  .event-slide img {
    height: 380px;
  }

  .event-overlay {
    justify-content: flex-end;

    padding: 35px;
  }

  .event-overlay h3 {
    font-size: 28px;
  }

  .event-date {
    font-size: 15px;
  }

  .event-description {
    display: none;
  }

  .event-prev,
  .event-next {
    width: 42px;

    height: 42px;

    font-size: 18px;
  }
}

/* ABOUT PAGE CSS */

/* ===============================
   HERO SECTION
=============================== */

.about-hero {
  height: 80vh;
  display: flex;
  align-items: center;
  padding: 0 60px;
  background:
    linear-gradient(rgba(90, 15, 46, 0.85), rgba(90, 15, 46, 0.85)),
    url("/images/about-pg.jpg") center/cover;
  color: white;
}

.about-hero h1 {
  font-size: 50px;
  font-family: "Playfair Display", serif;
}

.about-hero p {
  margin-top: 10px;
  font-size: 16px;
  opacity: 0.9;
}

/* ===============================
   ABOUT SPLIT (TEXTURE SECTION)
=============================== */

.about-split {
  display: flex;
  gap: 60px;
  width: 85%;
  margin: 80px auto;
  align-items: center;

  background:
    linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)),
    url("about-bg.png");
  background-repeat: repeat;
  background-size: 220px;

  padding: 40px;
  border-radius: 16px;
}

/* IMAGE */
.about-img {
  position: relative;
}

.about-img img {
  width: 300px;
  border-radius: 20px;
}

/* EXPERIENCE BADGE */
.experience {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #5a0f2e;
  color: white;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 14px;
}

/* TEXT */
.about-text h5 {
  color: #8b1e2d;
  letter-spacing: 2px;
  font-size: 12px;
}

.about-text h2 {
  font-family: "Playfair Display", serif;
  margin: 10px 0;
}

.about-text p {
  margin-bottom: 12px;
  line-height: 1.7;
  color: #444;
}

/* ===============================
   FIASWI AT A GLANCE (DARK SECTION)
=============================== */

.glance-premium {
  background: linear-gradient(rgba(90, 15, 46, 0.95), rgba(90, 15, 46, 0.95));
  padding: 80px 0;
  color: white;
}

.glance-container {
  width: 85%;
  margin: auto;
}

.glance-premium h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 35px;
}

.glance-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.glance-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s;
}

.glance-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
}

.glance-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
}

.glance-card p {
  font-size: 13.5px;
  color: #eee;
  margin: 0;
}

/* ===============================
   VISION + MISSION (TEXTURE)
=============================== */

.vm-section {
  display: flex;
  gap: 30px;
  width: 85%;
  margin: 80px auto;

  background:
    linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)),
    url("about-bg.png");
  background-repeat: repeat;
  background-size: 220px;

  padding: 40px;
  border-radius: 16px;
}

.vm-card {
  flex: 1;
  padding: 30px;
  border-radius: 15px;
  background: #5a0f2e;
  color: white;
}

.vm-card.light {
  background: #fff;
  color: #333;
}

.vm-card ul li {
  margin-bottom: 8px;
}

/* ===============================
   WHY JOIN (TEXTURE)
=============================== */

.about-why {
  width: 85%;
  margin: 80px auto;

  background:
    linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)),
    url("about-bg.png");
  background-repeat: repeat;
  background-size: 220px;

  padding: 40px;
  border-radius: 16px;
}

/* LABEL */
.about-why .about-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.about-why .line {
  width: 40px;
  height: 1.5px;
  background: #7a0c2e;
}

.about-why .text {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7a0c2e;
  font-weight: 600;
}

/* TITLE */
.about-section-title {
  font-size: 30px;
  color: #5a0f2e;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

/* DESC */
.about-section-desc {
  max-width: 600px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.why-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid #eee;
  transition: 0.35s ease;
  position: relative;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ICON */
.why-icon {
  width: 50px;
  height: 50px;
  background: rgba(122, 12, 46, 0.08);
  color: #7a0c2e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 20px;
  margin-bottom: 18px;
}

.why-card h3 {
  font-size: 16px;
  color: #7a0c2e;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width: 992px) {
  .about-split {
    flex-direction: column;
  }

  .vm-section {
    flex-direction: column;
  }

  .glance-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .glance-cards,
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/*==================================================
                OUR TEAM SECTION
==================================================*/

/*==================================================
                OUR TEAM SECTION
==================================================*/

.team-section {
  padding: 110px 8%;
  background: #fbf5ec;
}

/*==========================
        SECTION HEADING
===========================*/

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 90px;
}

.section-tag {
  display: inline-block;
  color: #c9a25d;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: 58px;
  color: #5a0f2e;
  margin-bottom: 18px;
}

.section-heading p {
  color: #666;
  font-size: 17px;
  line-height: 1.9;
}

/*==========================
    CHAIRPERSON ROW
===========================*/

.leadership-top {
  display: flex;

  justify-content: center;

  align-items: flex-start;

  gap: 110px;

  flex-wrap: wrap;

  margin-bottom: 100px;
}

/*==========================
        TEAM CARD
===========================*/

.team-card {
  text-align: center;

  transition: 0.35s ease;

  cursor: pointer;
}

.team-card:hover {
  transform: translateY(-8px);
}

/*==========================
      NEW PREMIUM IMAGE
===========================*/

.team-image {
  width: 280px;

  height: 360px;

  margin: auto;

  overflow: hidden;

  border-radius: 170px 170px 24px 24px;

  background: #fff;

  border: 2px solid #d2a85a;

  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.08),
    0 0 0 6px rgba(210, 168, 90, 0.08);

  transition: 0.35s;
}

.team-card:hover .team-image {
  transform: translateY(-6px);

  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.12),
    0 0 0 8px rgba(210, 168, 90, 0.12);
}

.team-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center top;

  transition: 0.45s;
}

.team-card:hover img {
  transform: scale(1.05);
}

/*==========================
    FEATURED MEMBERS
===========================*/

.featured .team-image {
  width: 300px;

  height: 390px;
}

/*==========================
        DETAILS
===========================*/

.team-details {
  margin-top: 26px;
}

.member-number {
  display: inline-block;

  color: #c9a25d;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: 3px;

  margin-bottom: 12px;
}

.team-details h3 {
  font-family: "Playfair Display", serif;

  font-size: 30px;

  color: #5a0f2e;

  line-height: 1.25;

  margin-bottom: 18px;
}

.team-card:not(.featured) .team-details h3 {
  font-size: 22px;
}

.gold-divider {
  width: 120px;

  height: 2px;

  background: #d2a85a;

  margin: 0 auto 18px;

  position: relative;
}

.gold-divider::after {
  content: "";

  width: 9px;

  height: 9px;

  background: #d2a85a;

  position: absolute;

  left: 50%;

  top: 50%;

  transform: translate(-50%, -50%) rotate(45deg);
}

.team-details h4 {
  color: #555;

  font-size: 18px;

  font-weight: 600;

  margin-bottom: 10px;
}

.member-org {
  font-size: 13px;

  color: #8b8b8b;

  letter-spacing: 2px;

  text-transform: uppercase;

  line-height: 1.6;
}

/*==========================================
      EXECUTIVE COMMITTEE
==========================================*/

.committee-heading {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 28px;

  margin: 20px 0 75px;

  text-align: center;
}

.committee-line {
  width: 120px;

  height: 1px;

  background: #d2a85a;
}

.committee-heading h3 {
  font-family: "Playfair Display", serif;

  font-size: 36px;

  color: #5a0f2e;

  margin-bottom: 6px;
}

.committee-heading p {
  font-size: 13px;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: #888;
}

/*==========================================
            DIRECTORS GRID
==========================================*/

.directors-grid {
  max-width: 1280px;

  margin: 0 auto 100px;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 55px;

  align-items: start;
}

.directors-grid .team-card {
  width: 100%;
}

.directors-grid .team-image {
  width: 220px;

  height: 285px;
}

.directors-grid .team-details {
  margin-top: 22px;
}

.directors-grid .team-details h3 {
  font-size: 22px;

  margin-bottom: 14px;

  min-height: 58px;

  display: flex;

  justify-content: center;

  align-items: center;

  line-height: 1.35;
}

.directors-grid .team-details h4 {
  font-size: 16px;

  color: #666;
}

.directors-grid .gold-divider {
  width: 90px;

  margin-bottom: 14px;
}

/*==========================================
            HOVER EFFECTS
==========================================*/

.team-card:hover h3 {
  color: #7a1239;
}

.team-card:hover .gold-divider {
  width: 135px;

  transition: 0.35s ease;
}

.directors-grid .team-card:hover .gold-divider {
  width: 105px;
}

/*==========================================
            TEAM FOOTER
==========================================*/

.team-footer {
  max-width: 850px;

  margin: 0 auto;

  text-align: center;

  padding-top: 55px;

  border-top: 1px solid rgba(210, 168, 90, 0.35);
}

.team-footer h3 {
  font-family: "Playfair Display", serif;

  font-size: 28px;

  font-weight: 500;

  color: #5a0f2e;

  line-height: 1.7;

  margin-bottom: 35px;
}

.team-footer .btn-outline {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 14px 36px;

  border: 2px solid #5a0f2e;

  border-radius: 50px;

  color: #5a0f2e;

  font-weight: 600;

  text-decoration: none;

  transition: 0.35s;
}

.team-footer .btn-outline:hover {
  background: #5a0f2e;

  color: #fff;
}

/*==========================================
            RESPONSIVE
==========================================*/

@media (max-width: 1200px) {
  .leadership-top {
    gap: 70px;
  }

  .directors-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 60px;
  }
}

@media (max-width: 768px) {
  .section-heading h2 {
    font-size: 42px;
  }

  .committee-heading {
    flex-direction: column;

    gap: 16px;
  }

  .committee-line {
    display: none;
  }

  .featured .team-image {
    width: 270px;

    height: 350px;
  }

  .team-image {
    width: 250px;

    height: 320px;
  }

  .team-details h3 {
    font-size: 26px;
  }

  .directors-grid {
    grid-template-columns: 1fr;
  }

  .directors-grid .team-image {
    width: 240px;

    height: 300px;
  }

  .team-footer h3 {
    font-size: 24px;
  }
}

/* membership homepage css */

/* ================= MEMBERSHIP HOME ================= */

.membership-cta {
  padding: 80px 0;
}

/* CENTER BOX */
.membership-box {
  width: 85%;
  margin: auto;
  text-align: center;
  padding: 70px 40px;
  border-radius: 22px;

  background: linear-gradient(135deg, #5a0f2e, #7a0c2e);

  color: #fff;
  position: relative;
  overflow: hidden;
}

/* subtle glow effect */
.membership-box::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(60px);
}

/* TOP DOT LINE */
.cta-dots {
  width: 80px;
  height: 6px;
  margin: 0 auto 25px;
  background: radial-gradient(circle, #d4af37 2px, transparent 3px);
  background-size: 12px 6px;
  background-repeat: repeat-x;
}

/* HEADING */
.membership-box h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  line-height: 1.4;
  margin-bottom: 20px;
}

/* GOLD HIGHLIGHT */
.membership-box h2 span {
  color: #d4af37;
}

/* TEXT */
.membership-box p {
  max-width: 600px;
  margin: auto;
  font-size: 15px;
  color: #f3e9e9;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 12px 26px;
  background: #d4af37;
  color: #5a0f2e;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #fff;
  color: #5a0f2e;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .membership-box {
    padding: 50px 20px;
  }

  .membership-box h2 {
    font-size: 26px;
  }
}

/* membership page css */

/* ===============================
   MEMBERSHIP PAGE BASE
=============================== */

.membership-page {
  font-family: "Poppins", sans-serif;
  background: #f8f1e9;
}

/* ===============================
   NAVBAR (FORCED CONSISTENT)
=============================== */

/* NAV LINKS */
.nav-links a {
  margin-left: 25px;
  text-decoration: none;
  color: #444;
  font-size: 14px;
}

.nav-links a.active {
  color: #7a0c2e;
  font-weight: 500;
}

/* ===============================
   HERO (PREMIUM LOOK)
=============================== */

.membership-page .membership-hero {
  height: 60vh;
  display: flex;
  align-items: center;
  padding: 0 80px;

  background:
    linear-gradient(rgba(90, 15, 46, 0.85), rgba(90, 15, 46, 0.85)),
    url("/images/membership-pg.jpg") center/cover;

  color: white;
}

.membership-hero-content {
  max-width: 600px;
}

.membership-page .membership-hero h1 {
  font-size: 52px;
  font-family: "Playfair Display", serif;
}

.membership-page .membership-hero p {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.6;
}

/* ===============================
   SECTION BASE
=============================== */

.membership-page .membership-section {
  width: 85%;
  margin: 80px auto;
}
.membership-page .membership-section h2 {
  margin-bottom: 20px;
}

/* ===============================
   BENEFITS (PREMIUM CARDS)
=============================== */

.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.membership-card {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid #eee;
  font-size: 14px;
  line-height: 1.6;

  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* subtle top accent */
.membership-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: #7a0c2e;
  transition: 0.3s;
}

.membership-card:hover::before {
  width: 100%;
}

.membership-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ===============================
   ELIGIBILITY (CHIPS PREMIUM)
=============================== */

.membership-light {
  background: #fff;
  padding: 50px;
  border-radius: 16px;
  border: 1px solid #eee;
}

.membership-text {
  margin-bottom: 18px;
  color: #555;
}

.membership-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.membership-chips span {
  background: rgba(122, 12, 46, 0.08);
  color: #7a0c2e;
  padding: 10px 16px;
  border-radius: 25px;
  font-size: 13px;
  transition: 0.3s;
}

.membership-chips span:hover {
  background: #7a0c2e;
  color: #fff;
}

/* ===============================
   FEES (PREMIUM GRID)
=============================== */

.membership-fees {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD STYLE */
.membership-fee-box {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #eee;

  transition: 0.3s;
}

.membership-fee-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

/* HIGHLIGHT BOX */
.membership-highlight {
  background: linear-gradient(135deg, #7a0c2e, #5a0f2e);
  color: #fff;
  border: none;
}

/* TEXT */
.membership-fee-box h3 {
  margin-bottom: 10px;
  color: #7a0c2e;
}

.membership-highlight h3 {
  color: #fff;
}

.membership-fee-box p {
  font-size: 15px;
  margin: 6px 0;
}

.membership-fee-box small {
  font-size: 12px;
  color: #777;
}

.membership-highlight small {
  color: #eee;
}

/* ===============================
   NOTES (CLEAN BLOCK)
=============================== */

.membership-note {
  margin-top: 40px;
  padding: 25px 30px;
  border-radius: 12px;
  background: #fff;
  border-left: 4px solid #7a0c2e;
  line-height: 1.7;
}

.membership-note h4 {
  margin-bottom: 10px;
  color: #5a0f2e;
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width: 992px) {
  .membership-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .membership-fees {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .membership-grid,
  .membership-fees {
    grid-template-columns: 1fr;
  }

  .membership-page .membership-hero {
    padding: 30px;
    text-align: center;
  }
}

/* ===============================
   SERVICES PREVIEW (HOMEPAGE)
=============================== */

.services-section {
  width: 85%;
  margin: 100px auto;
}

/* =========================
   LABEL
========================= */

.section-header .label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.section-header .line {
  width: 40px;
  height: 1.5px;
  background: #7a0c2e;
}

.section-header .text {
  font-size: 13px;
  letter-spacing: 2px;
  color: #7a0c2e;
  font-weight: 600;
}

/* =========================
   HEADER WITH BUTTON
========================= */

.section-header .header-top {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}

/* BUTTON */
.section-header .header-btn {
  white-space: nowrap;
}

/* FIX: CONTROL WIDTH (IMPORTANT FOR DOT ALIGNMENT) */
.section-header .header-top > div {
  max-width: 600px;
}

/* =========================
   HEADING
========================= */

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  color: #5a0f2e;
  line-height: 1.25;
  margin-bottom: 20px;
}

/* =========================
   DOTS (FIXED ALIGNMENT)
========================= */

.section-header .dots {
  width: 200px;
  height: 6px;
  background: radial-gradient(circle, #c9a25d 2px, transparent 2px);
  background-size: 14px 6px;

  margin: 15px;

  /* ✅ KEY FIX */
  margin-left: 0;
  transform: translateX(0);
}

/* =========================
   GRID
========================= */

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 50px;
  border: 1px solid #e6dcd2;
  border-radius: 16px;
  overflow: hidden;
}

/* =========================
   ROW ITEMS
========================= */

.service-card-lg {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 28px;
  background: #fff;
  border-bottom: 1px solid #eee;
  transition: 0.25s ease;
}

.service-card-lg:nth-child(odd) {
  border-right: 1px solid #eee;
}

.service-card-lg:nth-last-child(-n + 2) {
  border-bottom: none;
}

.service-card-lg:hover {
  background: #faf7f4;
}

/* ===============================
   FIX BORDER FOR LAST ROW ITEMS
=============================== */

/* ensure 6th item keeps bottom border */
.service-card-lg:nth-child(6) {
  border-bottom: 1px solid #eee;
}

/* fix 7th item (full width) */
.service-card-lg:last-child {
  border-top: 1px solid #eee;
  border-bottom: none;
}

/* =========================
   ICON
========================= */

.service-card-lg .icon {
  width: 48px;
  height: 48px;
  background: #c9a25d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a0f2e;
  font-size: 16px;
  flex-shrink: 0;
}

/* =========================
   CONTENT
========================= */

.service-card-lg .content {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  gap: 6px;
}

.service-card-lg .content h3 {
  font-size: 17px;
  color: #5a0f2e;
  /* align-items: center; */
  font-weight: 600;
  margin-bottom: 4px;
}

.service-card-lg .content h3 span {
  font-size: 12px;
  color: #c9a25d;
  margin-right: 8px;
  position: relative;
  top: -1px;
}

.service-card-lg .content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card-lg:nth-child(odd) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .section-header .header-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-header .header-btn {
    margin-top: 15px;
  }
}

/* ===============================
   SERVICES PAGE
=============================== */

/* HERO */
/* ===============================
   SERVICES PAGE (SCOPED - FIXED)
=============================== */

.services-page .services-hero {
  height: 60vh;
  display: flex;
  align-items: center;
  padding: 0 80px;
  background:
    linear-gradient(rgba(90, 15, 46, 0.85), rgba(90, 15, 46, 0.85)),
    url("/images/services-pg.jpg") center/cover;
  color: white;
}

.services-page .services-hero h1 {
  font-size: 50px;
  font-family: "Playfair Display", serif;
}

.services-page .services-intro {
  width: 85%;
  margin: 70px auto 40px;
  text-align: center;
  color: #555;
  line-height: 1.7;
}

/* GRID */
.services-page .services-grid {
  width: 100%;
  margin: 0 auto 100px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  border: 1px solid #e6dcd2;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.service-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* CARD */
.services-page .service-card-lg {
  display: flex;
  gap: 18px;
  padding: 28px;
  align-items: flex-start;

  border-bottom: 1px solid #eee;
}

/* vertical divider */
.services-page .service-card-lg:nth-child(odd) {
  border-right: 1px solid #eee;
}

/* last row */
.services-page .service-card-lg:nth-last-child(-n + 2) {
  border-bottom: none;
}

/* ICON */
.services-page .service-card-lg .icon {
  width: 52px;
  height: 52px;
  background: #c9a25d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a0f2e;
}

/* TEXT */
.services-page .service-card-lg h3 {
  font-size: 18px;
  color: #5a0f2e;
  margin-bottom: 6px;
}

.services-page .service-card-lg h3 span {
  font-size: 12px;
  color: #c9a25d;
  margin-right: 8px;
}

.services-page .service-card-lg p {
  font-size: 14px;
  color: #555;
}

.services-page .service-card-lg .sub {
  margin-top: 6px;
  font-size: 13px;
  color: #888;
}

/* 🔥 LAST CARD CENTER FIX */
.services-page .service-card-lg:last-child {
  grid-column: 1 / -1;
  border-right: none;

  display: flex;
  justify-content: center;
}

.services-page .service-card-lg:last-child .content {
  max-width: 520px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-page .services-grid {
    grid-template-columns: 1fr;
  }

  .services-page .service-card-lg:nth-child(odd) {
    border-right: none;
  }

  .services-page .service-card-lg:last-child {
    justify-content: flex-start;
  }
}

/* =========================
   INITIATIVES SECTION
========================= */

.initiatives-section {
  width: 85%;
  margin: 100px auto;
}

/* SUBTEXT */
.section-subtext {
  margin-top: 15px;
  max-width: 650px;
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* =========================
   GRID
========================= */

.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

/* =========================
   CARD
========================= */

.initiative-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 26px 22px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

/* subtle top line */
.initiative-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: #7a0c2e;
  transition: 0.4s;
}

.initiative-card:hover::before {
  width: 100%;
}

/* hover */
.initiative-card:hover {
  transform: translateY(-6px);
  background: #faf7f4;
  border-color: #e6dcd2;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* =========================
   ICON
========================= */

.initiative-card .icon {
  width: 46px;
  height: 46px;
  background: #c9a25d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a0f2e;
  font-size: 16px;
}

/* =========================
   TITLE
========================= */

.initiative-card h3 {
  font-size: 17px;
  color: #5a0f2e;
  font-weight: 600;
}

/* =========================
   TEXT
========================= */

.initiative-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .initiatives-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .initiatives-grid {
    grid-template-columns: 1fr;
  }

  .initiatives-section {
    width: 90%;
  }
}

/* initiatives page */

/* HERO */
.initiatives-hero {
  height: 60vh;
  display: flex;
  align-items: center;
  padding: 0 60px;
  position: relative;

  background:
    linear-gradient(rgba(90, 15, 46, 0.2), rgba(90, 15, 46, 0.2)),
    url("/images/initiatives-pg.jpg") center/cover;

  color: white;
}

/* INTRO */
.initiatives-intro {
  width: 65%;
  margin: 80px auto;
  text-align: center;
  font-size: 20px;
  color: #555;
  line-height: 2;
}

/* GRID */
.initiatives-list {
  width: 85%;
  margin: 80px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* CARD */
.initiative-card {
  position: relative;
  display: flex;
  gap: 18px;
  padding: 30px;

  background: #fff;
  border-radius: 14px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  transition: 0.3s ease;
}

/* LEFT ACCENT LINE */
.initiative-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  bottom: 25px;
  width: 4px;
  background: #c9a25d;
  border-radius: 2px;
}

/* HOVER */
.initiative-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* ICON */
.initiative-card .icon {
  width: 56px;
  height: 56px;
  background: #c9a25d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a0f2e;
  font-size: 18px;

  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

/* CONTENT */
.initiative-card h3 {
  font-size: 20px;
  color: #5a0f2e;
  margin-bottom: 8px;
}

.initiative-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.initiative-card ul {
  margin-top: 12px;
  padding-left: 18px;
}

.initiative-card ul li {
  font-size: 13px;
  color: #777;
  margin-bottom: 4px;
}

/* CTA */
.initiatives-cta {
  text-align: center;
  margin: 100px 0;
}

.initiatives-cta h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
}

.btn-gold {
  background: #c9a25d;
  color: #5a0f2e;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .initiatives-list {
    grid-template-columns: 1fr;
  }

  .initiatives-intro {
    width: 90%;
  }
}

/* ===============================
   HERITAGE SECTION
=============================== */
/* ===============================
   HERITAGE SECTION (FINAL FIXED)
=============================== */

.heritage-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  margin-bottom: 80px;

  padding: 0 60px;
  overflow: hidden;

  background: url("/images/heritage.png") center/cover no-repeat;
}

/* OVERLAY (BALANCED LEFT GRADIENT) */
.heritage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(90, 15, 46, 0.95) 0%,
    rgba(90, 15, 46, 0.85) 35%,
    rgba(90, 15, 46, 0.6) 60%,
    rgba(90, 15, 46, 0.2) 100%
  );
}

/* CONTENT (LEFT PREMIUM POSITIONING) */
.heritage-content {
  position: relative;
  max-width: 620px;

  margin-left: 8%;
  margin-right: auto;

  text-align: left;
  color: #fff;
  z-index: 2;
}

/* LABEL */
.heritage-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.heritage-label .line {
  width: 40px;
  height: 1.5px;
  background: #d4af37;
}

.heritage-label .text {
  font-size: 12px;
  letter-spacing: 2px;
  color: #d4af37;
  text-transform: uppercase;
}

/* HEADING */
.heritage-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 20px;
}

/* DOTS */
.heritage-dots {
  width: 200px;
  height: 6px;
  margin: 15px 0;

  background: radial-gradient(circle, #d4af37 2px, transparent 2px);
  background-size: 14px 6px;
}

/* TEXT */
.heritage-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #f3e9e9;
  margin-top: 15px;
}

/* BUTTONS */
.heritage-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
  gap: 15px;
}

/* GOLD BUTTON */
.btn-gold {
  background: #d4af37;
  color: #5a0f2e;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-gold:hover {
  background: #fff;
}

/* OUTLINE BUTTON */
.btn-outline-light {
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline-light:hover {
  background: #fff;
  color: #5a0f2e;
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width: 992px) {
  .heritage-section {
    padding: 80px 30px;
    height: auto;
  }

  .heritage-content {
    margin-left: 0;
    max-width: 100%;
  }

  .heritage-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .heritage-content h2 {
    font-size: 28px;
  }

  .heritage-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===============================
   HERITAGE page
=============================== */
/* ===============================
   HERITAGE HERO
=============================== */

.heritage-hero {
  height: 65vh;
  display: flex;
  align-items: center;
  padding: 0 80px;
  position: relative;

  background:
    linear-gradient(rgba(90, 15, 46, 0.25), rgba(90, 15, 46, 0.25)),
    url("/images/heritage-pg.jpg") center/cover;
  color: white;
}

.hero-content {
  max-width: 650px;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  line-height: 1.2;
}

.hero-content p {
  margin-top: 12px;
  font-size: 15px;
  opacity: 0.9;
}

/* ===============================
   INTRO SECTION
=============================== */

.heritage-intro {
  width: 70%;
  margin: 100px auto 60px;
  text-align: center;
  font-size: 18px;
  color: #444;
  line-height: 1.8;
  position: relative;
}

.heritage-intro::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: #c9a25d;
  margin: 25px auto 0;
}

/* ===============================
   SPLIT SECTION
=============================== */

.heritage-split {
  width: 85%;
  margin: 80px auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.heritage-text {
  flex: 1;
}

.heritage-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  color: #5a0f2e;
  margin-bottom: 15px;
}

.heritage-text p {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 14px;
}

/* IMAGE */

.heritage-image {
  flex: 1;
}

.heritage-image img {
  width: 100%;
  border-radius: 18px;
  transition: 0.4s ease;
}

.heritage-image img:hover {
  transform: scale(1.05);
}

/* ===============================
   TIMELINE
=============================== */

.heritage-timeline {
  width: 85%;
  margin: 100px auto;
  text-align: center;
}

.timeline-title {
  font-family: "Playfair Display", serif;
  color: #5a0f2e;
  margin-bottom: 40px;
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
}

/* LINE */
.timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e0d5c8;
  z-index: 0;
}

/* ITEM */
.timeline-item {
  position: relative;
  text-align: center;
  width: 20%;
}

/* DOT */
.timeline-item::before {
  content: "";
  width: 14px;
  height: 14px;
  background: #c9a25d;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* TEXT */
.timeline-item span {
  display: block;
  margin-top: 30px;
  font-weight: 600;
  color: #5a0f2e;
}

.timeline-item p {
  font-size: 13px;
  color: #777;
  margin-top: 5px;
}

/* ===============================
   GALLERY
=============================== */

.heritage-gallery {
  width: 85%;
  margin: 100px auto;
}

.heritage-gallery h2 {
  font-family: "Playfair Display", serif;
  color: #5a0f2e;
  margin-bottom: 15px;
}

/* DESCRIPTION (NEW CONTENT SUPPORT) */
.gallery-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  max-width: 750px;
  margin-bottom: 35px;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* WRAPPER */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
}

/* IMAGE */
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

/* OVERLAY */
.gallery-overlay {
  position: absolute;
  inset: 0;

  background: rgba(90, 15, 46, 0.55); /* maroon overlay */
  backdrop-filter: blur(2px); /* subtle blur */

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  opacity: 0;
  transition: 0.4s ease;
}

/* TEXT */
.gallery-overlay p {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 0 15px;
  line-height: 1.4;
}

/* HOVER EFFECT */
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* KEEP YOUR LIFT EFFECT */
.gallery-item:hover {
  transform: translateY(-6px);
}

/* OPTIONAL: subtle zoom */
.gallery-item:hover img {
  transform: scale(1.05);
}

/* HOVER */
.gallery-grid img:hover {
  transform: scale(1.06);
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width: 992px) {
  .heritage-hero {
    padding: 40px;
  }

  .heritage-split {
    flex-direction: column;
  }

  .timeline {
    flex-direction: column;
    gap: 30px;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .heritage-intro {
    width: 90%;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 34px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   FOOTER (PREMIUM)
=============================== */

.footer {
  background: linear-gradient(135deg, #5a0f2e, #7a0c2e);
  color: #fff;
  padding-top: 60px;
}

/* CONTAINER */
.footer-container {
  width: 85%;
  margin: auto;

  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
  gap: 60px;
}

/* LOGO */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: #c9a25d;
  color: #7a0c2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.footer-logo h3 {
  font-family: "Playfair Display", serif;
  margin: 0;
}

.tagline {
  font-size: 11px;
  letter-spacing: 1px;
  color: #f1d9a6;
}

/* TEXT */
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #f3dede;
  margin-top: 10px;
}

/* HEADINGS */
.footer h4 {
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #f1d9a6;
}

/* ===============================
   FOOTER SOCIAL
=============================== */

.footer-social h4 {
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #f1d9a6;
}

/* ICON CONTAINER */
.social-icons {
  display: flex;
  /* flex-direction: column; */
  gap: 12px;
  text-decoration: none;
}

/* ICON STYLE */
.social-icons a {
  width: 42px;
  height: 42px;

  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 18px;

  transition: 0.3s ease;
}

/* HOVER */
.social-icons a:hover {
  background: #c9a25d;
  color: #5a0f2e;
  transform: translateY(-3px);
}

/* REMOVE UNDERLINE EFFECT FROM SOCIAL ICONS */
.social-icons a::after {
  display: none !important;
}

.social-icons a {
  text-decoration: none !important;
}

/* LINKS */
.footer-links a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #f1d9a6;
  transform: translateX(4px);
}

/*==================================================
                ENQUIRY MODAL
==================================================*/

.enquiry-overlay {
  position: fixed;
  inset: 0;

  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(8px);

  display: flex;
  justify-content: center;
  align-items: flex-start;

  padding: 35px 20px;

  overflow-y: auto;

  opacity: 0;
  visibility: hidden;

  transition: 0.35s ease;

  z-index: 9999;
}

.enquiry-overlay.active {
  opacity: 1;
  visibility: visible;
}

/*==================================================
                    MODAL
==================================================*/

.enquiry-modal {
  width: min(820px, 92vw);

  max-height: 90vh;

  overflow-y: auto;
  overflow-x: hidden;

  background: #fdfbf8;

  border-radius: 22px;

  padding: 38px 42px 32px;

  position: relative;

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);

  transform: translateY(20px) scale(0.96);

  transition: 0.35s ease;
}

.enquiry-overlay.active .enquiry-modal {
  transform: translateY(0) scale(1);
}

/* Gold Strip */

.enquiry-modal::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background: linear-gradient(90deg, #c9a25d, #e4c98a, #c9a25d);
}

/*==================================================
                CLOSE BUTTON
==================================================*/

.close-enquiry {
  position: absolute;

  top: 18px;
  right: 18px;

  width: 42px;
  height: 42px;

  border: none;

  border-radius: 50%;

  background: #f4eee5;

  color: #5a0f2e;

  cursor: pointer;

  font-size: 18px;

  transition: 0.3s;
}

.close-enquiry:hover {
  background: #5a0f2e;

  color: #fff;

  transform: rotate(90deg);
}

/*==================================================
                    HEADER
==================================================*/

.enquiry-header {
  text-align: center;

  margin-bottom: 24px;
}

.enquiry-label {
  display: inline-block;

  color: #c9a25d;

  font-size: 13px;

  letter-spacing: 2px;

  text-transform: uppercase;

  font-weight: 600;

  margin-bottom: 10px;
}

.enquiry-header h2 {
  font-family: "Playfair Display", serif;

  color: #5a0f2e;

  font-size: 38px;

  margin-bottom: 10px;
}

.enquiry-header p {
  max-width: 560px;

  margin: auto;

  color: #666;

  line-height: 1.7;

  font-size: 15px;
}

/*==================================================
            FOOTER ENQUIRY
==================================================*/

.footer-enquiry {
  margin-top: 28px;

  padding-top: 24px;

  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-enquiry-title {
  color: #d8b36a;

  font-size: 13px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 1.5px;

  margin-bottom: 10px;
}

.footer-enquiry-link {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  color: #f7f1e8;

  text-decoration: none;

  font-size: 15px;

  font-weight: 500;

  transition: 0.35s ease;

  position: relative;
}

/* Remove underline */

.footer-enquiry-link::before {
  content: "";

  position: absolute;

  left: 0;
  bottom: -5px;

  width: 0;

  height: 2px;

  background: #d8b36a;

  transition: 0.35s ease;
}

.footer-enquiry-link:hover {
  color: #d8b36a;

  gap: 16px;
}

.footer-enquiry-link:hover::before {
  width: 100%;
}

.footer-enquiry-link i {
  font-size: 13px;

  transition: 0.35s ease;
}

.footer-enquiry-link:hover i {
  transform: translateX(6px);
}

/*==================================================
                    FORM
==================================================*/

.enquiry-form {
  display: flex;

  flex-direction: column;

  gap: 18px;
}

.form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;
}

.form-group {
  display: flex;

  flex-direction: column;
}

.form-group.full-width {
  width: 100%;
}

.form-group label {
  font-size: 15px;

  font-weight: 600;

  color: #5a0f2e;

  margin-bottom: 8px;
}

.form-group label span {
  color: #b22222;
}

/*==================================================
                INPUTS
==================================================*/

.form-group input,
.form-group textarea {
  width: 100%;

  border: 1.5px solid #ded5c8;

  background: #fff;

  border-radius: 12px;

  padding: 14px 16px;

  font-size: 15px;

  font-family: "Poppins", sans-serif;

  transition: 0.3s;

  color: #444;
}

.form-group textarea {
  resize: vertical;

  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;

  border-color: #c9a25d;

  box-shadow: 0 0 0 4px rgba(201, 162, 93, 0.15);
}

/*==================================================
                SUBMIT
==================================================*/

.form-submit {
  text-align: center;

  margin-top: 6px;
}

.submit-enquiry {
  border: none;

  background: #5a0f2e;

  color: #fff;

  padding: 14px 38px;

  border-radius: 10px;

  font-size: 15px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.submit-enquiry:hover {
  background: #c9a25d;

  color: #5a0f2e;

  transform: translateY(-3px);

  box-shadow: 0 12px 30px rgba(201, 162, 93, 0.3);
}

/*==================================================
                SCROLLBAR
==================================================*/

.enquiry-modal::-webkit-scrollbar {
  width: 8px;
}

.enquiry-modal::-webkit-scrollbar-thumb {
  background: #c9a25d;

  border-radius: 20px;
}

.enquiry-modal::-webkit-scrollbar-track {
  background: #f2ece3;
}

/*==================================================
                RESPONSIVE
==================================================*/

@media (max-width: 768px) {
  .enquiry-overlay {
    padding: 18px;
    align-items: flex-start;
  }

  .enquiry-modal {
    width: 100%;
    padding: 28px 22px;
  }

  .enquiry-header h2 {
    font-size: 30px;
  }

  .enquiry-header p {
    font-size: 14px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .submit-enquiry {
    width: 100%;
  }
}

/* CONTACT */
.footer-contact p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* DIVIDER */
.footer-bottom {
  width: 85%;
  margin: 40px auto 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hidden-credit {
  opacity: 0;
  transition: 0.3s;
}

.hidden-credit:hover {
  opacity: 1;
}

/* POLICY LINKS */
.footer-policy a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-size: 13px;
}

.footer-policy a:hover {
  color: #f1d9a6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
