/* Base Styles */
:root {
  --primary: #d46ead;
  /* Main Pink */
  --primary-light: #fbe6ef;
  --primary-dark: #b2336e;
  --secondary: #27282b;
  /* Dark Footer/Text */
  --main-heading: #22222a;
  --text-main: #333333;
  --text-light: #6d6d78;
  --bg-light: #ffffff;
  --white: #ffffff;
  --dark-green: #2e6050;
  --font-family: "Inter", sans-serif;
  --border-radius: 10px;
  --container-width: 1320px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

p {
  color: var(--text-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Global Section Header */
.section-header-center {
  text-align: center;
  margin-bottom: 55px;
}

.section-tag {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  display: block;
}

.section-header-center h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--main-heading);
  margin-bottom: 20px;
}

.section-header-center p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  font-size: 14px;
}

.btn-member {
  background-color: var(--primary);
  color: var(--white);
  border: none;
}

.btn-member:hover {
  background-color: var(--primary-dark);
}

.login-link {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.login-link i {
  font-size: 16px;
}

/* Header */
.site-header {
  background-color: var(--white);
  padding: 15px 20px;
  border-bottom: 1px solid #f2f2f2;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo img {
  height: 72px;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-list li a {
  font-size: 14px;
  font-weight: 500;
  color: #444;
}

.nav-list li a:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* Footer Implementation */
.site-footer {
  background-color: #1a1b1e;
  color: #e0e0e0;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-widget h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 25px;
  font-weight: 600;
}

.footer-logo img {
  margin-bottom: 25px;
  max-width: 130px;
}

.footer-description {
  font-size: 14px;
  color: #b0b0b0;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 320px;
}

/* Newsletter UI */
.newsletter-subscription h3 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.newsletter-inline-form {
  display: flex;
  max-width: 300px;
}

.newsletter-inline-form input {
  background: #2a2b2e;
  border: none;
  color: white;
  padding: 12px 18px;
  border-radius: 10px 0 0 10px;
  flex: 1;
  outline: none;
  font-size: 14px;
}

.newsletter-inline-form button {
  background: var(--primary);
  color: white;
  border: none;
  width: 45px;
  padding: 0;
  border-radius: 0 10px 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.newsletter-inline-form button:hover {
  background: var(--primary-dark);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: #f8fafc99;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

/* Contact Bar */
.footer-contact-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid #2a2b2e;
  border-bottom: 1px solid #2a2b2e;
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  gap: 35px;
}

.contact-item {
  font-size: 14px;
  color: #b0b0b0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item:hover {
  color: var(--primary);
}

.contact-item i {
  color: #6d6d78;
  font-size: 16px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  border-radius: 12px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: var(--primary);
  color: white;
}

/* Bottom Row */
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #717171;
}

.copyright-text {
  font-weight: 300;
}

.legal-links {
  display: flex;
  gap: 25px;
}

.legal-links a:hover {
  color: #fff;
}

/* Hero Section Redesign */
.hero-section {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
 
  overflow: hidden;
  color: #fff;
}

.hero-swiper {
  width: 100%;
  padding-bottom: 0 !important;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.hero-swiper .swiper-slide {
  position: relative;
  padding: 100px 0 80px;
  height: auto !important;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  inset: -8%;
  z-index: 0;
  background-image:
    linear-gradient(135deg, rgba(212, 110, 173, 0.9), rgba(46, 96, 80, 0.85)),
    url("../../../../uploads/2026/04/4c09ac151363e3bde46caf0b6d3d9da1d38131a6.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.14) translate3d(0, 0, 0);
  will-change: transform;
}

.hero-slide-bg--0 {
  background-position: 42% center;
}

.hero-slide-bg--1 {
  background-position: 58% center;
}

.hero-slide-bg--2 {
  background-position: 50% 40%;
}

.hero-swiper .swiper-slide.is-active-anim .hero-slide-bg {
  animation: heroKenBurns 7s ease-out forwards;
}

.hero-swiper .swiper-slide.is-active-anim .hero-slide-bg--1 {
  animation-name: heroKenBurnsAlt;
}

.hero-swiper .swiper-slide.is-active-anim .hero-slide-bg--2 {
  animation-name: heroKenBurnsAlt2;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1.16) translate3d(-2.5%, 0, 0);
  }

  to {
    transform: scale(1.02) translate3d(1.5%, 0, 0);
  }
}

@keyframes heroKenBurnsAlt {
  from {
    transform: scale(1.16) translate3d(2.5%, -1%, 0);
  }

  to {
    transform: scale(1.02) translate3d(-1.5%, 0.5%, 0);
  }
}

@keyframes heroKenBurnsAlt2 {
  from {
    transform: scale(1.18) translate3d(0, 2%, 0);
  }

  to {
    transform: scale(1.03) translate3d(0, -1%, 0);
  }
}

.hero-swiper .hero-anim {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  filter: blur(6px);
}

.hero-swiper .swiper-slide.is-active-anim .hero-anim {
  animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--hero-delay, 0) * 0.09s);
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 36px, 0);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

.hero-section.is-loaded .hero-map-overlay {
  animation: heroMapReveal 1.2s ease 0.2s forwards;
}

@keyframes heroMapReveal {
  from {
    opacity: 0;
    transform: translate3d(4%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-map-overlay {
  opacity: 0;
  transition: transform 0.9s ease;
}

.hero-section.is-slide-moving .hero-map-overlay {
  transform: translate3d(-12px, 0, 0) scale(1.02);
}

.hero-swiper-pagination {
  bottom: 59px !important;
  z-index: 15;
}

.hero-section .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  width: 10px;
  height: 10px;
  transition: 0.3s;
}

.hero-section .swiper-pagination-bullet-active {
  background: #fff !important;
  width: 28px;
  border-radius: 5px;
}

.hero-swiper .hero-swiper-prev,
.hero-swiper .hero-swiper-next,
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  --swiper-navigation-color: #000;
  --swiper-theme-color: #000;
  --swiper-navigation-size: 32px;
  color: #000;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  margin-top: 0;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 15;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.hero-swiper .hero-swiper-prev::after,
.hero-swiper .hero-swiper-next::after,
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
  display: none;
}

.hero-swiper .hero-swiper-prev i,
.hero-swiper .hero-swiper-next i,
.hero-swiper .swiper-button-prev i,
.hero-swiper .swiper-button-next i {
  color: #000;
  font-size: 16px;
  line-height: 1;
}

.hero-swiper .hero-swiper-prev:hover,
.hero-swiper .hero-swiper-next:hover,
.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
  background: #f5f5f5;
}

.hero-swiper .hero-swiper-prev,
.hero-swiper .swiper-button-prev {
  left: 24px;
  right: auto;
}

.hero-swiper .hero-swiper-next,
.hero-swiper .swiper-button-next {
  right: 24px;
  left: auto;
}

.hero-map-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  pointer-events: none;
  z-index: 2;
}

.hero-slide-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 10;
}

.hero-inner-content {
  position: relative;
  z-index: 10;
}

.hero-side-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
  position: relative;
  z-index: 10;
}

