/* Font Face Definitions for Lato */
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato/Lato-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato/Lato-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato/Lato-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato/Lato-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato/Lato-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato/Lato-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}

/* Custom Properties / Design Tokens */
:root {
  --color-primary: #2a7b71; /* Primary Green/Teal */
  --color-primary-light: #2a7b71; /* Primary Green/Teal */
  --color-primary-dark: #1b534d; /* Darker version for headings */
  --color-accent: #dbad00; /* Accent Gold */
  --color-accent-hover: #bda000; /* Hover Accent Gold */
  --color-text-main: #2c3e3b; /* Dark Charcoal with hint of green */
  --color-text-light: #353535; /* Light Muted Teal/Grey */
  --color-text-dark: #212121;
  --color-dark-green: #08534a; /* Dark Green*/
  --color-bg-light: #f3f1ea; /* Light Yellow Background */
  --color-bg-white: #ffffff; /* Pure White */
  --color-accent-green: #1e4535;
  --color-divider: rgba(42, 123, 113, 0.2);
  --font-sans: "Lato", "Helvetica Neue", Arial, sans-serif;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 8px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;

  /* Responsive Font Sizes */
  --font-size-h1: 56px;
  --font-size-h2: 48px;
  --font-size-h3: 40px;
  --font-size-h4: 32px;
  --font-size-h5: 24px;
  --font-size-h6: 16px;
  --font-size-body: 16px;
}

/* Responsive typography variables for Tablet */
@media (max-width: 991px) {
  :root {
    --font-size-h1: 42px;
    --font-size-h2: 36px;
    --font-size-h3: 30px;
    --font-size-h4: 26px;
    --font-size-h5: 20px;
  }
}

/* Responsive typography variables for Mobile */
@media (max-width: 575px) {
  :root {
    --font-size-h1: 32px;
    --font-size-h2: 28px;
    --font-size-h3: 24px;
    --font-size-h4: 20px;
    --font-size-h5: 18px;
    --font-size-h6: 15px;
  }
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-body);
  color: var(--color-text-main);
  background-color: var(--color-bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 123px; /* Offset for fixed top header and announcement bar (85px + 38px) */
  transition: padding-top 0.3s ease; /* Smooth transition when announcement bar hides */
}

/* Headings base setup */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-primary-dark);
}

h1,
.h1 {
  font-size: var(--font-size-h1);
}
h2,
.h2 {
  font-size: var(--font-size-h2);
}
h3,
.h3 {
  font-size: var(--font-size-h3);
}
h4,
.h4 {
  font-size: var(--font-size-h4);
}
h5,
.h5 {
  font-size: var(--font-size-h5);
}
h6,
.h6 {
  font-size: var(--font-size-h6);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  width: 100%;
  height: auto;
  display: block;
}

/* Announcement Bar Styles */
.announcement-bar {
  background-color: var(--color-primary); /* #2a7b71 */
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  height: 38px;
  transition:
    height 0.3s ease,
    opacity 0.3s ease,
    margin-top 0.3s ease;
  overflow: hidden;
  position: relative;
  z-index: 1001; /* Higher than header */
}

.announcement-bar img.announcement-icon {
  filter: brightness(0) invert(1) !important;
  display: inline-block;
  vertical-align: middle;
  max-width: 12px;
}

.announcement-left span {
  opacity: 0.9;
}

.announcement-right a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-fast);
}

.announcement-right a:hover {
  opacity: 1;
}

/* Scroll-based hiding behavior: announcement bar collapses, body adjusts smoothly */
body.scrolled .announcement-bar {
  height: 0;
  opacity: 0;
  pointer-events: none; /* Prevent accidental interactions while collapsed */
}

/* When scrolled, body top padding reduces to just the sticky header height */
body.scrolled {
  padding-top: 85px;
}

/* Responsive header adjustments for Medium Desktops / Tablet Landscape (992px to 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  body {
    padding-top: 108px;
  }
  body.scrolled {
    padding-top: 70px;
  }
  .site-header {
    height: 70px;
  }
  .logo-link {
    width: 210px !important;
    height: 42px !important;
  }
  .logo-link img {
    max-height: 50px !important;
    width: auto !important;
  }
  .nav-list {
    gap: 10px !important;
  }
  .nav-link {
    font-size: 13px !important;
    padding: 6px 0 !important;
    white-space: nowrap !important;
  }
  .dropdown-toggle::after {
    margin-left: 3px !important;
    width: 8px !important;
    height: 6px !important;
  }
  .header-cta {
    padding: 8px 14px !important;
    font-size: 12px !important;
    white-space: nowrap !important;
    gap: 5px !important;
  }
  .header-cta img {
    width: 16px !important;
    height: 16px !important;
  }
}

/* Responsive header adjustments for Mobile & Tablets (< 992px) */
@media (max-width: 991.98px) {
  body {
    padding-top: 106px;
  }
  body.scrolled {
    padding-top: 68px;
  }
  .site-header {
    height: 68px;
  }
  .logo-link {
    width: 190px !important;
    height: 40px !important;
  }
  .logo-link img {
    max-height: 45px !important;
    width: auto !important;
  }
  .mobile-menu-toggle {
    padding: 4px;
  }
}

/* Responsive announcement bar & header adjustments for Small Mobile (< 576px) */
@media (max-width: 575.98px) {
  body {
    padding-top: 98px;
  }
  body.scrolled {
    padding-top: 62px;
  }
  .site-header {
    height: 62px;
  }
  .logo-link {
    width: 160px !important;
    height: 35px !important;
  }
  .logo-link img {
    max-height: 40px !important;
    width: auto !important;
  }
  .announcement-bar {
    height: 36px;
  }
}

/* Responsive announcement bar styles */
@media (max-width: 767px) {
  .announcement-right {
    display: none !important;
  }
  .announcement-left {
    justify-content: center;
    width: 100%;
    font-size: 11px;
  }
}

/* Header Navigation Wrapper: fixed to top, GPU-accelerated to avoid jerk */
.header-navigation-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--color-bg-white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
  will-change: transform; /* GPU compositing layer - prevents layout reflow */
}

/* Header Styles */
.site-header {
  background-color: var(--color-bg-white);
  position: relative;
  z-index: 1000;
  height: 85px;
}

.header-container {
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  height: 50px;
  width: 280px;
}
.logo-link img {
  max-height: 70px;
}
.main-nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
  margin: 0;
  padding: 0;
  height: 100%;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 14px;
  font-weight: 700;
  color: #212121;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary) !important;
}

/* Replace default Bootstrap dropdown caret with custom SVG icon */
.dropdown-toggle::after {
  display: inline-block;
  content: "" !important;
  width: 10px;
  height: 7px;
  border: none !important;
  background-image: url("../img/icons/dropdown.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-left: 6px;
  vertical-align: middle;
  transition: transform var(--transition-fast);
}

/* Rotate caret when open or hovered (Desktop) */
.main-nav .nav-item:hover .dropdown-toggle::after,
.main-nav .dropdown.show .dropdown-toggle::after,
.main-nav .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.nav-link svg {
  fill: currentColor;
  transition: transform var(--transition-fast);
}

.nav-item:hover .nav-link svg {
  transform: translateY(2px);
}

/* Simple Dropdown Styles */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--color-bg-white);
  min-width: 200px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: var(--border-radius-md);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 1001;
  border: unset;
}

/* .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background-color: var(--color-bg-white);
} */

/* Show dropdown when active on desktop (hover and click states managed by jQuery sync) */
.main-nav .dropdown-menu.show {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Ensure centering alignment does not shift when Popper static state is active */
.main-nav .dropdown-menu[data-bs-popper="static"] {
  left: 50% !important;
  transform: translateX(-50%) translateY(0) !important;
}

.dropdown-item a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary-dark);
}
.dropdown-item:focus,
.dropdown-item:hover {
  background-color: unset;
}
.dropdown-item a:hover {
  /* background-color: var(--color-bg-light); */
  color: var(--color-primary-light);
}

/* Header Button */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  padding: 10px 20px;
  border-radius: var(--border-radius-sm);
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: 0 3px 6px rgba(6, 78, 64, 0.15);
}

.header-cta:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-1px);
  box-shadow: 0 5px 12px rgba(6, 78, 64, 0.25);
}

.header-cta img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* Mobile Menu Toggle button */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  padding: 5px;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: var(--color-bg-light);
  padding-top: 70px;
  overflow: hidden;
}

