:root {
  /* Colors */
  --primary-color: #0b5a6b;
  --secondary-color: #add136;
  --dark-color: #0b2c3d;
  --accent-color: #414042;
  --text-color: #000000;
  --text-muted: #666666;
  --bg-light: #f8f8f8;
  --white: #ffffff;

  /* Fonts */
  --font-main: "Poppins", sans-serif;

  /* Responsive Font Sizes */
  --fs-h1: clamp(40px, 8vw, 80px);
  --fs-h2: clamp(26px, 5vw, 38px);
  --fs-h3: clamp(20px, 3vw, 24px);
  --fs-p: clamp(14px, 2vw, 18px);
  --fs-p-small: clamp(13px, 1.5vw, 15px);

  /* Responsive Padding */
  --section-padding: clamp(60px, 8vw, 100px);
}

* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 25px;
}

header .container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.section-title {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 10px;
  font-size: var(--fs-h2);
}

.section-description {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: var(--fs-p-small);
  line-height: 1.6;
  color: var(--text-muted);
}

.text-green {
  color: var(--secondary-color);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header_wrapper {
  position: relative;
}

.header_wrapper .header_left {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 100%;
  clip-path: polygon(0 0, 92% 0%, 100% 100%, 0% 100%);
  z-index: 2;
}

.site-logo {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  padding: 15px 55px 15px 30px; /* Increased padding-right to avoid cutting at slant */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-logo a {
  display: inline-block;
}

.header_wrapper .custom-logo-link img {
  width: 200px; /* Restored to original prominent size */
  height: auto;
  object-fit: contain;
}

.header_right {
  display: flex;
  flex-direction: column;
}

.header_right_top {
  background-color: var(--accent-color);
  padding: 5px 30px 5px 0; /* Reduced right padding from 50px */
  height: 45px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header_right_top .text_content,
.header_right_top .text_content a {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
  color: #ffffff !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header_right_top .links_social ul {
  list-style: none;
  display: flex;
  column-gap: 30px;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}

.header_right_top .links_social ul li {
  display: flex;
  column-gap: 10px;
  align-items: center;
}

.header_right_top .icon_image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header_right_top .icon_image img {
  height: 30px;
  width: 30px;
  object-fit: contain;
}

.header_right_bottom {
  background-color: var(--secondary-color);
  padding: 24px 40px 27px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

/* Menu List Styles */
.menu {
  display: flex;
  column-gap: 30px; /* Reduced from 45px */
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu li {
  position: relative; /* Crucial: every li must be relative for the toggle button */
  display: flex;
  align-items: center;
}

.menu .menu-item a {
  font-family: inherit;
  font-size: var(--fs-p);
  font-weight: 500;
  color: var(--dark-color) !important; /* Dark Blue from screenshots */
  text-decoration: none;
  transition: all 0.3s ease;
}

.menu .menu-item a:hover {
  opacity: 0.7;
}

.desktop-quick-menu {
  align-items: center;
  column-gap: 22px;
  display: flex;
  list-style: none;
  margin: 0 28px 0 0;
  padding: 0;
}

.desktop-quick-menu li {
  align-items: center;
  display: flex;
  position: relative;
}

.desktop-quick-menu a {
  color: var(--dark-color);
  display: block;
  font-size: var(--fs-p);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.desktop-quick-menu a:hover {
  opacity: 0.7;
}

.quick-menu-has-children > a {
  padding-right: 18px;
}

.quick-submenu-toggle {
  background: transparent;
  border: 0;
  color: var(--dark-color);
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin-left: -12px;
  padding: 4px;
}

.quick-sub-menu {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
  display: none;
  left: 0;
  list-style: none;
  min-width: 260px;
  padding: 10px;
  position: absolute;
  top: calc(100% + 12px);
  z-index: 1002;
}

.quick-sub-menu li {
  display: block;
}

.quick-sub-menu a {
  border-radius: 8px;
  color: var(--dark-color) !important;
  display: block;
  font-size: 15px;
  line-height: 1.35;
  padding: 10px 12px;
  white-space: nowrap;
}

.quick-sub-menu a:hover {
  background: rgba(173, 209, 54, 0.16);
  opacity: 1;
}

.quick-menu-has-children:hover > .quick-sub-menu,
.quick-menu-has-children:focus-within > .quick-sub-menu {
  display: block;
}

.main-navigation {
  align-items: center;
  display: flex;
}

.desktop-menu-dropdown {
  position: relative;
}

.desktop-menu-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}

.desktop-menu-trigger {
  align-items: center;
  background: var(--primary-color);
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.04em;
  padding: 12px 22px;
  text-transform: uppercase;
}

.desktop-menu-panel {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  min-width: 280px;
  opacity: 0;
  padding: 14px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  visibility: hidden;
  z-index: 1000;
}

.desktop-menu-dropdown:hover .desktop-menu-panel,
.desktop-menu-dropdown:focus-within .desktop-menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.desktop-menu-panel .menu {
  align-items: stretch;
  column-gap: 0;
  flex-direction: column;
  width: 100%;
}

.desktop-menu-panel .menu > li {
  border-radius: 10px;
  min-height: 44px;
  width: 100%;
}

.desktop-menu-panel .menu > li > a {
  display: block;
  padding: 12px 46px 12px 14px;
  width: 100%;
}

.desktop-menu-panel .menu > li:hover {
  background: rgba(173, 209, 54, 0.14);
}

.desktop-menu-panel .menu > .menu-item-71,
.desktop-menu-panel .menu > .menu-item-67,
.desktop-menu-panel .menu > .menu-item-70,
.desktop-menu-panel .menu > .menu-item-72,
.desktop-menu-panel .menu > .menu-item-68,
.desktop-menu-panel .menu > .menu-item-142,
.desktop-menu-panel .menu > .menu-item-143,
.desktop-menu-panel .menu > .menu-item-144,
.desktop-menu-panel .menu > .menu-item-145,
.desktop-menu-panel .menu > .menu-item-146,
.desktop-menu-panel .menu > .menu-item-148,
.desktop-menu-panel .menu > .menu-item-1326,
.desktop-menu-panel .menu > .menu-item-1327,
.desktop-menu-panel .menu > .menu-item-1328,
.desktop-menu-panel .menu > .menu-item-1329 {
  display: none;
}

.desktop-menu-panel .submenu-toggle {
  right: 12px;
}

.desktop-menu-panel .sub-menu {
  left: auto;
  right: calc(100% + 8px);
  top: 0;
}

@media screen and (min-width: 1025px) {
  .desktop-menu-panel {
    min-width: 320px;
    padding: 16px;
  }

  .desktop-menu-panel .menu > li {
    display: none;
  }

  .desktop-menu-panel .menu > .menu-item-1423,
  .desktop-menu-panel .menu > .menu-item-74,
  .desktop-menu-panel .menu > .menu-item-69,
  .desktop-menu-panel .menu > .menu-item-73 {
    display: flex;
  }

  .desktop-menu-panel .menu > li > a {
    border-radius: 10px;
    font-weight: 700;
    padding: 13px 46px 13px 14px;
  }

  .desktop-menu-panel .menu > li:hover > a {
    background: rgba(173, 209, 54, 0.16);
    opacity: 1;
  }

  .desktop-menu-panel .menu > li.has-mega-menu > .submenu-toggle,
  .desktop-menu-panel .menu > li.has-mega-menu > .mega-menu {
    display: none !important;
  }

  .desktop-menu-panel .menu > .menu-item-1423 {
    flex-wrap: wrap;
  }

  .desktop-menu-panel .menu > .menu-item-1423 > .sub-menu {
    background: #f7fbfc;
    border-radius: 10px;
    box-shadow: none;
    left: auto;
    margin: 4px 0 8px;
    min-width: 100%;
    padding: 8px;
    position: static;
    right: auto;
    top: auto;
    width: 100%;
  }

  .desktop-menu-panel .menu > .menu-item-1423:hover > .sub-menu,
  .desktop-menu-panel .menu > .menu-item-1423:focus-within > .sub-menu {
    display: block;
  }

  .desktop-menu-panel .menu > .menu-item-1423 > .sub-menu a {
    border-radius: 8px;
    color: var(--dark-color) !important;
    font-size: 14px !important;
    padding: 9px 10px;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1240px) {
  .desktop-quick-menu {
    column-gap: 14px;
    margin-right: 18px;
  }

  .desktop-quick-menu a {
    font-size: 15px;
  }

  .desktop-menu-trigger {
    padding: 10px 16px;
  }
}

/* Submenu & Toggle */
.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 250px;
  padding: 10px 0;
  list-style: none;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--primary-color);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sub-menu li {
  width: 100%;
}

.sub-menu li a {
  padding: 10px 25px;
  display: block;
  font-size: 16px !important;
  color: var(--dark-color) !important;
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
}

.sub-menu li:last-child a {
  border-bottom: none;
}

.sub-menu li a:hover {
  background-color: var(--bg-light);
  color: var(--primary-color) !important;
  padding-left: 30px;
}

.menu .menu-item-has-children {
  padding-right: 35px; /* Room for the absolute icon */
}

.menu li:hover > .sub-menu {
  display: block;
}

.submenu-toggle {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #0b2c3d;
  font-size: 24px; /* Increased size */
  font-weight: 500;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 5;
}

.menu li.open > .submenu-toggle {
  transform: translateY(-50%) rotate(45deg);
}

/* Mobile Menu Controls */
.mob_menu_open,
.menu_close_icon {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 40px;
  cursor: pointer;
}

.mob_menu_logo {
  display: none;
  background: #ffffff;
  padding: 10px 20px;
}

/* Sticky Header Styles */
.site-header {
  position: relative;
  width: 100%;
  z-index: 1000;
}

.site-header.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: headerSlideDown 0.4s ease-out forwards;
}

@keyframes headerSlideDown {
  from {
    top: -150px;
  }
  to {
    top: 0;
  }
}

/* ==========================================================================
   Section: Hero
   ========================================================================== */
.hero-section {
  position: relative;
}

.hero-section.hero-banner-mode {
  background: linear-gradient(135deg, var(--primary-color) 0%, #063d4a 100%);
  min-height: 252px;
  height: auto;
  padding: 96px 0 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0% 100%);
  z-index: 5;
}

.hero-section.hero-banner-mode::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 15% 25%,
      rgba(173, 209, 54, 0.2) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(173, 209, 54, 0.1) 0%,
      transparent 45%
    ),
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm66-3c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-46-45c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm58 41c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zM32 5c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm23 40c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-section.hero-banner-mode::after {
  display: none; /* Removed the flat line in favor of clip-path slant */
}

.hero-section img {
  width: 100%;
  height: unset;
  object-fit: cover;
}

/* Category Hero Overlay */
.hero-category-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 2;
  background: linear-gradient(
    to right,
    transparent 30%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.hero-banner-mode .hero-category-overlay {
  background: transparent;
  position: relative; /* Make it flow with the flexbox of .hero-banner-mode */
  width: 100%;
}

.hero-category-subtitle {
  display: block;
  color: var(--secondary-color);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 3px;
  animation: floatHero 5s ease-in-out infinite;
}

@keyframes floatHero {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hero-category-title {
  color: var(--white);
  font-size: var(--fs-h1);
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  line-height: 1.1;
}

.hero-banner-mode .hero-category-title {
  text-align: center;
  padding: 0 20px;
  font-size: clamp(24px, 4vw, 48px);
  line-height: 1.2;
}

.hero-banner-mode .hero-category-subtitle {
  text-align: center;
  padding-right: 0;
}

@media screen and (max-width: 1024px) {
  .hero-category-title {
    font-size: 60px;
  }
}

@media screen and (max-width: 768px) {
  .hero-category-overlay {
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
  }
  .hero-category-title {
    font-size: 40px;
    padding-right: 0;
    text-align: center;
  }
}

/* Home Page Specific Hero */
.hero-home-section {
  position: relative;
  height: clamp(600px, 80vh, 900px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Page: Membership Form
   ========================================================================== */
.membership-form-page {
  background: #f6fafb;
}

.membership-form-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #083f4c 100%);
  color: #ffffff;
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}

.membership-form-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  border: 42px solid rgba(173, 209, 54, 0.18);
  border-radius: 50%;
}

.membership-form-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.membership-form-eyebrow {
  display: inline-block;
  color: var(--secondary-color);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.membership-form-hero h1 {
  color: #ffffff;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.05;
  margin: 0 0 18px;
}

.membership-form-hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
}

.membership-form-section {
  padding: 80px 0;
}

.membership-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.8fr);
  gap: 32px;
  align-items: start;
}

.membership-form-panel,
.membership-download-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(11, 90, 107, 0.12);
}

.membership-form-panel {
  padding: 36px;
}

.membership-form-panel-header span {
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.membership-form-panel-header h2,
.membership-download-card h2 {
  color: var(--primary-color);
  font-size: 32px;
  margin: 8px 0 12px;
}

.membership-form-panel-header p,
.membership-download-card p {
  color: #4b5563;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

.membership-validation-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.membership-validation-item {
  display: grid;
  grid-template-columns: auto 44px 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(11, 90, 107, 0.12);
  border-radius: 14px;
  cursor: pointer;
  padding: 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.membership-validation-item:hover {
  border-color: rgba(11, 90, 107, 0.35);
  box-shadow: 0 10px 24px rgba(11, 90, 107, 0.08);
  transform: translateY(-2px);
}

.membership-validation-check {
  width: 20px;
  height: 20px;
  accent-color: var(--primary-color);
}

.membership-validation-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(173, 209, 54, 0.2);
  border-radius: 50%;
  color: var(--primary-color);
  font-weight: 900;
}

.membership-validation-item strong {
  color: var(--primary-color);
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.membership-download-card {
  padding: 34px;
  position: sticky;
  top: 120px;
  text-align: center;
}

.membership-download-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  background: var(--secondary-color);
  border-radius: 18px;
  color: var(--primary-color);
  font-size: 34px;
  margin-bottom: 18px;
}

.membership-download-btn {
  display: block;
  background: var(--primary-color);
  border-radius: 10px;
  color: #ffffff;
  font-weight: 800;
  margin-top: 28px;
  padding: 15px 20px;
  text-decoration: none;
  transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.membership-download-btn:not(.is-disabled):hover {
  background: #073f4c;
  transform: translateY(-2px);
}

.membership-download-btn.is-disabled {
  cursor: not-allowed;
  opacity: 0.45;
  pointer-events: auto;
}

.membership-download-note {
  font-size: 14px !important;
  margin-top: 14px !important;
}

@media screen and (max-width: 991px) {
  .membership-form-layout {
    grid-template-columns: 1fr;
  }

  .membership-download-card {
    position: static;
  }
}

@media screen and (max-width: 640px) {
  .membership-form-hero {
    padding: 80px 0 64px;
  }

  .membership-form-section {
    padding: 50px 0;
  }

  .membership-form-panel,
  .membership-download-card {
    padding: 24px;
  }

  .membership-validation-item {
    grid-template-columns: auto 1fr;
  }

  .membership-validation-icon {
    display: none;
  }
}

/* ==========================================================================
   Section: HISDA Gallery
   ========================================================================== */
.hisda-gallery-archive,
.hisda-gallery-single,
.hisda-gallery-preview-section {
  padding: 80px 0;
  background: #ffffff;
}

.hisda-gallery-preview-section {
  background: #f7fbfc;
}

.hisda-gallery-header,
.hisda-gallery-single-header,
.hisda-gallery-preview-section .container {
  text-align: center;
}

.hisda-gallery-header h1,
.hisda-gallery-single-header h1,
.hisda-gallery-preview-title {
  color: var(--primary-color);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  margin: 0 0 14px;
}

.hisda-gallery-header p,
.hisda-gallery-preview-subtitle,
.hisda-gallery-description {
  color: #333333;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto 42px;
  max-width: 820px;
}

.hisda-gallery-grid,
.hisda-gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}

.hisda-gallery-card,
.hisda-gallery-preview-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 90, 107, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hisda-gallery-card:hover,
.hisda-gallery-preview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(11, 90, 107, 0.18);
}

.hisda-gallery-card-link,
.hisda-gallery-preview-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.hisda-gallery-card-image,
.hisda-gallery-preview-image {
  aspect-ratio: 4 / 3;
  background: #eef5f7;
  overflow: hidden;
}

.hisda-gallery-card-image img,
.hisda-gallery-preview-image img,
.hisda-gallery-detail-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hisda-gallery-card-content,
.hisda-gallery-preview-content {
  padding: 20px;
}

.hisda-gallery-card-content h2,
.hisda-gallery-preview-content h3 {
  color: var(--primary-color);
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 8px;
}

.hisda-gallery-card-content span,
.hisda-gallery-preview-content span {
  color: #6b7280;
  font-size: 15px;
  font-weight: 600;
}

.hisda-gallery-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.hisda-gallery-detail-item {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.hisda-gallery-back,
.hisda-gallery-view-all {
  display: inline-block;
  color: #ffffff;
  background: var(--primary-color);
  border-radius: 8px;
  padding: 12px 22px;
  text-decoration: none;
  font-weight: 700;
}

.hisda-gallery-back {
  margin-bottom: 24px;
}

.hisda-gallery-preview-action,
.hisda-gallery-pagination {
  margin-top: 36px;
  text-align: center;
}

.hisda-gallery-placeholder,
.hisda-gallery-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  color: var(--primary-color);
  font-weight: 800;
}

@media screen and (max-width: 991px) {
  .hisda-gallery-grid,
  .hisda-gallery-preview-grid,
  .hisda-gallery-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 640px) {
  .hisda-gallery-grid,
  .hisda-gallery-preview-grid,
  .hisda-gallery-detail-grid {
    grid-template-columns: 1fr;
  }
}

.home-hero-slider {
  height: auto;
  min-height: 0;
  max-height: none;
  aspect-ratio: auto;
  display: block;
}

.hero-home-section .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.home-hero-slider-track,
.home-hero-slide {
  position: relative;
}

.home-hero-slide {
  opacity: 0;
  animation: homeHeroFade 15s infinite;
}

.home-hero-slide:not(:first-child) {
  position: absolute;
  inset: 0;
}

.home-hero-slide:nth-child(1) {
  animation-delay: 0s;
}

.home-hero-slide:nth-child(2) {
  animation-delay: 5s;
}

.home-hero-slide:nth-child(3) {
  animation-delay: 10s;
}

.hero-slider-image {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes homeHeroFade {
  0%,
  30% {
    opacity: 1;
  }

  36%,
  100% {
    opacity: 0;
  }
}

.hero-home-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 44, 61, 0) 0%,
    rgba(11, 44, 61, 0.4) 40%,
    rgba(11, 44, 61, 0.95) 100%
  );
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 80px; /* Offset from screen edge */
}

.hero-home-outer-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.hero-home-content-box {
  position: relative;
  height: 530px;
  padding: 0; /* Removing padding as we are using absolute positioning for inner content */
  max-width: 620px;
  width: 100%;
  z-index: 3;
  border-top: 14px solid #ffffff;
  border-right: 14px solid #ffffff;
  border-bottom: 14px solid #ffffff;
}

/* Broken Left Border */
.hero-home-content-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 100px; /* Top part of the broken line */
  background-color: #ffffff;
  pointer-events: none;
}