.btn-hero-side {
  background: rgba(212, 110, 173, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 8px 24px rgba(212, 110, 173, 0.35);
  white-space: nowrap;
}

.btn-hero-side:hover {
  background: #d46ead;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 110, 173, 0.45);
}

.btn-hero-side__label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-hero-side__label img,
.btn-hero-side__icon {
  width: 18px;
  flex-shrink: 0;
}

.btn-hero-side__label img {
  height: 18px;
  filter: brightness(0) invert(1);
}

.btn-hero-side__icon {
  font-size: 16px;
  line-height: 1;
  text-align: center;
}

.btn-hero-side i {
  font-size: 13px;
  opacity: 0.9;
}

@media (prefers-reduced-motion: reduce) {
  .hero-swiper .hero-anim,
  .hero-swiper .swiper-slide.is-active-anim .hero-anim,
  .hero-slide-bg,
  .hero-map-overlay {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

.hero-badges {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.badge-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-item i {
  color: rgba(255, 255, 255, 0.8);
}

.hero-main-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 35px;
  letter-spacing: -1.8px;
  max-width: 830px;
}

.hero-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 400;
}

.hero-checklist li svg {
  flex-shrink: 0;
}

.hero-tag-bar {
  font-size: 16px;
  color: #ffffffb2;
  margin-bottom: 45px;
  font-weight: 400;
}

.hero-btn-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-btn-group--membership {
  margin-top: 4px;
}

.btn-hero-member {
  padding: 18px 42px;
  font-size: 17px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 14px 36px rgba(212, 110, 173, 0.45);
}

.btn-hero-member:hover {
  box-shadow: 0 18px 42px rgba(212, 110, 173, 0.55);
}

.btn-hero-member img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.btn-hero-primary {
  background: #d46ead;
  color: white;
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  text-decoration: none;
}

.btn-hero-primary:hover {
  background: #c25096;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 110, 173, 0.3);
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: white;
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  text-decoration: none;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Stats Banner */
.stats-banner {
  background-color: #ffffff;
}

.stats-row {
  display: flex;
  align-items: stretch;
  height: 100px;
}

.stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  color: #22222a;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  border-right: 1px solid #ebe6e0;
}

.stat-icon {
  width: 64px;
  height: 64px;
}

.stat-cta {
  flex: 1;
  background-color: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  transition: background 0.25s;
  text-decoration: none;
}

.stat-cta:hover {
  background-color: var(--primary-dark);
  color: #fff;
}

.stat-cta i {
  font-size: 13px;
  transition: transform 0.25s;
}

.stat-cta:hover i {
  transform: translateX(4px);
}

/* Society Intro Section */
.about-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fcf3f8, #ffffff);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-tag {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 20px;
}

.about-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--main-heading);
  margin-bottom: 20px;
  letter-spacing: -0.9px;
}

.about-desc {
  font-size: 18px;
  color: #6d6d78;
  line-height: 1.5;
  margin-bottom: 35px;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #fce7f3;
  box-shadow: 0 15px 40px rgba(212, 110, 173, 0.08);
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: 0.3s;
}

.info-card-icon {
  width: 45px;
  height: 45px;
  background: #fdf2f8;
  color: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.info-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #22222a;
}

.info-card p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.5;
}

/* Scientific Categories */
.scientific-categories {
  padding: 100px 0;
  background-color: #fdfafc;
}

.category-header {
  text-align: center;
  margin-bottom: 60px;
}

.category-tag {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.category-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--main-heading);
  margin-bottom: 20px;
}

.category-subtitle {
  color: #888;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.cat-item {
  background: #fff;
  padding: 35px 25px;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  transition: 0.3s;
}

.cat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border-color: #fce7f3;
}

.cat-icon {
  width: 50px;
  height: 50px;
  background: #fdf2f8;
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 25px;
}

.cat-item h3 {
  font-size: 19px;
  font-weight: 700;
  color: #22222a;
  margin-bottom: 12px;
}

.cat-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.cat-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

/* Core Values Section */
.core-values-section {
  padding: 100px 0;
  background-color: #fff;
}

.values-header {
  text-align: center;
  margin-bottom: 60px;
}

.values-tag {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
  display: block;
  margin-bottom: unset;
}

.values-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--main-heading);
  margin-bottom: 20px;
  letter-spacing: -0.7px;
}

.values-subtitle {
  color: #6d6d78;
  font-size: 16px;
  max-width: 610px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.value-item {
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  text-align: left;
  border: 1px solid #ebe6e0;
  box-shadow: 0px 4px 20px -4px #d46ead26;
  transition: 0.3s;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border-color: #fce7f3;
}

.value-icon {
  margin: 0 0 20px 0;
}

.value-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #22222a;
  margin-bottom: 15px;
  letter-spacing: -0.45px;
}

.value-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Training CTA Section */
.training-cta-section {
  padding: 100px 0;
  background-color: #fff;
}

.membership-header {
  text-align: center;
  margin-bottom: 60px;
}

.membership-tag {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
  display: block;
  margin-bottom: unset;
  text-transform: uppercase;
}

.membership-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--main-heading);
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.membership-header p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto;
}

.training-cta-wrapper {
  background: #d46ead0d;
  border-radius: 32px;
  display: flex;
  overflow: hidden;
  padding: 16px;
  align-items: center;
}

.training-content {
  flex: 1;
  padding: 8px 20px 8px 40px;
  align-self: center;
}

.training-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--main-heading);
  margin-bottom: 20px;
}

.training-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.training-list li {
  font-size: 16px;
  color: #22222a;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
}

.training-list li i {
  color: var(--dark-green);
  font-size: 18px;
}

.btn-training {
  background: var(--dark-green);
  color: #fff;
  padding: 14px 32px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  transition: 0.3s;
  box-shadow: 0 8px 32px #2e605036;
}

.btn-training:hover {
  gap: 12px;
}

.btn-training i {
  font-size: 14px;
}

.training-image {
  flex: 1;
  position: relative;
  border-radius: 24px;
  overflow: visible;
}

.training-image img {
  width: 100%;
  height: 426px;
  object-fit: cover;
  border-radius: 16px;
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: linear-gradient(180deg, #d46ead, #ff34b1);
  padding: 24px;
  border-radius: 24px;
  color: #fff;
  text-align: center;
  box-shadow: 0 15px 35px rgba(212, 110, 173, 0.3);
}

.experience-badge span {
  font-size: 60px;
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.experience-badge p {
  font-size: 16px;
  opacity: 1;
  font-weight: 400;
  margin: 0;
  color: var(--white);
}

/* Search Section */
.search-section {
  padding: 60px 0;
  margin-top: -50px;
  position: relative;
  z-index: 20;
}

.search-box-container {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid #f0f0f0;
}

.search-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #222;
}

.search-wrapper {
  display: flex;
  max-width: 800px;
  margin: 0 auto 35px;
  background: #f8f9fa;
  padding: 8px;
  border-radius: 50px;
  border: 1px solid #ebebeb;
}

.search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0 25px;
  font-size: 15px;
  outline: none;
  color: #444;
}

.btn-search {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 35px;
  border-radius: 40px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-search:hover {
  background: var(--primary-dark);
}

.filter-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid #eee;
  background: white;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: 0.3s;
}

.pill:hover,
.pill.active {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

/* Directory Section Styles */
.directory-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fcf3f8, #ffffff);
}

.directory-header {
  text-align: center;
  margin-bottom: 60px;
}

.directory-tag {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
  display: block;
  margin-bottom: 15px;
}

.directory-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--main-heading);
  margin-bottom: 20px;
  letter-spacing: -0.9px;
}

.directory-subtitle {
  color: var(--text-light);
  font-size: 16px;
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Search UI */
.directory-search-wrapper {
  max-width: 900px;
  margin: 0 auto 80px;
}

.search-main-box {
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-input-group {
  flex: 2;
  display: flex;
  align-items: center;
  padding: 5px 15px;
  background: #f1f5f980;
  border-radius: 10px;
}

.search-input-group i {
  color: #65758b;
}

.search-input-group input {
  border: none;
  outline: none;
  padding: 12px 15px;
  width: 100%;
  font-size: 15px;
  background: transparent;
}

.search-select-group {
  flex: 1;
  background: #f1f5f980;
  padding: 10px;
  border-radius: 10px;
}

.search-select-group select {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 14px;
  color: #1d2530;
  cursor: pointer;
}

.bg-pink {
  background: var(--primary);
  color: #fff;
}

.text-green {
  color: var(--dark-green);
  background: #2e60501a;
}

.j-side-card.bg-pink-solid h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.btn-search-go {
  background: #2e6050;
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-search-go:hover {
  background: #2e5044;
}

/* Directory Grid */
.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.directory-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f0f0;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.directory-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.card-image {
  position: relative;
  height: 262px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #22c55e;
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.6px;
}

.card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5px;
}

.card-header-row h3 {
  font-size: 18px;
  font-weight: 700;
  color: #22222a;
  flex: 1;
}

.card-rating {
  font-size: 14px;
  font-weight: 700;
  color: #ffb400;
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-rating img {
  width: 16px;
}

.card-doc-name {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}

.card-meta-list {
  margin-bottom: 25px;
}

.meta-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: #666;
}

.meta-item i {
  margin-top: 3px;
  color: #aaa;
}

.meta-item.valid {
  background: transparent;
  padding: 0;
  display: flex;
  font-weight: 500;
  color: #475569;
}

.meta-item.valid i {
  color: #22c55e;
  /* Modern Green */
}

.meta-item.valid .date-val {
  color: #22c55e;
  font-weight: 700;
}

.meta-item.expired {
  background: transparent;
  padding: 0;
  display: flex;
  font-weight: 500;
  color: #475569;
}

.meta-item.expired i {
  color: #f59e0b;
  /* Amber/Orange like the image */
}

.meta-item.expired .date-val {
  color: #f59e0b;
  font-weight: 700;
}

.btn-card-details {
  display: block;
  width: 100%;
  text-align: center;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: 0.3s;
  margin-top: auto;
}

.btn-card-details:hover {
  background: var(--primary);
  color: #fff;
}

/* Register Center Card */
.register-card {
  background: #fef3fa;
  display: flex;
  flex-direction: column;
}

.register-inner {
  padding: 40px 25px 30px;
  text-align: center;
  flex: 1;
  max-height: 262px;
}

.register-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.register-tagline {
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
  margin-bottom: 10px;
}

.register-desc {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
  font-weight: 400;
}

.register-bottom {
  background: #fff;
  padding: 25px;
  text-align: left;
}

.register-bottom h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.register-bottom p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 64px;
  width: 80%;
}

.btn-register-now {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--primary);
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

/* Directory Footer Action */
.directory-footer-action {
  text-align: -webkit-center;
  margin-top: 60px;
}

.btn-view-all-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: unset;
  color: var(--primary);
  font-weight: 700;
  transition: 0.3s;
}