/* Soft Background Shapes */
.hero-bg-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-bg-blobs .circle-1 {
  position: absolute;
  top: -25%;
  left: -12%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: #2a7b71;
  opacity: 0.05;
  animation: bottomLeftToCenter 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-bg-blobs .circle-2 {
  position: absolute;
  top: 15%;
  left: 1%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: #2a7b71;
  opacity: 0.05;
  animation: slideBottomIn 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-bg-blobs .circle-3 {
  position: absolute;
  top: -12%;
  right: -10%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: #2a7b71;
  opacity: 0.05;
}

.hero-bg-blobs .circle-4 {
  position: absolute;
  top: -7%;
  right: 6%;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: #2a7b71;
  opacity: 0.05;
  animation: TopLeftToCenter 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-bg-blobs .circle-5 {
  position: absolute;
  bottom: -30%;
  right: -6%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: #2a7b71;
  opacity: 0.05;
  animation: HeroBgCircle5 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-bg-blobs .circle-6 {
  position: absolute;
  bottom: -30%;
  right: 1%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: #2a7b71;
  opacity: 0.05;
  animation: HeroBgCircle6 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Keyframe Animation: Scale, Opacity & Subtle Float */
@keyframes blobPulse {
  0% {
    transform: scale(0.6) translate(0, 0);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.05) translate(15px, -10px);
    opacity: 0.7;
  }
  100% {
    transform: scale(1) translate(-10px, 15px);
    opacity: 0.5;
  }
}
.hero-container {
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero Images Area */
.hero-images-wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  padding-left: 20px;
}

.hero-img-card {
  border-top-left-radius: var(--border-radius-lg);
  border-top-right-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-normal);
}

.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-unroll 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.hero-img-card.left {
  width: 235px;
  height: 480px;
  z-index: 2;
}

.hero-img-card.right {
  width: 215px;
  height: 410px;
  margin-top: auto;
  z-index: 3;
}

@keyframes hero-unroll {
  0% {
    clip-path: inset(0 100% 0 0);
    transform: translateX(-20px);
  }
  100% {
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
  }
}

/* Hero Content Area */
.hero-content {
  padding-left: 20px;
}

.hero-heading {
  font-size: var(--font-size-h1);
  font-weight: 600;
  color: var(--color-primary-dark);
  line-height: 1.05;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.hero-heading em {
  font-style: italic;
  font-weight: 700;
  letter-spacing: -1%;
}

.hero-text {
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: 35px;
  max-width: 400px;
  font-weight: 400;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-accent);
  color: var(--color-primary-dark);
  padding: 14px 28px;
  border-radius: var(--border-radius-sm);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(216, 160, 5, 0.2);
  transition: all var(--transition-fast);
}

.hero-btn:hover {
  background-color: var(--color-accent-hover);
  color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(216, 160, 5, 0.35);
}

.hero-btn svg,
.hero-btn img {
  transition: transform var(--transition-fast);
  width: 18px;
  object-fit: contain;
}

.hero-btn:hover svg,
.hero-btn:hover img {
  transform: translateX(4px);
}

/* Bottom Service Ribbon */
.service-ribbon {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  padding: 18px 0;
  position: relative;
  z-index: 10;
}

/* Infinite CSS Ribbon Marquee */
.ribbon-marquee-container {
  overflow: hidden;
  display: flex;
  width: 100%;
  user-select: none;
}

.ribbon-marquee-content {
  display: flex;
  flex-shrink: 0;
  animation: ribbon-marquee-scroll 28s linear infinite;
}

.ribbon-marquee-content:hover {
  animation-play-state: paused;
}

@keyframes ribbon-marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ribbon-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ribbon-item {
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.ribbon-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

/* Footer Styles */
.site-footer {
  background-color: var(--color-dark-green);
  color: var(--color-bg-white);
  padding-top: 45px;
  padding-bottom: 25px;
  font-size: 14px;
}

.footer-container {
  margin: 0 auto;
  padding: 0 20px;
}

/* Footer Top Section */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--color-bg-white);
  opacity: 0.9;
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast);
}

.footer-social-icon:hover {
  opacity: 1;
  transform: scale(1.1);
}

.footer-social-icon svg,
.footer-social-icon img {
  fill: currentColor;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Footer Subscription */
.footer-subscribe-form {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 520px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.footer-subscribe-input {
  flex-grow: 1;
  padding: 12px 18px;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--color-primary-dark);
  background-color: #ffffff;
}

.footer-subscribe-input::placeholder {
  font-style: italic;
  color: #8fa09d;
}

.footer-subscribe-button {
  background-color: var(--color-accent);
  color: var(--color-primary-dark);
  border: none;
  outline: none;
  padding: 0 24px;
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color var(--transition-fast);
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
}

.footer-subscribe-button:hover {
  background-color: var(--color-accent-hover);
}

.footer-subscribe-button svg,
.footer-subscribe-button img {
  transition: transform var(--transition-fast);
}

.footer-subscribe-button:hover svg,
.footer-subscribe-button:hover img {
  transform: translateX(3px);
}

/* Footer Bottom Layout (Custom Columns Grid) */
.footer-main-links {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr 0.8fr 1.3fr;
  gap: 30px;
  padding: 45px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-column.brand {
  padding-right: 15px;
}

.footer-brand-logo {
  width: 182px;
  height: auto;
  object-fit: contain;
}

.footer-link-heading {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 400;
  margin-bottom: 5px;
  font-style: italic;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-list a {
  color: var(--color-bg-white);
  font-weight: 400;
  font-size: 16px;
  transition: padding-left var(--transition-fast);
}

/* Contact Card Section */
.footer-contact-card {
  background-color: #eafeff21;
  border-radius: var(--border-radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.1);
}

.footer-contact-card-title {
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.4;
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-icon svg,
.footer-contact-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.footer-contact-text {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

/* Copyright Details */
.footer-copyright {
  text-align: center;
  padding-top: 25px;
  font-size: 11.5px;
  font-weight: 300;
  opacity: 0.7;
  letter-spacing: 0.2px;
}

.footer-copyright em {
  font-style: italic;
}

/* Responsive Custom Grid Rules */
@media (max-width: 991px) {
  .footer-main-links {
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 30px;
  }

  .footer-column.brand {
    grid-column: span 3;
    text-align: center;
    align-items: center;
    padding-right: 0;
  }
  .footer-subscribe-form {
    max-width: 400px;
  }
  .footer-column.contact {
    grid-column: span 3;
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-subscribe-form {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .footer-top {
    align-items: center;
    text-align: center;
  }

  .footer-social {
    align-items: center;
  }

  .footer-social-links {
    justify-content: center;
  }

  .footer-main-links {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-column {
    align-items: center;
    text-align: center;
  }

  .footer-column.brand {
    grid-column: span 1;
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }

  .footer-link-list {
    align-items: center;
  }

  .footer-column.contact {
    grid-column: span 1;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    width: 100%;
  }

  .footer-contact-card {
    width: 100%;
  }

  .footer-contact-item {
    align-self: center;
    text-align: left;
  }
}

/* Mobile Sidebar Custom Styles */
#mobileSidebar {
  z-index: 1050 !important; /* Above header */
}

#sidebarBackdrop {
  z-index: 1040 !important;
}

#mobileSidebar .nav-link {
  font-size: 15px;
  color: #212121 !important;
  transition: var(--transition-fast);
}

#mobileSidebar .nav-link:hover,
#mobileSidebar .nav-link.active,
#mobileSidebar .nav-item.active-dropdown > .dropdown-toggle {
  color: var(--color-primary) !important;
}

#mobileSidebar .dropdown-menu {
  position: static !important;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  box-shadow: none !important;
  background-color: transparent !important;
  min-width: auto !important;
  border-radius: 0 !important;
  transition: none !important;
}

#mobileSidebar .dropdown-item {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-text-main) !important;
  padding: 6px 12px !important;
  background: none !important;
  display: block;
}

#mobileSidebar .dropdown-item:hover {
  color: var(--color-primary-light) !important;
  background-color: var(--color-bg-light) !important;
  border-radius: var(--border-radius-sm);
}

#mobileSidebar .dropdown-toggle::after {
  transition: transform var(--transition-fast);
}

#mobileSidebar .nav-item.active-dropdown .dropdown-toggle::after {
  transform: rotate(180deg) !important;
}

/* Responsive Image and Font Refinements */
@media (max-width: 991px) {
  .site-header {
    height: 75px;
  }

  .hero-images-wrapper {
    justify-content: center;
    padding-left: 0;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575px) {
  .hero-img-card.left {
    width: 170px;
    height: 350px;
  }

  .hero-img-card.right {
    width: 155px;
    height: 300px;
    margin-top: 40px;
  }
}

.about-section {
  background-color: var(--color-bg-light);
  /* border-radius: 120px 120px 0 0; */
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% + 950px);
  height: 100%;
  transform: translate(-50%, 0%);
  top: 0;
  left: 50%;
  background-color: #Fff;
  border-radius: 50% 50% 0 0;
}
.section-subtitle {
  font-size: 16px;
  color: var(--color-accent-green);
  line-height: 1.5;
  display: inline-block;
  font-weight: 500;
  font-family: var(--font-sans);
}

.section-title-h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  color: var(--color-text-dark);
  line-height: 1.125;
}

.section-title-h2 em {
  font-style: italic;
  font-weight: 600;
  color: var(--color-accent);
}

.section-description {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-light);
  max-width: 870px;
  font-weight: 400;
}

/* Leaves Positioning */
.about-bg-leaves {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.bg-leaf-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px !important;
  height: auto !important;
}

.bg-leaf-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px !important;
  height: auto !important;
}

.about-image-card img {
  border-radius: var(--border-radius-lg);
}

/* Accent Card */
.about-info-card {
  background-color: var(--color-primary);
  border-radius: var(--border-radius-lg);
  z-index: 2;
  padding: 35px 40px;
}
.about-info-card .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.about-info-card .circle-1 {
  position: absolute;
  top: -25%;
  right: -10%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background-color: #fff;
  z-index: 1;
  opacity: 0.05;
}
.about-info-card .circle-2 {
  position: absolute;
  top: 6%;
  right: 6%;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  background-color: #fff;
  z-index: 1;
  opacity: 0.05;
}

.about-info-card .circle-3 {
  position: absolute;
  bottom: -50%;
  left: 5%;
  width: 264px;
  height: 264px;
  border-radius: 50%;
  background-color: #fff;
  z-index: 1;
  opacity: 0.05;
}

.about-info-card .circle-4 {
  position: absolute;
  bottom: -50%;
  left: 18%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #fff;
  z-index: 1;
  opacity: 0.05;
}
.about-info-text {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 300;
}

.about-info-text em {
  font-weight: 700;
  font-style: italic;
}

.about-card-btn {
  background-color: #ffffff;
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
  border: none;
  outline: none;
}

.about-card-btn:hover {
  background-color: var(--color-bg-light);
  color: var(--color-primary-dark);
  transform: translateY(-1px);
}

.about-card-btn img {
  width: 18px;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.about-card-btn:hover img {
  transform: translateX(3px);
}

.card-bg-blob {
  bottom: -100px;
  right: -100px;
  pointer-events: none;
}

.card-bg-circle-2 {
  top: -50px;
  left: -50px;
  pointer-events: none;
}

/* Feature Cards */
.about-features-row {
  margin-top: -50px;
  position: relative;
  z-index: 5;
  max-width: 88%;
  margin-left: auto;
}

.about-feature-card {
  background-color: #f7f7f7;
  border: 1px solid #f4dca8;
  border-radius: 8px;
  /* box-shadow: 0 10px 30px rgba(27, 83, 77, 0.05); */
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(27, 83, 77, 0.1);
}

.feature-card-heading-wrap {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 12px;
}

.feature-card-heading-wrap img {
  width: 23px !important;
  height: 23px !important;
  object-fit: contain;
}

.feature-card-title {
  font-size: 20px;
  font-weight: 500;
  color: #212121;
}

.feature-card-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-light);
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .about-section {
    padding: 70px 0;
  }

  .section-title-h2 {
    font-size: var(--font-size-h2);
  }

  .about-info-text {
    font-size: 16px;
  }

  .about-features-row {
    margin-top: -30px;
    margin-left: unset;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .about-features-row {
    margin-top: 20px;
  }

  .about-feature-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 30px 20px !important;
    gap: 15px;
  }
}

@media (max-width: 575px) {
  .about-section {
    border-radius: 40px 40px 0 0;
    padding: 50px 0;
  }

  .section-title-h2 {
    font-size: var(--font-size-h3);
  }
  .section-subtitle {
    font-size: 14px;
  }
  .section-description {
    font-size: 14px;
  }
}

/* Services Section */
.services-section {
  background-color: var(--color-bg-light);
  padding: 80px 0;
}

.services-subtitle {
  font-size: 14px;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  font-weight: 700;
}

.services-title {
  font-size: var(--font-size-h2);
  color: var(--color-primary-dark);
  font-weight: 600;
  line-height: 1.2;
}

.services-title em {
  font-style: italic;
  font-weight: 700;
  color: var(--color-accent);
}

.service-card {
  background-color: #ffffff;
  border: 1px solid rgba(27, 83, 77, 0.05);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--hover-bg-img);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -2;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(8, 83, 74, 0.72); /* #08534A with opacity 72% */
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.service-card > * {
  position: relative;
  z-index: 2;
}

