/* =====================================================
   IWS — Indian Welding Society
   Global Stylesheet — White / Navy / Sky-Blue system
   ===================================================== */

/* ========== Color Variables ========== */
:root {
  --navy: #002147;
  --sky: #00bfff;
  --sky-dark: #009fdd;
  --white: #ffffff;
  --ink: #1a1a1a;
  --muted: #5b6b7a;
  --border: #e3e8ee;
  --surface: #f4f8fb; /* very light tint of sky, used sparingly for cards/rows — page stays white */

  /* ===== Typography ===== */
  --font-head: 'Poppins', 'Inter', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

/* ========== Base Reset ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

/* ========== Buttons (unified across whole site) ========== */
.btn,
.showcase__btn .btn,
.header__btns .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  background-color: var(--sky);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--sky);
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn:hover,
.showcase__btn .btn:hover,
.header__btns .btn:hover {
  background-color: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* Secondary (outline) button variant — available for use anywhere */
.btn--outline {
  background-color: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn--outline:hover {
  background-color: var(--navy);
  color: var(--white);
}

/* ========== Navigation ========== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 50px;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 14px rgba(0, 33, 71, 0.06);
}

.nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo .logo-img {
  height: 48px;
  width: auto;
  max-width: 160px;
  display: block;
  object-fit: contain;
}

.nav__menu__btn {
  display: none;
  font-size: 26px;
  color: var(--navy);
  cursor: pointer;
  margin-left: 20px;
  line-height: 1;
}

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 34px);
  flex-wrap: nowrap;
}

.nav__links li {
  flex-shrink: 0;
}

.nav__links li a {
  position: relative;
  text-decoration: none;
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: 0.3px;
  padding: 6px 2px;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.nav__links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: var(--sky);
  transition: width 0.25s ease;
}

.nav__links li a:hover {
  color: var(--sky-dark);
}

.nav__links li a:hover::after {
  width: 100%;
}

.nav__btns {
  flex-shrink: 0;
}

.nav__btns .btn {
  padding: 9px 22px;
  font-size: 13px;
  letter-spacing: 0.5px;
  font-family: var(--font-head);
  white-space: nowrap;
}

/* Membership item duplicated inside the dropdown for mobile only —
   desktop already shows the standalone .nav__btns button */
.nav__links__mobile-only {
  display: none;
}

/* ========== Header / Hero ========== */
header#home {
  background: linear-gradient(to right, rgba(0,33,71,0.88), rgba(0,33,71,0.55)), url('img/banner1.jpeg') center/cover no-repeat;
  padding: 140px 40px;
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__content p {
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 600;
  margin-bottom: 18px;
}

.header__content h1 {
  font-size: 45px;
  margin-bottom: 25px;
  color: var(--white);
  padding: 0 100px;
}

.header__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.header__btns a span i {
  font-size: 48px;
  color: var(--sky);
  transition: color 0.3s ease;
}

.header__btns a:hover span i {
  color: var(--white);
}

/* ========== Responsive Nav ========== */

/* Tablet / small-laptop: tighten spacing so links stay on one line
   right up until the hamburger menu takes over */
@media (max-width: 1180px) and (min-width: 993px) {
  nav {
    padding: 14px 24px;
  }

  .nav__links {
    gap: 16px;
  }

  .nav__btns .btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}

@media (max-width: 992px) {
  nav {
    flex-wrap: wrap;
    padding: 14px 20px;
    gap: 12px;
  }

  .nav__header {
    flex: 1;
  }

  /* Membership now lives inside the dropdown list, so hide the
     standalone outer button at this width to avoid duplication */
  .nav__btns {
    display: none;
  }

  .nav__links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 8px;
    margin-top: 16px;
    box-shadow: 0 8px 24px rgba(0, 33, 71, 0.12);
    gap: 18px;
    order: 3;
    flex-wrap: wrap;
  }

  .nav__links li {
    width: 100%;
  }

  .nav__links li a {
    font-size: 15px;
    white-space: normal;
  }

  .nav__links__mobile-only {
    display: block;
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
  }

  .nav__links__mobile-only a {
    display: inline-block;
    background-color: var(--sky);
    color: var(--navy);
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 6px;
  }

  .nav__links__mobile-only a::after {
    display: none;
  }

  .nav__links.active {
    display: flex;
  }

  .nav__menu__btn {
    display: block;
    order: 1;
  }

  .header__content h1 {
    font-size: 32px;
    padding: 0 10px;
  }

  .header__btns {
    flex-direction: column;
  }
}

/* ========== Section Container ========== */
.section__container {
  padding: 70px 40px;
  background-color: var(--white);
  color: var(--ink);
  text-align: center;
}

.section__header {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
  position: relative;
  display: inline-block;
}

.section__header::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--sky);
  margin: 14px auto 0 auto;
  border-radius: 2px;
}