.hero-home-content-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 14px;
  height: 100px; /* Bottom part of the broken line */
  background-color: #ffffff;
  pointer-events: none;
}

.hero-home-icon-box {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background-color: #008cc9;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  z-index: 5;
}

.hero-home-icon-box i {
  color: #ffffff;
  font-size: 60px;
}

.hero-home-text {
  position: absolute;
  top: 55px;
  right: 70px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
}

.hero-home-title {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 0.9;
  z-index: 2;
}

.hero-home-title span {
  display: block;
}

.hero-home-title .row-1 {
  font-size: 130px;
  font-weight: 900;
  color: var(--secondary-color);
  letter-spacing: -4px;
  line-height: 1.2;
  text-align: right;
}

.hero-home-title .row-2 {
  font-size: 85px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-top: -10px;
  display: flex;
  justify-content: flex-end;
  column-gap: 20px;
  line-height: 1.2;
}

.hero-home-title .row-2 .green-text {
  color: var(--secondary-color);
}

.hero-home-title .row-2 .white-text {
  color: #ffffff;
}

.hero-home-subtitle {
  font-size: 40px;
  color: #ffffff;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.5px;
  text-align: right;
  text-transform: none;
  /* max-width: 400px; */
  line-height: 1.2;
}

@media screen and (max-width: 1200px) {
  .hero-home-content-box {
    max-width: 415px;
    height: 385px;
  }
  .hero-home-title .row-1 {
    font-size: 110px;
  }
  .hero-home-title .row-2 {
    font-size: 70px;
  }
  .hero-home-subtitle {
    font-size: 32px;
  }
}

@media screen and (max-width: 1024px) {
  .hero-home-content-box {
    max-width: 480px; /* Reduced slightly for safety */
    height: 400px;
    border-width: 10px;
  }
  .hero-home-text {
    top: 50px;
    right: 40px;
  }
  .hero-home-title .row-1 {
    font-size: 85px;
  }
  .hero-home-title .row-2 {
    font-size: 50px;
  }
  .hero-home-subtitle {
    font-size: 24px;
  }
  .hero-home-icon-box {
    width: 80px;
    height: 80px;
    top: -25px;
    right: -25px;
  }
  .hero-home-icon-box i {
    font-size: 40px;
  }
}

@media screen and (max-width: 991px) {
  .hero-home-overlay {
    justify-content: center;
    padding-right: 20px;
    padding-left: 20px;
  }
  .hero-home-outer-wrapper {
    justify-content: center;
  }
  .hero-home-section {
    height: auto;
    padding: 240px 0;
  }
  .hero-home-content-box {
    height: auto;
    padding: 60px 20px;
    width: 100%;
    max-width: 100%;
    text-align: center;
    border: 8px solid #fff;
  }
  .hero-home-text {
    position: relative;
    top: 0;
    right: 0;
    padding: 0;
    align-items: center;
  }
  .hero-home-title .row-1 {
    font-size: 65px;
    text-align: center;
    margin-left: 0;
  }
  .hero-home-title .row-2 {
    font-size: 38px;
    justify-content: center;
    margin-left: 0;
    flex-wrap: wrap;
    margin-top: 5px;
  }
  .hero-home-content-box::before,
  .hero-home-content-box::after {
    display: none;
  }
  .hero-home-icon-box {
    width: 70px;
    height: 70px;
    top: -35px;
    right: 50%;
    transform: translateX(50%);
  }
  .hero-home-icon-box i {
    font-size: 35px;
  }
  .hero-home-subtitle {
    position: relative;
    bottom: auto;
    right: auto;
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
    max-width: 100%;
  }
}

/* ==========================================================================
   Section: Welcome
   ========================================================================== */
.welcome_section {
  padding: var(--section-padding) 0 0 0;
}

.welcome_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.welcome_left {
  width: 60%;
}

.welcome_left h2 {
  color: var(--primary-color);
  text-align: left;
  margin-bottom: 15px;
}

.welcome_left p {
  color: #000000;
  margin-bottom: 20px;
  text-align: justify;
}

.welcome_right {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.welcome_right img {
  max-width: 100%;
  width: 520px;
  height: auto;
}

.welcome-image-wrapper {
  position: relative;
  padding: 30px 0 0 30px;
}

/* .l-shape-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
  border-top: 10px solid #add136;
  border-left: 10px solid #add136;
  z-index: 0;
} */

/* ==========================================================================
   Section: Tabs (Vision, Mission, History)
   ========================================================================== */
.tabs-section {
  padding: var(--section-padding) 0;
  background: #ffffff;
  box-shadow: 0 0 45px rgba(11, 90, 107, 0.18);
  position: relative;
  z-index: 1;
  border-radius: 30px;
  margin: 30px;
}

.tab-nav {
  display: flex;
  justify-content: center;
  column-gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  scrollbar-width: thin;
  scrollbar-color: var(--secondary-color) var(--bg-light);
}

/* Custom scrollbar for horizontal tabs on mobile */
.tab-nav::-webkit-scrollbar {
  height: 6px;
}
.tab-nav::-webkit-scrollbar-track {
  background: var(--bg-light);
  border-radius: 10px;
}
.tab-nav::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 10px;
}