.btn-view-all-outline:hover {
  gap: 12px;
}

/* Standing Committees Section */
.committees-section {
  padding: 100px 0;
  background-color: #fff;
}

.committees-header {
  text-align: center;
  margin-bottom: 60px;
}

.committees-tag {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: unset;
  display: block;
  letter-spacing: 0.7px;
}

.committees-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--main-heading);
  margin-bottom: 20px;
}

.committees-subtitle {
  color: #6d6d78;
  font-size: 16px;
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.6;
}

.committees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.committee-card {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid #efcee3;
  box-shadow: 0 1px 2px #0000000d;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.committee-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.committee-icon {
  margin-bottom: 25px;
}

.committee-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #22222a;
  margin-bottom: 15px;
}

.committee-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}
.explore-btn-Committees {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
/* Special Interest Groups (SIGs) Section */
.sigs-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.sigs-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.sigs-tag {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  display: block;
  margin-bottom: unset;
}

.sigs-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--main-heading);
  margin-bottom: 15px;
}

.sigs-subtitle {
  font-size: 16px;
  color: #6d6d78;
  line-height: 1.6;
}

.sigs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.sig-card {
  background: #ffffff01;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 8px 10px #ffe5f580;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #f1f5f9;
}

.sig-card:hover {
  box-shadow: 0 15px 50px #ffe5f596;
}

.sig-icon {
  margin-bottom: 25px;
}

.sig-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #22222a;
  margin-bottom: 15px;
}

.sig-card p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 25px;
  flex-grow: 1;
  width: 90%;
}

.sig-link {
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.sig-link:hover {
  gap: 12px;
}

.sigs-footer {
  text-align: center;
  margin-top: 20px;
}

.sigs-footer p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 500;
}

.btn.btn-primary {
  background-color: var(--primary);
  color: var(--bg-light);
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s;
}

.btn.btn-primary:hover {
  transform: translateY(-5px);
}

.committee-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  border: 2px solid #d46ead;
  width: fit-content;
  border-radius: 16px;
  padding: 14px 34px;
}

.committee-link:hover {
  gap: 14px;
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.journal-section-new {
  /* Base styles set inline */
}

.journal-section-new {
  padding: 100px 0;
  background-color: #fafafb;
}

.journals-grid-complex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.j-main-card {
  grid-column: span 2;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 480px;
}

.j-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.j-content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  padding: 40px;
  color: #fff;
}

.j-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.j-content-overlay h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.3;
}

.j-content-overlay p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  max-width: 80%;
}

.j-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.j-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.j-side-card {
  background: #fff;
  border: 1px solid #ebe6e0;
  box-shadow: 0px 4px 20px -4px #d46ead1a;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.pdf-link {
  font-size: 13px;
  color: #888;
  font-weight: 500;
}

.read-abs {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.read-abs:hover {
  gap: 10px;
}

.bg-pink-solid {
  background: var(--primary);
  color: #fff;
  text-align: center;
  justify-content: center;
}

.bg-pink-solid h4 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}

.bg-pink-solid p {
  color: rgba(255, 255, 255, 0.95);
}

.j-small-tag {
  font-size: 13px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 20px;
  display: inline-block;
}

.text-pink {
  color: #d46ead;
  background: #d46ead1a;
}

span.j-small-tag.text-pink {
  background: unset;
}

.j-side-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #22222a;
}

.j-side-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  flex-grow: 1;
}

.card-footer-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.card-footer-split.border-top-none {
  justify-content: flex-start;
}

.j-side-card.bg-pink-solid p {
  color: #dbeafe;
  font-size: 14px;
}

.subs-icon {
  margin-bottom: 25px;
  align-self: center;
}

.j-form {
  display: flex;
  gap: 0;
  margin-top: 30px;
}

.j-form input {
  flex: 1;
  padding: 10px 15px;
  border-radius: 8px 0 0 8px;
  border: none;
  outline: none;
  color: #222;
  font-size: 14px;
}

.btn-join {
  background: var(--dark-green);
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 0 8px 8px 0;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
}

.btn-join:hover {
  background: #244d3e;
}

.section-footer-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
}

.btn-submit {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 13px 32px;
  border-radius: 16px;
  font-weight: 600;
  transition: 0.3s;
  font-size: 16px;
}

.btn-submit:hover {
  background: var(--primary);
  color: #fff;
  transform: translateX(5px);
}

.academy-section-new {
  padding: 100px 0;
  background-color: #fff;
}

.academy-grid-complex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.a-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid #ebe6e0;
  overflow: hidden;
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  gap: 30px;
}

.a-image {
  height: auto;
  border-radius: 12px;
  position: relative;
}

.a-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.a-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.a-tag-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.a-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 55px;
  font-size: 12px;
  font-weight: 500;
}

.a-category-icon {
  width: 32px;
  height: 32px;
  background: #f8f9fa;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 14px;
}

.a-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--main-heading);
  line-height: 1.4;
}

.a-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  flex-grow: 1;
}

.a-meta li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.a-meta li i {
  width: 16px;
  text-align: center;
  color: #b0b0b0;
}

.btn-outline-wide {
  text-align: center;
  border: 1px solid #d46ead4d;
  color: var(--primary);
  padding: 11px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.btn-outline-wide:hover {
  border-color: var(--primary);
  background: #fdf4f8;
  gap: 12px;
}

span.j-small-tag.text-green {
  background: unset;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.a-promo-card {
  background: var(--primary);
  border-radius: 24px;
  padding: 40px 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.a-promo-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.a-promo-card p {
  font-size: 16px;
  color: #ffffffcc;
  margin-bottom: 30px;
  line-height: 1.6;
}

.promo-roles {
  margin-bottom: 30px;
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.pr-box {
  background: #ffffff1a;
  border-radius: 16px;
  padding: 17px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid #ffffff;
  width: 50%;
}

.pr-info span {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
}

.pr-info small {
  display: block;
  font-size: 12px;
  opacity: 0.9;
}

.btn-member-cta {
  background: #fff;
  color: var(--primary);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  transition: 0.3s;
  margin-top: auto;
}

.btn-member-cta:hover {
  background: #f8f9fa;
  gap: 12px;
}

.pr-info small {
  display: block;
  color: #ffffff99;
  font-size: 11px;
}

.btn-white-wide {
  display: block;
  text-align: center;
  background: #fff;
  color: #d46ead;
  padding: 15px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-white-wide:hover {
  background: #fdfdfd;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* 9. News & Events Section */
.news-events-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fcf3f8, #ffffff);
}

.news-events-split {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 32px;
}

.ne-header {
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.ne-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--main-heading);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.5px;
}

.ne-header h3 i {
  color: var(--primary);
  font-size: 20px;
}

/* Left: News Grid */
.ne-news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.ne-ncard {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.news-grid-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-light);
  margin: 0;
}

.ne-ncard:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.ne-ncard .img-box {
  height: 185px;
  overflow: hidden;
}

.ne-ncard .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ne-ncard .txt-box {
  padding: 25px;
  margin-top: 16px;
}

.ne-ncard .date {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.ne-ncard .date i {
  color: var(--primary);
  opacity: 0.6;
}

.ne-ncard h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--main-heading);
  margin-bottom: 15px;
  line-height: 1.4;
  letter-spacing: -0.4px;
}

.ne-ncard h4 a {
  color: inherit;
  text-decoration: none;
}

.ne-ncard h4 a:hover {
  color: var(--primary);
}

.ne-ncard p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Right: Events Horizontal Cards */
.ne-events-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ne-ecard {
  display: flex;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.ne-ecard:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.e-img {
  width: 158px;
  flex-shrink: 0;
}

.e-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.e-info {
  padding: 14px 10px;
  flex-grow: 1;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
}

.e-tag {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 8px;
}

.e-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--main-heading);
  margin-bottom: 8px;
  line-height: 1.4;
  letter-spacing: -0.35px;
}

.e-meta {
  display: flex;
  flex-direction: row;
  gap: 8px;
  font-size: 12px;
  color: var(--text-light);
}

.e-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.e-meta span i {
  color: var(--primary);
  opacity: 0.6;
  width: 14px;
  text-align: center;
}

.section-footer-btns {
  text-align: center;
  margin-top: 60px;
}

.btn-outline-wide-pink {
  display: inline-block;
  padding: 14px 35px;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline-wide-pink:hover {
  background: var(--primary);
  color: #fff;
}

/* 10. Patient Resources Section (Redesigned from Benefits) */
.patient-resources-section {
  padding: 100px 0;
  background-color: #d46ead1a;
}

.pr-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
}

.pr-content-left {
  flex: 1;
}

.section-tag-small {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.pr-content-left h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--main-heading);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.9px;
}

