/* --- CSS VARIABLES & RESET --- */
:root {
  --primary-teal: #2a8575;
  --primary-hover: #216e60;
  --text-dark: #333333;
  --text-gray: #555555;
  --bg-off-white: #fafafa;
  --white: #ffffff;
  --border-color: #333333;
  --font-head: "Georgia", "Times New Roman", serif;
  --font-body: "Roboto", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-off-white);
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

img {
  max-width: 100%;
  display: block;
}

/* --- LAYOUT UTILITIES --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- NAVIGATION --- */
header {
  padding: 20px 0;
  background-color: #ffffff;
  width: 100%;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo Image Styling */
.logo-img {
  height: 100px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-dark);
}

.nav-links a:hover {
  color: var(--primary-teal);
}

.nav-links li a.active,
.nav-links li a.current {
  color: var(--primary-teal);
  font-weight: bold;
  border-bottom: 2px solid var(--primary-teal);
}

.btn-nav {
  background-color: var(--primary-teal);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600;
}

.btn-nav:hover {
  background-color: var(--primary-hover);
}

/* Mobile Menu Toggle (Hidden on Desktop) */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
  min-width: 30px;
  text-align: center;
  cursor: pointer;
  /* Font size adjustment if needed */
  line-height: 1;
}

/* ============================= */
/* --- HERO SECTION MAIN SETUP --- */
/* ============================= */

.hero {
  position: relative;
  min-height: 85vh;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 60px 20px;
}

/* --- Basic Layout: Left & Right --- */
.container.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left side text container */
.hero-content {
  flex: 1;
}

/* Right side slideshow container */
.hero-bg {
  flex: 1;
  position: relative;
  height: 400px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- Slideshow Animation Logic --- */
.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  /* 15s total duration for 3 images (5s per image) */
  animation: slideFade 15s infinite;
}

.bg1 {
  background-image: url("images/semi_image1.webp");
  animation-delay: 0s;
}

.bg2 {
  background-image: url("images/semi_image2.webp");
  animation-delay: 5s;
}

.bg3 {
  background-image: url("images/semi_image3.webp");
  animation-delay: 10s;
}

@keyframes slideFade {
  0% {
    opacity: 0;
    transform: scale(1.05);
  } /* Slight zoom effect for polish */
  10% {
    opacity: 1;
    transform: scale(1);
  }
  33% {
    opacity: 1;
    transform: scale(1);
  }
  43% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 0;
    transform: scale(0.95);
  }
}

/* --- Basic Styling for Text and Buttons (Optional) --- */
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero-content h2 {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 1rem;
}

.cta-group {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.btn-primary {
  background-color: #0056b3;
  color: white;
}

.btn-outline {
  border: 2px solid #0056b3;
  color: #0056b3;
}

/* Typography Styles */
h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 16px;
}

h2 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-teal);
  margin-bottom: 24px;
}

p.hero-text {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 480px;
}

/* Button Group */
.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-teal);
  color: var(--white);
  border: 2px solid var(--primary-teal);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border-color);
}

.btn-outline:hover {
  background-color: var(--text-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.trusted-section {
  text-align: center;
  margin: 40px 0;
  background-color: #fafafa;
}

.trusted-text {
  text-align: center;
  font-weight: bold;
  font-style: italic;
  font-size: 2rem;
  margin-top: 30px;
  color: black;
}

/* --- NEWSLETTER SECTION --- */
.newsletter-section {
  background-color: #eff4f6;
  padding: 80px 0;
  text-align: center;
}

.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-section h2 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--primary-teal);
  font-size: 36px;
  margin-bottom: 16px;
}

.newsletter-section p {
  font-family: var(--font-body);
  color: var(--text-gray);
  font-size: 16px;
  margin-bottom: 32px;
}