.tab-button {
  background-color: var(--bg-light);
  color: var(--primary-color);
  flex: 1;
  font-size: clamp(18px, 3vw, 30px);
  font-weight: 600;
  cursor: pointer;
  height: clamp(60px, 10vw, 80px);
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  position: relative;
  transition: all 0.3s ease;
  white-space: nowrap;
  padding: 0 30px;
}

.tab-button:hover,
.tab-button.active {
  background: var(--secondary-color);
  color: var(--white);
}

.tab-button.active::after {
  position: absolute;
  content: "";
  height: clamp(20px, 4vw, 30px);
  width: clamp(20px, 4vw, 30px);
  background-color: var(--secondary-color);
  bottom: clamp(-10px, -2vw, -15px);
  left: 50%;
  transform: translateX(-50%) rotate(135deg);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-panel p {
  font-size: 18px;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 25px;
  font-weight: 400;
}

.tab-btn-wrapper {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin-bottom: 60px;
  justify-content: center;
}

.tab-btn-wrapper a.read_btn:hover {
  color: var(--secondary-color);
}

/* Stats Map Section */
.stats-map-section {
  padding: 80px 0;
  background-color: #ffffff;
  overflow: hidden;
}

/* Mission Stats & Layout */
.our_mission_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 20px;
  padding: 50px 50px;
}

.our_vision_left {
  width: 40%;
}
.our_vision_right {
  width: 60%;
}

.our_vision_right img {
  max-width: 100%;
  width: 700px;
}

.stats-map-image-wrapper {
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.stats-map-image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}

.company_about {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  width: 400px;
  max-width: 100%;
}

.about_single {
  position: relative;
  /* width: 400px; */
  max-width: 100%;
  padding: 20px;
  background-color: #0b5a6b;
  text-align: center;
  transition: all 0.3s ease;
  z-index: 2; /* Ensure it stays above the line */
}

.about_single:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.about_single h3 {
  font-size: 40px;
  color: #ffffff;
  margin: 0;
}

.about_single p {
  font-size: 20px;
  color: #ffffff;
  margin: 0;
}

.absolute_line {
  position: absolute;
  height: 130%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.absolute_line .circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #add136;
}

.absolute_line .line {
  width: 4px;
  height: 100%;
  background-color: #add136;
}

/* ==========================================================================
   Section: Team Slider (General)
   ========================================================================== */
.team-section {
  padding: var(--section-padding) 0 0 0;
  overflow: hidden;
}

.team-section .swiper_wrapper {
  position: relative;
}

.team-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.team-section h3 {
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;
  color: #0b5a6b;
  text-align: center;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-section p {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  margin: 0;
}

.team-section img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 4px solid #ffffff;
  margin-bottom: 20px;
}

.team-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 25px;
  position: relative;
  background-color: #f0f0f0;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  margin-bottom: 0;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-info {
  width: 100%;
  text-align: center;
  margin-top: -20px;
}

.team-card {
  text-align: center;
  transition: all 0.3s ease;
}

.team-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #ffffff;
  /* border: 1px solid #e1e1e1; */
  display: inline-block;
  width: 100%;
}

.team-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.team-patterns {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
}

.pattern-top-left {
  top: -80px;
  left: -80px;
}

.pattern-bottom-right {
  bottom: -80px;
  right: -80px;
}

.team-name {
  font-size: 20px;
  font-weight: 900;
  color: #0b5a6b !important;
  margin-bottom: 5px !important;
  line-height: 1.2;
}

.team-position,
.team-company,
.team-tenure {
  font-size: 15px;
  font-weight: 600;
  color: #0b5a6b;
  margin: 0;
  line-height: 1.3;
}

/* Specific Slider Styles */
.committee-section {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
  background-color: var(--secondary-color); /* Lime Green from design */
}

.committee-section .section-title {
  font-weight: 900;
  color: #0b5a6b;
  margin-bottom: 60px;
  font-size: 42px;
  text-align: center;
}

.committee-section .team-image {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.committee-section .team-name {
  color: #0b5a6b !important;
  font-size: 25px;
}

.committee-section .team-position {
  color: #0b5a6b;
  font-weight: 500;
  margin-top: -5px;
}

/* Management Section Specifics */
.management-section {
  background-color: var(--white);
  padding: var(--section-padding) 0;
}

.management-section .section-title {
  color: #0b5a6b;
  font-weight: 900;
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
}

.management-parent {
  width: 1000px;
  margin: auto;
  max-width: 100%;
}

/* Past Presidents Section Specifics */
.past-presidents-section {
  background-color: var(--white);
  padding: var(--section-padding) 0;
}

.past-presidents-section .section-title {
  color: #0b5a6b;
  font-weight: 900;
  font-size: 42px;
  margin-bottom: 60px;
  text-align: center;
}

.past-presidents-section .team-image {
  border: 1px solid #d1d1d1;
}

.past-presidents-section .team-company {
  font-weight: 400;
  font-size: 14px;
}

.past-presidents-section .team-tenure {
  font-weight: 400;
  font-size: 13px;
}

/* Slider Navigation Global Styling */
.swiper-button-prev,
.swiper-button-next,
.news-prev-btn,
.news-next-btn {
  width: 50px !important;
  height: 50px !important;
  border: none !important;
  background-color: transparent !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  cursor: pointer;
  pointer-events: auto !important;
  z-index: 10 !important;
}

.swiper-button-prev::after,
.swiper-button-next::after,
.news-prev-btn::after,
.news-next-btn::after {
  display: none !important;
}

/* .swiper-button-next,
.news-next-btn {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' fill='none'%3E%3Ccircle cx='25' cy='25' r='23' stroke='%230b2c3d' stroke-width='1.5'/%3E%3Cpath d='M18 25H32M32 25L27 20M32 25L27 30' stroke='%230b2c3d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}

.swiper-button-prev,
.news-prev-btn {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' fill='none'%3E%3Ccircle cx='25' cy='25' r='23' stroke='%230b2c3d' stroke-width='1.5'/%3E%3Cpath d='M32 25H18M18 25L23 20M18 25L23 30' stroke='%230b2c3d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
} */

.swiper-button-next:hover,
.news-next-btn:hover,
.swiper-button-prev:hover,
.news-prev-btn:hover {
  transform: scale(1.1) !important;
  opacity: 0.7;
}

/* ==========================================================================
   Section: Events
   ========================================================================== */
.events-section {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.events-section .section-title {
  color: #0b5a6b;
  font-weight: 800;
}

.events-section .section-description {
  color: #414042;
  margin-bottom: 60px;
}

.event-card {
  border-radius: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  background: #ffffff;
  height: auto;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-8px);
  /* box-shadow: 0 12px 24px rgba(11, 90, 107, 0.2); */
}

.event-image-wrapper {
  height: 280px;
  overflow: hidden;
  background: #f0f0f0;
  position: relative;
}

.event-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  height: 100%;
  gap: 2px;
}

.event-gallery .gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.event-card:hover .gallery-image {
  transform: scale(1.05);
}

.event-single-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.event-single-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.event-card:hover .event-single-image {
  transform: scale(1.1);
}

.event-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0e0e0;
  color: #999;
  font-size: 18px;
  font-weight: 600;
}

.event-content {
  padding: 25px 0px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-title {
  font-size: 24px;
  font-weight: 800;
  color: #0b5a6b;
  margin: 0 0 5px 0;
  line-height: 1.3;
}

.event-date-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #0b5a6b;
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 5px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.event-date-overlay .date-day {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  color: #add136;
}

.event-date-overlay .date-month-year {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 4px;
}

.event-description {
  font-size: 15px;
  line-height: 1.5;
  color: #414042;
  margin-bottom: 20px;
  margin-top: 0;
  flex: 1;
}

.event-content .read-more-btn {
  display: inline-block;
  background: #0b5a6b;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.event-content .read-more-btn:hover {
  background: #094552;
  transform: translateX(5px);
}

@media screen and (max-width: 768px) {
  .event-image-wrapper {
    height: 220px;
  }
  .event-content {
    padding: 20px 15px;
  }
  .event-title {
    font-size: 20px;
  }
}

.events-controls {
  position: absolute;
  top: 35%;
  left: -60px;
  right: -60px;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}

.events-controls .swiper-button-prev,
.events-controls .swiper-button-next {
  pointer-events: auto;
}

@media screen and (max-width: 1400px) {
  .events-controls {
    left: 10px;
    right: 10px;
  }
}

/* ==========================================================================
   Section: Membership Companies
   ========================================================================== */
.membership-companies-section {
  padding: 100px 0;
  background-color: #f6f6f6;
  position: relative;
  overflow: hidden;
  padding-bottom: 140px;
}

.membership-wrapper {
  display: flex;
  align-items: center;
  /* gap: 60px; */
}

.membership-featured-side {
  flex: 30%;
}

.featured-company-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.featured-company-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.membership-content-side {
  flex: 70%;
  min-width: 0; /* Fixes swiper width issue in flexbox */
  padding-left: 100px;
  padding-right: 40px;
}

.membership-section-title {
  color: #005a6e;
  font-size: 38px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
  text-transform: capitalize;
}

.membership-swiper-wrapper {
  position: relative;
  /* padding: 0 20px; */
}

.company-card {
  height: auto;
  padding-bottom: 10px;
}

.company-card-inner {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.company-card-inner:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: #add136;
}

.company-image {
  height: 220px; /* Taller for better visual */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0; /* Remove padding for full cover */
  background: #f0f0f0;
  position: relative;
}

.company-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover for premium full image look */
}