.pr-content-left .section-desc {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.pr-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.pr-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.pr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.pr-card-icon {
  margin-bottom: 12px;
}

.pr-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--main-heading);
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

.pr-card p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.pr-image-right {
  flex: 1;
  position: relative;
}

.pr-img-container {
  position: relative;
  border-radius: 24px;
}

.pr-img-container img {
  width: 100%;
  height: 495px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.pr-floating-badge {
  position: absolute;
  bottom: -25px;
  left: -40px;
  background: #fff;
  padding: 20px 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 15px;
}

.badge-icon img {
  width: 40px;
  height: 40px;
}

.pr-floating-badge .badge-text span {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--main-heading);
}

.pr-floating-badge .badge-text small {
  display: block;
  font-size: 13px;
  color: var(--text-light);
}

/* Scientific Council & Election Board */
.council-section,
.our-platinum-section,
.election-board-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fcf3f8, #ffffff);
}

.corporate-logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.corporate-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  min-height: 120px;
  border: 1px solid #f0f0f0;
  transition: 0.3s;
  flex-direction: column;
  text-align: center;
}

.corporate-logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.corporate-member-title {
  margin: 16px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--main-heading);
  line-height: 1.4;
}

.corporate-members-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-light);
  font-size: 16px;
  margin: 0;
}

.corporate-members-meta {
  margin-bottom: 30px;
}

.our-corpatre-members-page .corporate-logos-grid {
  margin-bottom: 0;
}

.corporate-logo:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.corporate-logo img {
  max-width: 100%;
  max-height: 880px;
  object-fit: contain;

  opacity: 0.7;
  transition: 0.3s;
}

.corporate-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.experts-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 50px;
}

.experts-grid.five-cols {
  grid-template-columns: repeat(5, 1fr);
}

.experts-grid.four-cols {
  grid-template-columns: repeat(4, 1fr);
}

.expert-card {
  background: transparent;
  padding: 0;
  border: none;
  transition: 0.4s;
  text-align: center;
}

.team-member-card {
  cursor: pointer;
}

.expert-card:hover,
.team-member-card:focus-visible {
  transform: translateY(-8px);
}

.team-member-card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.team-member-view-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s ease;
}

.team-member-card:hover .team-member-view-more,
.team-member-card:focus-visible .team-member-view-more {
  gap: 12px;
}

.expert-img {
  position: relative;
  margin-bottom: 30px;
  border-radius: 20px 20px 0 0;
}

.expert-img img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px 20px 0 0;
  display: block;
}

.expert-role-badge {
  background: #d46ead1a;
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
  width: fit-content;
}

.expert-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.expert-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: #22222a;
  margin-bottom: 5px;
  line-height: 1.3;
}

h3.expert-role-badge {
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
}

.expert-city {
  font-size: 14px;
  margin: 0;
}

body.team-modal-open {
  overflow: hidden;
}

.team-member-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.team-member-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.team-member-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(34, 34, 42, 0.72);
}

.team-member-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--white);
  border-radius: 20px;
  padding: 32px 32px 40px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(16px);
  transition: transform 0.25s ease;
}

.team-member-modal.is-open .team-member-modal-dialog {
  transform: translateY(0);
}

.team-member-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--dark-green);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.team-member-modal-close:hover {
  background: #245041;
}

.team-member-modal-img {
  margin-bottom: 24px;
}

.team-member-modal-img img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.team-member-modal-body {
  text-align: center;
}

.team-member-modal-body h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--main-heading);
  margin-bottom: 8px;
  line-height: 1.2;
}

.team-member-modal-role {
  display: inline-block;
  margin: 0 auto 8px;
  padding: 4px 12px;
  border-radius: 50px;
  background: #d46ead1a;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
}

.team-member-modal-city {
  margin: 0 0 20px;
  font-size: 15px;
  color: var(--text-light);
}

.team-member-modal-bio {
  text-align: left;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-main);
}

.team-member-modal-bio p {
  margin-bottom: 16px;
}

.team-member-modal-bio p:last-child {
  margin-bottom: 0;
}

body.site-popup-open {
  overflow: hidden;
}

.site-popup-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.site-popup-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.site-popup-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(34, 34, 42, 0.78);
}

.site-popup-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--white);
  border-radius: 20px;
  padding: 32px 32px 36px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}

.site-popup-modal.is-open .site-popup-modal-dialog {
  transform: translateY(0) scale(1);
}

.site-popup-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--dark-green);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 2;
}

.site-popup-modal-close:hover {
  background: #245041;
}

.site-popup-modal-img {
  margin: -8px 0 20px;
}

.site-popup-modal-img img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.site-popup-modal-body {
  text-align: left;
}

.site-popup-type-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-popup-type-update {
  background: #e8f4fd;
  color: #1a6fa8;
}

.site-popup-type-announcement {
  background: #d46ead1a;
  color: var(--primary-dark);
}

.site-popup-type-offer {
  background: #fff4e5;
  color: #b45309;
}

.site-popup-type-event {
  background: #e8f5ef;
  color: var(--dark-green);
}

.site-popup-modal-body h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--main-heading);
  margin-bottom: 12px;
  line-height: 1.25;
  padding-right: 36px;
}

.site-popup-content {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 24px;
}

.site-popup-content p {
  margin-bottom: 14px;
  color: var(--text-main);
}

.site-popup-content p:last-child {
  margin-bottom: 0;
}

.site-popup-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.site-popup-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 24px;
  border-radius: 50px;
  background: var(--primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.site-popup-cta:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.site-popup-dismiss-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-light);
  cursor: pointer;
  user-select: none;
}

.site-popup-dismiss-label input {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
}

.footer-description {
  font-size: 14px;
  color: #f8fafc99;
}

@media (max-width: 1200px) {
  :root {
    --container-width: 1140px;
  }
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

/* Bottom Stats Banner */
.bottom-stats-banner {
  background-color: #d46ead;
  /* Primary pink */
  padding: 60px 0;
}

.bottom-stats-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

.bottom-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bottom-stat-item .stat-icon {
  margin-bottom: 20px;
}

.bottom-stat-item h3 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1;
}

.bottom-stat-item h3 span {
  font-size: 30px;
}