.section__description {
  font-size: 17px;
  margin: 18px 0 40px 0;
  color: var(--muted);
}

/* ========== Destination Grid ========== */
.destination__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.destination__card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 33, 71, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 33, 71, 0.15);
}

.destination__card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.destination__card__details {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.destination__card__details h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}

.destination__card__details p {
  font-size: 14px;
  color: var(--muted);
}

.destination__ratings {
  font-size: 14px;
  color: var(--sky-dark);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ========== Journey Section ========== */
.journey__container {
  padding: 4rem 2rem;
  background-color: var(--surface);
}

.journey__container h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--navy);
}

.journey__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.journey__card {
  position: relative;
  padding-top: 4rem;
  border-radius: 1rem;
  background-color: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 33, 71, 0.08);
  transition: transform 0.3s ease;
}

.journey__card:hover {
  transform: translateY(-6px);
}

.journey__card__bg {
  padding: 2rem;
  background-color: var(--surface);
  border-bottom-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.journey__card__bg span {
  font-size: 1.75rem;
  color: var(--sky);
  margin-bottom: 1rem;
}

.journey__card__bg h4 {
  font-size: 1.2rem;
  color: var(--navy);
}

.journey__card__content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  background-color: var(--navy);
  border-radius: 0 0 1rem 1rem;
  transition: top 0.4s ease;
  z-index: 2;
}

.journey__card:hover .journey__card__content {
  top: 0;
}

.journey__card__content span {
  display: inline-block;
  font-size: 1rem;
  border: 2px solid var(--sky);
  color: var(--sky);
  padding: 8px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.journey__card__content h4 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.journey__card__content p {
  color: #d8eaf5;
  font-size: 14px;
}

/* ========== Showcase Section ========== */
.showcase__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background-color: var(--white);
  padding: 70px 40px;
  flex-wrap: wrap;
}

.showcase__image {
  flex: 1 1 400px;
}

.showcase__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 33, 71, 0.1);
}

.showcase__content {
  flex: 1 1 400px;
  color: var(--ink);
}

.showcase__content h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--navy);
}

.showcase__content p {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.7;
}

/* ========== Events Section ========== */
.events__container {
  background-color: var(--surface);
  color: var(--ink);
  padding: 70px 40px;
  text-align: center;
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.event__card {
  display: flex;
  align-items: flex-start;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 33, 71, 0.06);
  transition: transform 0.3s ease;
}

.event__card:hover {
  transform: translateY(-6px);
}

.event__date {
  background-color: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 10px 16px;
  text-align: center;
  margin-right: 20px;
  min-width: 60px;
}

.event__date h3 {
  font-size: 24px;
  margin-bottom: 4px;
  color: var(--sky);
}

.event__date p {
  font-size: 14px;
  text-transform: uppercase;
}

.event__info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--navy);
}

.event__info p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
}

.event__info span {
  font-size: 13px;
  color: var(--sky-dark);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

/* ========== Press / Latest Cards ========== */
.press-grid-section {
  background-color: var(--white);
}

.press-grid-section .card {
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 33, 71, 0.06);
}

.press-grid-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 33, 71, 0.12);
}

.press-grid-section .card h6 {
  font-size: 1rem;
  color: var(--navy);
}

.press-grid-section .badge.bg-primary {
  background-color: var(--sky) !important;
  color: var(--navy) !important;
  font-weight: 700;
}

footer a:hover {
  color: var(--sky);
  text-decoration: underline;
}

/* ========== About Section ========== */
.about-text {
  padding: 80px 20px;
  background: var(--white);
  color: var(--ink);
}

.about-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--navy);
  position: relative;
  display: inline-block;
}

.about-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--sky);
  margin: 12px auto 0 auto;
  border-radius: 2px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: var(--muted);
}

/* ========== Membership Cards Section ========== */
.membership-cards {
  background: var(--surface);
}

.membership-cards h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

.membership-cards h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: var(--sky);
  margin: 12px auto 0 auto;
  border-radius: 2px;
}