/* Background image assignments */
.service-card-sil {
  --hover-bg-img: url("../img/home/SIL.webp");
}
.service-card-sta {
  --hover-bg-img: url("../img/main-images/One Door Jan 22_-3.webp");
}
.service-card-mta {
  --hover-bg-img: url("../img/main-images/One Door Jan 22_-4.webp");
}
.service-card-hospital {
  --hover-bg-img: url("../img/main-images/One Door Jan 22_-5y.webp");
}
.service-card-forensic {
  --hover-bg-img: url("../img/main-images/One Door Jan 22_-6.webp");
}
.service-card-nursing {
  --hover-bg-img: url("../img/main-images/One Door Jan 22_-7.webp");
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(27, 83, 77, 0.12);
}

.service-card:hover::before,
.service-card:hover::after {
  opacity: 1;
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background-color: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.service-icon-box img {
  width: 36px !important;
  height: 36px !important;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.service-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #212121;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.service-card-text {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.service-card-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color var(--transition-fast);
}

.service-card-link:hover {
  color: var(--color-primary-dark);
}

.service-arrow-icon {
  width: 16px !important;
  height: 16px !important;
  display: inline-block;
  object-fit: contain;
  transition:
    transform var(--transition-fast),
    filter var(--transition-fast);
}

.service-card-link:hover .service-arrow-icon {
  transform: translateX(4px);
}

/* Hover content state color changes */
.service-card:hover .service-card-title {
  color: #ffffff !important;
}

.service-card:hover .service-card-text {
  color: rgba(255, 255, 255, 0.9) !important;
}

.service-card:hover .service-card-link {
  color: #ffffff !important;
}

.service-card:hover .service-arrow-icon {
  filter: brightness(0) invert(1) !important;
}

.service-card:hover .service-icon-box {
  background-color: #ffffff !important;
}

.service-card:hover .service-icon-box img {
  /* Convert teal SVG to gold #d4af37 */
  filter: invert(72%) sepia(59%) saturate(579%) hue-rotate(5deg) brightness(96%)
    contrast(89%) !important;
}

@media (max-width: 991px) {
  .services-section {
    padding: 60px 0;
  }

  .services-title {
    font-size: var(--font-size-h3);
  }
}

@media (max-width: 575px) {
  .services-section {
    padding: 50px 0;
  }

  .service-card {
    padding: 24px !important;
  }
}

/* ==========================================
   SIL Section
   ========================================== */
.sil-section {
  background: linear-gradient(107.23deg, #04231b 1.88%, #357d66 95.8%);
  padding-top: 73px;
}

.sil-subtitle {
  font-size: 16px;
  color: var(--color-bg-white);
  font-weight: 500;
}

.sil-title {
  font-size: var(--font-size-h2);
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
}

.sil-title em {
  font-style: italic;
  font-weight: 700;
  color: var(--color-accent);
}

.sil-text {
  font-size: 16px;
  line-height: 1.65;
  color: #e0f0ee;
}

.sil-btn {
  color: var(--color-primary) !important;
  font-size: 16px;
  font-weight: 600;
  padding: 9px 24px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

.sil-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  background-color: #ffffff !important;
}

.sil-arrow-icon {
  width: 16px !important;
  height: 16px !important;
  display: inline-block;
  object-fit: contain;
}
.sil-section .section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.sil-section .section-bg .circle-1 {
  position: absolute;
  top: -4%;
  right: -4%;
  width: 486px;
  height: 486px;
  border-radius: 50%;
  background-color: #fff;
  z-index: 1;
  opacity: 0.05;
}
.sil-section .section-bg .circle-2 {
  position: absolute;
  top: 25%;
  right: 6%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background-color: #fff;
  z-index: 1;
  opacity: 0.05;
}
.sil-section .section-bg .circle-3 {
  position: absolute;
  bottom: -20%;
  left: 3%;
  width: 245px;
  height: 245px;
  border-radius: 50%;
  background-color: #fff;
  z-index: 1;
  opacity: 0.05;
}

.sil-section .section-bg .circle-4 {
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 410px;
  height: 410px;
  border-radius: 50%;
  background-color: #fff;
  z-index: 1;
  opacity: 0.05;
}
.sil-section .section-bg.reveal-visible .circle-1 {
  animation: bottomRightToCenter 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.sil-section .section-bg.reveal-visible .circle-2 {
  animation: bottomRightToCenter 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.sil-section .section-bg.reveal-visible .circle-3 {
  animation: bottomLeftToCenter 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.sil-section .section-bg.reveal-visible .circle-4 {
  animation: bottomLeftToCenter 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.sil-highlight-card {
  background-color: #fefcf6;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.highlight-title {
  font-weight: 600;
  color: #212121;
}

.sil-highlight-card li {
  font-size: 16px;
  color: #212121;
  font-weight: 400;
}

.bullet-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* SIL absolute background image — desktop only */
.sil-image-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 60%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.sil-bg-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: bottom right;
  display: block;
}

/* ==========================================
   Testimonial Section
   ========================================== */
.testimonial-section {
  padding: 80px 0 100px 0;
}

/* Static image – never changes */
.testimonial-image-card {
  width: 100%;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.testimonial-static-img {
  width: 100% !important;
  height: 440px !important;
  object-fit: cover !important;
  display: block;
}

/* Slider row: [arrow] [quote card] [arrow] */
.testimonial-slider-row {
  gap: 24px;
}

/* Quote card wraps the dots column + slick slider */
.testimonial-quote-wrap {
  position: relative;
  min-width: 0;
  margin-top: -60px;
  z-index: 10;
}

/* The gold offset block behind the white card */
.testimonial-quote-wrap::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: -10px;
  bottom: -10px;
  background-color: var(--color-accent);
  border-radius: 8px 8px 70px 8px; /* bottom-right 70px as per design */
  z-index: -1;
  pointer-events: none;
}

/* The white card that overlaps the image */
.testimonial-quote-card {
  position: relative;
  background: #ffffff;
  border-radius: 8px 8px 70px 8px; /* bottom-right 70px as per design */
  box-shadow: 0 15px 45px rgba(27, 83, 77, 0.12);
  z-index: 2;
  overflow: hidden;
  min-height: 160px;
}

/* Dots column on the left inside the card */
.testimonial-dots-col {
  width: 44px;
  background: transparent;
  padding: 16px 10px;
}

.testimonial-slick-dots-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Vertical dot list override */
.testimonial-quote-card .slick-dots,
.testimonial-quote-card .testimonial-slick-dots {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 15px !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
}

.testimonial-quote-card .slick-dots li,
.testimonial-quote-card .testimonial-slick-dots li {
  display: block !important;
  margin: 0 !important;
  position: relative !important;
  width: 22px !important;
  height: 22px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.testimonial-quote-card .slick-dots li button,
.testimonial-quote-card .testimonial-slick-dots li button {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  border: none !important;
  background-color: var(--color-accent) !important;
  padding: 0 !important;
  font-size: 0 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  position: relative !important;
  display: block !important;
}

/* Hide Slick's default ::before pseudo-element dot characters! */
.testimonial-quote-card .slick-dots li button::before,
.testimonial-quote-card .testimonial-slick-dots li button::before {
  display: none !important;
}

/* Active dot gets an outer ring */
.testimonial-quote-card .slick-dots li.slick-active::after,
.testimonial-quote-card .testimonial-slick-dots li.slick-active::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--color-accent) !important;
  border-radius: 50% !important;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Slick container for quotes (inside card) */
.testimonial-slick-slider {
  min-width: 0;
  overflow: hidden;
}

/* Each quote slide */
.testimonial-slide-item {
  outline: none;
}

/* Quote icon */
.quote-icon-box {
  flex-shrink: 0;
}

.quote-svg-icon {
  width: 64px !important;
  height: 64px !important;
  object-fit: contain;
}

.testimonial-card-right {
  flex: 1;
  min-width: 0;
}

.testimonial-quote {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.6;
  color: #212121;
  font-style: italic;
  margin: 0;
}

/* User info */
.testimonial-user {
  margin-top: 16px;
}

.user-avatar-box {
  flex-shrink: 0;
}

.user-avatar-img {
  width: 40px !important;
  height: 40px !important;
  object-fit: cover;
}

.user-name-role {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.user-name-role em {
  font-style: normal;
  font-weight: 400;
  color: var(--color-text-light);
}

/* Nav arrows flanking the slider */
.slider-arrow {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  flex-shrink: 0;
}

.slider-arrow:hover {
  opacity: 0.7;
  transform: scale(1.05);
}

.testimonial-arrow-img {
  display: block;
  width: 33px !important;
  height: 15px !important;
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq-section {
  padding: 80px 0;
  background-color: #f8faf9;
}

.faq-title {
  font-size: var(--font-size-h2);
  color: var(--color-primary-dark);
  font-weight: 600;
}

.faq-title em {
  font-style: italic;
  font-weight: 700;
  color: var(--color-accent);
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid rgba(27, 83, 77, 0.05) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
  transition:
    border-color var(--transition-normal),
    box-shadow var(--transition-normal);
}

.faq-btn {
  background-color: transparent !important;
  color: #212121 !important;
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
  padding: 18px 40px;
  border: none !important;
  box-shadow: none !important;
}

.faq-btn::after {
  display: none !important;
}

.faq-icon-box::before {
  content: "+";
  font-size: 26px;
  color: var(--color-primary);
  line-height: 1;
  font-weight: 400;
  transition: color var(--transition-fast);
}

.faq-btn:not(.collapsed) .faq-icon-box::before {
  content: "×";
  color: var(--color-accent);
}

.faq-item:has(.faq-btn:not(.collapsed)) {
  border-color: #f4dca8 !important;
  box-shadow: 0 10px 25px rgba(27, 83, 77, 0.03);
}

.faq-body {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-text-light);
  padding: 0 79px 26px 66px;
}

/* ==========================================
   CTA Section
   ========================================== */
.cta-section {
  padding: 80px 0;
  background-color: var(--color-bg-light);
}

.cta-content-wrapper {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-subtitle {
  font-size: 16px;
  line-height: 25px;
  color: #1e4535;
  font-weight: 500;
  margin-bottom: 10px;
}

.cta-title {
  font-size: var(--font-size-h2);
  color: #212121;
  font-weight: 600;
  line-height: 1.2;
}

.cta-title em {
  font-style: italic;
  font-weight: 700;
  color: var(--color-accent);
}

.cta-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-light);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  font-size: 20px;
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.cta--contact-btn {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-teal-solid {
  background-color: var(--color-primary);
  color: #ffffff;
  border: 1px solid var(--color-primary);
}

.btn-teal-solid:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #ffffff;
}

.btn-teal-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.btn-teal-outline:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

.cta-arrow-icon {
  width: 16px !important;
  height: 16px !important;
  display: inline-block;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.btn-teal-outline:hover .cta-arrow-icon {
  transform: translateX(4px);
  filter: brightness(0) invert(1);
}

.cta-icon-white {
  width: 30px !important;
  height: 30px !important;
  display: inline-block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ==========================================
   Blog Section
   ========================================== */
.blog-section {
  padding: 80px 0;
}

.blog-subtitle {
  font-size: 16px;
  line-height: 25px;
  color: #1e4535;
  font-weight: 500;
  margin-bottom: 10px;
}

.blog-title {
  font-size: var(--font-size-h2);
  color: var(--color-primary-dark);
  font-weight: 600;
  line-height: 1.2;
}

.blog-title em {
  font-style: italic;
  font-weight: 700;
  color: var(--color-accent);
}

/* Custom Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: 4fr 3fr 3fr; /* Desktop default: 40%, 30%, 30% */
  gap: 30px;
  width: 100%;
}

.blog-card {
  display: flex;
  flex-direction: column; /* Desktop default: image on top, content on bottom */
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

.blog-card-img-wrapper {
  position: relative;
  overflow: hidden;
  flex: 0 0 42%; /* occupy 42% of card width for good balance */
  border-radius: 8px;
  min-height: 270px;
}

.blog-card-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card-content {
  flex: 1;
  padding: 12px 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: start;
  min-width: 0;
}

.blog-card-date {
  font-size: 14px;
  color: var(--color-text-light);
  font-weight: 500;
}

.blog-card-title {
  font-size: 16px; /* slightly smaller to fit row layout */
  font-weight: 600;
  color: #212121;
  line-height: 1.35;
  margin-top: 4px;
  margin-bottom: 12px;
  transition: color var(--transition-fast);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-featured .blog-card-title {
  font-size: 18px; /* slightly larger for featured card */
}

.blog-card:hover .blog-card-title {
  color: var(--color-primary);
}

.blog-card-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color var(--transition-fast);
}

.blog-arrow-icon {
  width: 16px !important;
  height: 16px !important;
  display: inline-block;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.blog-card-link:hover .blog-arrow-icon {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .testimonial-section,
  .faq-section,
  .cta-section,
  .blog-section {
    padding: 60px 0;
  }
  .sil-section {
    padding-top: 60px;
  }
  .sil-title,
  .faq-title,
  .cta-title,
  .blog-title {
    font-size: var(--font-size-h3);
  }

  .testimonial-static-img {
    height: 340px !important;
  }

  .testimonial-quote-wrap {
    margin-top: -50px;
  }

  .testimonial-quote-wrap::after {
    top: 8px;
    left: 8px;
    right: -8px;
    bottom: -8px;
  }

  .testimonial-quote {
    font-size: 17px;
  }

  /* Tablet custom blog grid layout */
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-card {
    flex-direction: row;
  }

  .blog-card-content {
    padding: 24px 0 24px 24px;
    justify-content: center;
  }

  .blog-card-img-wrapper {
    flex: 0 0 50%;
    border-radius: 8px;
  }
}

@media (max-width: 767px) {
  .testimonial-slider-row {
    gap: 8px;
  }

  .testimonial-static-img {
    height: 280px !important;
  }

  .testimonial-quote-wrap {
    margin-top: -40px;
  }

  .testimonial-quote-card {
    border-radius: 8px 8px 50px 8px;
  }

  .testimonial-quote-wrap::after {
    top: 6px;
    left: 6px;
    right: -6px;
    bottom: -6px;
    border-radius: 8px 8px 50px 8px;
  }

  .testimonial-quote {
    font-size: 16px;
  }

  .quote-svg-icon {
    width: 44px !important;
    height: 44px !important;
  }

  /* Mobile custom blog grid layout */
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-card {
    flex-direction: column;
  }

  .blog-card-content {
    padding: 24px 0 0 0;
    justify-content: start;
  }

  .blog-card-img-wrapper {
    flex: none;
    width: 100% !important;
    height: 220px !important;
    border-radius: 8px;
  }

  .blog-card-img {
    height: 100% !important;
  }
}

@media (max-width: 575px) {
  .testimonial-section,
  .faq-section,
  .cta-section,
  .blog-section {
    padding: 50px 0;
  }
  .sil-section {
    padding-top: 50px;
  }

  .testimonial-static-img {
    height: 240px !important;
  }

  .testimonial-quote-wrap {
    margin-top: -30px;
  }

  .testimonial-quote-card {
    border-radius: 8px 8px 40px 8px;
  }

  .testimonial-quote-wrap::after {
    top: 5px;
    left: 5px;
    right: -5px;
    bottom: -5px;
    border-radius: 8px 8px 40px 8px;
  }

  .testimonial-slider-row {
    gap: 6px;
  }

  .testimonial-arrow-img {
    width: 24px !important;
    height: 11px !important;
  }

  .quote-svg-icon {
    width: 36px !important;
    height: 36px !important;
  }

  .testimonial-dots-col {
    width: 34px;
  }
}

/* ==========================================
   About Page Styles
   ========================================== */

/* Hero Section */
.about-hero-section {
  height: 520px;
  position: relative;
  padding-bottom: 70px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-hero-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 83, 74, 0.8) 0%,
    rgba(0, 83, 74, 0.25) 60%,
    rgba(0, 83, 74, 0.05) 100%
  );
  z-index: 1;
}

.about-hero-heading {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.about-hero-heading em {
  font-style: italic;
  font-weight: 700;
  color: var(--color-accent);
}

/* Our Story Section */
.story-section {
  padding: 100px 0;
  background-color: var(--color-bg-white);
  position: relative;
}

.story-subtitle {
  font-size: 14px;
  color: var(--color-primary);
  letter-spacing: 1.5px;
  display: inline-block;
}

.story-title {
  font-size: var(--font-size-h2);
  font-weight: 600;
  color: var(--color-primary-dark);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.story-title em {
  font-style: italic;
  font-weight: 700;
  color: var(--color-accent);
}

.story-intro {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-light);
  max-width: 870px;
  font-weight: 400;
}

/* Decorative Left Background Elements */

.decor-leaf-1 {
  top: 20px;
  left: 50px;
  opacity: 0.14;
  transform: rotate(15deg);
}
.decor-leaf-2 {
  bottom: 30px;
  left: 90px;
  opacity: 0.16;
  transform: rotate(-10deg);
}

/* Overlapping Story Card Area */
.story-card-wrapper {
  margin-top: 50px;
  z-index: 2;
  position: relative;
}
.story-card-wrapper .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.story-card-wrapper .card-bg .circle-1 {
  position: absolute;
  top: -4%;
  right: -27%;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background-color: #fff;
  z-index: 1;
  opacity: 0.05;
}
.story-card-wrapper .card-bg .circle-2 {
  position: absolute;
  top: -30%;
  right: -40%;
  width: 264px;
  height: 264px;
  border-radius: 50%;
  background-color: #fff;
  z-index: 1;
  opacity: 0.05;
}
.story-card-wrapper .card-bg .circle-3 {
  position: absolute;
  bottom: -25%;
  left: -10%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background-color: #fff;
  z-index: 1;
  opacity: 0.05;
}
.story-card-wrapper .card-bg .circle-4 {
  position: absolute;
  bottom: -12%;
  left: 6%;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background-color: #fff;
  z-index: 1;
  opacity: 0.05;
}

.story-teal-card {
  /* background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); */
  /* border-radius: var(--border-radius-lg); */
  padding: 53px 50px;
  box-shadow: 0 15px 40px rgba(8, 83, 74, 0.15);
  z-index: 2;
  position: relative;
}
.story-teal-card::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
  border-radius: var(--border-radius-lg);
}

.story-card-text {
  font-size: 17px;
  line-height: 1.65;
  font-weight: 300;
  opacity: 0.95;
}

.story-img-col {
  z-index: 3;
}

.story-image-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
}

.story-overlap-image {
  max-height: 480px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
  display: block;
  margin-left: auto;
  transition: transform var(--transition-normal);
}

.story-overlap-image:hover {
  transform: translateY(-5px);
}

/* Gallery Section */
.about-gallery-section {
  padding: 85px 0;
}

.gallery-img-card {
  height: 380px;
  position: relative;
  background-color: #eaeaea;
}

.gallery-img-card:hover .gallery-zoom-img {
  transform: scale(1.05);
}

/* Responsive Media Queries for About page */
@media (min-width: 992px) {
  .story-overlap-image {
    max-height: 520px;
    width: auto;
    display: block;
    margin-left: auto;
    margin-bottom: -1px;
    position: relative;
    z-index: 10;
  }

  .story-image-wrap {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }
}

@media (max-width: 991px) {
  .about-hero-section {
    height: 400px;
    padding-bottom: 50px;
  }

  .about-hero-heading {
    font-size: 40px;
  }

  .story-section {
    padding: 70px 0;
  }

  .story-teal-card {
    padding: 45px 35px;
  }

  .story-card-text {
    font-size: 16px;
  }

  .story-overlap-image {
    max-height: 400px;
    margin-top: 20px;
  }

  .gallery-img-card {
    height: 280px;
  }
}

@media (max-width: 575px) {
  .about-hero-section {
    height: 320px;
    padding-bottom: 40px;
  }

  .about-hero-heading {
    font-size: 28px;
  }

  .story-section {
    padding: 50px 0;
  }

  .story-teal-card {
    padding: 35px 25px;
  }

  .story-overlap-image {
    max-height: 300px;
  }

  .gallery-img-card {
    height: 220px;
  }
}

/* ==========================================
   About Page Extension Sections Styles
   ========================================== */

/* Story Gallery Marquee */
.gallery-marquee-container {
  overflow: hidden;
  width: 100%;
  display: flex;
  position: relative;
  padding: 30px 0 70px 0;
}

/* Gradient fade masks on left and right borders */
/* .gallery-marquee-container::before,
.gallery-marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}
.gallery-marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.gallery-marquee-container::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
} */

.gallery-marquee-track {
  display: flex;
  width: max-content;
}

.gallery-marquee-group {
  display: flex;
  animation: gallery-marquee-scroll 30s linear infinite;
  align-items: flex-start;
}

.gallery-marquee-track:hover .gallery-marquee-group {
  animation-play-state: paused;
}

.story-gallery-section .gallery-img-card {
  width: 380px;
  height: 270px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.gallery-marquee-group .gallery-img-card:nth-child(even) {
  margin-top: 40px;
}

.gallery-zoom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-img-card:hover .gallery-zoom-img {
  transform: scale(1.06);
}

@keyframes gallery-marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .story-gallery-section .gallery-img-card {
    width: 290px;
    height: 200px;
    border-radius: 12px;
  }
  .gallery-marquee-container::before,
  .gallery-marquee-container::after {
    width: 60px;
  }
}

/* Curved Leadership Section */
.leadership-section {
  background-color: #f6f5f0;
  border-radius: 120px 120px 0 0;
  margin-top: -60px;
  position: relative;
  z-index: 3;
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
@media (max-width: 991px) {
  .leadership-section {
    border-radius: 80px 80px 0 0;
    margin-top: -40px;
    padding-top: 60px !important;
  }
}
@media (max-width: 575px) {
  .leadership-section {
    border-radius: 50px 50px 0 0;
    margin-top: -25px;
    padding-top: 50px !important;
  }
}

.leadership-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--color-primary);
}
.leadership-title {
  font-family: var(--font-serif);
  font-size: 42px;
  color: var(--color-primary-dark);
  line-height: 1.25;
}
.leadership-title em {
  font-style: italic;
  color: var(--color-accent);
  font-weight: 400;
}
.leadership-intro {
  font-size: 16px;
  line-height: 1.6;
}

/* Leadership Grid Cards */
.leadership-card {
  cursor: pointer;
}
.leadership-img-wrapper {
  position: relative;
  aspect-ratio: 1 / 1.1;
  background-color: #eaeaea;
}
.leadership-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.leadership-card:hover .leadership-img {
  transform: scale(1.04);
}
.leadership-name {
  font-size: 24px;
  line-height: 1.25;
  color: var(--color-text-dark);
}
.leadership-role {
  font-size: 14px;
}

/* Overlay Arrow Button */
.card-arrow-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast);
  z-index: 10;
}
.card-arrow-btn svg {
  transition: transform var(--transition-fast);
}
.leadership-card:hover .card-arrow-btn {
  background-color: var(--color-primary);
}
.leadership-card:hover .card-arrow-btn svg {
  stroke: #ffffff;
  transform: translate(1px, -1px);
}

/* Leadership Modal */
.leadership-modal .modal-content {
  border-radius: 8px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}
.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background-color: #f0eceb;
  z-index: 1060;
  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast);
}
.modal-close-btn:hover {
  background-color: #e2dad8;
  transform: rotate(90deg);
}
.modal-img-container {
  aspect-ratio: 1 / 1;
  width: 100%;
  padding: 12px;
}
.modal-member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.modal-content-padding {
  padding: 45px !important;
  background-color: #fcfbfa;
}
@media (max-width: 575px) {
  .modal-content-padding {
    padding: 35px 25px !important;
  }
}
.modal-member-role {
  font-size: 13px;
  letter-spacing: 1.5px;
}
.modal-member-name {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--color-primary-dark);
}
.modal-member-bio {
  font-size: 15.5px;
  line-height: 1.6;
}
.modal-leaf-1-bg {
  bottom: 0;
  right: 15px;
}
.modal-leaf-2-bg {
  bottom: -25px;
  right: 120px;
  transform: scaleX(-1);
  max-width: 90px;
}
.modal-linkedin-link {
  transition: opacity var(--transition-fast);
}
.modal-linkedin-link:hover {
  opacity: 0.8;
}