.bottom-stat-item p {
  color: #ffffffb2;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

/* Footer CTA Banner */
.footer-cta {
  padding: 80px 0;
  background-color: #fff;
}

.cta-banner-wrapper {
  background: linear-gradient(135deg, #d46ead 0%, #d46ead 50%, #b13581 100%);
  border-radius: 20px;
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  height: 484px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-map-overlay {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 575px;
  height: 484px;
  background-image: url("../../../../uploads/2026/04/image.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}

.cta-inner-content {
  position: relative;
  z-index: 2;
  max-width: 698px;
  margin: 0 auto;
}

.cta-badge {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.cta-inner-content h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1.2px;
}

.cta-inner-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 35px;
  font-weight: 400;
}

.cta-btn-group {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-contact-cta {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 14px 35px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.btn-contact-cta:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-3px);
  color: #fff;
}

/* Footer Contact List Updates */
.contact-info-list p {
  color: #b0b0b0;
  margin-bottom: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
}

.contact-info-list i {
  color: var(--primary);
  margin-top: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 14px;
}

/* Cleaning up redundant process styles */
.process-item {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f0f0;
  transition: 0.3s;
}

.process-item:hover {
  transform: translateY(-5px);
  border-color: #fce7f3;
}

/* Swiper Custom Styles */
.swiper {
  width: 100%;
  padding-bottom: 50px !important;
}

.swiper-slide {
  height: auto !important;
}

.swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

/* Treatment Swiper */
.treatments-swiper .center-card {
  height: 100%;
}

/* Academy Swiper */
.academy-swiper .academy-card {
  height: 100%;
}

/* Expert Swiper */
.expert-swiper {
  padding: 0 50px 50px !important;
}

.expert-swiper .board-card {
  height: 100%;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.expert-swiper .swiper-button-next,
.expert-swiper .swiper-button-prev {
  color: var(--primary);
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.expert-swiper .swiper-button-next::after,
.expert-swiper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

/* Partners Swiper */
.partners-swiper {
  padding-bottom: 20px !important;
}

.partners-swiper .partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  height: 100px;
  border: 1px solid #f0f0f0;
}

.partners-swiper .partner-logo img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(1);
  opacity: 0.7;
  transition: 0.3s;
}

.partners-swiper .swiper-slide:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* ==========================================================================
   IVF CENTERS PAGE STYLES
   ========================================================================== */
.internal-hero {
  padding: 50px 0;
  background: linear-gradient(90deg, #d46ead1a 10%, #ffffff 40%, #d46ead0d 65%);
  position: relative;
  overflow: hidden;
}

.internal-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 50px;
}

.breadcrumbs {
  font-size: 14px;
  color: #6d6d78;
  margin-bottom: 25px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.breadcrumbs a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumbs .current {
  color: #6d6d78;
}

.internal-hero-content .section-tag {
  margin-bottom: 16px;
}

.internal-hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: #22222a;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -1.2px;
}

.text-pink {
  color: var(--primary);
}

span.text-pink {
  background: unset;
}

.internal-hero-content p {
  font-size: 18px;
  color: #6d6d78;
  line-height: 1.6;
}

.internal-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.btn-membership-criteria {
  background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: none;
  transition: 0.3s;
  box-shadow: 0 8px 24px rgba(212, 110, 173, 0.25);
}

.btn-membership-criteria:hover {
  background: #c25096;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 110, 173, 0.32);
}

.btn-membership-criteria i {
  font-size: 16px;
}

.btn-criteria-outline {
  background: #fff;
  color: #475569;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: 1.5px solid #e2e8f0;
  transition: 0.3s;
}

.btn-criteria-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.membership-criteria-section {
  padding: 70px 0;
}

.membership-criteria-section--alt {
  background: #faf8fb;
}

.criteria-intro-card {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #f0e6f0;
  border-radius: 20px;
  padding: 40px 44px;
  box-shadow: 0 12px 40px rgba(212, 110, 173, 0.06);
}

.criteria-intro-card h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--main-heading);
  margin: 12px 0 18px;
}

.criteria-intro-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 16px;
}

.criteria-intro-card p:last-child {
  margin-bottom: 0;
}

.criteria-intro-card a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.criteria-intro-card a:hover {
  text-decoration: underline;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.criteria-card {
  background: #fff;
  border: 1px solid #f0f0f5;
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  transition: 0.3s;
}

.criteria-card:hover {
  border-color: #f3d7ea;
  box-shadow: 0 12px 32px rgba(212, 110, 173, 0.08);
  transform: translateY(-3px);
}

.criteria-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.criteria-step {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(212, 110, 173, 0.12);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

.criteria-card-head h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--main-heading);
  margin: 0;
  line-height: 1.3;
}

.criteria-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.criteria-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-main);
}

.criteria-list li:last-child {
  margin-bottom: 0;
}

.criteria-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.criteria-process-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
  background: #fff;
  border: 1px solid #f0e6f0;
  border-radius: 20px;
  padding: 40px 44px;
  box-shadow: 0 12px 40px rgba(212, 110, 173, 0.06);
}

.criteria-process-intro h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--main-heading);
  margin: 12px 0 16px;
}

.criteria-process-intro p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

.criteria-process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.criteria-process-steps li {
  background: #faf8fb;
  border: 1px solid #f0e6f0;
  border-radius: 14px;
  padding: 18px 20px;
}

.criteria-process-steps strong {
  display: block;
  font-size: 16px;
  color: var(--main-heading);
  margin-bottom: 6px;
}

.criteria-process-steps span {
  display: block;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
}

.criteria-documents-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  background: #fff;
  border: 1px solid #f0e6f0;
  border-radius: 20px;
  padding: 40px 44px;
  box-shadow: 0 12px 40px rgba(212, 110, 173, 0.06);
}

.criteria-documents-content h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--main-heading);
  margin: 0 0 14px;
}

.criteria-documents-content > p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 22px;
}

.criteria-documents-list {
  grid-template-columns: 1fr;
}

.criteria-documents-cta {
  background: linear-gradient(180deg, #fdf5fa 0%, #fff 100%);
  border: 1px solid #f3d7ea;
  border-radius: 18px;
  padding: 28px;
}

.criteria-documents-cta h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--main-heading);
  margin: 0 0 10px;
}

.criteria-documents-cta p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 22px;
}

.criteria-contact-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.criteria-contact-link:hover {
  text-decoration: underline;
}

.internal-hero-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-microscope {
  position: relative;
  z-index: 1;
  
  border: 4px solid #fff;
  border-radius: 10px;
}

/* Directory Filter Styles */
.internal-directory-section {
  padding: 32px 0 80px;
  background-color: #f1f5f9;
  position: relative;
  z-index: 10;
}

.centers-filter-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid #f1f5f9;
  margin-bottom: 80px;
}

.filter-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #22222a;
  margin-bottom: 25px;
}

.filter-fields-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.filter-col label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #bbb;
  font-size: 14px;
}

.input-with-icon input,
.filter-col select {
  width: 100%;
  height: 38px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0 15px;
  font-size: 14px;
  color: #444;
  background: #f8fafc;
  outline: none;
  transition: 0.3s;
}

.input-with-icon input {
  padding-left: 40px;
}

.input-with-icon input:focus,
.filter-col select:focus {
  border-color: var(--primary);
  background: #fff;
}

.filter-actions-row {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid #f2f2f2;
}

.btn-reset {
  background: unset;
  color: #475569;
  font-size: 14px;
  font-weight: 700;
  border: unset;
}

a.btn-reset {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ivf-filter-active-note {
  margin-left: 6px;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
}

.btn-apply-filter {
  background: var(--primary);
  color: #fff;
  padding: 12px 35px;
  border: unset;
}

.btn-apply-filter:hover {
  background: var(--primary-dark);
}

/* Meta Results Bar */
.centers-meta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 10px;
}

.meta-results {
  font-size: 16px;
  color: #22222a;
  font-weight: 400;
}

.pink-badge {
  background: #fdf2f8;
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-left: 10px;
}

.meta-sort {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #6d6d78;
}

.sort-select {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  font-weight: 400;
  color: #22222a;
  outline: none;
  cursor: pointer;
  font-size: 14px;
  width: 185px;
  height: 38px;
  border-radius: 8px;
  padding: 0 10px;
}

/* Directory Grid Internal Adjustment */
.directory-grid-internal {
  margin-top: 0;
}

/* IVF Centers Page Styles End */

/* 12. IVF Center Detail Page */
.center-detail-hero {
  padding: 50px 0;
  background: linear-gradient(90deg, #d46ead1a 10%, #ffffff 40%, #d46ead0d 65%);
}

.cd-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.breadcrumbs {
  font-size: 13px;
  color: #666;
  margin-bottom: 25px;
}

.breadcrumbs a {
  color: #888;
}

.breadcrumbs .current {
  color: var(--primary);
  font-weight: 500;
}

.cd-accredited-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #dfffe7;
  color: #1b7339;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.badge-svg-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cd-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--main-heading);
  margin-bottom: 25px;
}

.text-pink {
  color: var(--primary);
}

.cd-rating-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
}

.cd-rating-row .stars {
  color: #facc15;
  display: flex;
  gap: 4px;
  font-size: 16px;
}