.company-placeholder {
  font-weight: 700;
  color: #ccc;
  font-size: 24px;
  text-transform: uppercase;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-category {
  background-color: #add136; /* Lime Green bottom bar */
  padding: 5px 10px;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.company-category span {
  color: #ffffff; /* White text */
  font-weight: 400;
  font-size: 25px;
  text-transform: capitalize; /* As per screenshot example 'Infrastructure' */
  letter-spacing: 0.5px;
  display: block;
}

.membership-side-controls {
  position: absolute;
  top: 45%;
  left: -75px;
  right: -40px;
  width: calc(100% + 145px);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
  transform: translateY(-50%);
}

.membership-side-controls svg {
  /* display: none; */
  height: 40px !important;
  width: 40px !important;
}

@media screen and (max-width: 1400px) {
  /* .membership-side-controls {
    top: 45%;
    left: 0;
    right: unset;
    width: calc(100% + 60px);
  } */
}
@media screen and (max-width: 1200px) {
  .membership-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .membership-featured-side {
    flex: 0 0 auto;
    margin-bottom: 40px;
  }
  .membership-content-side {
    width: 100%;
  }
  .membership-content-side {
    padding-left: 40px;
    padding-right: 40px;
    flex: 100%;
  }
}

@media screen and (max-width: 768px) {
  .featured-company-image {
    width: 100%;
    height: 100%;
  }
  .membership-side-controls {
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 10px;
  }
}

@media screen and (max-width: 768px) {
  .membership-companies-section {
    padding: 60px 0;
  }
  .featured-company-image {
    width: 100%;
    height: 100%;
  }
}

/* ==========================================================================
   Section: News & Media
   ========================================================================== */
.news-media-section {
  padding: 80px 0 0px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: visible; /* Allow man to stick out */
  min-height: 600px;
  display: flex;
  align-items: center;
}
.news-carousel-container {
  padding-bottom: 100px !important;
}
.news-overlay {
  position: absolute;
  inset: 0;
  background: rgba(
    11,
    44,
    61,
    0.7
  ); /* Darker navy overlay for better text readability */
  z-index: 1;
}

.news-media-section .container {
  position: relative;
  z-index: 4;
}

.news-main-wrapper {
  position: relative;
  display: block; /* Normal flow for content */
}

.news-text-content {
  width: 70%;
  position: relative;
  z-index: 5;
}

.news-section-title {
  color: #add136; /* Lime Green */
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
  text-align: left;
}

.news-section-desc {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 900px;
  text-align: left;
}

.news-carousel-container {
  position: relative;
  padding: 0 0 40px 0;
}

.news-item-card {
  height: auto;
}

.news-item-image {
  height: 220px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.news-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-placeholder {
  width: 100%;
  height: 100%;
  background: #0b5a6b;
  color: #add136;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
}

.news-item-title {
  color: #add136 !important; /* Lime Green */
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.news-item-excerpt {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.news-read-more {
  display: inline-block;
  background: #0b5a6b;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 400;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.news-read-more:hover {
  background: #add136;
  color: #0b5a6b;
}

.news-human-image {
  position: absolute;
  bottom: 0px;
  right: 0;
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
}

.static-man-img {
  width: auto;
  height: clamp(500px, 60vw, 850px); /* Responsive height */
  display: block;
}

.news-bottom-decor {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  display: flex;
  z-index: 2;
}

.decor-light {
  flex: 1;
  background: #f0f0f0;
}

.decor-green {
  flex: 1;
  background: #add136;
}

@media screen and (max-width: 1200px) {
  .news-nav-controls {
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
  }
}

@media screen and (max-width: 991px) {
  .news-text-content {
    width: 100%;
    max-width: 100%;
  }

  .news-human-image {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: -50px; /* Overlap with decor */
    z-index: 5;
  }

  .static-man-img {
    height: auto;
    max-width: 100%;
    width: 400px; /* Fixed size for mobile balance */
  }

  .news-main-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .news-section-title {
    font-size: 32px;
  }
  .news-item-image {
    height: 180px;
  }
  .static-man-img {
    width: 300px;
  }
  .news-carousel-container {
    padding-bottom: 60px !important;
  }
  .news-main-wrapper {
    flex-direction: column-reverse;
  }
  .news-human-image {
    margin-top: 0;
    margin-bottom: 0;
  }
}

/* ==========================================================================
   Section: President's Message
   ========================================================================== */
.president-message-section {
  padding: 0;
}
.home-president-message {
  margin-top: 100px;
}
.president-message-wrapper {
  background-color: #0b5a6b;
  border-radius: 20px;
  padding: 50px;
  display: flex;
  align-items: center;
  row-gap: 50px;
  column-gap: 50px;
  color: #ffffff;
}

.president-image {
  flex: 0 0 350px;
  max-width: 350px;
}

.president-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  object-fit: cover;
}

.president-content {
  flex: 1;
}

.president-title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff !important;
  text-align: left;
}

.president-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ffffff;
  text-align: left;
}

.read-more-btn-lime {
  display: inline-block;
  background-color: #add136;
  color: #0b5a6b;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.read-more-btn-lime:hover {
  background-color: #ffffff;
  color: #0b5a6b;
  transform: translateY(-2px);
}

@media screen and (max-width: 1024px) {
  .president-message-wrapper {
    flex-direction: column;
    padding: 40px;
    row-gap: 30px;
    column-gap: 30px;
  }
  .our_vision_right {
    width: 100%;
  }
  .president-image {
    flex: 0 0 auto;
    width: 300px;
  }
  .president-title {
    text-align: center;
    font-size: 32px;
  }
  .president-btn-wrapper {
    text-align: center;
  }
  .our_vision_left {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .our_mission_wrapper {
    flex-direction: column;
    row-gap: 70px;
  }
}

@media screen and (max-width: 768px) {
  .president-message-section {
    padding: clamp(40px, 6vw, 60px) 0;
  }
  .home-president-message {
    margin-top: 50px;
  }
  .welcome_section {
    padding: var(--section-padding) 0 0 0;
  }
  .our_mission_wrapper {
    padding: clamp(40px, 6vw, 60px) 0;
  }
  .tab-nav {
    justify-content: center;
    flex-wrap: nowrap;
    column-gap: 0;
    padding: 0 0 15px 0;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .tab-button {
    flex: 1;
    padding: 0 10px;
    font-size: clamp(20px, 4vw, 24px);
    height: 70px;
  }
  .tab-button.active::after {
    display: block; /* Restore the arrow */
    height: 20px;
    width: 20px;
    bottom: -10px;
  }
  .president-image {
    width: 100%;
  }
}

/* ==========================================================================
   Section: Join Membership
   ========================================================================== */
.join-membership-section {
  padding: var(--section-padding) 0;
  background-color: var(--white);
}

.join-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 80px;
  column-gap: 80px;
  align-items: center;
}

.join-image-side {
  position: relative;
}

.l-border-frame {
  position: relative;
  padding: 0 40px 40px 0; /* Space for the border behind */
}

/* * Designing the specific L-shape border from the image */
.image-box {
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
}

.join-content-side {
  padding-left: 20px;
}

.join-title {
  color: var(--primary-color);
  font-size: var(--fs-h2);
  font-weight: 800;
  margin-bottom: 25px;
}

.join-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #414042;
  margin-bottom: 20px;
}

.join-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.membership-benefits-title {
  font-size: 20px;
  font-weight: 700;
  color: #0b5a6b;
  margin-bottom: 20px;
}

.join-benefits li {
  position: relative;
  padding-left: 25px;
  font-size: 16px;
  color: #414042;
  margin-bottom: 12px;
  line-height: 1.5;
  font-weight: 500;
}

.join-benefits li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #add136;
  font-size: 24px;
  line-height: 1;
}

.btn-be-member {
  display: inline-block;
  background-color: #0b5a6b;
  color: #ffffff;
  padding: 12px 35px;
  border-radius: 5px;
  font-weight: 400;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.btn-be-member:hover {
  background-color: #add136;
  color: #0b5a6b;
  transform: translateY(-2px);
}

@media screen and (max-width: 1024px) {
  .join-wrapper {
    grid-template-columns: 1fr;
    row-gap: 60px;
    column-gap: 60px;
  }
  .join-image-side {
    max-width: 600px;
    margin: 0 auto;
  }
  .join-content-side {
    padding-left: 0;
    text-align: center;
  }
  .join-benefits {
    display: inline-block;
    text-align: left;
  }
  .join-cta-wrapper {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .join-membership-section {
    padding: 60px 0;
  }
  .join-title {
    font-size: 30px;
  }
}

/* ==========================================================================
   Page Title Bar
   ========================================================================== */
.page-title-bar {
  background-color: var(--primary-color);
  padding: 50px 0;
  border-bottom: 5px solid var(--secondary-color);
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
  z-index: 5;
}

.page-title-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 15% 25%,
    rgba(173, 209, 54, 0.15) 0%,
    transparent 40%
  );
  pointer-events: none;
}

.title-bar-content {
  text-align: left;
}

.member-category-label {
  display: block;
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.member-main-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .page-title-bar {
    padding: 30px 0 50px;
    text-align: center;
  }
  .title-bar-content {
    text-align: center;
  }
  .member-main-title {
    font-size: 26px;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  position: relative;
  background-color: #232323;
  color: #ffffff;
  overflow: visible; /* To allow gears to pop out if needed */
}

.footer-top-decor {
  position: relative;
  height: 200px;
  background-color: #f6f6f6; /* Page background color above footer */
  z-index: 5;
  overflow: hidden;
}

/* The Lime Green Section */
.footer-top-decor::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #add136;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  z-index: 2;
}

/* The Dark Grey In-between Section */
.footer-top-decor::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #232323;
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 50% 100%, 0 0);
  z-index: 4;
}

.footer-gear-left,
.footer-gear-right {
  position: absolute;
  bottom: 20px;
  width: 120px;
  height: 120px;
  background-image: url("../images/gear-pattern.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 3;
  opacity: 0.8;
}

.footer-gear-left {
  left: 10%;
  transform: rotate(15deg);
  filter: hue-rotate(150deg); /* Make it blue-ish */
}

.footer-gear-right {
  right: 10%;
  transform: rotate(-15deg);
  filter: hue-rotate(300deg); /* Make it reddish/purple */
}

.footer-main-content {
  padding: var(--section-padding) 0 60px; /* Keep bottom for footer end */
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 4;
}

.footer-main-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(35, 35, 35, 0.9); /* Dark overlay to match design */
  z-index: -1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  row-gap: 40px;
  column-gap: 40px;
}

/* Col styling */
.footer-heading {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.footer-text {
  font-size: 14px;
  line-height: 1.8;
  color: #e1e1e1;
}

.footer-logo-col .custom-logo-link img,
.footer-logo-col .footer-default-logo img {
  max-width: 250px;
  height: auto;
  filter: brightness(0) invert(1); /* Ensure logo is white */
}

/* Office List */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  margin-bottom: 20px;
  row-gap: 15px;
  column-gap: 15px;
  font-size: 14px;
  color: #e1e1e1;
  line-height: 1.4;
}
.footer-contact-list li a {
  color: #ffffff;
}
.footer-contact-list i {
  color: #add136; /* Branding color for icons */
  font-size: 14px;
}

.footer-icon-box {
  width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.office-address {
  line-height: 1.6;
}

/* Links List */
.links-subgrid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  color: #e1e1e1;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #add136;
}

/* Socials */
.footer-socials {
  display: flex;
  row-gap: 12px;
  column-gap: 12px;
  margin: 30px 0;
}

.social-icon {
  width: 35px;
  height: 35px;
  background-color: #add136;
  color: #232323; /* Dark grey instead of blue */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #ffffff;
  transform: translateY(-3px);
}

/* Subscription */
.footer-subscription .sub-form {
  position: relative;
  max-width: 300px;
}

.footer-subscription input {
  width: 100%;
  padding: 12px 20px;
  padding-right: 50px;
  border-radius: 30px; /* Fully rounded as per design */
  border: none;
  background: #ffffff; /* White input */
  font-size: 14px;
  color: #333;
}

.footer-subscription button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 16px;
}

.footer-subscription button:hover {
  color: #add136;
}

/* Bottom Bar */
.footer-bottom {
  background-color: #f6f6f6;
  padding: 30px 0;
  color: #666;
  font-size: 14px;
  border-top: 1px solid #eee;
}

.bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-links {
  display: flex;
  row-gap: 15px;
  column-gap: 15px;
  align-items: center;
}

.footer-bottom-links a {
  color: #414042;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #0b5a6b;
}

.sep {
  color: #ccc;
}

/* Media Queries */
@media screen and (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 50px;
    column-gap: 50px;
  }
}

@media screen and (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
    column-gap: 40px;
  }

  .footer-top-decor {
    height: 100px;
  }

  .footer-main-content {
    padding: 100px 0 40px;
  }

  .bottom-flex {
    flex-direction: column;
    row-gap: 15px;
    column-gap: 15px;
    text-align: center;
  }
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media screen and (max-width: 1370px) {
  .header_wrapper .header_left {
    width: 30%;
  }
  .header_wrapper .custom-logo-link img {
    width: 160px;
  }
  .header_right_top .text_content,
  .header_right_top .text_content a {
    font-size: 12px;
  }
  .header_right_bottom {
    padding: 25px;
    padding-right: 20px;
  }
  .menu {
    column-gap: 30px;
  }
  .menu .menu-item a {
    font-size: 16px;
  }
}