.membership-cards .card {
  border: 1px solid var(--border);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--white);
}

.membership-cards .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 33, 71, 0.15);
}

.membership-cards .card-img-top {
  height: 200px;
  object-fit: cover;
}

.membership-cards .card-body {
  padding: 20px 15px;
}

.membership-cards .card-body h5 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
}

.membership-cards .card-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ========== At-a-Glance Section ========== */
.glance-section {
  background: var(--navy);
  padding: 60px 20px;
  color: var(--white);
}

.glance-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--white);
}

.glance-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 800px;
}

.glance-list li {
  font-size: 17px;
  font-weight: 400;
  margin: 18px 0;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
}

.glance-list .arrow {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 12px;
  margin-top: 6px;
  background: var(--sky);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  flex-shrink: 0;
}

/* ========== Vision & Mission Section ========== */
.vision-mission {
  background: var(--white);
  padding: 60px 0;
}

.vision-mission h2 {
  font-size: 2.2rem;
  color: var(--navy);
  position: relative;
  display: inline-block;
}

.vision-mission h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--sky);
  margin: 12px auto 0;
  border-radius: 2px;
}

.vision-mission .card-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  height: 100%;
}

.vision-mission .card-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 33, 71, 0.15);
}

.vision-mission i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
  color: var(--sky);
}

.vision-mission h4 {
  color: var(--navy);
  margin-bottom: 15px;
}

.vision-mission p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ========== What We Do Section ========== */
.what-we-do {
  background: var(--surface);
}

.what-we-do h2 {
  font-size: 2.2rem;
  color: var(--navy);
  position: relative;
  display: inline-block;
}

.what-we-do h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: var(--sky);
  margin: 12px auto 0;
  border-radius: 2px;
}

.service-card {
  transition: all 0.3s ease;
  background: var(--white);
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 33, 71, 0.15) !important;
}

.service-card h5 {
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.bg-overlay-section {
  position: relative;
  min-height: 50vh;
  background-size: cover;
  background-position: center;
  padding: 60px 15px;
}

.bg-overlay-section .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 33, 71, 0.75);
}

.bg-overlay-section .container {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.industry-support {
  background-image: url('./img/j.jpeg');
}

/* ========== Events (Upcoming) ========== */
.upcoming-events {
  background: var(--white);
}

.upcoming-events h2 {
  font-size: 2rem;
  color: var(--navy);
}

.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 33, 71, .12);
}

#eventCarousel .carousel-control-prev,
#eventCarousel .carousel-control-next {
  width: 3rem;
}

/* ========== Membership Page ========== */
.membership-section {
  background: var(--white);
  padding: 60px 20px;
}

.membership-intro {
  max-width: 900px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.highlight-text {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--sky-dark);
  margin-bottom: 15px;
}

.normal-text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.membership-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.member-card {
  position: relative;
  flex: 1 1 400px;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 33, 71, 0.1);
  transition: transform 0.3s ease;
}

.member-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.member-card:hover {
  transform: translateY(-8px);
}

.overlay-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px;
  text-align: center;
}

.overlay-text h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}

/* ===== ABOUT IWS STRIP (now white) ===== */
.about-strip {
  background: var(--white);
  border-top: 3px solid var(--sky);
  padding: 50px 40px;
  color: var(--ink);
}
.about-strip .strip-label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sky-dark);
  margin-bottom: 12px;
  display: block;
  font-weight: 700;
}
.about-strip h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.about-strip p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 760px;
}
.about-strip .about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) {
  .about-strip .about-cols { grid-template-columns: 1fr; gap: 30px; }
  .about-strip h2 { font-size: 26px; }
}

/* ===== OBJECTIVES ===== */
.objectives-section {
  background: var(--surface);
  padding: 70px 40px;
  color: var(--ink);
}
.objectives-section .objectives-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.objectives-section h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  text-align: center;
}
.objectives-section .sub {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 48px;
  text-align: center;
}
.obj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.obj-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  box-shadow: 0 4px 14px rgba(0, 33, 71, 0.05);
}
.obj-card:hover {
  border-color: var(--sky);
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 33, 71, 0.1);
}
.obj-card .obj-num {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--sky-dark);
  margin-bottom: 14px;
  display: block;
  font-weight: 700;
}
.obj-card h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.obj-card p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 992px) {
  .obj-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .obj-grid { grid-template-columns: 1fr; }
}
/* ===== ZONES (now white) ===== */
.zones-section {
  background: var(--white);
  padding: 40px 40px;
}
.zones-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.zones-section .sub { color: var(--muted); font-size: 15px; margin-bottom: 48px; }
.zones-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
@media (max-width: 992px) { .zones-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 576px) { .zones-grid { grid-template-columns: repeat(2, 1fr); } }
.zone-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 16px;
  text-align: center;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}