/* Next Step Banner Section */
.next-step-section {
  min-height: 450px;
  position: relative;
  background-color: var(--color-primary-dark);
}
.next-step-overlay {
  background: linear-gradient(
    96.59deg,
    #04231b 3.92%,
    rgba(22, 61, 49, 0.84) 33.06%,
    rgba(53, 125, 102, 0) 73.97%
  );
  z-index: 1;
}
.next-step-title {
  font-family: var(--font-serif);
  font-size: 48px;
  line-height: 1.2;
  color: #ffffff;
}
.next-step-title em {
  font-style: italic;
  color: var(--color-accent);
  font-weight: 400;
}
.next-step-text {
  font-size: 17px;
  line-height: 1.65;
  max-width: 520px;
}
.next-step-btn {
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}
.btn-outline-white {
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: transparent;
}
.btn-outline-white:hover {
  background-color: #ffffff;
  color: var(--color-primary-dark);
}
@media (max-width: 991px) {
  .next-step-title {
    font-size: 38px;
  }
  .next-step-section {
    min-height: auto;
  }
}
@media (max-width: 575px) {
  .next-step-title {
    font-size: 30px;
  }
}

/* ==========================================
   Scroll Reveal Animation Styles
   ========================================== */
.reveal {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up {
  transform: translateY(50px);
}

.reveal-down {
  transform: translateY(-50px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-scale {
  transform: scale(0.95);
}

/* Active State triggered by JS Intersection Observer */
.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Respect user's preferences for reduced motion (Accessibility) */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.page_banner1 {
  min-height: 350px;
  background: linear-gradient(
    93.9deg,
    rgba(11, 34, 29, 0.63) 8.07%,
    rgba(11, 65, 51, 0.44) 91.93%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.page_banner1::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    93.9deg,
    rgba(11, 34, 29, 0.63) 8.07%,
    rgba(11, 65, 51, 0.44) 91.93%
  );
}
.page_banner1 .container {
  z-index: 2;
}

/* Our Approach Section Styling */
.our-approach {
  background-color: #ffffff;
}

.approach-img_wrap img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.our-approach-content .subheading {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-block;
  margin-bottom: 12px;
}

.our-approach-content .heading {
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 1.25;
  color: var(--color-primary-dark);
  font-weight: 700;
  margin-bottom: 24px;
}

.our-approach-content .heading em {
  font-style: italic;
  color: var(--color-accent);
  font-weight: 400;
}

.our-approach-content p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .our-approach-content {
    margin-top: 35px;
  }
  .our-approach-content .heading {
    font-size: 32px;
  }
}

/* Preparing for I-CAN Section */
.ican-section {
  background-color: var(--color-bg-white);
  padding: 80px 0;
}

.ican-subtitle {
  font-size: 14px;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  font-weight: 700;
  /*text-transform: uppercase;*/
}

.ican-title {
  font-size: var(--font-size-h2);
  color: var(--color-primary-dark);
  font-weight: 700;
  line-height: 1.2;
}

.ican-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
}