@media screen and (max-width: 1024px) {
  .desktop-quick-menu {
    display: none;
  }

  .desktop-menu-trigger {
    display: none;
  }

  .desktop-menu-dropdown,
  .desktop-menu-panel {
    position: static;
    width: 100%;
  }

  .desktop-menu-panel {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    padding: 0;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .desktop-menu-panel .menu > .menu-item-71,
  .desktop-menu-panel .menu > .menu-item-67,
  .desktop-menu-panel .menu > .menu-item-70,
  .desktop-menu-panel .menu > .menu-item-72,
  .desktop-menu-panel .menu > .menu-item-68,
  .desktop-menu-panel .menu > .menu-item-142,
  .desktop-menu-panel .menu > .menu-item-143,
  .desktop-menu-panel .menu > .menu-item-144,
  .desktop-menu-panel .menu > .menu-item-145,
  .desktop-menu-panel .menu > .menu-item-146,
  .desktop-menu-panel .menu > .menu-item-148,
  .desktop-menu-panel .menu > .menu-item-1326,
  .desktop-menu-panel .menu > .menu-item-1327,
  .desktop-menu-panel .menu > .menu-item-1328,
  .desktop-menu-panel .menu > .menu-item-1329 {
    display: flex;
  }

  .mob_menu_open,
  .menu_close_icon {
    display: block;
  }
  .menu .submenu-toggle {
    color: #ffffff !important;
  }
  .header_right_top {
    height: 30px;
  }
  .header_right_top .text_content,
  .header_right_top .text_content a {
    font-size: 10px;
  }
  .header_right_bottom {
    justify-content: end;
  }

  .main-navigation {
    position: fixed;
    inset: 0;
    background: #0b2c3d; /* Solid dark blue for better contrast */
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 60px 40px;
  }

  .main-navigation.active {
    transform: translateX(0);
  }

  .menu {
    height: auto;
    width: 100%;
    background: transparent;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 40px;
    row-gap: 0;
    column-gap: 0;
    overflow-y: auto;
    max-height: calc(100vh - 120px);
    padding-bottom: 40px;
  }

  .menu .menu-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    width: 100%;
    position: relative;
    flex-direction: column;
    display: flex;
  }

  .main-navigation.active .menu .menu-item {
    opacity: 1;
    transform: translateY(0);
  }

  /* Staggered animation for menu items */
  .main-navigation.active .menu .menu-item:nth-child(1) {
    transition-delay: 0.1s;
  }
  .main-navigation.active .menu .menu-item:nth-child(2) {
    transition-delay: 0.2s;
  }
  .main-navigation.active .menu .menu-item:nth-child(3) {
    transition-delay: 0.3s;
  }
  .main-navigation.active .menu .menu-item:nth-child(4) {
    transition-delay: 0.4s;
  }
  .main-navigation.active .menu .menu-item:nth-child(5) {
    transition-delay: 0.5s;
  }
  .main-navigation.active .menu .menu-item:nth-child(6) {
    transition-delay: 0.6s;
  }

  .menu .menu-item a {
    font-size: 20px;
    color: #ffffff !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 50px 18px 15px; /* Right padding for toggle button */
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    position: relative;
    align-items: center;
    display: flex;
  }

  .menu .menu-item a:hover {
    color: #add136;
    padding-left: 10px;
  }

  .sub-menu,
  .mega-menu {
    position: relative !important;
    background: rgba(255, 255, 255, 0.05) !important;
    padding: 15px !important;
    display: none;
    width: 100%;
    box-shadow: none !important;
    border-left: 3px solid #add136 !important;
    inset: auto !important;
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }

  .menu li.open > .sub-menu,
  .menu li.open > .mega-menu {
    display: block !important;
    animation: fadeInDown 0.3s ease;
  }

  .menu li.open > .submenu-toggle {
    transform: translateY(-50%) rotate(45deg);
    color: #add136;
  }

  .submenu-toggle {
    position: absolute;
    right: 15px;
    top: 35px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #add136; /* Bright color for visibility */
    font-size: 28px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-weight: 300;
    line-height: 1;
  }

  /* Vertical Mega Menu Grid for Mobile */
  .mega-menu-grid {
    display: flex !important;
    flex-direction: column !important; /* Stack vertically */
    row-gap: 15px !important;
    column-gap: 15px !important;
  }

  .mega-menu-item {
    flex: none !important;
    max-width: 100% !important;
    width: 100% !important;
    min-width: auto !important;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mega-menu-item:last-child {
    border-bottom: none;
  }

  @media screen and (max-width: 360px) {
    .mega-menu-item {
      max-width: 100%;
      flex: 1 1 100%;
    }
  }

  .mega-menu-header {
    border: none !important;
    padding: 0 0 15px 0 !important;
    margin-bottom: 15px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    row-gap: 10px;
    column-gap: 10px;
  }

  .mega-menu-header .mega-title {
    font-size: 18px !important;
    color: #fff !important;
    font-weight: 700;
  }

  .mega-menu-header .view-all-link {
    font-size: 14px !important;
  }

  .mega-event-card {
    display: flex !important;
    align-items: flex-start;
    row-gap: 12px;
    column-gap: 12px;
    padding: 10px 0;
  }

  .mega-event-image {
    width: 70px !important;
    height: 70px !important;
    flex-shrink: 0;
    margin: 0 !important;
    border-radius: 6px !important;
    overflow: hidden;
  }

  .mega-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mega-event-title {
    text-align: left !important;
    color: #ffffff !important; /* Pure white for better visibility */
    font-size: 15px !important;
    margin: 0 0 5px 0 !important;
    line-height: 1.4;
    font-weight: 700;
  }

  .read-more {
    opacity: 1 !important;
    transform: none !important;
    color: #add136 !important;
    text-align: left !important;
    margin-top: 5px;
    font-size: 13px !important;
    font-weight: 600;
  }

  .sub-menu li a {
    font-size: 18px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    opacity: 0.9;
    color: #add136 !important; /* Brighter visibility for sub-items */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-left: 30px !important; /* Indented for hierarchy */
  }

  .sub-menu li:last-child a {
    border-bottom: none;
  }

  .menu_close_icon {
    position: absolute;
    top: 30px;
    right: 30px;
    display: block;
    color: #ffffff;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mega Menu Desktop Styles */
@media screen and (min-width: 1025px) {
  .menu li.has-mega-menu {
    position: static;
  }
  li.has-mega-menu .submenu-toggle {
    margin-bottom: -28px;
    position: unset;
  }

  .mega-menu {
    position: absolute;
    top: 100%; /* Snap to bottom of trigger */
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: block; /* We use opacity and height for animation */
    padding: 50px 0;
    border-top: 4px solid #add136;
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
  }

  .mega-menu::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 60px; /* Bridge the gap between menu link and dropdown */
    background: transparent;
  }

  .menu li.has-mega-menu:hover .mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mega-menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .mega-menu-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    row-gap: 30px;
    column-gap: 30px;
  }

  .mega-menu-header .mega-title {
    margin: 0;
    color: #414042;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.1;
  }

  .view-all-link {
    color: #add136;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    row-gap: 10px;
    column-gap: 10px;
    line-height: 1.2;
    transition: color 0.3s ease;
  }

  .view-all-link:hover {
    color: #0b2c3d;
  }

  .mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 30px;
    column-gap: 30px;
    width: 100%;
  }

  .mega-event-card {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
  }

  .mega-event-card:hover {
    transform: translateY(-10px);
  }

  .mega-event-image {
    height: 250px; /* Larger vertical cards */
    border-radius: 15px;
    overflow: hidden;
    background: #f8f9fa;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  .mega-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .mega-event-card:hover .mega-event-image img {
    transform: scale(1.1);
  }

  .mega-event-title {
    margin: 0 0 10px 0;
    color: #414042;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.4;
    transition: color 0.3s ease;
  }

  .mega-event-card:hover .mega-event-title {
    color: #add136;
  }

  .read-more {
    font-size: 12px;
    font-weight: 700;
    color: #add136;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  .mega-event-card:hover .read-more {
    opacity: 1;
    transform: translateY(0);
  }

  .placeholder-img {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-weight: 800;
  }
}

@media screen and (max-width: 768px) {
  .welcome_wrapper {
    flex-direction: column;
  }
  .welcome_left,
  .welcome_right {
    width: 100%;
    justify-content: start;
  }
  .welcome-btn-wrapper {
    text-align: start !important;
  }
  .welcome_left {
    align-items: center;
  }
  .welcome_left h2 {
    font-size: 30px;
    text-align: start;
  }
  .tabs-section {
    padding: var(--section-padding) 0 0 0;
  }
  .tab-button {
    font-size: 16px;
    height: auto;
    padding: 12px;
  }
  .past-presidents-section {
    padding: var(--section-padding) 0 0 0;
  }
  .header_right_bottom {
    justify-content: end;
  }
  .header_right_bottom {
    padding: 0;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 667px) {
  .header_left {
    display: none;
  }
  .header_right_bottom {
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0;
  }
  .mob_menu_logo {
    display: block;
    width: 50%;
    background: #fff;
    padding-left: 20px;
    clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
  }
  .header_wrapper .custom-logo-link img {
    width: 110px;
  }
  .header_right_top .icon_image img {
    height: 20px;
    width: 20px;
  }
  .header_right_top {
    height: unset;
  }
  .header_right_top {
    padding: 5px;
  }
  .header_right_top .links_social ul {
    justify-content: space-between;
    flex-direction: column;
  }
  .header_right_top {
    justify-content: center;
  }
}

/* ==========================================================================
   Section: Hero Reusable (Overlay Content)
   ========================================================================== */
.hero-overlay-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Text box on the right */
  z-index: 2;
}

.hero-section {
  position: relative;
}

/* Only apply dark gradient when overlay content exists (internal pages) */

.hero-section .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}

.about-hero-text-box {
  position: relative;
  max-width: 650px;
}

.about-icon-box {
  position: absolute;
  top: -40px;
  right: -20px;
  width: 80px;
  height: 80px;
  background-color: #008cc9; /* Blue box from screenshot */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  padding: 15px;
}

.about-icon-box img {
  width: 100%;
  height: auto;
}

.text-frame {
  border: 4px solid #ffffff;
  padding: 40px 50px;
  position: relative;
}

/* Removing bottom and left part of border to match design "L" shape if needed */
/* The screenshot shows a mostly enclosed box but with thick white lines. */
/* Just a full box for now as per design "text-frame" */