/* Form Layout */
.newsletter-form {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.newsletter-form input {
  flex: 1;
  max-width: 400px;
  padding: 14px 20px;
  border: 1px solid #d1d5db;
  background-color: #e8ecef;
  border-radius: 4px;
  font-size: 16px;
  font-family: var(--font-body);
  color: var(--text-dark);
  outline: none;
}

.newsletter-form input::placeholder {
  color: #8898aa;
}

.newsletter-form input:focus {
  border-color: var(--primary-teal);
  background-color: #ffffff;
}

.newsletter-form button {
  background-color: var(--primary-teal);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  max-width: 400px;
}

.newsletter-form button:hover {
  background-color: var(--primary-hover);
}

/* Social Icon */
.newsletter-social {
  display: flex;
  justify-content: center;
}

.newsletter-social a {
  display: inline-block;
  transition: transform 0.2s ease;
}

.newsletter-social a:hover {
  transform: scale(1.1);
}

/* About Video */
/* --- VIDEO SECTION & OVERLAY --- */
.video-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 24px 60px;
}

/* 1. Background Video Styling */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* 2. The White Card Container */
.video-overlay-content {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  max-width: 700px;
  padding: 60px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  text-align: left;
}

/* 3. Typography Matching the Image */
.video-overlay-content h2 {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 700;
  color: #0b2545;
  line-height: 1.1;
  margin-bottom: 24px;
}

.highlight-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: #333333;
  margin-bottom: 30px;
}

.body-content p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
}

.body-content p:last-child {
  margin-bottom: 0;
}

.services-title {
  text-align: center;
  font-weight: bold;
  margin: 40px 0 40px 0;
  font-size: 2rem;
  font-size: 48px;
}

/* --- LEADERSHIP SECTION --- */
.leadership-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.section-title {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--primary-teal);
  margin-bottom: 40px;
  text-align: center;
}

/* Intro Box Styling */
.leadership-intro {
  border: 2px solid #333;
  border-left: 6px solid #e0e0e0;
  padding: 24px 32px;
  margin-bottom: 60px;
  max-width: 900px;
}

.leadership-intro p {
  font-family: var(--font-body, sans-serif);
  font-style: italic;
  color: #444;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

/* Card Styling */
.leader-profile.card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-top: 2rem;
  width: 70%;
}