.ican-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-light);
  font-weight: 400;
}

.ican-card {
  background-color: var(--color-bg-light);
  border: none;
  border-radius: var(--border-radius-lg);
  padding: 50px 30px 40px;
  position: relative;
  margin-top: 25px; /* Space for overlapping badge */
  height: calc(100% - 25px);
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

.ican-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(27, 83, 77, 0.08);
}

.ican-card-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background-color: var(--color-primary-dark);
  color: var(--color-bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  border-radius: var(--border-radius-sm);
}

.ican-card-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.ican-card-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin: 0;
}

@media (max-width: 991px) {
  .ican-section {
    padding: 60px 0;
  }
  .ican-title {
    font-size: var(--font-size-h3);
  }
  .ican-card {
    padding: 40px 20px 30px;
  }
}

@media (max-width: 575px) {
  .ican-section {
    padding: 50px 0;
  }
  .ican-card-title {
    font-size: 20px;
  }
}

/* Services CTA Section styling */

.services-cta-banner {
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  border-radius: 8px;
  overflow: hidden;
  padding: 65px 80px;
  box-shadow: 0 10px 30px rgba(8, 83, 74, 0.05);
}
.services-grid > .service-item:nth-child(3n-1) {
  transform: translateY(-24px);
}
/* Linear gradient overlay for desktop to blend image into background */
.services-cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    279.26deg,
    rgba(2, 37, 28, 0.74) 5.18%,
    rgba(32, 93, 76, 0.66) 45.72%,
    rgba(53, 125, 102, 0) 67.12%
  );

  z-index: 1;
}

.services-cta-banner > .row {
  position: relative;
  z-index: 2;
}

.services-cta-title {
  font-size: var(--font-size-h2);
  font-weight: 600;
  color: var(--color-bg-white);
  line-height: 1.25;
}

.services-cta-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--color-accent);
}

.services-cta-desc {
  font-size: 16px;
  line-height: 1.6;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.95);
}

/* Buttons Styling */
.services-cta-btn-phone {
  background-color: var(--color-bg-white);
  color: var(--color-primary-dark);
  font-size: 18px;
  font-weight: 700;
  height: 52px;
  padding: 0 35px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.services-cta-btn-phone img {
  width: 22px !important;
  height: 22px !important;
  object-fit: contain;
  display: inline-block;
}

.services-cta-btn-phone:hover {
  background-color: var(--color-bg-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
  color: var(--color-primary-dark) !important;
}

.services-cta-btn-contact {
  background-color: transparent;
  color: var(--color-bg-white);
  font-size: 16px;
  font-weight: 700;
  height: 52px;
  padding: 0 35px;
  border-radius: 8px;
  border: 1.5px solid var(--color-bg-white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.services-cta-btn-contact:hover {
  background-color: var(--color-bg-white);
  color: var(--color-primary-dark) !important;
  transform: translateY(-2px);
}

.services-cta-arrow-icon {
  width: 16px !important;
  height: 16px !important;
  display: inline-block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition:
    transform var(--transition-fast),
    filter var(--transition-fast);
}

.services-cta-btn-contact:hover .services-cta-arrow-icon {
  transform: translateX(4px);
  filter: invert(19%) sepia(21%) saturate(3065%) hue-rotate(133deg)
    brightness(92%) contrast(92%); /* Convert to --color-primary-dark */
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .services-cta-banner {
    padding: 60px 30px;
  }
  .services-cta-banner::before {
    /* Vertical gradient overlay on mobile/tablet to ensure text legibility */
    background: linear-gradient(
      180deg,
      rgba(8, 83, 74, 0.45) 0%,
      rgba(8, 83, 74, 0.85) 60%,
      var(--color-dark-green) 100%
    );
  }
  .services-cta-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .services-grid > .service-item:nth-child(3n-1) {
    transform: translateY(0px);
  }
}

@media (max-width: 575px) {
  .services-cta-banner {
    padding: 40px 20px;
  }
  .services-cta-btn-phone,
  .services-cta-btn-contact {
    width: 100%;
    justify-content: center;
  }
}

/* Service Detail Hero Section */
.service-hero-section {
  min-height: 480px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 50px 0;
}

.service-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    93.9deg,
    rgba(11, 34, 29, 0.63) 8.07%,
    rgba(11, 65, 51, 0.44) 91.93%
  );
  z-index: 1;
}

.service-hero-back {
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--transition-fast);
  position: relative;
  z-index: 2;
}

.service-hero-back:hover {
  transform: translateX(-4px);
  color: var(--color-accent) !important;
}

.service-hero-back svg {
  transition: stroke var(--transition-fast);
}

.service-hero-back:hover svg {
  stroke: var(--color-accent);
}

.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.service-hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.service-hero-desc {
  font-size: 20px;
  line-height: 1.5;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991px) {
  .service-hero-section {
    min-height: 400px;
    padding: 40px 0;
  }
  .service-hero-title {
    font-size: 40px;
  }
  .service-hero-desc {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .service-hero-section {
    min-height: 350px;
    padding: 30px 0;
  }
  .service-hero-title {
    font-size: 32px;
  }
  .service-hero-desc {
    font-size: 16px;
  }
}

/* STA Info Section styling */
.sta-info-section {
  background-color: var(--color-bg-white);
}

.sta-info-img-wrap img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.sta-info-title {
  font-size: var(--font-size-h2);
  color: var(--color-primary-dark);
  font-weight: 700;
  line-height: 1.2;
}

.sta-info-title em {
  font-style: italic;
  font-weight: 400;
  color: #212121;
}

.sta-info-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-light);
  font-weight: 400;
}