.about-hero-title {
  font-size: 55px;
  line-height: 1.1;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.text-yellow {
  color: #ffde00; /* Yellow for ABOUT */
}

.text-green-large {
  color: #add136; /* Green for HOSUR INDUSTRIES */
  font-size: 60px;
}

.text-white {
  color: #ffffff;
  letter-spacing: 10px; /* Wider spacing for ASSOCIATION */
  font-size: 40px;
}

@media screen and (max-width: 991px) {
  .about-hero-title {
    font-size: 40px;
  }
  .text-green-large {
    font-size: 45px;
  }
  .text-white {
    font-size: 30px;
  }
  .hero-section {
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .hero-section .container {
    justify-content: center;
    text-align: center;
  }
  .text-frame {
    padding: 20px;
  }
  .about-hero-title {
    font-size: 30px;
  }
  .text-green-large {
    font-size: 35px;
  }
  .text-white {
    font-size: 25px;
    letter-spacing: 5px;
  }
  .about-icon-box {
    width: 60px;
    height: 60px;
    top: -30px;
    right: 10px;
  }
}

/* ==========================================================================
   Section: About Welcome
   ========================================================================== */
.about-welcome-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.about-welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-welcome-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.about-welcome-title {
  font-size: 40px;
  font-weight: 800;
  color: #0b5a6b;
  margin-bottom: 30px;
}

.about-welcome-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #414042;
  margin-bottom: 20px;
  text-align: justify;
}

@media screen and (max-width: 991px) {
  .about-welcome-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-welcome-title {
    font-size: 32px;
  }
}

/* ==========================================================================
   Section: About Cards (Mission, Vision, History)
   ========================================================================== */
.about-cards-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-card {
  background-color: #f5f5f5; /* Light gray background from design */
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-card-title {
  font-size: 28px;
  font-weight: 800;
  color: #0b5a6b;
  margin-bottom: 25px;
}

.about-card-image {
  margin-bottom: 25px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card-image img {
  max-height: 100%;
  width: auto;
}

.about-card-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #414042;
  margin: 0;
}

@media screen and (max-width: 991px) {
  .about-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .about-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Section: Auth Pages (Login & Register)
   ========================================================================== */
.auth-page-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.auth-wrapper {
  max-width: 550px;
  margin: 0 auto;
}

.auth-box {
  background: #ffffff;
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  overflow: hidden;
}

.auth-header {
  text-align: center;
  margin-bottom: 40px;
}

.auth-title {
  font-size: 36px;
  font-weight: 800;
  color: #0b5a6b;
  margin-bottom: 10px;
}

.auth-subtitle {
  color: #666;
  font-size: 16px;
}

.auth-form .form-group {
  margin-bottom: 25px;
}

.auth-form label {
  display: block;
  font-weight: 600;
  color: #0b5a6b;
  margin-bottom: 10px;
  font-size: 14px;
}

.auth-form .input-wrapper {
  position: relative;
  width: 100%;
}

.auth-form .input-wrapper i.field-icon {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  color: #add136;
  font-size: 18px;
  z-index: 10;
}

.auth-form .input-wrapper i.toggle-password {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: #add136;
  font-size: 18px;
  z-index: 10;
  cursor: pointer;
  transition: color 0.3s ease;
}

.auth-form .input-wrapper i.toggle-password:hover {
  color: #0b5a6b;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
  width: 100%;
  padding: 15px 15px 15px 55px;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
  display: block;
}

.auth-form input:focus {
  border-color: #add136;
  background-color: #fff;
  outline: none;
  box-shadow: 0 0 10px rgba(173, 209, 54, 0.2);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
}

.form-row .form-group {
  flex: 1;
  min-width: 0; /* Important for flex children calculation */
}

@media screen and (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  font-size: 14px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  cursor: pointer;
}

.forgot-link {
  color: #0b5a6b;
  text-decoration: none;
  font-weight: 600;
}

.forgot-link:hover {
  color: #add136;
}

.auth-submit-btn {
  width: 100%;
  padding: 18px;
  background-color: #0b5a6b;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.auth-submit-btn:hover {
  background-color: #add136;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(173, 209, 54, 0.3);
}

.auth-footer {
  text-align: center;
  margin-top: 30px;
  color: #666;
}

.auth-footer a {
  color: #0b5a6b;
  font-weight: 700;
  text-decoration: none;
}

.auth-footer a:hover {
  color: #add136;
}

.auth-message {
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  display: none;
  text-align: center;
}

.auth-message.success {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
  display: block;
}

.auth-message.error {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
  display: block;
}

@media screen and (max-width: 768px) {
  .auth-box {
    padding: 30px 20px;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .auth-title {
    font-size: 28px;
  }
}

/* ==========================================================================
   Section: About President's Message
   ========================================================================== */
.about-president-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.about-president-box {
  background-color: #0b5a6b; /* Dark teal background */
  padding: 60px;
  border-radius: 40px;
  color: #ffffff;
}

.about-president-top {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 50px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.president-img-col img {
  width: 100%;
  height: auto;
  border: 4px solid #ffffff; /* White border around photo */
  display: block;
}

.president-msg-title {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 25px;
}

.president-msg-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: justify;
}

.about-president-bottom p {
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: justify;
}

.about-president-bottom p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1199px) {
  .about-president-top {
    grid-template-columns: 280px 1fr;
    gap: 30px;
  }
}

@media screen and (max-width: 991px) {
  .about-president-box {
    padding: 40px;
  }
  .about-president-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .president-img-col {
    max-width: 300px;
    margin: 0 auto 30px;
  }
  .president-msg-text p,
  .about-president-bottom p {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .about-president-box {
    padding: 30px 20px;
    border-radius: 20px;
  }
  .president-msg-title {
    font-size: 28px;
  }
}

/* ==========================================================================
   Section: Contact Page (Refined Pixel-Perfect)
   ========================================================================== */
.contact-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.contact-layout {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

/* --- Left Column --- */
.contact-left {
  width: 58%; /* Checked layout balance */
}

.contact-title-left {
  color: #1a237e; /* Deep Blue title */
  margin-bottom: 25px;
  line-height: 1.2;
}

.contact-title-left .tiny-text {
  font-size: 20px;
  font-weight: 500;
  color: #1a237e;
  opacity: 0.9;
}

.contact-title-left {
  font-size: 38px;
  font-weight: 700;
}

.contact-boxes-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Common Box Style */
.contact-box {
  border: 1px solid #dcdcdc; /* Light Grey Border */
  border-radius: 8px; /* Rounded corners */
  background: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

/* Icon Styles */
.icon-wrapper {
  margin-bottom: 15px;
}

.icon-wrapper i {
  font-size: 28px;
  color: #ffffff;
  /* Creating the shape background - Blue */
  background-color: #1a237e;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* Circle by default, Phone usually Rect in fontawesome but circle looks clean */
}

/* Specific: Address Box */
.address-box {
  width: 100%;
  padding: 40px 20px;
}

.address-box .icon-wrapper i {
  border-radius: 50%;
  transform: none;
}

.org-name {
  font-size: 16px;
  font-weight: 800;
  color: #2c3e50;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.address-text {
  font-size: 15px;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.5;
  margin: 0;
}

.dashed-separator {
  color: #7f8c8d;
  font-family: monospace; /* To make dashes line up */
  margin: 15px 0;
  font-size: 14px;
  letter-spacing: -1px;
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
}

.secretary-text {
  font-size: 16px;
  color: #2c3e50;
  margin: 0;
}

.secretary-text strong {
  font-weight: 700;
}

/* Bottom Row (Phone & Email) */
.contact-bottom-row {
  display: flex;
  gap: 20px;
  width: 100%;
}

.phone-box,
.email-box {
  width: 50%;
  padding: 40px 10px;
}

.phone-box .icon-wrapper i {
  border-radius: 8px; /* Mobile shape */
  font-size: 24px;
}

.email-box .icon-wrapper i {
  border-radius: 4px; /* Envelope rect shape */
  font-size: 22px;
}

.contact-link {
  font-size: 16px;
  color: #4a4a4a;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

.contact-link a {
  text-decoration: none;
  color: #4a4a4a;
}

/* --- Right Column (Form) --- */
.contact-right {
  width: 40%;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  padding: 40px 30px;
  background: #ffffff;
  height: fit-content;
}

.contact-title-right {
  font-size: 32px;
  font-weight: 600;
  color: #1a237e;
  margin-bottom: 30px;
  margin-top: 0;
}

.hia-contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row-custom {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-row-custom label {
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.form-row-custom input {
  border: none;
  border-bottom: 1px solid #1a237e; /* Blue bottom border */
  padding: 8px 0;
  font-size: 16px;
  outline: none;
  width: 100%;
  background: transparent;
  transition: border-bottom-width 0.2s;
  color: #333;
}

.form-row-custom input:focus {
  border-bottom-width: 2px;
}

/* Button */
.form-submit-wrapper {
  display: flex;
  justify-content: flex-end; /* Right aligned */
  margin-top: 10px;
}

.contact-submit-btn {
  background-color: #37b34a; /* Bright Green */
  color: #ffffff;
  border: none;
  padding: 12px 40px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px; /* Slightly sharp corners */
  transition: background-color 0.3s;
}

.contact-submit-btn:hover {
  background-color: #2e963e;
}

/* Responsive */
@media screen and (max-width: 991px) {
  .contact-layout {
    flex-direction: column;
  }
  .contact-left,
  .contact-right {
    width: 100%;
  }
  .contact-bottom-row {
    /* Keep side by side on tablet if possible, or stack */
    gap: 15px;
  }
}

@media screen and (max-width: 600px) {
  .contact-bottom-row {
    flex-direction: column;
  }
  .phone-box,
  .email-box {
    width: 100%;
  }
}

/* Archive Page Grid */
.membership-archive-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.membership-archive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media screen and (max-width: 1200px) {
  .membership-archive-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 991px) {
  .membership-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 576px) {
  .membership-archive-grid {
    grid-template-columns: 1fr;
  }
}

/* Company Category Archive - List View Styles */
.company-category-archive {
  padding: 80px 0;
  background-color: #ffffff;
}

.companies-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.company-list-item {
  display: flex;
  background-color: #ffffff; /* White bg for content part explicitly? Or transparent if body is white */
  /* Remove border from the whole item, apply specific borders or shadows to parts? */
  /* Actually, design shows logo in gray box, content in white. */
  align-items: stretch; /* Stretch to equal height */
  overflow: visible; /* Allow pointer to stick out if needed, but flex handles it */
  position: relative;
}

/* Logo Box */
.company-list-image {
  width: 355px;
  height: 355px;
  background-color: #e6e7e8; /* Light gray from screenshot */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative; /* For pointer */
  flex-shrink: 0;
}
.company-list-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.company-list-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* The Triangle Pointer */
.company-list-image::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  width: 0;
  height: 0;
  transform: translate(-50%, -10px);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #e6e7e8;
  z-index: 2;
}

.company-list-content {
  padding: 0 0 0 40px; /* Gap between image and text */
  flex: 1;
}

.company-list-title {
  font-size: 20px; /* Adjusted size */
  font-weight: 700;
  color: #005a6e; /* Dark Teal */
  margin-bottom: 15px;
  margin-top: 5px;
}

.company-list-desc {
  color: #414042;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: justify;
}

.company-list-desc p {
  margin-bottom: 10px;
}

.company-list-actions {
  display: flex;
  gap: 25px; /* Space between buttons */
  align-items: center;
}

.btn-know-more {
  display: inline-block;
  padding: 8px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  background-color: #0b5a6b; /* Dark Teal */
  color: #ffffff;
  border: none;
}

.btn-know-more:hover {
  background-color: #08404d;
  color: #ffffff;
}

.btn-contact-us {
  background-color: transparent;
  color: #1a237e; /* Blue link color */
  text-decoration: underline;
  border: none;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.btn-contact-us:hover {
  text-decoration: none;
  color: #add136;
}

.btn-know-more.disabled {
  background-color: #ccc;
  cursor: not-allowed;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .company-list-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .company-list-image {
    width: 100%;
    height: 180px;
  }
  .company-list-image::after {
    /* Move triangle to bottom? or hide */
    top: auto;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #e6e7e8;
    border-bottom: none;
  }
  .company-list-content {
    padding: 30px 20px;
    width: 100%;
  }
}

/* ==========================================================================
   About Page Details Section
   ========================================================================== */
.about-details-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.details-block {
  margin-bottom: 60px;
}

.details-block:last-child {
  margin-bottom: 0;
}

.details-block .section-title {
  font-size: 32px;
  color: var(--primary-color, #004a99);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  text-align: left;
}

.details-block .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-color, #ed1c24);
}

.details-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #444;
}

.objectives-list,
.activities-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.objectives-list li,
.activities-list li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 15px;
  line-height: 1.6;
}

.objectives-list li::before,
.activities-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-color, #ed1c24);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.benefit-item {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-item h3 {
  font-size: 20px;
  color: var(--primary-color, #004a99);
  margin-bottom: 15px;
}

.benefit-item p {
  margin-bottom: 0;
  font-size: 15px;
}

.summary-text {
  margin-top: 40px;
  font-weight: 600;
  text-align: center;
  font-size: 18px;
  color: var(--primary-color, #004a99);
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Section: About Welcome (Page Specific)
   ========================================================================== */
.about-welcome-section {
  padding: var(--section-padding) 0;
}

.about-welcome-grid {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 60px;
  align-items: start;
}

.about-welcome-image img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.about-welcome-grid h2,
.about-welcome-grid h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: left;
}

.about-welcome-grid p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-welcome-grid ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.about-welcome-grid ul li {
  list-style: disc;
  margin-bottom: 10px;
}

@media screen and (max-width: 1199px) {
  .about-welcome-grid {
    grid-template-columns: 350px 1fr;
    gap: 40px;
  }
}

@media screen and (max-width: 991px) {
  .about-welcome-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   New About Sections: Objectives, History, Activities, Benefits
   ========================================================================== */
.about-objectives-history,
.about-activities-benefits {
  padding: 80px 0;
  background: #fdfdfd;
}

.about-activities-benefits {
  background: #f4f7f9;
}

.about-section-title {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
  font-weight: 800;
}

.about-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
}

/* Objectives Grid */
.objectives-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.objectives-list,
.activities-list {
  list-style: none !important;
  padding: 0 !important;
}

.objectives-list li,
.activities-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.objectives-list li::before,
.activities-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--secondary-color);
  font-size: 18px;
}

/* History Wrapper */
.about-history-wrapper {
  margin-top: 40px;
}

.history-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #444;
}

/* Activities */
.activities-roles {
  margin: 20px 0 30px 40px;
  font-weight: 600;
  color: var(--primary-color);
}

.activities-roles li {
  margin-bottom: 10px;
}

.activities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
}

.hisda-info {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  border-left: 5px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 40px;
}

/* Benefits Modern Grid */
.benefits-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.benefit-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary-color);
}

.benefit-card h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.benefit-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.benefits-summary {
  margin-top: 50px;
  text-align: center;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .objectives-grid,
  .activities-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about-section-title {
    font-size: 26px;
  }
}
/* ==========================================================================
   Section: Milestones Slider
   ========================================================================== */
.about-milestones-section {
  padding: 100px 0;
  background-color: #f9f9f9;
  overflow: hidden;
}

.milestones-slider-wrapper {
  position: relative;
  margin-top: 60px;
}

.milestone-slide {
  padding: 20px;
}

.milestone-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid #eee;
  text-align: center;
  position: relative;
  padding-bottom: 30px;
}

.milestone-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary-color);
}

.milestone-year {
  background: var(--primary-color);
  color: #fff;
  display: inline-block;
  padding: 8px 25px;
  font-size: 22px;
  font-weight: 800;
  border-radius: 0 0 15px 15px;
  margin-bottom: 20px;
}