.cd-rating-row strong {
  font-size: 18px;
  color: #1e293b;
  font-weight: 700;
}

.cd-rating-row .review-count {
  color: #64748b;
  font-size: 15px;
  font-weight: 500;
}

.cd-sep {
  color: #e2e8f0;
  font-weight: 300;
  font-size: 20px;
  margin: 0 5px;
}

.location-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 15px;
  font-weight: 500;
}

.location-tag svg {
  color: #1e293b;
}

.cd-hero-btns {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.btn-book-consultation {
  background-color: var(--primary);
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  border: none;
}

.btn-book-consultation svg {
  stroke-width: 2.5;
}

.btn-book-consultation:hover {
  background-color: var(--primary-dark, #c05d9a);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 110, 173, 0.3);
}

.btn-share-outline {
  background-color: #f1f5f9;
  border: none;
  color: #1e293b;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.btn-share-outline svg {
  stroke-width: 2.5;
}

.btn-share-outline:hover {
  background-color: #e2e8f0;
  transform: translateY(-2px);
}

.cd-hero-image-box img {
  border-radius: 16px;
  box-shadow: 0 20px 25px #0000001a;
  border: 4px solid #ffffff;
}

/* License Banner */
.cd-license-banner-section {
  padding: 30px 0;
  background: #f1f5f9;
}

.cd-license-banner {
  background: #fff;
  border: 4px solid #d46ead33;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 30px rgba(212, 110, 173, 0.05);
}

.license-info-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.license-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.license-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--main-heading);
  margin-bottom: 4px;
}

.license-text p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.btn-outline-white-pink {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.btn-outline-white-pink i {
  font-size: 22px;
}

.btn-outline-white-pink:hover {
  background-color: var(--primary);
  color: #fff;
}

/* Page Layout */
.cd-main-content-section {
  padding: 0 0 100px;
  background: #f1f5f9;
}

.cd-main-grid {
  display: grid;
  grid-template-columns: 2fr 1.1fr;
  gap: 60px;
}

.license-text i {
  vertical-align: middle;
  color: var(--primary);
  font-size: 8px;
}

/* Main Content */
.cd-quick-info-box {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.qi-header {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1e293b;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 30px;
}

.qi-header-svg {
  color: var(--primary);
  width: 20px;
  height: 20px;
}

.qi-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 25px 40px;
  margin-bottom: 35px;
}

.qi-txt .bold-text {
  font-size: 18px;
  font-weight: 600;
}

.qi-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.qi-icon-box {
  width: 40px;
  height: 40px;
  background: #fdf2f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qi-icon-box svg {
  color: var(--primary);
  width: 18px;
  height: 18px;
}

.qi-txt small {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.qi-txt strong {
  font-size: 16px;
  color: #1e293b;
  line-height: 1.4;
  display: block;
  font-weight: 400;
}

.btn-visit-website {
  background: #f1f5f9;
  color: #1e293b;
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  transition: 0.3s;
}

.btn-visit-website:hover {
  background: #e2e8f0;
}

.cd-about-section,
.cd-services-section {
  margin-bottom: 50px;
}

.sec-title-flex {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.sec-title-flex i {
  color: var(--primary);
  font-size: 18px;
}

.sec-title-flex h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--main-heading);
}

.cd-about-section p {
  font-size: 18px;
  line-height: 1.5;
  color: #475569;
  margin: 0;
}

.services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.services-tags span {
  background: #d46ead1a;
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #d46ead33;
}

/* Reviews */
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.reviews-header h2 {
  font-size: 20px;
  font-weight: 700;
}

.write-review-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  padding: 20px;
}

.review-user-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  background: #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #475569;
  margin-right: 15px;
  font-size: 16px;
}

.user-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.user-meta strong {
  display: block;
  font-size: 16px;
  color: var(--main-heading);
  font-weight: 700;
}

.user-meta span {
  font-size: 12px;
  color: #64748b;
}

.review-stars-rt {
  color: #ffb400;
  font-size: 12px;
  display: flex;
  gap: 3px;
}

.review-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
  font-weight: 400;
}

.btn-read-all-reviews {
  width: 100%;
  background: transparent;
  border: 1px solid #e2e8f0;
  color: #475569;
  padding: 12px;
  font-weight: 600;
  font-size: 16px;
}

/* Sidebar */
.sidebar-widget {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.sidebar-widget h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--main-heading);
  margin-bottom: 20px;
}

/* Professional Staff Box */
.staff-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.staff-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: 0.3s;
}

.staff-list li:hover {
  border-color: #e2e8f0;
}

.staff-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.staff-svg {
  color: var(--primary);
  width: 22px;
  height: 22px;
}

.staff-left span {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
}

.staff-count {
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
}

/* Stats Cards */
.stats-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card-item {
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
}

.stat-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

/* .stat-icon-box {
    width: 44px;
    height: 44px;
    background: #FDF2F8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
} */

.stat-svg-icon {
  color: var(--primary);
  width: 20px;
  height: 20px;
}

.stat-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.8px;
  opacity: 0.8;
}

.stat-card-content strong {
  font-size: 18px;
  color: #1e293b;
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

.stat-card-content p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

/* Map Widget */
.sidebar-loc-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px !important;
  width: 70%;
}

.sidebar-map-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.sidebar-map-box img {
  width: 100%;
}

.btn-get-directions {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* Transparency Box */
.transparency-box {
  background: #fdf2f8;
  border-color: #fbcfe8;
}

.trans-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--primary);
}

.trans-title h3 {
  margin: 0;
  color: var(--primary);
}

.transparency-box p {
  font-size: 12px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
  width: 73%;
}

.sidebar-verification-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 8px 14px;
  border-radius: 50px;
  margin-top: 20px;
}

.sidebar-verification-tag .verif-icon {
  color: var(--primary);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sidebar-verification-tag span {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

/* ==========================================================================
   SINGLE POST (NEWS / EVENT DETAIL)
   ========================================================================== */
.post-detail-hero .post-detail-tag {
  display: inline-block;
  margin-bottom: 16px;
}

.post-detail-lead {
  font-size: 18px;
  color: #6d6d78;
  line-height: 1.6;
  margin-bottom: 20px;
}

.post-detail-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 15px;
  color: #6d6d78;
}

.post-detail-date,
.post-detail-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.post-detail-hero-img {
  object-fit: cover;
}

.post-detail-content-section {
  padding: 60px 0 80px;
  background: #fff;
}

.post-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.post-detail-article {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.post-entry-content {
  font-size: 17px;
  line-height: 1.75;
  color: #44445a;
}

.post-entry-content > *:first-child {
  margin-top: 0;
}

.post-entry-content h2,
.post-entry-content h3,
.post-entry-content h4 {
  color: var(--main-heading);
  margin: 1.5em 0 0.75em;
  line-height: 1.3;
}

.post-entry-content p {
  margin-bottom: 1.25em;
}

.post-entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.post-entry-content ul,
.post-entry-content ol {
  margin: 0 0 1.25em 1.25em;
}

.post-page-links {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
  font-size: 15px;
}

.post-detail-sidebar-card {
  background: linear-gradient(180deg, #fcf3f8, #ffffff);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 100px;
}

.post-detail-sidebar-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--main-heading);
  margin-bottom: 20px;
}

.post-detail-sidebar-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.post-detail-sidebar-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 110, 173, 0.15);
}

.post-detail-sidebar-list li:last-child {
  border-bottom: none;
}

.post-detail-sidebar-list strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
}

.post-detail-sidebar-list span {
  font-size: 15px;
  color: #44445a;
}

.post-detail-back-btn i {
  margin-left: 0;
  margin-right: 6px;
}

.post-detail-footer-cta {
  margin-top: 0;
}

@media (max-width: 991px) {
  .post-detail-layout {
    grid-template-columns: 1fr;
  }

  .post-detail-sidebar-card {
    position: static;
  }

  .post-detail-article {
    padding: 28px 24px;
  }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-page-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff, #FCF3F8);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: start;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0px 10px 30px rgba(212, 110, 173, 0.05);
    border: 1px solid #EBE6E0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-card:hover {
    box-shadow: 0px 15px 40px rgba(212, 110, 173, 0.1);
}

.info-card-header,
.form-card-header {
    margin-bottom: 35px;
}

.info-tag,
.form-tag {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.info-card-header h2,
.form-card-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--main-heading);
    margin-bottom: 12px;
}