.zone-card:hover {
  background: #e8f7ff;
  border-color: var(--sky);
  transform: translateY(-4px);
}
.zone-card i {
  font-size: 28px;
  color: var(--sky-dark);
  margin-bottom: 12px;
  display: block;
}
.zone-card h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--sky-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.zone-card p {
  font-size: 18px;
  color: var(--navy);
  margin: 0;
  font-weight: 600;
}
.active-centres {
  background: var(--surface);
  border-left: 3px solid var(--sky);
  border-radius: 6px;
  padding: 20px 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.active-centres strong { color: var(--navy); }

/* ===== ACTIVITIES & COLLABORATIONS (now white) ===== */
.activities-section {
  background: var(--surface);
  padding: 40px 40px;
  color: var(--ink);
}
.activities-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.activities-section .sub { color: var(--muted); font-size: 15px; margin-bottom: 48px; }
.collab-banner {
  background: var(--navy);
  border-radius: 12px;
  padding: 36px 32px;
  color: var(--white);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.collab-banner .stat {
  text-align: center;
  min-width: 120px;
  border-right: 1px solid rgba(255,255,255,0.15);
  padding-right: 24px;
}
.collab-banner .stat:last-child { border-right: none; }
.collab-banner .stat strong {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--sky);
}
.collab-banner .stat span { font-size: 13px; color: #b9c9d8; }
.collab-banner .collab-text { flex: 1; min-width: 200px; }
.collab-banner .collab-text p { color: #d8eaf5; font-size: 15px; line-height: 1.7; margin: 0; }
.act-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.act-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 22px;
  box-shadow: 0 4px 16px rgba(0, 33, 71, 0.06);
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}
.act-card:hover { border-color: var(--sky); transform: translateY(-4px); }
.act-card i { font-size: 28px; color: var(--sky-dark); margin-bottom: 14px; display: block; }
.act-card h5 { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.act-card p { font-size: 18px; color: var(--muted); line-height: 1.7; margin: 0; }

/* ===== GOVERNING STRUCTURE ===== */
.govern-section {
  background: var(--white);
  padding: 40px 40px;
  color: var(--ink);
}
.govern-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.govern-section .sub { color: var(--muted); font-size: 15px; margin-bottom: 48px; }
.govern-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.govern-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 22px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.govern-card:nth-child(1) { grid-column: 1 / 3; }
.govern-card:nth-child(2) { grid-column: 3 / 5; }
.govern-card:nth-child(3) { grid-column: 5 / 7; }
.govern-card:nth-child(4) { grid-column: 2 / 4; }
.govern-card:nth-child(5) { grid-column: 4 / 6; }
.govern-card:hover { border-color: var(--sky); transform: translateY(-4px); box-shadow: 0 10px 22px rgba(0, 33, 71, 0.1); }
.govern-card i { font-size: 26px; color: var(--sky-dark); margin-bottom: 14px; display: block; }
.govern-card h5 { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.govern-card p { font-size: 18px; color: var(--muted); line-height: 1.7; margin: 0; }

/* ===== AWARDS (now white) ===== */
.awards-section {
  background: var(--surface);
  padding: 40px 40px;
}
.awards-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.awards-section .sub { color: var(--muted); font-size: 15px; margin-bottom: 48px; }
.awards-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.award-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.award-item:hover { border-color: var(--sky); box-shadow: 0 6px 16px rgba(0, 33, 71, 0.08); }
.award-item i { color: var(--sky-dark); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.award-item span { font-size: 14px; color: var(--ink); line-height: 1.5; }

/* ===== PAST EVENTS (now white) ===== */
.past-events-section {
  background: var(--white);
  padding: 40px 40px;
  color: var(--ink);
}
.past-events-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.past-events-section .sub { color: var(--muted); font-size: 15px; margin-bottom: 48px; }
.past-events-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
}
.past-events-box p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 28px;
}
.events-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.etag {
  background: #e8f7ff;
  border: 1px solid #bfe9ff;
  color: var(--sky-dark);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

/* ===== COURSES (now white) ===== */
.courses-section {
  background: var(--surface);
  padding: 40px 40px;
}
.courses-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.courses-section .sub { color: var(--muted); font-size: 15px; margin-bottom: 48px; }
.course-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 33, 71, 0.08);
}
.course-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 14px;
}
.course-table thead tr {
  background: var(--navy);
  color: var(--white);
}
.course-table thead th {
  padding: 16px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.course-table thead th:first-child { border-radius: 12px 0 0 0; }
.course-table thead th:last-child { border-radius: 0 12px 0 0; }
.course-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.2s; }
.course-table tbody tr:hover { background: var(--surface); }
.course-table tbody td { padding: 14px 18px; color: var(--ink); vertical-align: top; }
.course-table tbody td:first-child { font-weight: 600; color: var(--navy); }
.course-badge {
  display: inline-block;
  background: var(--sky);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 30px;
  margin-left: 8px;
}
.course-fee-note {
  margin-top: 20px;
  background: var(--navy);
  border-radius: 8px;
  padding: 16px 22px;
  color: #d8e6f0;
  font-size: 14px;
}
.course-fee-note strong { color: var(--sky); }

/* ===== MEMBERSHIP PAGE SECTION (now white) ===== */
.membership-page-section {
  background: var(--white);
  padding: 40px 40px;
  color: var(--ink);
}
.membership-page-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.membership-page-section .sub { color: var(--muted); font-size: 15px; margin-bottom: 48px; }
.mem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.mem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.mem-card:hover { border-color: var(--sky); transform: translateY(-4px); box-shadow: 0 10px 22px rgba(0, 33, 71, 0.1); }
.mem-card .mem-badge {
  display: inline-block;
  background: #e8f7ff;
  border: 1px solid #bfe9ff;
  color: var(--sky-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.mem-card h5 { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.mem-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }
.fee-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(0, 33, 71, 0.1);
}
.fee-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 14px;
  color: var(--ink);
  border: 1px solid var(--border);
}
.fee-table thead tr { background: var(--sky); color: var(--navy); }
.fee-table thead th { padding: 14px 18px; text-align: left; font-weight: 700; font-size: 13px; }
.fee-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.2s; }
.fee-table tbody tr:hover { background: var(--surface); }
.fee-table tbody td { padding: 13px 18px; }
.fee-table tbody td:first-child { font-weight: 600; color: var(--navy); }
.fee-table tfoot tr { background: var(--navy); color: #d8e6f0; font-size: 13px; }
.fee-table tfoot td { padding: 12px 18px; }
.gst-note {
  background: #e8f7ff;
  border: 1px solid #bfe9ff;
  border-radius: 8px;
  padding: 14px 20px;
  color: var(--sky-dark);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 28px;
}
.payment-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.pay-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
}
.pay-card h6 { font-size: 12px; letter-spacing: 1px; color: var(--sky-dark); text-transform: uppercase; margin-bottom: 8px; font-weight: 700; }
.pay-card p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ========== RESPONSIVE TWEAKS ========== */
@media (max-width: 576px) {
  .section__container { padding: 40px 20px; }
  .destination__card img { height: 180px; }
  .journey__container { padding: 3rem 1rem; }
  .showcase__container { flex-direction: column; text-align: center; padding: 40px 20px; }
  .showcase__content { padding-top: 20px; }
  .event__card { flex-direction: column; text-align: left; }
  .event__date { margin-right: 0; margin-bottom: 10px; }
  .about-heading { font-size: 24px; }
  .about-text p { font-size: 15px; }
  .membership-cards h2 { font-size: 22px; }
  .membership-cards .card-img-top { height: 140px; }
  .membership-cards .card-body p { font-size: 13px; }
}

@media (max-width: 768px) {
  .about-strip, .objectives-section, .zones-section, .activities-section,
  .govern-section, .awards-section, .past-events-section, .courses-section,
  .membership-page-section { padding: 50px 20px; }
  .collab-banner { flex-direction: column; }
  .collab-banner .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 16px; }
  .membership-cards h2 { font-size: 26px; }
  .membership-cards .card-img-top { height: 160px; }
  .membership-cards .card-body h5 { font-size: 16px; }
}

@media (max-width: 992px) {
  .membership-cards h2 { font-size: 30px; }
  .membership-cards .card-img-top { height: 180px; }
}