.sta-info-card {
  background-color: var(--color-bg-light);
  border-radius: var(--border-radius-md);
}

.sta-info-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #212121;
}

.sta-info-card-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-light);
}

@media (max-width: 991px) {
  .sta-info-title {
    font-size: var(--font-size-h3);
  }
  .sta-info-card-title {
    font-size: 20px;
  }
}

/* STA Access Section styling */
.sta-access-section {
  background-color: var(--color-bg-light);
  border-radius: 120px 120px 0 0;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  margin-top: -30px; /* Overlap for smooth curve transition */
  z-index: 2;
}

.sta-access-title {
  font-size: var(--font-size-h2);
  color: #212121;
  font-weight: 700;
  line-height: 1.2;
}

.sta-access-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
}

.sta-access-subtitle {
  font-size: 16px;
  color: var(--color-text-light);
  font-weight: 500;
}

.sta-access-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sta-access-item {
  background-color: var(--color-bg-white);
  border-radius: var(--border-radius-md);
  padding: 24px;
  box-shadow: 0 4px 20px rgba(8, 83, 74, 0.03);
  display: flex;
  align-items: center;
  gap: 20px;
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

.sta-access-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(8, 83, 74, 0.06);
}

.sta-access-icon-box {
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.sta-access-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.sta-access-text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text-main);
  margin: 0;
}

.sta-access-img-wrap img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 991px) {
  .sta-access-section {
    border-radius: 60px 60px 0 0;
    padding: 70px 0;
    margin-top: -20px;
  }
  .sta-access-title {
    font-size: var(--font-size-h3);
  }
  .sta-access-item {
    padding: 20px;
    gap: 15px;
  }
}

@media (max-width: 575px) {
  .sta-access-section {
    border-radius: 40px 40px 0 0;
    padding: 50px 0;
    margin-top: -15px;
  }
}