/* Image Wrapper Styling */
.leader-image-wrapper {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.leader-img {
  width: 150px;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.leader-name {
  font-weight: bold;
  font-size: 1.2rem;
  display: block;
}

.leader-info p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}

/* Bio Styling */
.leader-bio {
  flex: 1;
}

/* --- CONTACT SECTION --- */
.contact-section {
  background-color: #eff4f6;
  padding: 80px 0;
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

/* Left Column Styling */
.contact-text {
  flex: 1;
  max-width: 450px;
}

.contact-text h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 42px;
  color: #0b2545;
  margin-bottom: 20px;
}

.contact-intro {
  font-family: var(--font-body, sans-serif);
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.info-item {
  margin-bottom: 24px;
}

.info-item h4 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 18px;
  color: #0b2545;
  margin-bottom: 8px;
  font-weight: 700;
}

.info-item p,
.info-item a {
  font-family: var(--font-body, sans-serif);
  font-size: 16px;
  color: #555;
  text-decoration: none;
}

.info-item a:hover {
  color: var(--primary-teal);
}

/* Right Column (Form) Styling */
.contact-form-container {
  flex: 1;
  position: relative;
}

.contact-form {
  position: relative;
  z-index: 2;
}

.form-group {
  margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  background-color: transparent;
  font-family: var(--font-body, sans-serif);
  font-size: 16px;
  outline: none;
  transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background-color: #ffffff;
  border-color: var(--primary-teal);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Decorative Dot Pattern */
.dot-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 150px;
  height: 100px;
  z-index: 1;
  /* Radial Gradient */
  background-image: radial-gradient(#2a8575 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.4;
}

/* --- Dropdown Container --- */
.dropdown {
  position: relative;
}

/* --- The Dropdown Menu (Hidden by default) --- */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 240px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
  margin: 0;
  list-style: none;
  z-index: 1000;

  /* Smooth Fade & Slide In Animation */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

/* --- Reveal on Hover --- */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --- The Dropdown Parent --- */
.dropdown {
  position: relative;
  display: inline-block;
}

/* --- The Dropdown Container --- */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 220px;
  padding: 0;
  margin: 0;
  list-style: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;

  /* Smooth Fade & Slide In Animation */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

/* --- Reveal on Hover --- */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --- Make Dropdown Links Match Main Links --- */
.dropdown-menu li {
  display: block;
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 1rem 1.5rem;
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
  transition: color 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

/* --- The Hover State --- */
.dropdown-menu li a:hover {
  background-color: transparent;
  color: #0056b3;
}

/* --- FOOTER SECTION --- */
.site-footer {
  background-color: #222222;
  color: #aaaaaa;
  padding: 60px 10px 20px;
  font-size: 14px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #333333;
  padding-bottom: 40px;
}

/* Brand Column */
.footer-brand {
  flex: 1 1 300px;
}

.footer-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-logo span {
  color: white;
}

.footer-desc {
  line-height: 1.6;
  max-width: 300px;
}

/* Links Columns */
.footer-links {
  flex: 1 1 150px;
}

.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #aaaaaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-teal);
}

/* Contact Column */
.footer-contact {
  flex: 1 1 200px;
}

.footer-contact p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.contact-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  color: var(--primary-teal);
  text-decoration: underline;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
  color: #666666;
}

/* Container & Headers */
.regional-section {
  padding: 4rem 0;
  background-color: #f9f9fa;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* 3-Column Grid for the Cards */
.regional-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Individual Card Styling */
.regional-card {
  display: flex;
  flex-direction: row;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  gap: 1.25rem;
  align-items: flex-start;
}

.card-image-left {
  flex: 0 0 80px;
}

.rep-img {
  width: 150px;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Content on the Right */
.card-content-right {
  flex: 1;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.rep-name {
  margin: 0;
  font-size: 1.1rem;
  color: #333;
}

.flag-icon {
  font-size: 1.5rem;
}

.rep-intro {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.card-header .fi {
  border: 1px solid #dddddd;
  border-radius: 2px;
  box-sizing: border-box;
}

/* Section Spacing */
.coverage-section {
  padding: 4rem 0;
  background-color: #f9f9fa;
}

/* Flexbox Grid for the Badges */
.coverage-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Pill-Shaped Card Styling */
.coverage-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #ffffff;
  padding: 1rem 1.75rem;
  border-radius: 50px;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

/* Hover Effect: Lift and Shadow */
.coverage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Icon and Text Styling */
.flag-icon-large {
  font-size: 1.5rem;
  border-radius: 2px;
  border: 1px solid #eeeeee;
}

.globe-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.country-name {
  font-weight: 600;
  color: #333333;
  font-size: 1.1rem;
}

/* Card Container Grid Layout */
.services-detail-section .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

/* Base Card Styling */
.service-card {
  background-color: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  text-align: center;
  border: 1px solid #eaeaea;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card .service-video,
.service-card p,
.service-card .service-lists {
  display: none;
}

.service-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-card h4 {
  font-size: 1rem;
  color: #666;
  font-weight: normal;
  margin: 0;
}

/* ===========================
   Modal & Pop-up Styling 
   =========================== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

/* When JavaScript adds the 'active' class, show the modal */
.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
  line-height: 1;
}

/* Un-hide the video and text when they are inside the modal */
#modalBody .service-video,
#modalBody p,
#modalBody .service-lists {
  display: block;
}

#modalBody .service-video video {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.service-content h4 {
  color: #555;
  margin: 0 0 1rem 0;
  font-weight: 600;
  font-size: 1.1rem;
}

.service-content p {
  line-height: 1.6;
  color: #444;
  margin: 0;
}

.service-lists h5 {
  font-size: 1.1rem;
  margin: 0 0 0.75rem 0;
  color: #222;
}

.service-lists ul {
  margin: 0;
  padding-left: 1.25rem;
  color: #444;
}

.service-lists li {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.small-text {
  font-size: 0.9rem;
  margin-bottom: 0.5rem !important;
}

.highlight {
  margin-top: 1.5rem !important;
  font-size: 1.1rem;
  color: #000;
}

/* Button Styling on the Card */
.learn-more-btn {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.5rem 1.5rem;
  background-color: #0b2545;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

/* Slight hover effect for the button */
.service-card:hover .learn-more-btn {
  background-color: #163a6a;
  transform: translateY(-2px);
}

#modalBody .learn-more-btn {
  display: none;
}

/* Blog Post Styling */
.blog-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.read-more {
  color: var(--primary-teal);
}

.card-content p {
  color: var(--text-gray);
}

.category {
  color: #163a6a;
}

.insight-post {
  border-radius: 8px;
  overflow: hidden;
}

.insight-post h2 {
  font-size: 2.0rem;
}

.post-header {
  margin-bottom: 30px;
  background-color: var(--bg-off-white);
}
.container
.post-date {
  color: #666;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.post-header h1 {
  font-size: 2.5rem;
  color: #003366; /* Deep professional blue */
  line-height: 1.2;
}

.post-image {
  margin-bottom: 30px;
}

.post-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.post-content {
  font-family: "Inter", sans-serif;
  line-height: 1.8;
  color: #333;
  font-size: 1.1rem;
}

.lead-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: #444;
  border-left: 4px solid #003366;
  padding-left: 20px;
  margin-bottom: 25px;
}

.post-content h3 {
  margin: 35px 0 15px;
  color: #003366;
}

.post-content ul {
  margin-bottom: 30px;
  list-style: none;
  padding-left: 0;
}

.post-content li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.post-content li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #003366;
  font-weight: bold;
}

/* Card Grid Layout */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.insight-card {
  background: #fff;
  margin-bottom: 10px;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.back-btn {
  background: none;
  border: 1px solid #003366;
  color: #003366;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
  cursor: pointer;
}

.back-btn:hover {
  background: #003366;
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .services-detail-section .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .services-detail-section .container {
    grid-template-columns: 1fr;
  }

  .container.hero {
    flex-direction: column;
    padding: 2rem 1rem;
    text-align: center;
    gap: 2rem;
  }

  .video-overlay-content {
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem;
    text-align: center;
    gap: 1.5rem;
    margin: 1rem;
  }

  .video-overlay-content h2 {
    font-size: 1.5rem;
    margin: 0;
  }

  .highlight-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
  }

  .body-content p {
    font-size: 0.95rem;
    margin: 0;
  }

  .hero-content,
  .hero-bg {
    flex: none;
    width: 100%;
  }

  .hero-bg {
    height: 300px;
  }

  .cta-group {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
  }

  .leader-profile.card {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .services-title {
    font-size: 1.5rem;
  }
  
  .post-header h2 {
    font-size: 1.33rem;
  }

  .leadership-intro {
    border-left: 2px solid #333;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .dot-decoration {
    right: 0;
  }

  .newsletter-form {
    flex-direction: column;
    padding: 0 16px;
    width: 100%;
  }

  .trusted-text {
    font-size: 1rem;
  }

  .hero-content h2,
  .newsletter-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  /* --- Mobile Dropdown Styling --- */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background-color: transparent;
    padding-left: 1.5rem;

    /* Reset the hover animations for mobile */
    opacity: 0;
    visibility: hidden;
    height: 0;
    transform: none;
    overflow: hidden;
    transition:
      height 0.3s ease,
      opacity 0.3s ease;
  }

  /* When JS adds the .active class, reveal the menu */
  .dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    height: auto;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .service-content h2 {
    font-size: 1.2rem;
  }

  .regional-cards-wrapper {
    grid-template-columns: 1fr;
  }

  .regional-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .card-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .coverage-card {
    width: 100%;
    justify-content: center;
  }

  .contact-text h2 {
    font-size: 1rem;
    margin-bottom: 1px;
  }

  .contact-section {
    padding: 20px 0 5px;
  }

  .post-header h1 {
    font-size: 1.8rem;
  }
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 968px) {
  h1 {
    font-size: 42px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  /* Mobile Nav Active State */
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    margin-top: 15px;
  }
}