.milestone-image {
  height: 200px;
  margin: 0 20px 20px;
  border-radius: 10px;
  overflow: hidden;
}

.milestone-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.milestone-card:hover .milestone-image img {
  transform: scale(1.1);
}

.milestone-content {
  padding: 0 25px;
}

.milestone-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.milestone-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

.milestone-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.milestone-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--primary-color);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.milestone-nav button:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

/* ==========================================================================
   Section: Values & Stats
   ========================================================================== */
.about-values-stats {
  padding: 100px 0;
  background: linear-gradient(135deg, #0b5a6b 0%, #084351 100%);
  color: #fff;
}

.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 30px;
}

.stat-icon {
  font-size: 45px;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.values-flex-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 60px;
}

.value-card-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.4s ease;
}

.value-card-box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
  border-color: var(--secondary-color);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 25px;
}

.value-card-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.value-card-box p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.8;
}

.section-subtitle {
  font-size: 18px;
  opacity: 0.8;
  margin-top: -30px;
  margin-bottom: 50px;
}

.centered {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991px) {
  .stats-counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-flex-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .stats-counter-grid {
    grid-template-columns: 1fr;
  }
  .values-flex-cards {
    grid-template-columns: 1fr;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.value-card-box {
  animation: float 4s ease-in-out infinite;
}

.value-card-box:nth-child(2) {
  animation-delay: 1s;
}
.value-card-box:nth-child(3) {
  animation-delay: 2s;
}
.value-card-box:nth-child(4) {
  animation-delay: 3s;
}

/* ==========================================================================
   Sectioned About Content (4 Specific Sections)
   ========================================================================== */

/* Shared Styles */
.about-welcome-section,
.about-history-section-only,
.about-activities-section-only {
  padding: clamp(50px, 6vw, 80px) 0 0 0; /* Reduced to fix perceived double padding */
}

/* Unique class for extreme cases as requested */
.about-double-padding-fix {
  padding-top: 40px !important;
}

/* The last section needs bottom padding to clear the footer area */
.about-benefits-section-only {
  padding: clamp(60px, 8vw, 100px) 0;
}

.about-history-section-only {
  background-color: #fdfdfd;
}
.about-benefits-section-only {
  background-color: #f4f7f9;
}

.about-inner-subtitle {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 30px;
  font-weight: 700;
}

.about-section-header {
  margin-bottom: 50px;
}

.section-lead-text {
  font-size: 18px;
  color: #555;
  margin-top: 10px;
}

/* Section 1 Improvements: Objectives Grid */
.about-objectives-standalone {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #eee;
}

.objectives-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}

.objective-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.objective-item i {
  color: var(--secondary-color);
  font-size: 20px;
  margin-top: 3px;
}

.objective-item span {
  font-size: 16px;
  line-height: 1.5;
  color: #444;
}

/* Section 2: History Column Layout */
.history-grid-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.history-text-column p {
  margin-bottom: 25px;
  line-height: 1.8;
  color: #444;
  text-align: justify;
}

/* Section 3: Activities Roles */
.activities-roles-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.role-card {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 25px;
  border-bottom: 4px solid var(--secondary-color);
  border-top: 2px solid transparent;
  transition: all 0.3s ease;
}

.role-card:hover {
  transform: translateY(-8px);
  border-top: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
}

.role-num {
  font-size: 40px;
  font-weight: 900;
  color: rgba(173, 209, 54, 0.3); /* Secondary with opacity */
  font-family: var(--font-heading);
}

.role-card p {
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  line-height: 1.4;
}

.welfare-programs-wrapper {
  margin-top: 40px;
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.professional-check-list {
  list-style: none;
  padding: 0;
}

.professional-check-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.professional-check-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 18px;
}

.hisda-integrated-box {
  margin-top: 60px;
  background: var(--primary-color);
  color: #fff;
  padding: 50px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hisda-integrated-box::after {
  content: "\f1ad";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-size: 150px;
  opacity: 0.05;
}

.hisda-content h3 {
  color: var(--secondary-color);
  font-size: 28px;
  margin-bottom: 20px;
}

.hisda-content p {
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Section 4: Benefits Premium */
.benefits-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.benefit-premium-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border: 1px solid #eee;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
}

.benefit-premium-card:hover {
  transform: translateY(-10px);
  border-top: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.benefit-icon-box {
  width: 70px;
  height: 70px;
  background: #f8f9fa;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.benefit-premium-card:hover .benefit-icon-box {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.benefit-premium-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-weight: 700;
}

.benefit-premium-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.benefits-conclusion-box {
  margin-top: 60px;
  text-align: center;
  padding: 40px;
  background: #fff;
  border-radius: 15px;
  border: 1px dashed var(--primary-color);
}

.benefits-conclusion-box p {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

/* Responsive Overrides */
@media screen and (max-width: 991px) {
  .history-grid-visual,
  .activities-roles-box,
  .programs-grid,
  .objectives-grid-modern {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ==========================================================================
   Mobile Only Header & Hero Buttons
   ========================================================================== */

/* Utility Classes for Responsive Display */
.desktop-only {
  display: block;
}

.mob-only {
  display: none;
}

@media screen and (max-width: 900px) {
  .desktop-only {
    display: none !important;
  }

  .mob-only {
    display: block !important;
  }

  /* Header Buttons */
  .header_right_top {
    height: auto !important;
    padding: 10px 0 !important;
    justify-content: center !important;
    background-color: var(
      --accent-color
    ); /* Match header look if needed, or accent */
  }

  .mobile-header-buttons {
    display: flex !important; /* Override mob-only block */
    justify-content: center;
    align-items: center;
    gap: 5px; /* Tighter gap to fit all buttons */
    width: 100%;
    flex-wrap: nowrap; /* Ensure they stay on one line if possible, or wrap slightly */
  }

  .mob-btn {
    padding: 7px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .mob-btn.join-hia-btn {
    background-color: var(--primary-color);
    color: #ffffff;
  }
  .mob-btn.join-hia-btn:hover {
    background-color: #08414d;
    transform: translateY(-2px);
  }

  .mob-btn.contact-us-btn-header {
    background-color: var(--secondary-color);
    color: var(--dark-color);
  }
  .mob-btn.contact-us-btn-header:hover {
    background-color: #9ab82e;
    transform: translateY(-2px);
  }

  .mob-btn.member-login-btn {
    background-color: var(--dark-color);
    color: #ffffff;
  }
  .mob-btn.member-login-btn:hover {
    background-color: #000000;
    transform: translateY(-2px);
  }

  /* Second Section Buttons */
  .mobile-sc-buttons-section {
    padding: 0;
    margin-top: -30px; /* Pull up to overlap hero or just sit tight */
    margin-bottom: 30px;
    position: relative;
    z-index: 10;
  }

  .mob-sc-buttons-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }

  .mob-sc-btn {
    flex: 1;
    padding: 12px 5px;
    border-radius: 8px; /* Slightly rounded corners */
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-transform: uppercase;
  }

  .mob-sc-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: #ffffff;
  }

  .about-btn {
    background-color: #0b5a6b; /* Teal/Blue */
  }

  .members-btn {
    background-color: #6d4c41; /* Brownish/Grey */
  }

  .hisda-btn {
    background-color: #2e7d32; /* Green */
  }
}

/* ==========================================================================
   Committee Table Page
   ========================================================================== */
.committee-table-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.committee-table-title {
  color: var(--primary-color);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  margin: 0 0 32px;
  text-align: center;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.premium-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.premium-table thead th {
  background-color: var(--primary-color);
  color: #fff;
  padding: 20px;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.premium-table tbody td {
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
  color: #444;
  font-size: 15px;
  line-height: 1.5;
  transition: all 0.2s ease;
}

.premium-table tbody td:nth-child(2) {
  color: var(--primary-color);
  font-weight: 800;
  background: rgba(173, 209, 54, 0.12);
}

.premium-table tbody tr:nth-child(even) {
  background-color: #fcfcfc;
}

.premium-table tbody tr:hover td {
  background-color: #f4f8f9;
  color: var(--primary-color);
}

.table-group-header {
  background-color: var(--secondary-color) !important;
}

.table-group-header td {
  color: #fff !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 18px !important;
  text-align: center;
  padding: 15px !important;
}

@media screen and (max-width: 768px) {
  .committee-table-section {
    padding: 40px 0;
  }

  .table-responsive {
    box-shadow: none;
    background: transparent;
    border-radius: 0;
  }

  .premium-table {
    min-width: 100% !important;
    display: block;
  }

  .premium-table thead {
    display: none;
  }

  .premium-table tbody {
    display: block;
  }

  .premium-table tr {
    display: block;
    margin-bottom: 25px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }

  .premium-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
    padding: 12px 15px !important;
    border-bottom: 1px solid #f0f0f0 !important;
    font-size: 14px;
    word-break: break-word;
  }

  .premium-table td:last-child {
    border-bottom: 0 !important;
  }

  .premium-table td:before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-align: left;
    padding-right: 20px;
    min-width: 110px;
    flex-shrink: 0;
  }

  .table-group-header {
    background-color: var(--secondary-color) !important;
    margin-bottom: 20px !important;
    border: none !important;
    padding: 0 !important;
  }

  .table-group-header td {
    display: block;
    text-align: center;
    color: #fff !important;
    font-size: 16px !important;
    padding: 15px !important;
    border: none !important;
    justify-content: center;
  }

  .table-group-header td:before {
    display: none;
  }
}

/* ========================================================================== 
   Pages: Services
   ========================================================================== */
.services-page,
.service-detail-page {
  background: #f6fafb;
}

.services-hero,
.service-detail-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #073f4c 100%);
  color: #ffffff;
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}

.services-hero::after,
.service-detail-hero::after {
  content: "";
  position: absolute;
  right: -110px;
  top: -110px;
  width: 310px;
  height: 310px;
  border: 44px solid rgba(173, 209, 54, 0.18);
  border-radius: 50%;
}

.services-hero .container,
.service-detail-hero .container {
  position: relative;
  z-index: 1;
}

.services-eyebrow,
.service-back-link {
  display: inline-block;
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.service-back-link {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  letter-spacing: 0;
  margin-bottom: 22px;
  padding: 8px 16px;
  text-decoration: none;
  text-transform: none;
}

.services-hero h1,
.service-detail-hero h1 {
  color: #ffffff;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.05;
  margin: 0 0 18px;
  max-width: 980px;
}

.services-hero p,
.service-detail-hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
  max-width: 860px;
}

.services-list-section,
.service-detail-content-section {
  padding: 80px 0;
}

.services-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.services-card,
.service-detail-panel {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(11, 90, 107, 0.12);
}

.services-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(11, 90, 107, 0.18);
}

.services-card a {
  color: inherit;
  display: block;
  height: 100%;
  padding: 34px;
  text-decoration: none;
}

.services-card-icon {
  align-items: center;
  background: var(--secondary-color);
  border-radius: 16px;
  color: var(--primary-color);
  display: inline-flex;
  font-size: 30px;
  height: 68px;
  justify-content: center;
  margin-bottom: 26px;
  width: 68px;
}

.services-card h2 {
  color: var(--primary-color);
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 14px;
}

.services-card p {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.services-card-action {
  color: var(--primary-color);
  font-weight: 900;
}

.service-detail-panel {
  margin: 0 auto;
  max-width: 1040px;
  padding: 42px;
}

.service-detail-panel > p {
  color: #263238;
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 24px;
}

.service-process-list {
  display: grid;
  gap: 16px;
  margin: 34px 0;
}

.service-process-item {
  align-items: flex-start;
  background: #f7fbfc;
  border: 1px solid rgba(11, 90, 107, 0.12);
  border-radius: 14px;
  display: grid;
  gap: 16px;
  grid-template-columns: 42px 1fr;
  padding: 18px;
}

.service-process-item span {
  align-items: center;
  background: var(--primary-color);
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.service-process-item p {
  color: #263238;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.service-download-button {
  background: var(--primary-color);
  border-radius: 10px;
  color: #ffffff;
  display: inline-block;
  font-weight: 900;
  margin-top: 12px;
  padding: 15px 24px;
  text-decoration: none;
}

.service-download-button:hover {
  background: #073f4c;
  color: #ffffff;
}

@media screen and (max-width: 991px) {
  .services-card-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 640px) {
  .services-hero,
  .service-detail-hero {
    padding: 80px 0 64px;
  }

  .services-list-section,
  .service-detail-content-section {
    padding: 50px 0;
  }

  .services-card a,
  .service-detail-panel {
    padding: 26px;
  }
}

/* ========================================================================== 
   Services Premium Refresh
   ========================================================================== */
.services-hero,
.service-detail-hero {
  background:
    linear-gradient(135deg, rgba(8, 63, 76, 0.96), rgba(11, 90, 107, 0.92)),
    radial-gradient(circle at 85% 20%, rgba(173, 209, 54, 0.32), transparent 34%);
  padding: 96px 0 86px;
}

.services-hero-grid,
.service-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: end;
}

.services-hero h1,
.service-detail-hero h1 {
  max-width: 1060px;
  letter-spacing: 0;
}

.services-hero p,
.service-detail-hero p {
  max-width: 820px;
}

.services-hero-stat,
.service-detail-icon-panel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  padding: 28px;
}

.services-hero-stat span {
  color: var(--secondary-color);
  display: block;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
}

.services-hero-stat p,
.service-detail-icon-panel span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.5;
  margin: 12px 0 0;
}

.service-detail-icon-panel {
  text-align: center;
}

.service-detail-icon-panel i {
  align-items: center;
  background: var(--secondary-color);
  border-radius: 18px;
  color: var(--primary-color);
  display: inline-flex;
  font-size: 42px;
  height: 92px;
  justify-content: center;
  width: 92px;
}

.services-list-section,
.service-detail-content-section {
  background:
    linear-gradient(180deg, #f6fafb 0%, #ffffff 100%);
  padding: 86px 0;
}

.services-section-heading {
  margin: 0 auto 34px;
  max-width: 820px;
  text-align: center;
}

.services-section-heading span,
.service-content-kicker {
  color: var(--secondary-color);
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.services-section-heading h2 {
  color: var(--primary-color);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  margin: 0;
}

.services-card-grid {
  align-items: stretch;
}

.services-card {
  border: 1px solid rgba(11, 90, 107, 0.08);
  position: relative;
}

.services-card::before {
  background: var(--secondary-color);
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.services-card a {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  min-height: 360px;
  padding: 36px;
}

.services-card-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.services-card-tag {
  background: rgba(173, 209, 54, 0.16);
  border-radius: 999px;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 900;
  padding: 8px 12px;
}

.services-card-icon {
  margin-bottom: 0;
}

.services-card h2 {
  font-size: 25px;
}

.services-card-action {
  align-items: center;
  border-top: 1px solid rgba(11, 90, 107, 0.1);
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.service-detail-summary-card,
.service-detail-panel {
  border: 1px solid rgba(11, 90, 107, 0.08);
}

.service-detail-summary-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(11, 90, 107, 0.12);
  padding: 30px;
  position: sticky;
  top: 120px;
}

.service-detail-summary-card h2 {
  color: var(--primary-color);
  font-size: 28px;
  margin: 0 0 22px;
}

.service-fact-list {
  display: grid;
  gap: 14px;
}

.service-fact-item {
  align-items: center;
  background: #f7fbfc;
  border-radius: 12px;
  display: grid;
  gap: 12px;
  grid-template-columns: 28px 1fr;
  padding: 14px;
}

.service-fact-item i {
  align-items: center;
  background: var(--secondary-color);
  border-radius: 50%;
  color: var(--primary-color);
  display: flex;
  font-size: 13px;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.service-fact-item span {
  color: #263238;
  font-weight: 800;
}

.service-detail-panel {
  max-width: none;
}

.service-detail-panel > p:first-of-type {
  font-size: 20px;
  color: #182b33;
}

.service-process-item {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-process-item:hover {
  box-shadow: 0 12px 28px rgba(11, 90, 107, 0.1);
  transform: translateY(-2px);
}

.service-download-button {
  display: block;
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .services-hero-grid,
  .service-detail-hero-grid,
  .service-detail-layout {
    grid-template-columns: 1fr;
  }

  .services-hero-stat,
  .service-detail-icon-panel,
  .service-detail-summary-card {
    position: static;
  }
}

@media screen and (max-width: 640px) {
  .services-card a {
    min-height: 0;
    padding: 28px;
  }

  .services-card-top {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Desktop More menu final scope */
@media screen and (min-width: 1025px) {
  .desktop-menu-panel .menu > li {
    display: none !important;
  }

  .desktop-menu-panel .menu > li.hia-more-menu-item {
    display: flex !important;
  }

  .desktop-menu-panel .menu > li.hia-more-menu-item.has-mega-menu > .submenu-toggle,
  .desktop-menu-panel .menu > li.hia-more-menu-item.has-mega-menu > .mega-menu {
    display: none !important;
  }

  .desktop-menu-panel .menu > li.hia-more-menu-item > a {
    border-radius: 10px;
    font-weight: 700;
    padding: 13px 46px 13px 14px;
  }

  .desktop-menu-panel .menu > li.hia-more-menu-item:hover > a {
    background: rgba(173, 209, 54, 0.16);
    opacity: 1;
  }

  .desktop-menu-panel .menu > li.hia-more-menu-item.menu-item-has-children {
    flex-wrap: wrap;
  }

  .desktop-menu-panel .menu > li.hia-more-menu-item.menu-item-has-children > .sub-menu {
    background: #f7fbfc;
    border-radius: 10px;
    box-shadow: none;
    left: auto;
    margin: 4px 0 8px;
    min-width: 100%;
    padding: 8px;
    position: static;
    right: auto;
    top: auto;
    width: 100%;
  }

  .desktop-menu-panel .menu > li.hia-more-menu-item.menu-item-has-children:hover > .sub-menu,
  .desktop-menu-panel .menu > li.hia-more-menu-item.menu-item-has-children:focus-within > .sub-menu {
    display: block;
  }

  .desktop-menu-panel .menu > li.hia-more-menu-item.menu-item-has-children > .sub-menu a {
    border-radius: 8px;
    color: var(--dark-color) !important;
    font-size: 14px !important;
    padding: 9px 10px;
  }
}

@media screen and (max-width: 1024px) {
  .desktop-menu-panel .menu > li {
    display: flex !important;
  }
}

/* Header dropdown stability and More menu simplification */
@media screen and (min-width: 1025px) {
  .quick-menu-has-children::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
  }

  .quick-sub-menu {
    top: calc(100% + 6px);
  }

  .desktop-menu-panel .menu > li.hia-more-menu-item.menu-item-has-children > .submenu-toggle,
  .desktop-menu-panel .menu > li.hia-more-menu-item.menu-item-has-children > .sub-menu {
    display: none !important;
  }

  .desktop-menu-panel .menu > li.hia-more-menu-item.menu-item-has-children {
    flex-wrap: nowrap;
  }
}

/* Mobile drawer final override: keep expanded mega panels in normal flow. */
@media screen and (max-width: 1024px) {
  .main-navigation {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .main-navigation .menu {
    max-height: none;
    overflow: visible;
  }

  .main-navigation .menu > li {
    clear: both;
    display: flex !important;
    flex-direction: column;
    height: auto !important;
    overflow: visible;
  }

  .main-navigation .sub-menu,
  .main-navigation .mega-menu {
    box-sizing: border-box;
    float: none !important;
    height: auto !important;
    left: auto !important;
    max-height: none !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important;
    position: static !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    z-index: auto !important;
  }

  .main-navigation .menu li.open > .sub-menu,
  .main-navigation .menu li.open > .mega-menu {
    display: block !important;
    margin: 0 0 10px !important;
  }

  .main-navigation .mega-menu-container,
  .main-navigation .mega-menu-content,
  .main-navigation .mega-menu-grid,
  .main-navigation .mega-menu-item {
    box-sizing: border-box;
    max-width: 100% !important;
    width: 100% !important;
  }

  .main-navigation .mega-menu-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .main-navigation .mega-event-card {
    display: grid !important;
    grid-template-columns: 72px minmax(0, 1fr);
    width: 100%;
  }

  .main-navigation .mega-event-image {
    flex: 0 0 72px;
    height: 72px !important;
    width: 72px !important;
  }

  .main-navigation .mega-event-title {
    word-break: normal;
    overflow-wrap: anywhere;
  }
}

/* Desktop More menu: plain links only, no child panels. */
@media screen and (min-width: 1025px) {
  .desktop-menu-panel .menu > li.hia-more-menu-item {
    flex-wrap: nowrap !important;
  }

  .desktop-menu-panel .menu > li.hia-more-menu-item > .submenu-toggle,
  .desktop-menu-panel .menu > li.hia-more-menu-item > .sub-menu,
  .desktop-menu-panel .menu > li.hia-more-menu-item > .mega-menu {
    display: none !important;
  }

  .desktop-menu-panel .menu > li.hia-more-menu-item > a {
    pointer-events: auto;
  }
}

/* Desktop header compact height adjustment */
@media screen and (min-width: 1025px) {
  .header_right_bottom {
    padding-bottom: 27px !important;
    padding-top: 24px !important;
  }
}

/* Shared inner-page hero compact height adjustment */
.hero-section.hero-banner-mode {
  min-height: 252px !important;
  padding-bottom: 66px !important;
  padding-top: 96px !important;
}

@media screen and (max-width: 768px) {
  .hero-section.hero-banner-mode {
    min-height: 210px !important;
    padding-bottom: 54px !important;
    padding-top: 76px !important;
  }
}

/* Mobile polish fixes - welcome image, home tabs, and tab CTAs */
@media screen and (max-width: 768px) {
  .hero-home-section {
    padding: 0;
  }

  .welcome-image-wrapper {
    padding: 0;
  }

  .tabs-section {
    margin: 20px 12px;
    border-radius: 24px;
    overflow: hidden;
  }

  .tabs-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .tab-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    overflow: visible;
    padding: 0;
    margin-bottom: 28px;
  }

  .tab-button {
    min-width: 0;
    width: 100%;
    white-space: normal;
    line-height: 1.2;
    font-size: 14px;
    padding: 13px 8px;
    text-align: center;
  }

  .tab-content {
    max-width: 100%;
    overflow: hidden;
  }

  .tab-panel.active {
    max-height: 430px;
    overflow-y: auto;
    padding: 0 14px 8px;
  }

  .tab-panel p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .tab-btn-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    margin: 18px 0 12px !important;
    padding: 0;
  }

  .tab-btn-wrapper .know_more_btn,
  .tab-btn-wrapper .read_btn {
    width: 100%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
  }

  .tab-btn-wrapper .read_btn {
    color: var(--primary-color) !important;
    background: #eef7f9;
    border: 1px solid rgba(11, 90, 107, 0.16);
  }
}

/* Homepage launch reveal */
.hia-launch-gate {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(173, 209, 54, 0.22), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(0, 139, 180, 0.24), transparent 30%),
    linear-gradient(135deg, #062f3a 0%, #071922 52%, #0b5a6b 100%);
  color: #ffffff;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hia-launch-gate.is-complete {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hia-launch-gate::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
}

.hia-launch-fireworks {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hia-launch-card {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  padding: clamp(34px, 6vw, 58px);
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
  animation: hiaLaunchGlow 4s ease-in-out infinite;
}

.hia-launch-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(173, 209, 54, 0.18);
  color: #d8ff53;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hia-launch-card h1 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.02;
}

.hia-launch-card p {
  max-width: 430px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 2.4vw, 18px);
  line-height: 1.6;
}

.hia-launch-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #add136, #f4ff73);
  color: #063d4a;
  box-shadow: 0 18px 42px rgba(173, 209, 54, 0.34);
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hia-launch-button:hover,
.hia-launch-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(173, 209, 54, 0.42);
  outline: none;
}

.hia-launch-button.is-launching {
  pointer-events: none;
  transform: scale(0.98);
}

.hia-launch-credit {
  margin: 18px 0 0 !important;
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
}

@keyframes hiaLaunchGlow {
  0%,
  100% {
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.36);
  }
  50% {
    box-shadow: 0 36px 110px rgba(173, 209, 54, 0.22);
  }
}

@media screen and (max-width: 640px) {
  .hia-launch-gate {
    padding: 18px;
  }

  .hia-launch-card {
    border-radius: 22px;
  }

  .hia-launch-button {
    width: 100%;
  }
}