.info-card-header p,
.form-card-header p {
    font-size: 15px;
    color: var(--text-light);
}

.info-detail-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.info-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-detail-item .icon-box {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: background-color 0.3s, color 0.3s;
}

.info-detail-item:hover .icon-box {
    background-color: var(--primary);
    color: var(--white);
}

.info-detail-item .text-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--main-heading);
    margin-bottom: 5px;
}

.info-detail-item .text-box p {
    font-size: 15px;
    color: var(--text-main);
    margin: 0;
}

.info-detail-item .text-box p a {
    color: var(--text-main);
    font-weight: 500;
}

.info-detail-item .text-box p a:hover {
    color: var(--primary);
}

.info-detail-item .text-box .subtext {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 2px;
}

.info-social-block {
    border-top: 1px solid #f2f2f2;
    padding-top: 30px;
}

.info-social-block h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--main-heading);
    margin-bottom: 15px;
}

.social-links-row {
    display: flex;
    gap: 12px;
}

.social-links-row a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: #d46ead;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.3s;
}

.social-links-row a:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form Styling */
.form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.form-group {
    width: calc(50% - 12px);
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--main-heading);
    margin-bottom: 8px;
}

.input-container {
    position: relative;
}

.input-container p {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
}

.input-container i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
    pointer-events: none;
    transition: color 0.3s;
    z-index: 1;
}
.wpcf7-form-control-wrap {
    position: relative;
    width: 100% !important;
}
.textarea-container i {
    top: 18px;
    transform: none;
}

.input-container input,
.input-container textarea {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: 14px;
    color: var(--text-main);
    background-color: #f8fafc;
    outline: none;
    transition: border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.input-container textarea {
    padding-top: 16px;
    resize: vertical;
}

.input-container input:focus,
.input-container textarea:focus {
    border-color: var(--primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(212, 110, 173, 0.15);
}

.textarea-container textarea {
    min-height: 180px;
}

.btn-contact-submit {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    font-size: 15px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0px 4px 15px rgba(212, 110, 173, 0.2);
    transition: 0.3s;
}

.btn-contact-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0px 8px 25px rgba(212, 110, 173, 0.3);
}

.btn-contact-submit i {
    font-size: 14px;
    transition: transform 0.3s;
}

.btn-contact-submit:hover i {
    transform: translate(2px, -2px);
}

/* Map Section Styles */
.contact-map-section {
    padding: 60px 0;
    background-color: #FCF3F8;
	display: none;
}

.map-wrapper {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid #EBE6E0;
}

.map-header {
    margin-bottom: 30px;
    text-align: center;
}

.map-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--main-heading);
    margin-bottom: 10px;
}

.map-header p {
    font-size: 15px;
    color: var(--text-light);
}

.map-iframe-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.map-iframe-container iframe {
    display: block;
}

/* FAQ Section Styles */
.contact-faq-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.faq-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.faq-tag {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.faq-header-center h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--main-heading);
    margin-bottom: 20px;
}

.faq-header-center p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.faq-item {
    background: #fdfafc;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #fce7f3;
    transition: 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 110, 173, 0.08);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--main-heading);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 i {
    color: var(--primary);
    font-size: 20px;
}

.faq-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   About Us Page Styles
   ========================================================================== */
.about-intro-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff, #FCF3F8);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-section-tag {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.about-intro-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--main-heading);
    margin-bottom: 25px;
    line-height: 1.25;
}

.about-intro-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-intro-content p:last-child {
    margin-bottom: 0;
}

.about-stats-card {
    background: linear-gradient(135deg, #FDF2F8, #FFFFFF);
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid #fce7f3;
    box-shadow: 0 10px 30px rgba(212, 110, 173, 0.05);
}

.about-stats-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--main-heading);
    margin-bottom: 25px;
    text-align: center;
}

.about-footprint-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.footprint-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 15px;
    border: 1px solid #f0f0f0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(212, 110, 173, 0.02);
}

.footprint-item strong {
    display: block;
    font-size: 28px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 6px;
}

.footprint-item span {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.3;
}

/* Mission & Vision Section */
.about-mission-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 45px;
    border: 1px solid #EBE6E0;
    box-shadow: 0px 10px 30px rgba(212, 110, 173, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 40px rgba(212, 110, 173, 0.1);
    border-color: #fce7f3;
}

.mv-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 25px;
    transition: 0.3s ease;
}

.mv-card:hover .mv-icon {
    background-color: var(--primary);
    color: #ffffff;
    transform: rotateY(360deg);
}

.mv-card h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--main-heading);
    margin-bottom: 15px;
}

.mv-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Pillars Section */
.about-pillars-section {
    padding: 100px 0;
    background-color: #fdfafc;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.criteria-pillars-grid {
    grid-template-columns: repeat(3, 1fr);
}

.about-intro-content a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.about-intro-content a:hover {
    text-decoration: underline;
}

.pillar-item {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 20px;
    border: 1px solid #EBE6E0;
    transition: 0.3s ease;
}

.pillar-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 110, 173, 0.08);
    border-color: #fce7f3;
}

.pillar-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 22px;
}

.pillar-icon img {
    width: 100%;
    height: auto;
}

.pillar-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--main-heading);
    margin-bottom: 12px;
}

.pillar-item p {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Leadership Section */
.about-leadership-section {
    padding: 100px 0;
    background-color: #ffffff;
}
/* =========================================
   News & Events Page Styles
   ========================================= */

.news-events-page-section {
    padding: 80px 0;
    background-color: #fcfcfd;
}

.journal-list-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--main-heading);
    margin: 0 0 12px;
    line-height: 1.35;
}

.journal-list-card .ne-card-content > p {
    flex: 1;
    margin-bottom: 0;
}

.journal-card-file {
    margin-top: auto;
    padding-top: 20px;
}

.journal-open-file {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.journal-card-footer {
    margin-top: auto;
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.journal-pages-meta {
    font-size: 13px;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.journal-member-notice {
    margin-top: 50px;
    background: #fff;
    border: 1px solid #f3d7ea;
    border-radius: 18px;
    padding: 28px 32px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px 24px;
    align-items: center;
    box-shadow: 0 12px 32px rgba(212, 110, 173, 0.08);
}

.journal-member-notice-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(212, 110, 173, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.journal-member-notice h3 {
    margin: 0 0 8px;
    font-size: 20px;
    color: var(--main-heading);
}

.journal-member-notice p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.journal-member-notice-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.journal-login-gate {
    background: linear-gradient(180deg, #fdf5fa 0%, #fff 100%);
    border: 1px solid #f3d7ea;
    border-radius: 18px;
    padding: 32px;
    text-align: center;
    margin-bottom: 28px;
}

.journal-login-gate-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(212, 110, 173, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.journal-login-gate h2 {
    margin: 0 0 12px;
    font-size: 28px;
    color: var(--main-heading);
}

.journal-login-gate p {
    margin: 0 auto 22px;
    max-width: 620px;
    color: var(--text-light);
    line-height: 1.7;
}

.journal-login-gate-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.journal-abstract-preview {
    background: #fff;
    border: 1px solid #f0f0f5;
    border-radius: 16px;
    padding: 24px 28px;
}

.journal-abstract-preview h3 {
    margin: 0 0 12px;
    font-size: 18px;
    color: var(--main-heading);
}

.journal-abstract-preview p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
}

.journal-download-row {
  margin-top: 28px;
}

.journal-pdf-viewer-wrap {
  margin-top: 32px;
  border: 1px solid #e8e8ef;
  border-radius: 16px;
  overflow: hidden;
  background: #f8fafc;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.journal-pdf-viewer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border-bottom: 1px solid #e8e8ef;
}

.journal-pdf-viewer-head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--main-heading);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.journal-pdf-viewer-head h3 i {
  color: var(--primary);
}

.journal-pdf-open-tab {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.journal-pdf-open-tab:hover {
  text-decoration: underline;
}

.journal-pdf-viewer {
  display: block;
  width: 100%;
  min-height: 80vh;
  height: 80vh;
  border: 0;
  background: #525659;
}

/* Filter Tabs */
.ne-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.ne-tab {
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ne-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.ne-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 110, 173, 0.3);
}

/* Content Grid */
.ne-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ne-page-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ne-page-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    border-color: #fce7f3;
}

.ne-card-img {
    position: relative;
    height: 220px;
}

.ne-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ne-page-card:hover .ne-card-img img {
    transform: scale(1.05);
}

.ne-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.ne-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ne-card-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
}

.ne-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ne-card-meta i {
    color: var(--primary);
}

.ne-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #22222A;
    margin-bottom: 12px;
    line-height: 1.4;
}

.ne-card-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.btn-read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-read-more:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* Keyframe for tab filtering animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Newsletter Subscription */
.ne-newsletter-section {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid #f2f2f2;
}

.ne-newsletter-box {
    background: linear-gradient(135deg, #fdf2f8, #f8fafc);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border: 1px solid #fce7f3;
}

.ne-news-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(212, 110, 173, 0.1);
    flex-shrink: 0;
}

.ne-news-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.ne-news-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.ne-news-form {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    width: 450px;
}

.ne-news-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.ne-news-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 110, 173, 0.1);
}