/* STA Type Section styling */
.sta-type-section {
  background-color: var(--color-bg-white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.sta-type-decor-left {
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  width: 140px;
  height: auto;
  opacity: 0.8;
}

.sta-type-decor-right {
  position: absolute;
  right: 0;
  top: 15%;
  pointer-events: none;
  z-index: 1;
  width: 100px;
  height: auto;
  opacity: 0.8;
}

.sta-type-title {
  font-size: var(--font-size-h2);
  color: #212121;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0;
}

.sta-type-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
}

.sta-type-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.sta-type-section .description-col {
  margin-left: 50%;
}
@media (max-width: 991px) {
  .sta-type-section {
    padding: 60px 0;
  }
  .sta-type-title {
    font-size: var(--font-size-h3);
  }
  .sta-type-decor-left {
    width: 100px;
  }
  .sta-type-decor-right {
    width: 70px;
  }
  .sta-type-section .description-col {
    margin-left: 0;
  }
}

.slide-top-in {
  animation: slideTopIn 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.slide-top-out {
  animation: slideTopOut 0.4s cubic-bezier(0.5, 0, 0.75, 0) forwards;
}

@keyframes slideTopIn {
  0% {
    transform: translateY(-200px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes slideTopOut {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-200px);
  }
}

@keyframes slideBottomIn {
  0% {
    transform: translateY(200px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes slideBottomOut {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(200px);
  }
}

@keyframes bottomLeftToCenter {
  0% {
    transform: translate(-200px, 200px) scale(0.7);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes bottomRightToCenter {
  0% {
    transform: translate(200px, 200px) scale(0.7);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes HeroBgCircle5 {
  0% {
    transform: translate(50px, 50px) scale(0.7);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes HeroBgCircle6 {
  0% {
    transform: translate(0, -20px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes TopLeftToCenter {
  0% {
    transform: translate(-200px, -200px) scale(0.7);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* ==========================================================================
   VACANCIES PAGE STYLES
   ========================================================================== */

.vacancy-hero-section {
  position: relative;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 100px;
}

.vacancy-hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(16, 44, 40, 0.72) 0%,
    rgba(14, 38, 35, 0.78) 100%
  );
}

.vacancy-hero-title {
  font-family: var(--font-sans);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

@media (max-width: 768px) {
  .vacancy-hero-section {
    min-height: 240px;
    padding: 60px 0 80px;
  }
  .vacancy-hero-title {
    font-size: 34px;
  }
}

/* Overlapping Filter Card */
.vacancy-filter-wrapper {
  margin-top: -45px;
  position: relative;
  z-index: 10;
}

.vacancy-filter-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  padding: 18px;
}

.vacancy-filter-card .form-select {
  height: 46px;
  border: 1px solid #d8e2e1;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  background-color: #ffffff;
  box-shadow: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23334155' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-size: 12px 12px;
  background-position: right 14px center;
  padding-right: 32px;
  padding-left: 14px;
}

.vacancy-filter-card .form-select:focus {
  border-color: #20726a;
  box-shadow: 0 0 0 3px rgba(32, 114, 106, 0.15);
}

.vacancy-filter-card .btn-search {
  height: 46px;
  background-color: #20726a;
  color: #ffffff;
  border-radius: 6px;
  font-size: 14.5px;
  font-weight: 600;
  border: none;
  transition: all 0.25s ease;
}

.vacancy-filter-card .btn-search:hover {
  background-color: #175751;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(32, 114, 106, 0.25);
}

/* Vacancy Listing Grid Section */
.vacancy-listings-section {
  background-color: #f6f8f8;
  padding-top: 55px;
  padding-bottom: 75px;
}

.vacancy-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.vacancy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
}

.vacancy-card-img-wrap {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background-color: #eaf0f0;
}

.vacancy-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vacancy-card:hover .vacancy-card-img {
  transform: scale(1.04);
}

.vacancy-location-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background-color: #20726a;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.vacancy-location-badge svg,
.vacancy-location-badge img {
  width: 12px;
  height: 14px;
}

.vacancy-card-body {
  padding: 24px 24px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.vacancy-card-title {
  font-size: 21px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 14px;
  line-height: 1.35;
}

/* Tag Badges */
.vacancy-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.badge-tag {
  font-size: 12.5px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 6px;
  display: inline-block;
  white-space: nowrap;
}

.badge-sda {
  background-color: #fffdf0;
  border: 1px solid #fedc71;
  color: #a37a00;
}

.badge-teal {
  background-color: #e6f5f3;
  border: 1px solid #b2e3dd;
  color: #21726a;
}

.badge-grey {
  background-color: #eaf0f4;
  border: 1px solid #cfdce3;
  color: #526874;
}

/* Features Meta Row */
.vacancy-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  margin-bottom: 20px;
  min-height: 24px;
}

.vacancy-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.vacancy-meta-item img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* Card CTA Button */
.btn-vacancy-details {
  width: 100%;
  height: 46px;
  background-color: #20726a;
  color: #ffffff;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: none;
  transition: all 0.25s ease;
}

.btn-vacancy-details:hover {
  background-color: #175751;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(32, 114, 106, 0.25);
}

/* Pagination */
.vacancy-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.pagination-btn.arrow-btn {
  background-color: #edf5f4;
  color: #20726a;
}

.pagination-btn.arrow-btn:hover {
  background-color: #dbece9;
  color: #175751;
}

.pagination-btn.number-btn {
  background-color: #ffffff;
  border: 1px solid #20726a;
  color: #20726a;
}

.pagination-btn.number-btn.active,
.pagination-btn.number-btn:hover {
  background-color: #20726a;
  color: #ffffff;
  border-color: #20726a;
}

/* ==========================================================================
   Blog Listing Page Styles (Pixel Perfect to Design)
   ========================================================================== */

/* Blog Hero Banner */
.blog-hero-section {
  min-height: 260px;
  padding: 70px 0;
  position: relative;
}

.blog-hero-overlay {
  background: linear-gradient(
    93.9deg,
    rgba(11, 34, 29, 0.63) 8.07%,
    rgba(11, 65, 51, 0.44) 91.93%
  );
}

.blog-hero-title {
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
}

/* Blog Content Main Section */
.blog-content-section {
  background-color: #f6f8f7;
}

/* Common Blog Meta Date */
.blog-meta-date {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: #6e7775;
  letter-spacing: 0.01em;
}

/* Featured Blog Section */
.blog-featured-card {
  padding: 0;
}

.blog-featured-img-wrap {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.blog-featured-img {
  border-radius: 8px;
  transition: transform 0.4s ease;
  aspect-ratio: 16 / 10.2;
  object-fit: cover;
}

.blog-featured-img-wrap:hover .blog-featured-img {
  transform: scale(1.03);
}

.blog-featured-title {
  font-family: var(--font-sans);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-featured-title a {
  color: #2b3533;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.blog-featured-title a:hover {
  color: var(--color-primary);
}

.blog-featured-excerpt {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.6;
  color: #556260;
}

/* Blog Card Link ("Learn More") */
.blog-learn-more-link {
  color: #2a7b71;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.blog-learn-more-link svg {
  transition: transform var(--transition-fast);
}

.blog-learn-more-link:hover {
  color: #1b534d;
}

.blog-learn-more-link:hover svg {
  transform: translateX(4px);
}

/* Blog Divider Line */
.blog-divider {
  border: 0;
  border-top: 1px solid #e1e7e5;
  opacity: 1;
}

/* Blog Grid Cards */
.blog-card {
  background: transparent;
  border: none;
}

.blog-card-img-wrap {
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.blog-card-img {
  border-radius: 8px;
  transition: transform 0.4s ease;
  aspect-ratio: 16 / 10.2;
  object-fit: cover;
}

.blog-card-img-wrap:hover .blog-card-img {
  transform: scale(1.035);
}

.blog-card-title {
  font-family: var(--font-sans);
  font-size: 17.5px;
  font-weight: 700;
  line-height: 1.4;
}

.blog-card-title a {
  color: #2b3533;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.blog-card-title a:hover {
  color: var(--color-primary);
}

/* Blog Pagination */
.blog-pagination-wrapper {
  margin-top: 10px;
}

.blog-page-nav,
.blog-page-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.blog-page-nav {
  background-color: #ebf0ee;
  color: #4a5755;
  border: none;
}

.blog-page-nav:hover {
  background-color: #1b6e65;
  color: #ffffff;
}

.blog-page-num {
  background-color: #ffffff;
  border: 1px solid #c2cecb;
  color: #4a5755;
}

.blog-page-num.active,
.blog-page-num:hover {
  background-color: #1b6e65;
  color: #ffffff;
  border-color: #1b6e65;
}

/* Blog CTA Banner Section */
.blog-cta-banner {
  border-radius: 16px;
  min-height: 290px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.blog-cta-overlay {
  background: linear-gradient(
    90deg,
    rgba(10, 48, 43, 0.15) 0%,
    rgba(10, 48, 43, 0.72) 45%,
    rgba(10, 48, 43, 0.88) 100%
  );
}

@media (max-width: 991px) {
  .blog-cta-overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 48, 43, 0.35) 0%,
      rgba(10, 48, 43, 0.88) 100%
    );
  }
}

.blog-cta-box {
  max-width: 520px;
}

.blog-cta-title {
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
}

.blog-cta-highlight {
  color: #f5a623;
  font-style: italic;
  font-weight: 700;
}

.blog-cta-desc {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.6;
}

.blog-cta-btn-phone {
  background-color: #ffffff;
  color: #1b6e65;
  font-weight: 700;
  font-size: 14.5px;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-cta-btn-phone:hover {
  background-color: #f2f7f6;
  color: #1b6e65;
  transform: translateY(-2px);
}

.blog-cta-btn-contact {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: 600;
  font-size: 14.5px;
  padding: 9px 22px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
}

.blog-cta-btn-contact:hover {
  background-color: #ffffff;
  color: #1b6e65;
  border-color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .blog-hero-title {
    font-size: 38px;
  }
  .blog-featured-title {
    font-size: 22px;
  }
  .blog-cta-title {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .blog-hero-section {
    min-height: 180px;
    padding: 45px 0;
  }
  .blog-hero-title {
    font-size: 32px;
  }
  .blog-featured-title {
    font-size: 19px;
  }
  .blog-card-title {
    font-size: 16.5px;
  }
  .blog-cta-title {
    font-size: 25px;
  }
  .blog-cta-banner {
    border-radius: 12px;
  }
}

/* ==========================================================================
   Blog Detail Page Styles
   ========================================================================== */

/* Blog Detail Hero Banner */
.blog-detail-hero {
  min-height: 550px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.blog-hero-back {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.blog-hero-back:hover {
  color: #ffffff;
  opacity: 0.85;
  transform: translateX(-3px);
}

.blog-detail-hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(15, 66, 53, 0.2) 0%,
    rgba(8, 46, 36, 0.95) 100%
  );
}

.blog-detail-hero-title {
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.28;
}

.blog-detail-date {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
}

/* Blog Article Body (Rich Text WYSIWYG Formatted Content) */
.blog-detail-article {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-sans);
  color: #4a5755;
  font-size: 15px;
  line-height: 1.7;
}

.blog-detail-article p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: #4a5755;
  margin-bottom: 1.5rem;
}

.blog-detail-article img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
}

.blog-detail-article p > img {
  display: block;
  width: 100%;
}

.blog-detail-article h1,
.blog-detail-article h2 {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  color: #2b3533;
  line-height: 1.35;
  margin-top: 2.2rem;
  margin-bottom: 1.2rem;
}

.blog-detail-article h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: #2b3533;
  line-height: 1.4;
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
}

.blog-detail-article h4,
.blog-detail-article h5,
.blog-detail-article h6 {
  font-family: var(--font-sans);
  font-size: 16.5px;
  font-weight: 700;
  color: #2b3533;
  line-height: 1.4;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.blog-detail-article em {
  font-style: italic;
  color: #5d6c69;
  font-size: 14.5px;
  line-height: 1.6;
}

.blog-detail-article a {
  color: #2a7b71;
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.blog-detail-article a:hover {
  color: #1b534d;
  text-decoration: underline;
}

.blog-detail-article ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.blog-detail-article ul li {
  position: relative;
  padding-left: 0;
  margin-bottom: 1.8rem;
}

.blog-detail-article ul li h3,
.blog-detail-article ul li h4,
.blog-detail-article ul li strong,
.blog-detail-article ul li a {
  color: #2a7b71;
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  margin-bottom: 0.5rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.blog-detail-article ul li h3::before,
.blog-detail-article ul li h4::before,
.blog-detail-article ul li strong::before,
.blog-detail-article ul li a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-image: url("../img/blog/blog-detail/point2.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.blog-detail-article ul li a:hover {
  color: #1b534d;
}

.blog-detail-article ul li p {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.blog-detail-article ol {
  padding-left: 1.2rem;
  margin-bottom: 1.8rem;
}

.blog-detail-article ol li {
  margin-bottom: 0.8rem;
}

/* Utility Share & Navigation Bar */
.blog-detail-utility-bar {
  border-top: 1px solid #e2e7e5;
  border-bottom: 1px solid #e2e7e5;
  padding: 18px 0;
  display: flex;
}

@media (max-width: 575px) {
  .blog-detail-utility-bar {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
  }

  .blog-detail-share {
    order: 1;
    width: 100%;
    justify-content: center;
  }

  .blog-detail-nav-wrapper {
    order: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 576px) {
  .blog-detail-utility-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .blog-detail-nav-wrapper {
    display: contents;
  }

  .blog-nav-prev {
    order: 1;
  }

  .blog-detail-share {
    order: 2;
  }

  .blog-nav-next {
    order: 3;
  }
}

.blog-detail-nav-btn {
  color: #4a5452;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.blog-detail-nav-btn:hover {
  color: #2a7b71;
}

.blog-nav-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #f0f3f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.blog-nav-circle svg {
  transition: stroke 0.25s ease;
}

.blog-detail-nav-btn:hover .blog-nav-circle {
  background-color: #2a7b71;
}

.blog-detail-nav-btn:hover .blog-nav-circle svg {
  stroke: #ffffff;
}

.share-label {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  color: #6c7775;
}

.blog-share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast);
}

.blog-share-link:hover {
  opacity: 0.75;
  transform: translateY(-1px);
}

.share-label {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: #6e7775;
}

/* Related Blogs Section */
.related-blogs-section {
  background-color: #f6f8f7;
}

.related-blogs-title {
  font-family: var(--font-sans);
  font-size: 38px;
  font-weight: 700;
  color: #2b3533;
}

.related-blogs-title em {
  color: #f5a623;
  font-style: italic;
  font-weight: 700;
}

@media (max-width: 991px) {
  .blog-detail-hero {
    min-height: 450px;
    padding: 80px 0 40px 0;
  }
  .blog-detail-hero-title {
    font-size: 28px;
  }
  .related-blogs-title {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .blog-detail-hero {
    min-height: 300px;
    padding: 60px 0 30px 0;
  }
  .blog-detail-hero-title {
    font-size: 22px;
  }
  .blog-article-heading {
    font-size: 20px;
  }
  .blog-article-subheading {
    font-size: 16.5px;
  }
  .related-blogs-title {
    font-size: 25px;
  }
}

/* ==========================================================================
   Contact Page Styles (Pixel Perfect to Design)
   ========================================================================== */

/* Contact Hero Section */
.contact-hero-section {
  min-height: 260px;
  padding: 70px 0;
  position: relative;
}

.contact-hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(12, 60, 54, 0.35) 0%,
    rgba(12, 60, 54, 0.6) 100%
  );
}

.contact-hero-title {
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Contact Info Section */
.contact-info-section {
  background-color: var(--color-bg-white);
}

.contact-subtitle {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: #717e7b;
  letter-spacing: 0.05em;
}

.contact-title {
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 700;
  color: #2b3533;
  line-height: 1.25;
}

.contact-highlight {
  color: #f5a623;
  font-style: italic;
  font-weight: 700;
}

.contact-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: #556260;
}

.contact-email-link {
  font-weight: 600;
  font-size: 15px;
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.contact-email-link:hover {
  color: #1b534d;
}

.contact-referral-btn {
  background-color: var(--color-primary);
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 9px 24px;
  border-radius: 8px;
  border: none;
  transition: all 0.25s ease;
  /* box-shadow: 0 4px 15px rgba(42, 123, 113, 0.2); */
}

.contact-referral-btn:hover {
  background-color: #1b534d;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Contact Info Cards */
.contact-card {
  background-color: #f5f3ed;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.contact-card-icon-box {
  width: 38px;
  height: 38px;
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 8px;
}
.contact-card-icon-box img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.contact-card-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: #717e7b;
  margin-bottom: 2px;
}

.contact-card-val {
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 700;
  color: #2b3533;
  line-height: 1.4;
}

.contact-card-val:hover {
  color: #2a7b71;
}

/* Contact Form Section */
.contact-form-section {
  position: relative;
  background-color: transparent;
  padding-top: 50px;
  padding-bottom: 50px;
}

.contact-form-bg-img {
  height: 80% !important;
  z-index: 1;
}

.contact-mail-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.contact-decor-leaf {
  width: 240px;
  max-width: 35vw;
  top: 15px;
  right: 6%;
  z-index: -1;
  pointer-events: none;
}

.contact-form-card {
  border-radius: 8px !important;
  background-color: #ffffff;
  border: 1px solid #e1e7e5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
  position: relative;
  z-index: 2;
}

.contact-label {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: #3b4644;
  margin-bottom: 6px;
}

.contact-input {
  background-color: #f8faf9;
  border: 1px solid #e1e7e5;
  border-radius: 8px !important;
  font-size: 14.5px;
  padding: 11px 16px;
  color: #2b3533;
  transition: all 0.2s ease;
}

.contact-input:focus {
  background-color: #ffffff;
  border-color: #2a7b71;
  box-shadow: 0 0 0 3px rgba(42, 123, 113, 0.15);
}

.contact-input::placeholder {
  color: #a0acab;
  font-size: 14px;
}

.contact-submit-btn {
  background-color: #23746c;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  padding: 12px;
  border-radius: 8px !important;
  border: none;
  transition: all 0.25s ease;
}

.contact-submit-btn:hover {
  background-color: #1b534d;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Google Map Embed Section */
.contact-map-wrapper iframe {
  display: block;
  filter: contrast(102%);
}

@media (max-width: 991px) {
  .contact-hero-title {
    font-size: 38px;
  }
  .contact-title {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .contact-hero-section {
    min-height: 180px;
    padding: 45px 0;
  }
  .contact-hero-title {
    font-size: 32px;
  }
  .contact-title {
    font-size: 25px;
  }
}

/* ==========================================================================
   FAQ Page Styles (Pixel Perfect to Design)
   ========================================================================== */

/* FAQ Hero Banner */
.faq-hero-section {
  min-height: 260px;
  padding: 70px 0;
  position: relative;
}

.faq-hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(12, 60, 54, 0.35) 0%,
    rgba(12, 60, 54, 0.6) 100%
  );
}

.faq-hero-title {
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* FAQ Content Section */
.faq-content-section {
  background-color: #ffffff;
}

.faq-section-title {
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 700;
  color: #2b3533;
  line-height: 1.25;
}

.faq-highlight {
  color: #f5a623;
  font-style: italic;
  font-weight: 700;
}

/* FAQ Accordions */
.faq-accordion-item {
  background-color: #ffffff;
  border: 1px solid #e1e7e5;
  border-radius: 8px !important;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  overflow: hidden;
}

.faq-accordion-item.active {
  border-color: #f5a623 !important;
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.08);
}

.faq-accordion-header {
  cursor: pointer;
  outline: none;
  transition: background-color 0.2s ease;
}

.faq-accordion-header:hover {
  background-color: #fafcfb;
}

.faq-accordion-question {
  font-family: var(--font-sans);
  font-size: 16.5px;
  font-weight: 600;
  color: #2b3533;
  line-height: 1.4;
}

.faq-accordion-item.active .faq-accordion-question {
  color: #2b3533;
}

.faq-accordion-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq-accordion-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.faq-accordion-collapse {
  display: grid;
  grid-template-rows: 0fr;
  transition:
    grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
  opacity: 0;
}

.faq-accordion-inner {
  overflow: hidden;
}

.faq-accordion-collapse.show {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-accordion-body p {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.65;
  color: #556260;
}

@media (max-width: 991px) {
  .faq-hero-title {
    font-size: 38px;
  }
  .faq-section-title {
    font-size: 30px;
  }
  .faq-accordion-question {
    font-size: 15.5px;
  }
}

@media (max-width: 575px) {
  .faq-hero-section {
    min-height: 180px;
    padding: 45px 0;
  }
  .faq-hero-title {
    font-size: 32px;
  }
  .faq-section-title {
    font-size: 25px;
  }
  .faq-accordion-question {
    font-size: 15px;
  }
}

/* ==========================================================================
   Vacancy Detail Page Styles (Pixel Perfect to Design)
   ========================================================================== */

.vacancy-detail-back-btn {
  color: #2a7b71;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 600;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.vacancy-detail-back-btn:hover {
  color: #1b534d;
  transform: translateX(-3px);
}

.vacancy-hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.vacancy-hero-title {
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.status-dot-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2e7d32;
  display: inline-block;
}

.vacancy-location-float-card {
  bottom: -22px;
  right: 28px;
  z-index: 5;
  border: 1px solid #e2e7e5;
  min-width: 250px;
}

.location-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff9e6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.location-icon-circle img {
  width: 32px;
  height: 43px;
  object-fit: contain;
}

.badge-meta {
  background-color: #f2f2f2 !important;
  color: #212121 !important;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

.badge-meta img {
  width: 16px;
  height: 18px;
  object-fit: contain;
}

.location-card-label {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  color: #717e7b;
  margin-bottom: 1px;
}

.location-card-title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: #2b3533;
  line-height: 1.2;
}

.location-card-sub {
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: #556260;
}

/* Overview Info Box */
.vacancy-sec-title {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  color: #212121;
}

.vacancy-sec-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: #212121;
}

.vacancy-overview-box {
  background-color: #f3f1ea !important;
}

.overview-box-label {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  color: #717e7b;
  margin-bottom: 3px;
}

.overview-box-val {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: #212121;
  line-height: 1.35;
}

/* Features Check List (Tag/Dynamic list support) */
.vacancy-features-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.vacancy-features-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: #212121;
  line-height: 1.55;
}

.vacancy-features-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 17px;
  height: 17px;
  background-image: url("../img/vacancy/vacancy%20detail/check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* Amenities Card Grid & Dynamic List */
.vacancy-amenities-list {
  list-style: none;
  padding-left: 0;
}

.vacancy-amenity-box {
  background-color: #f3f1ea;
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
  transition: transform var(--transition-fast);
}

.vacancy-amenity-box:hover {
  transform: translateY(-2px);
}

.amenity-arrow-box {
  padding: 10px;
  background-color: #2a7b71;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.amenity-arrow-box img {
  width: 16px;
  height: 18px;
  object-fit: contain;
}

.amenity-card-text {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  color: #212121;
  line-height: 1.35;
}

/* Contact Person Card */
.vacancy-contact-card {
  background-color: #f3f1ea !important;
}

.contact-item-label {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  color: #717e7b;
  margin-bottom: 2px;
}

.contact-item-val {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: #212121;
}

.contact-item-val:hover {
  color: #2a7b71;
}

/* Sidebar Card */
.vacancy-sidebar-card {
  background: linear-gradient(107.23deg, #04231b 1.88%, #357d66 95.8%);
  box-shadow: 0 10px 30px rgba(28, 83, 77, 0.18);
}

.sidebar-card-title {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.sidebar-highlight {
  color: #f5a623;
  font-style: italic;
  font-weight: 700;
}

.sidebar-card-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
}

.sidebar-phone-box {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

.phone-icon-circle {
  width: 36px;
  height: 36px;
  background-color: #f5a623;
}

.phone-box-label {
  font-family: var(--font-sans);
  font-size: 12px;
  color: #d1dedb;
}

.phone-box-num {
  font-family: var(--font-sans);
  font-size: 19px;
  letter-spacing: 0.02em;
}

.btn-sidebar-enquire {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 50px;
  transition: all 0.25s ease;
}

.btn-sidebar-enquire:hover {
  background-color: #ffffff;
  color: #1c534d;
  border-color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .vacancy-location-float-card {
    position: relative !important;
    bottom: 0 !important;
    right: 0 !important;
    margin-top: 15px;
  }
  .vacancy-sidebar-card {
    position: relative !important;
    top: 0 !important;
  }
}

@media (max-width: 575px) {
  .vacancy-hero-title {
    font-size: 26px;
  }
  .sidebar-card-title {
    font-size: 24px;
  }
}

/* ==========================================================================
   CAREER PAGE STYLES
   ========================================================================== */

/* Hero Banner */
.career-hero-section {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.career-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    93.9deg,
    rgba(11, 34, 29, 0.63) 8.07%,
    rgba(11, 65, 51, 0.44) 91.93%
  );
  z-index: 1;
}

.career-hero-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.5px;
}

/* Common Text Styling */
.highlight-gold-italic {
  color: #dbad00;
  font-style: italic;
  font-weight: 700;
}

.career-subheading {
  font-size: 15px;
  font-weight: 600;
  color: #2c3e3b;
  margin-bottom: 8px;
  display: block;
}

.career-heading {
  font-size: 46px;
  font-weight: 700;
  color: #1b534d;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.career-text {
  font-size: 16px;
  line-height: 1.2;
  color: #353535;
  margin-bottom: 32px;
}

/* Contact Cards (Left side) */
.career-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.career-contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #dbad00;
  border-radius: 12px;
  padding: 16px 20px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.career-contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(219, 173, 0, 0.15);
}

.career-contact-icon-box {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.career-contact-icon-box img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.career-contact-label {
  font-size: 13.5px;
  color: #64748b;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 2px;
}

.career-contact-value {
  font-size: 18px;
  font-weight: 700;
  color: #1b534d;
  line-height: 1.3;
}

.career-contact-value-address {
  font-size: 15px;
  font-weight: 600;
  color: #1b534d;
  line-height: 1.45;
}

/* Form Container Card (Right side) */
.career-form-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 32px 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.career-form-label {
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
  display: block;
}

.career-form-control {
  background-color: #fcfcfc;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  color: #1e293b;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  width: 100%;
}

.career-form-control:focus {
  background-color: #ffffff;
  border-color: #2a7b71;
  box-shadow: 0 0 0 3px rgba(42, 123, 113, 0.12);
  outline: none;
}

.career-form-control::placeholder {
  color: #94a3b8;
  font-style: italic;
  font-size: 14px;
}

/* Drag and Drop File Upload Area */
.career-upload-zone {
  background-color: #fcfcfc;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.career-upload-zone:hover,
.career-upload-zone.dragover {
  background-color: #f0fdfa;
  border-color: #2a7b71;
}

.career-upload-icon {
  width: 24px;
  height: 24px;
  color: #64748b;
  margin-bottom: 8px;
}

.career-upload-text {
  font-size: 14px;
  color: #353535;
  margin-bottom: 4px;
  font-weight: 400;
}

.career-upload-link {
  color: #2a7b71;
  font-weight: 500;
  text-decoration: none;
}

.career-upload-subtext {
  font-size: 14px;
  color: #353535;
  font-weight: 500;
}

.selected-file-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #2a7b71;
  margin-top: 6px;
  word-break: break-all;
}

/* Submit Button */
.btn-career-submit {
  background-color: #2a7b71;
  color: #ffffff;
  font-size: 15.5px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 8px;
  border: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-career-submit:hover {
  background-color: #1b534d;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(42, 123, 113, 0.25);
}

.btn-career-submit svg {
  transition: transform 0.2s ease;
}

.btn-career-submit:hover svg {
  transform: translateX(4px);
}

/* Why Onedoorway Section */
.why-onedoorway-section {
  background-color: #f6f5f0;
  position: relative;
  padding-top: 90px;
  padding-bottom: 90px;
  overflow: hidden;
}

.why-bg-pattern {
  position: absolute;
  bottom: -20px;
  right: -20px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
  width: 340px;
}

.why-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 440px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.why-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 3 Cards Row overlapping lower part of image */
.why-cards-row {
  margin-top: -210px;
  max-width: 95%;
  margin-left: auto;
  position: relative;
  z-index: 3;
}

.why-feature-card {
  background-color: #eeebe3;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: start;
  gap: 16px;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.why-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.why-card-icon-box {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 10px;
  background-color: #2a7b71;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-card-icon-box img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.why-card-title {
  font-size: 20px;
  font-weight: 500;
  color: #212121;
  margin-bottom: 4px;
  line-height: 1.2;
}

.why-card-desc {
  font-size: 16px;
  line-height: 1.45;
  color: #4a5568;
  margin: 0;
}

/* Media Queries */
@media (max-width: 991px) {
  .why-cards-row {
    margin-top: 30px;
  }
  .why-img-wrapper {
    min-height: 340px;
  }
}

/* Media Queries */
@media (max-width: 991px) {
  .career-heading {
    font-size: 36px;
  }
  .career-hero-title {
    font-size: 40px;
  }
  .career-form-card {
    padding: 24px;
    margin-top: 30px;
  }
  .why-cards-row {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .career-heading {
    font-size: 28px;
  }
  .career-hero-title {
    font-size: 32px;
  }
  .career-hero-section {
    height: 220px;
  }
  .career-contact-card {
    padding: 14px 16px;
  }
  .career-contact-value {
    font-size: 16px;
  }
  .why-feature-card {
    padding: 10px;
  }
}

/* Blog Detail Content Images Responsive Scaling */
.blog-detail-article img {
  max-width: 100% !important;
  height: auto !important;
  display: block;
  margin: 1.5rem 0;
  border-radius: 12px;
}

/* Leadership Card Arrow Button & Modal Trigger Styling */
.leadership-card {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.leadership-card:hover {
  transform: translateY(-4px);
}

.leadership-card:hover .leadership-img {
  transform: scale(1.03);
}

.leadership-img {
  transition: transform 0.4s ease;
}

.card-arrow-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  z-index: 3;
}

.leadership-card:hover .card-arrow-btn {
  background-color: #2a7b71;
  transform: scale(1.08);
}

.leadership-card:hover .card-arrow-btn svg {
  stroke: #ffffff;
}

.cursor-pointer {
  cursor: pointer;
}