.btn-subscribe {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-subscribe:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 110, 173, 0.2);
}

/* ==========================================================================
   STANDING COMMITTEES PAGE STYLES
   ========================================================================== */
.committees-page-section {
    padding: 80px 0;
    background-color: #F8FAFC;
}

.committees-layout-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Sidebar Styling */
.committees-sidebar {
    width: 320px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    z-index: 90;
}

.committees-sidebar h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--main-heading);
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #F1F5F9;
}

.committees-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.committees-nav li {
    margin-bottom: 12px;
}

.committees-nav li:last-child {
    margin-bottom: 0;
}

.committees-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    color: var(--text-light);
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    text-decoration: none;
}

.committees-nav .nav-link i {
    font-size: 16px;
    color: #94A3B8;
    transition: color 0.3s ease;
    width: 20px;
    text-align: center;
}

.committees-nav .nav-link:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.committees-nav .nav-link:hover i {
    color: var(--primary);
}

.committees-nav .nav-link.active {
    color: #ffffff;
    background: var(--primary);
    box-shadow: 0 4px 15px rgba(212, 110, 173, 0.3);
}

.committees-nav .nav-link.active i {
    color: #ffffff;
}

/* Main Content Area */
.committees-main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: calc(100% - 360px);
}

.committee-detail-section {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #E2E8F0;
    scroll-margin-top: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.committee-detail-section:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.committee-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #F1F5F9;
}

.committee-header .committee-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    margin-bottom: unset;
}

.committee-title-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.committee-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1.5px;
}

.committee-title-box h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--main-heading);
    margin: 0;
    line-height: 1.2;
}

.committee-mandate {
    margin-bottom: 35px;
}

.committee-mandate h3,
.committee-responsibilities h3,
.committee-members-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--main-heading);
    margin-bottom: 18px;
    position: relative;
    padding-left: 15px;
}

.committee-mandate h3::before,
.committee-responsibilities h3::before,
.committee-members-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background: var(--primary);
    border-radius: 2px;
}

.committee-mandate p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.committee-responsibilities {
    margin-bottom: 40px;
}

.responsibility-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.responsibility-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-main);
}

.responsibility-list li i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Members Section Styling */
.committee-members-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) 1.2fr;
    gap: 20px;
}

.member-card {
    background: #F8FAFC;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.member-card:hover {
    background: #ffffff;
    border-color: var(--primary-light);
    box-shadow: 0 8px 20px rgba(212, 110, 173, 0.08);
    transform: translateY(-5px);
}

.member-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #94A3B8;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.member-card:hover .member-avatar {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.member-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.member-role {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.badge-chair {
    background: #FDF2F8;
    color: var(--primary);
}

.badge-cochair {
    background: #EFF6FF;
    color: #2563EB;
}

.member-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--main-heading);
    margin-bottom: 6px;
}

.member-qual {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-city {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 6px;
}

.member-city i {
    color: var(--primary);
}

/* Other Members List */
.other-members-list {
    background: #F8FAFC;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.other-members-list .list-heading {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748B;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 8px;
}

.other-member-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s ease;
}

.other-member-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.other-member-row:first-of-type {
    padding-top: 0;
}

.mini-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #94A3B8;
    border: 1px solid #E2E8F0;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.other-member-row:hover .mini-avatar {
    color: var(--primary);
    border-color: var(--primary);
    background: var(--primary-light);
}

.mini-info {
    display: flex;
    flex-direction: column;
}

.mini-info h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--main-heading);
    margin: 0 0 2px 0;
}

.mini-info span {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.3;
}

/* ==========================================================================
   JOB BOARD
   ========================================================================== */
.job-board-section .centers-filter-box {
    margin-bottom: 40px;
}

.job-board-filter__row {
    grid-template-columns: repeat(4, 1fr);
}

.filter-col--wide {
    grid-column: span 1;
}

.job-board-filter__extras {
    margin-bottom: 20px;
}

.job-board-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-main);
    cursor: pointer;
}

.job-board-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.job-board-card {
    background: #fff;
    border: 1px solid #ececf1;
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: 0.3s;
    box-shadow: 0 8px 24px rgba(34, 34, 42, 0.04);
}

.job-board-card:hover {
    transform: translateY(-4px);
    border-color: #f4d4e6;
    box-shadow: 0 16px 32px rgba(212, 110, 173, 0.12);
}

.job-board-card--featured {
    border-color: #efc4dc;
}

.job-board-card--closed {
    opacity: 0.82;
}

.job-board-card__top {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.job-board-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fbe6ef;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 600;
}

.job-board-badge--featured {
    background: var(--primary);
    color: #fff;
}

.job-board-badge--closed {
    background: #eef2f7;
    color: #667085;
}

.job-board-card__title {
    font-size: 24px;
    line-height: 1.25;
    margin: 0;
}

.job-board-card__title a {
    color: var(--main-heading);
    text-decoration: none;
}

.job-board-card__title a:hover {
    color: var(--primary);
}

.job-board-card__employer {
    margin: 0;
    color: var(--text-light);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-board-card__excerpt {
    margin: 0;
    color: var(--text-main);
    line-height: 1.6;
}

.job-board-card__meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.job-board-card__meta li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    font-size: 14px;
}

.job-board-card__meta i {
    color: var(--primary);
    width: 16px;
}

.job-board-card__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 8px;
}

.job-board-ref {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
}

.job-board-card__link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.job-board-card__link:hover {
    color: var(--primary-dark);
}

.job-board-empty {
    grid-column: 1 / -1;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    color: var(--text-main);
}

.job-detail-hero {
    padding-bottom: 40px;
}

.job-detail-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0;
}

.job-detail-hero__employer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.92);
}

.job-detail-hero__sep {
    opacity: 0.7;
}

.job-detail-section {
    padding: 50px 0 90px;
    background: #f8fafc;
}

.job-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.job-detail-block {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    margin-bottom: 20px;
    border: 1px solid #ececf1;
}

.job-detail-block h2 {
    margin: 0 0 16px;
    font-size: 24px;
    color: var(--main-heading);
}

.job-detail-content p:last-child,
.job-detail-block p:last-child {
    margin-bottom: 0;
}

.job-detail-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.job-detail-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--text-main);
}

.job-detail-list i {
    color: var(--primary);
    margin-top: 4px;
}

.job-detail-card {
    background: #fff;
    border: 1px solid #ececf1;
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 20px;
}

.job-detail-card h3 {
    margin: 0 0 16px;
    font-size: 20px;
}

.job-detail-summary {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.job-detail-summary li {
    display: grid;
    gap: 4px;
}

.job-detail-summary span {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
}

.job-detail-summary strong {
    color: var(--main-heading);
    font-size: 15px;
    font-weight: 600;
}

.job-detail-center-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.job-detail-card--apply .job-apply-form {
    display: grid;
    gap: 10px;
}

.job-detail-card--apply label {
    font-size: 13px;
    font-weight: 600;
    color: var(--main-heading);
}

.job-detail-card--apply input,
.job-detail-card--apply select,
.job-detail-card--apply textarea {
    width: 100%;
    border: 1px solid #d9dee7;
    border-radius: 10px;
    padding: 12px 14px;
    font: inherit;
    background: #fff;
}

.job-detail-apply-note {
    margin: 0 0 16px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

.job-apply-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.job-apply-notice {
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 15px;
}

.job-apply-notice--success {
    background: #ecfdf3;
    color: #027a48;
    border: 1px solid #abefc6;
}

.job-apply-notice--error {
    background: #fef3f2;
    color: #b42318;
    border: 1px solid #fecdca;
}

.job-detail-card--closed p {
    margin: 0 0 16px;
    color: var(--text-light);
}