* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* ===========================
       Colors
    =========================== */
  --primary-color: #006cb5;
  --blue: #006cb5;
  --secondary-color: rgb(54, 128, 22);
  --light-bg: #fafee3;
  --black: #000;
  --gray: #666;
  --white: #fff;
  --green: #41901f;
  --light-green: #fafee3;
  --light-green1: #f7ffcd;
  --dark-green: #368016;
  --color-primary: #006cb5;
  --color-accent: #41901f;
  --color-track: #d9d9d9;
  --color-text: #000;
  --color-surface: hsl(27, 100%, 98%);


  /* for career */

  --main-bg-color: #006cb5;
  --light-blue-color: #87ceeb;
  --button-color: #b0cb1f;
  --button-hover-color: #9bb91a;
  --font-color: #ffffff;
  --navy-dark: #1e3a8a;
  --text-dark: #333333;
  --placeholder-gray: #999999;
  --border-light: #e0e0e0;



  /* for contact us */

  --cc-bg-primary: #006CB5;
  --cc-accent: #b0cb1f;
  --cc-accent-hover: #9BB91A;
  --cc-text-dark: #1F2937;
  --cc-text-muted: #6B7280;
  --cc-border: #E5E7EB;
  --cc-card-bg: #FFFFFF;
  --cc-radius-lg: 16px;
  --cc-radius-md: 8px;


  --font-body: "Poppins", sans-serif;
  --font-display: "Oswald", sans-serif;

  --transition-fast: 0.3s ease;
  --transition-bar: 0.5s ease-in-out;
  --font-family: "Poppins", sans-serif;
  --fs-14: 14px;
  --fs-16: 16px;
  --fs-18: 18px;
}

html {
  font-size: 14px !important;
  scrollbar-gutter: stable;
}

html,
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}
@font-face {
    font-family: "Georgia";
    src: url("../assets/Georgia-mnuf426a.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


.row > * {
  padding: 0;
}

/* Olive Yellow */
.text-olive {
  color: rgb(154, 153, 52);
}

button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

.mb-res {
  margin-bottom: 32px !important;
}
.main-margin {
  margin-top: 80px;
}
/* Burnt Orange */
.text-burnt-orange {
  color: rgb(204, 103, 52);
}

/* Brown */
.text-brown {
  color: rgb(154, 102, 52);
}

/* Green */
.text-green {
  color: rgb(52, 153, 102);
}

/* Lime Green */
.text-lime {
  color: rgb(133, 188, 40);
}

/* Sage Green */
.text-sage {
  color: rgb(103, 154, 103);
}

/* Peach */
.text-peach {
  color: rgb(243, 149, 100);
}

.bg-gray {
  background-color: #f8f8f8;
}

.onload-logo {
  max-width: 150px;
}

.logo {
  max-width: 250px;
}

.mw100 {
  max-width: 100% !important;
  padding: 0 40px;
}

.text-blue {
  color: var(--blue) !important;
}

.global-padding {
  padding: clamp(10px, 7.57375px + 0.647vw, 20px) 0;
}

.banner-heading {

  font-size: 2.3rem;
  margin: 0 0 10px;
  color: #5b2d0c;
  font-family: "Georgia", Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.nav-link {
  color: var(--black);
  font-size: var(--fs-14);
  font-weight: 500;
  color: #2f2f30;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  padding: 0 !important;
  text-decoration: none;
  text-wrap: nowrap;
}

.header-bar {
  background: var(--light-bg);
  padding: 16px clamp(2.5rem, 3.883vw + 1.59rem, 6.25rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px #0000001a;
}

.nav-link:hover {
  color: var(--green);
}

.navbar {
  padding: 0;
  width: 100%;
}

.navbar .dropdown-menu {
  display: block;
  min-width: 280px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px #0000001a;
  border: navajowhite;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-60px, -15px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}
.dropdown-menu > li:last-child > a {
    border-bottom: none !important;
}
.nav-item {
  gap: 40px;
}

.container-fluid {
  padding: 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}

.navbar-nav {
  gap: 40px;
}

/* Hide the bootstrap dropdown caret arrow */
.dropdown-toggle::after {
  display: none !important;
  content: none !important;
}

@media (min-width: 992px) {
  .navbar-expand-lg .nav-item.dropdown:hover > .nav-link,
  .navbar-expand-lg .nav-item.dropdown:focus-within > .nav-link {
    color: var(--green);
  }

  .navbar-expand-xl .nav-item.dropdown:hover > .dropdown-menu,
  .navbar-expand-xl .nav-item.dropdown:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-60px, 0);
  }

  .navbar-expand-xl .dropdown-menu {
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    transform: translate(-60px, -10px);
  }

  .navbar-expand-lg .dropdown-menu .dropdown-item {
    background: transparent;
  }

  .dropdown-menu .dropdown-item:hover,
  .dropdown-menu .dropdown-item:focus {
    color: #41901f;
    background: #b0cb1f0d;
  }
}

/* Mobile offcanvas styles */
.navbar-toggler {
  display: none;
  border: 0;
 padding: 0 0 11px 0;
  border-radius: 8px;
  color: var(--primary-color);
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .navbar-nav {
    gap: 0;
  }

  .navbar-collapse {
    display: none !important;
  }
}

.navbar-expand-xl .navbar-nav .dropdown-menu {
  position: absolute;
  min-width: 280px;
}

.dropdown-item {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #2f2f30;
  padding: 12px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(47, 47, 48, 0.1);
}

.offcanvas {
  background: #fafee3;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  width: min(90vw, 360px);
}

.offcanvas-header {
  padding: 18px 24px 12px;
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.08); */
}

.offcanvas-brand img {
  max-height: 46px;
  width: auto;
}

.offcanvas-body {
  padding: 0;
}

.offcanvas .navbar-nav {
      display: flex;
    flex-direction: column;
    gap: 6px;
    overflow: scroll;
    height: 100vh;
}

.offcanvas .nav-item {
  width: 100%;
}

.offcanvas .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px !important;
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: 500;
  color: #2f2f30;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.offcanvas .nav-link:hover {
  color: var(--green);
}

.offcanvas .dropdown-menu {
  position: static !important;
  float: none;
  display: none;
  border: 0;
  box-shadow: none;
  background: transparent;

  transform: none !important;
  margin: 0;
}

.offcanvas .dropdown-menu.show {
  display: block;
  background: #00000005;
}

.offcanvas .dropdown-item {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #2f2f30;
  padding: 16px 20px 16px 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.offcanvas .dropdown-item:hover {
  color: var(--green);
  background: transparent;
}

/*=========================================
    Hero Section
=========================================*/
.hero {
  position: relative;
  overflow: hidden;
  margin-top: 72px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  background: rgba(3, 37, 74, 0.72);
}

.hero-content {
  padding: clamp(50px, 37.865px + 3.236vw, 100px) 0px
         clamp(30px, calc(37.865px + 3.236vw - 15px), 80px);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 150px;
  /* padding: 70px 0; */
  max-width: 1280px;
  margin: 0 auto;
}

.hero-text {
  max-width: 1000px;
  text-align: left;
}

.hero-line {
  display: block;
  width: 52px;
  height: 6px;
  background: var(--green);
  margin-bottom: 24px;
}
h1 {
  font-family: "Georgia", Georgia, "Times New Roman", serif !important;
}

.hero-text h1 {
  font-size: clamp(2.429rem, 1.942vw + 1.908rem, 4.571rem) !important;
  line-height: 1.3 !important;
  color: #fff !important;
  margin-bottom: 24px !important;
  font-family: "Georgia", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-variant-ligatures: common-ligatures;
}

.hero-text p {
  font-size: clamp(1.143rem, 0.388vw + 1.039rem, 1.571rem);
  line-height: 1.5;
  color: #fff;
  margin-bottom: clamp(1.714rem, 1.165vw + 1.402rem, 3rem);
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

/*=========================================
    Global Button
=========================================*/
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 28px;
  border-radius: 0;
  font-size: clamp(0.875rem, 0.2vw + 0.8rem, 1rem);
  font-weight: 600;
  font-family: var(--font-family);
  text-decoration: none;
  color: var(--white);
  transition: 0.35s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary-color);
}

.btn-secondary {
  background: var(--secondary-color);
}

.btn-primary:hover {
  background: #005893;
  color: var(--white);
}

.btn-secondary:hover {
  background: #2d6d10;
  color: var(--white);
}

.main-banner-image {
  width: 343px;
  height: 343px;
}

.main-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* nav & tabs */
/* ===== Nav header button ===== */
.tab-btn {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--green);
  color: #fff;
  border: none;
  text-align: left;
  padding: 20px 40px;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
}

.tab-btn .tab-title {
  font-weight: 700;
  font-size: clamp(1rem, 0.259vw + 0.931rem, 1.286rem);
}

.tab-btn .tab-subtitle {
  font-size: 1rem;
  font-weight: 400;

  margin-top: 2px;
}

.tab-btn.active {
  background: var(--blue);
}

/* ===== Content panel ===== */
.service-collapse {
  display: none;
  background: #f6f7f7;
  overflow: hidden;
}

.service-collapse.show {
  display: block;
}

/* Mobile push-down animation */
.mobile-mode .service-collapse {
  max-height: 0;
  transition: max-height 0.4s ease;
  display: block;
}

.mobile-mode .service-collapse.show {
  max-height: 2000px;
}

.service-panel-wrap {
  padding: clamp(1.875rem, 1.942vw + 1.42rem, 3.75rem) 40px !important;
  background-color: #fff;
}

.service-card {
  margin: 0 auto;
  border-radius: 8px;
  padding: clamp(1.25rem, 1.294vw + 0.947rem, 2.5rem);
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1280px;
}

.service-hero {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.service-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 400px;
}

.service-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000000c9, #0000);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.service-hero .hero-overlay h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 1.165vw + 1.974rem, 2.8rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

.service-hero .hero-overlay p {
  color: #fff;
  margin: 6px 0 0;
font-size: clamp(1.143rem, .129vw + 1.108rem, 1.286rem);
}

.service-block {
  display: flex;
  gap: 20px;
}

.service-block .icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  /* color: var(--green); */
  font-size: 1.5rem;
}

.service-block h5 {
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}

.service-block p {
  color: var(--gray);
  margin: 0;
  line-height: 1.55;
  font-size: clamp(0.875rem, 0.259vw + 0.814rem, 1.125rem);
}

.checklist-box {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  padding: 22px 26px;
  color: #333;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-item:last-child {
  margin-bottom: 0;
}

.check-item i {
  color: var(--green);
  margin-top: 2px;
  font-style: normal;
}

.explore-btn {
  display: block;
  margin: 0 auto 0;
    background-color: rgb(65, 144, 31);
  color: #fff;
  font-weight: 700;
  border: none;

  padding: clamp(0.875rem, 0.3vw + 0.8rem, 1rem)
    clamp(1.5rem, 1vw + 1.2rem, 2rem);
  font-size: clamp(0.875rem, 0.2vw + 0.8rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
}
.explore-btn a{
  text-decoration: none;
  color: white;
}
.explore-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px #0003;
}

/* ===== DESKTOP nav row (>=768px): 3 equal columns ===== */
#desktopNavRow {
  display: none;
  width: 100%;
}

#desktopNavRow .tab-btn {
  flex: 1 1 0;
  min-width: 0;
}

#desktopNavRow .tab-btn + .tab-btn {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

#desktopPanelArea {
  display: none;
}

/* ===== MOBILE accordion (<768px): default, always in markup ===== */
#mobileAccordion {
  display: block;
  display: flex;
    flex-direction: column;
    gap: 2px;

}

.accordion-item + .accordion-item .tab-btn {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

#desktopNavRow .tab-btn {
  padding: 20px 40px;
}

.ongoing-fs {
  font-size: 32px !important;
  font-weight: 700;
  color: rgb(37, 18, 14);
  margin-bottom: 16px;
  text-align: inherit;
}

.mb-res2 {
  margin-bottom: 72px !important;
}

.mb-res3 {
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  #mobileAccordion {
    display: none;
  }

  #desktopNavRow {
    display: flex;
    gap: 1px;
  }

  #desktopPanelArea {
    display: block;
  }
}

@media (max-width: 991.98px) and (min-width: 768px) {
  #desktopNavRow .tab-btn .arrow {
    right: 10px;
  }
}

.icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*=====================================
    Framework Section
======================================*/

.framework-section {
  padding: clamp(50px, 37.865px + 3.236vw, 100px) 0px
    clamp(100px, 75.73px + 6.472vw, 200px);
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}
.framework-card p {
  color: #05003899;
}
/*=====================================
    Section Heading
======================================*/

.section-heading {
  max-width: 850px;
  margin: 0 auto 40px;
}

.section-heading h2 {
  color: var(--primary-color);
  font-size: clamp(2.143rem, 0.647vw + 1.969rem, 2.857rem) !important;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
}

.section-heading p {
  font-size: clamp(1rem, 0.35vw + 0.9rem, 1.25rem);
  color: #050038;
  line-height: 1.6;
  margin: 0;
}

/*=====================================
    Framework Card
======================================*/

.framework-grid {
  grid-template-columns: repeat(4, 1fr);
  display: grid;
  gap: 24px;
}

.framework-card {
  background: var(--white);

  border-radius: 16px;

  padding: 30px;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

  display: flex;

  align-items: flex-start;

  gap: 18px;

  min-height: 177px;

  transition: 0.35s ease;
}

.framework-card1 {
  background: var(--white);

  border-radius: 16px;

  padding: 30px;

  box-shadow: 0 4px 20px #00000026;
  display: flex;

  align-items: flex-start;

  gap: 18px;

  min-height: 177px;

  transition: 0.35s ease;
}

.framework-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/*=====================================
    Letter
======================================*/

.framework-letter {
  color: var(--primary-color);

  flex-shrink: 0;

  line-height: 1;
  width: 65px;
}

._letterSvg_1o8iu_71 {
  width: 100%;
  height: 100%;
  color: #006cb5;
  max-height: 110px;
}

.framework-letter svg {
  display: block;

  width: 65px;
}

/*=====================================
    Content
======================================*/

.framework-content {
  padding-top: 6px;
}

.framework-content h3 {
  font-size: 30px;

  font-weight: 700;

  color: #050038;

  margin-bottom: 16px;

  line-height: 1.2;
}

.framework-content p {
  font-size: 14px;

  color: #6b6b8d;

  line-height: 1.6;

  margin: 0;
}

.framework-content1 p {
  font-size: 14px !important;

  color: #6b6b8d;

  line-height: 1.6;

  margin: 0;
}

/*=====================================
    Button
======================================*/

.btn-outline-green {
  display: inline-flex;

  justify-content: center;

  align-items: center;

  padding: clamp(0.875rem, 0.3vw + 0.8rem, 1rem)
    clamp(1.5rem, 1vw + 1.2rem, 2rem);

  border: 1px solid var(--green);

  color: var(--green);

  background: transparent;

  font-size: clamp(0.875rem, 0.2vw + 0.8rem, 1rem);

  font-weight: 600;

  transition: 0.35s;
}

.btn-outline-green:hover {
  background: var(--green);

  color: var(--white);
}

/* Container spacing and overflow prevention */
.quote-wrapper {
  padding: 0px 0px clamp(25px, 18.9325px + 1.618vw, 50px);
  margin: clamp(-150px, -56.7975px - 4.854vw, -75px) 0px 0px;
  position: relative;
  z-index: 3;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Main Background Card */
.quote-box {
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  background-color: rgb(176, 203, 31);
  position: relative;
  margin: 0 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
}

/* Quote Typography */
.quote-text {
  font-size: clamp(1.286rem, 0.259vw + 1.216rem, 1.571rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 24px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

/* Author Typography */
.quote-author {
  font-size: clamp(1.286rem, 0.259vw + 1.216rem, 1.571rem);
  font-weight: 700;
  color: #fff;
}

/* Positioning and sizing for the SVGs */
.quote-mark {
  position: absolute;
  width: clamp(60px, 40px + 4vw, 118px);
  height: auto;
  pointer-events: none;
  z-index: 1;
}

/* Left Quote Position */
.quote-mark.left {
  top: 20px;
  left: 30px;
}

/* Right Quote Position + Flips it upside down to face correctly */
.quote-mark.right {
  bottom: 20px;
  right: 30px;
  transform: rotate(180deg);
}

/* Adjust layout spacing for smaller devices */
@media (max-width: 768px) {
  .quote-box {
    padding: 3rem 1.5rem;
  }
  .main-margin {
    margin-top: 70px;
  }
  .quote-mark.left {
    top: 10px;
    left: 15px;
  }

  .quote-mark.right {
    bottom: 10px;
    right: 15px;
  }

  .ongoing-fs {
    font-size: 24px !important;
  }

  .mb-res {
    margin-bottom: 24px !important;
  }
}

.why-choose-section {
  background-color: var(--primary-color);
  color: var(--white);
  font-family: var(--font-family);
  padding: clamp(100px, 75.73px + 6.472vw, 200px) 0
    clamp(50px, 37.865px + 3.236vw, 100px);
  margin: clamp(-200px, -75.73px - 6.472vw, -100px) 0 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Modern Grid Configuration */
.why-choose-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: start;
}

/* Optimized Image Stack Layout */
.why-choose-images {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.why-choose-images img {
  width: 100%;
  height: 218px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* Typography Engine Rules */

.why-choose-text .subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.5;
}

/* Content List Blocks */
.points-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.point-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.point-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Adaptive SVG Icon Architecture */
.point-header svg {
  flex-shrink: 0;
  color: #b0cb1f;
  /* Drives inner paths efficiently with currentColor */
}

.point-header h4 {
  font-size: clamp(1rem, 0.129vw + 0.965rem, 1.143rem);
  font-weight: 600;
  margin: 0;
}

.point-desc {
  font-size: 1rem !important;
  line-height: 1.5;
  padding-left: 40px;
  max-width: 700px;
  margin: 0;
  /* opacity: 0.85; */
}

/* Container & Section Styles */
.logo-grid-section {
  width: 100%;
  box-sizing: border-box;
}

.decorative-vector {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.decorative-vector svg {
  width: 100%;
  height: 100%;
}

.logo-grid-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;padding: 0 20px;
}

/* Carousel Structural Setup */
.carousel-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  overflow: hidden;
  padding: 16px 0;
}

.carousel-row {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Base Track Styling */
.carousel-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  white-space: nowrap;
}

.carousel-logo-item {
     flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 120px;
    max-width: 160px;

  /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03); */
}
@media (max-width: 1024px) {
    .carousel-logo-item {
        min-width: 100px;
        max-width: 140px;
    }
    .carousel-logo-item img {
      max-height: 64px;
    }
}

@media (max-width: 768px) {
    .carousel-logo-item {

        min-width: 90px;
        max-width: 120px;
    }
    .carousel-container {
    /* display: flex; */
    /* flex-direction: column; */
    gap: 32px;}
    .carousel-logo-item img {
      max-height: 56px;
    }
}

.carousel-logo-item img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: all 0.3s ease;
}

.carousel-logo-item img:hover {
  filter: grayscale(0%);
}

/* Infinite Scroll CSS Animations */
.track-left-to-right {
  animation: scrollLeftToRight 35s linear infinite;
}

.track-right-to-left {
  animation: scrollRightToLeft 35s linear infinite;
}

/* Pause animation on hover if user interacts with it */
.carousel-row:hover .carousel-track {
  animation-play-state: paused;
}

@keyframes scrollLeftToRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes scrollRightToLeft {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Header Structural Settings */
.impact-header {
  margin-bottom: 40px;
}

.section-title > h2 {
  font-size: clamp(2.143rem, 0.647vw + 1.969rem, 2.857rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
  text-align: center;
}

/* Master Grid Configuration */
.impact-grid-layout {
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 24px;
  align-items: stretch;
  min-width: 0;
}

/* Content Blocks Styles */
.impact-block {
  background: #e7efbc;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.impact-block .impact-block-image img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
}

.impact-block .impact-block-title {
  font-size: clamp(1rem, 0.2vw + 0.95rem, 1.143rem);
  font-weight: 600;
  color: #2f2f30;
  margin: 0;
  line-height: 1.3;
}

.impact-block .impact-block-description {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #05003899;
  margin: 0;
  white-space: pre-line;
}

/* Featured Block Styles (Right Column) */
.impact-featured-block {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: #e7efbc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.impact-featured-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.impact-featured-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.impact-featured-title {
  font-size: clamp(1.1rem, 0.2vw + 1rem, 1.3rem);
  font-weight: 600;
  color: #2f2f30;
  margin: 0;
  line-height: 1.3;
}

.impact-featured-description {
  font-size: 1rem;
  line-height: 1.5;
  color: #05003899;
  margin: 0;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
  .impact-grid-layout {
    grid-template-columns: 1fr;
  }
}

.impact-blocks-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Tablet: 2 columns */
@media (max-width: 1199px) {
  .impact-blocks-column {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1199.98px) {
  .offcanvas .nav-link {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
.offcanvas{
  max-width: 300px !important;
}
  .offcanvas.offcanvas-end.show {
    width: 300px; transition: transform 0.35s ease-in-out;
    max-width:300px !important;
  }
}

/* Mobile: 1 column */
@media (max-width: 767px) {
  .impact-blocks-column {
    grid-template-columns: 1fr;
  }
  .top-bar2{
    flex-direction: column;align-items: flex-start !important;gap: 10px;
  }
}

/*  Strengths Section*/

.strengths-section {
  position: relative;
  max-width: 1280px;
  background: var(--primary-color);
  margin: 0 auto;
  padding: 60px 40px;

  overflow: hidden;

  border-radius: 16px;
}

/*=====================================
        Quarter Circle
======================================*/

.strengths-circle {
  position: absolute;

  top: 0;

  right: 0;

  width: 200px;

  height: 200px;

  background: rgba(255, 255, 255, 0.15);

  border-radius: 0 0 0 320px;

  pointer-events: none;
}

/*=====================================
        Heading
======================================*/

.strengths-section .section-heading {
  margin-bottom: 40px;
}

.strength-section-item{
  display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 20px 0;
}
@media (max-width:1024px) {
  .strength-section-item{
         grid-template-columns: repeat(2, 1fr);
        gap: 30px;}
}
@media (max-width:768px) {
  .strength-section-item{
  grid-template-columns: 1fr;
          gap: 30px;}
}

.strengths-section .section-heading h2 {
  color: var(--white);

  font-size: clamp(2.2rem, 1vw + 1.8rem, 3rem);

  font-weight: 700;

  margin: 0;
}

/*=====================================
        Item
======================================*/

.strength-item {
  position: relative;
  padding: 20px;
  z-index: 2;
}

.strength-item h3 {
  color: #84cc16;

  font-weight: 700;

  line-height: 1;

  margin-bottom: 16px;
}

.strength-item h3::after {
  content: "+";
}

.strength-item p {
  color: var(--white);

  font-size: 18px;

  line-height: 1.35;

  font-weight: 400;
  max-width: 200px;

  margin: 0;
}

/*=====================================
        Desktop
======================================*/

.counter-section {
  padding: clamp(50px, 37.865px + 3.236vw, 100px) 0px;
  margin: 0px;
}

.tab-btn {
  position: relative;
}

.tab-btn .arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  align-items: center;
  justify-content: center;
}

.mobile-arrow,
.desktop-arrow {
  display: none;
}

.mobile-arrow {
  align-items: center;
  justify-content: center;
}

.mobile-arrow svg {
  display: block;
  width: 18px;
  height: 18px;
  color: #fff;
  transition: transform 0.25s ease;
}

.mobile-arrow1 svg {
  display: block;
  width: 18px;
  height: 18px;
  color: #000000;
  transition: transform 0.25s ease;
}

.desktop-arrow svg {
  display: block;
  width: 21px;
  height: 17px;
}

@media (max-width: 767.98px) {
  .tab-btn .arrow {
    display: flex;
  }

  .mobile-arrow {
    display: flex;
  }

  .tab-btn.active .mobile-arrow svg {
    transform: rotate(180deg);
  }

  .mb-res3 {
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) {
  .tab-btn .arrow {
    display: none;
  }

  .tab-btn.active .arrow {
    display: flex;
  }

  .desktop-arrow {
    display: flex;
  }

  .mobile-arrow {
    display: none;
  }
}

/*=====================================
Section
======================================*/

.hygiene-section {
  padding: clamp(10px, 7.57375px + 0.647vw, 20px) 0
    clamp(50px, 37.865px + 3.236vw, 100px);
  overflow: hidden;
}

.hygiene-section h2,
.affiliations-section h2 {
  color: var(--blue);
}

.section-title p {
  font-size: clamp(1.143rem, 0.129vw + 1.108rem, 1.286rem);
  margin: 0;
}

/*=====================================
Image Layout
======================================*/

.hygiene-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}

.gallery-main img,
.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-side {
  display: grid;
  gap: 12px;
}

.gallery-main {
  aspect-ratio: 1 / 0.86;
}

.gallery-img {
  aspect-ratio: 16 / 7;
}

/*=====================================
Intro
======================================*/

.intro-text {
  margin-bottom: 60px;
}

.intro-text p {
  font-size: clamp(1.143rem, 0.259vw + 1.074rem, 1.429rem);
  line-height: 1.7;
  color: var(--black);
  margin: 0;
}

/*=====================================
Cards
======================================*/

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 50px;
}

.highlight-card {
  background: var(--primary-color);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 20px;
}

.highlight-card-inner {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.highlight-card .icon img {
  max-width: 64px;
  max-height: 64px;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.highlight-card h3 {
  font-size: clamp(1.286rem, 0.259vw + 1.216rem, 1.571rem);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.35;
}

.highlight-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--white);
  margin: 0;
}

/*=====================================
Bottom Text
======================================*/

.bottom-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--black);
  margin: 0;
}

/*==============================
Affiliations Section
===============================*/

.affiliations-section {
  background: var(--light-green1);
  padding: clamp(50px, 37.865px + 3.236vw, 100px) 0;
  overflow: hidden;
}

.section-title {
  margin-bottom: clamp(35px, 2vw, 60px);
}

/*==============================
Logo Grid
===============================*/

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(35px, 3vw, 70px) clamp(30px, 4vw, 80px);
  align-items: center;
  justify-items: center;
}

.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 20%;
  min-width: 0;
  text-align: center;
  max-width: 180px;
}

.logo-item img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.logo-item:hover img {
  transform: scale(1.05);
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px 20px;
  padding: 16px 0;
}

/*==============================
Pioneer Section
==============================*/

.title-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.title-icon img {
  width: 85px;
  height: auto;
}

/*==============================
Grid
==============================*/

.pioneer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/*==============================
Card
==============================*/

.pioneer-card {
  position: relative;
  height: clamp(21.875rem, 16.181vw + 18.083rem, 37.5rem);
  max-height: 450px;
  overflow: hidden;
}

.pioneer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

.pioneer-card:hover img {
  transform: scale(1.08);
}

.card-label {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--green);
  padding: 18px 15px;
  text-align: center;
}

.card-label p {
  font-size: var(--fs-18);
  font-weight: 500;
  color: var(--white);
  margin: 0;
  line-height: 1.4;
}

/*==============================
Responsive
==============================*/

@media (max-width: 1199px) {
  .pioneer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .pioneer-section {
    padding: 50px 15px;
  }

  .title-wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .title-icon img {
    width: 70px;
  }

  .pioneer-grid {
    grid-template-columns: 1fr;
  }

  .card-label {
    padding: 15px;
  }

  .card-label p {
    font-size: var(--fs-16);
  }
}

.our-presence {
  padding: clamp(25px, 18.9325px + 1.618vw, 50px) 0px;
  background: #fff;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.presence-wrapper {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.25rem, 1.294vw + 0.947rem, 2.5rem);
}

.presence-map {
  flex: 1;
}

.presence-map img {
  width: 100%;
  display: block;
}

.presence-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.box-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.box-title .icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #7ebd62;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.box-title.blue .icon {
  background: #006cb5;
}

.box-title h3 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -1.28px;
  color: #25120e;
  margin: 0;
}

.divider {
  height: 1px;
  background: #222;
}

.presence-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.states-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 92px;
  row-gap: 0;
}

.state-item {
  padding-bottom: 12px;
}

.state-item h4 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

.state-item ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.state-item li {
  font-size: 12px;
}

.ut-list {
  list-style: decimal;
  margin: 0 0 10px;
  padding-left: 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #346767;
  counter-reset: item;
}

.ut-list li {
  font-size: 16px;

  font-weight: 600;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.journey {
  background: #fff;
}

.journey__inner {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 100%;
}

.journey__title {
  color: var(--color-primary);
}

/* =========================================================
   TIMELINE
   Reproduces the original layout exactly: the first year sits
   at a fixed offset (left: 120px) as its own larger dot, and the
   remaining years are spaced evenly inside a positioned row.
   ========================================================= */
.timeline {
  position: relative;
  width: 100%;
  max-width: 1448px;
  height: 78px;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.timeline::-webkit-scrollbar {
  display: none;
}

.timeline__track {
  position: absolute;
  left: 0;
  top: 56px;
  width: 100%;
  min-width: 100%;
  height: 14px;
  background: var(--color-track);
  border-radius: 32px;
}

@media (max-width: 768px) {
  .timeline__track {
    top: 40px;
    height: 10px;
  }
}

.timeline__progress {
  position: absolute;
  left: 0;
  top: 56px;
  height: 14px;
  width: 0;
  background: var(--color-accent);
  border-radius: 32px;
  transition: width var(--transition-bar);
  max-width: 100%;
}

@media (max-width: 768px) {
  .timeline__progress {
    top: 40px;
    height: 10px;
  }
}

/* --- the first, fixed-position milestone --- */
.timeline__dot--first {
  position: absolute;
  left: 120px;
  top: 45px;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--color-accent);
  transition: transform var(--transition-fast);
}

.timeline__dot--first:hover {
  transform: scale(1.1);
}

.timeline__dot--first.is-active {
  background: var(--color-accent);
}

@media (max-width: 768px) {
  .timeline__dot--first {
    left: 70px;
    top: 32px;
    width: 20px;
    height: 20px;
    border-width: 3px;
  }
}

.timeline__year--first {
  position: absolute;
  left: 120px;
  top: 22.5px;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--color-text);
  line-height: 45px;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.timeline__year--first:hover,
.timeline__year--first.is-active {
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .timeline__year--first {
    left: 71px;
    top: 18px;
    font-size: 12px;
    line-height: 30px;
  }
}

/* --- the remaining milestones, evenly spaced --- */
.timeline__points {
  position: absolute;
  left: 257px;
  top: 0;
  width: 990px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1024px) {
  .timeline__points {
    left: 180px;
    width: calc(100% - 200px);
  }
}

@media (max-width: 768px) {
  .timeline__points {
    left: 120px;
    width: calc(100% - 140px);
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .timeline__points::-webkit-scrollbar {
    display: none;
  }
}

.timeline__point {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 33px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .timeline__point {
    width: auto;
    min-width: 24px;
  }
}

.timeline__year {
  font-size: 14px;
  color: var(--color-text);
  line-height: 45px;
  white-space: nowrap;
  transition:
    color var(--transition-fast),
    font-weight var(--transition-fast);
}

.timeline__year:hover,
.timeline__point.is-active .timeline__year {
  color: var(--color-accent);
  font-weight: 600;
}

@media (max-width: 768px) {
  .timeline__year {
    font-size: 10px;
    line-height: 20px;
    margin-bottom: 4px;
  }
}

.timeline__dot {
  width: 33px;
  height: 33px;
  transition: transform var(--transition-fast);
}

.timeline__dot:hover {
  transform: scale(1.15);
}

.timeline__point.is-active .timeline__dot svg circle {
  fill: var(--color-accent);
  stroke: none;
}

@media (max-width: 768px) {
  .timeline__dot {
    width: 20px;
    height: 20px;
  }
}

.timeline__dot svg {
  width: 100%;
  height: 100%;
}

.timeline__dot circle {
  fill: #fff;
  stroke: var(--color-accent);
  stroke-width: 4;
  transition: fill var(--transition-fast);
}

@media (max-width: 768px) {
  .timeline__dot circle {
    stroke-width: 3;
  }
}

@media (max-width: 768px) {
  .timeline {
    display: none;
  }

  /* mobile carousel nav takes over below 768px */
}

/* =========================================================
   SHOWCASE CARD
   ========================================================= */
.showcase {
  position: relative;
  width: 100%;
  max-width: 1372px;
  margin-top: 48px;
  padding: 50px;
  border-radius: 8px;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.showcase::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 40px;
  width: 105px;
  height: 97px;
  background: url(../images/journey-bg-patch.png) no-repeat center center;
  z-index: 1;
}

@media (max-width: 768px) {
  .showcase {
    flex-direction: column;
    padding: 40px 20px;
  }
}

.showcase__content {
  position: relative;
  z-index: 2;
  background: url(../images/journey-text-bg.png) no-repeat center center;
  padding: 0 60px 100px;
  background-size: contain;
  width: 60%;
}

@media (max-width: 768px) {
  .showcase__content {
    width: 100%;
    padding: 0 20px 40px;
  }
}

.showcase__year {
  color: #006cb5;
  font-size: clamp(2.5rem, 3.883vw + 1.59rem, 6.25rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.72px;
}

.showcase__text {
  font-size: clamp(1.125rem, 0.647vw + 0.973rem, 1.75rem);
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  margin: 16px 0 0;
  letter-spacing: -0.72px;
  font-family: Oswald, sans-serif;
}

.showcase__image-wrap {
  flex-shrink: 0;
}

.showcase__image {
  width: 420px;
  height: 450px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .showcase__image {
    width: 100%;
    height: auto;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.showcase__year.is-animating,
.showcase__text.is-animating {
  animation: fadeIn 0.5s ease;
}

/* =========================================================
   MOBILE NAV
   ========================================================= */
.journey__mobile-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 1372px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .journey__mobile-nav {
    display: flex;
  }
}

.journey__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast);
}

.journey__nav-btn:hover {
  background: #2e6616;
  transform: scale(1.1);
}

.journey__nav-btn:active {
  transform: scale(0.95);
}

.journey__nav-indicator {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}

/* ===========================
   Lead Generation Section
=========================== */

.lead-generation {
  padding: 80px 0;
}

.lead-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.lead-content {
  text-align: center;

  margin: 0 auto;
}

.lead-content p {
  font-size: clamp(1.143rem, 0.129vw + 1.108rem, 1.286rem);
  color: #050038;
  line-height: 142.857%;
  font-weight: 400;
}

.lead-subtitle {
  font-size: 22px;
  margin-bottom: 24px;
}

.lead-form-section {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 620px;
}

.lead-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(10px);
  transform: scale(1.08);
}

.lead-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

.lead-form-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
}

.lead-form {
  background: #fff;
  border-radius: 14px;
  padding: 40px 35px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.lead-form h3 {
  font-size: clamp(1.25rem, 1.5vw + 0.75rem, 1.5rem);
  font-weight: 700;
  color: #333;
  margin: 0 0 8px;
  text-align: center;
}

.lead-form > p {
  font-size: clamp(0.875rem, 0.5vw + 0.625rem, 1rem);
  font-weight: 400;
  color: #666;
  margin: 0 0 30px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  color: #333;
  background: #fff;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.form-group input:focus {
  border-color: #2d8f2d;
}

.lead-form button {
  width: 100%;
  padding: 14px 24px;
  background: #41901f;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.lead-form button:hover {
  background: #3d7d17;
}

@media (max-width: 768px) {
  .lead-generation {
    padding: 60px 0;
  }

  .lead-wrapper {
    gap: 60px;
  }

  .lead-form-section,
  .lead-form-overlay {
    min-height: auto;
  }

  .lead-form {
    padding: 30px 20px;
  }
}

/*==============================
Testimonials Section
==============================*/

.client-review-section {
  padding: clamp(50px, 37.865px + 3.236vw, 100px) 0;
  background: var(--light-green1);
  position: relative;
  overflow: hidden;
}

.review-heading {
  text-align: center;
  margin-bottom: 60px;
}

.review-heading h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
  line-height: 1.2;
}

.review-heading p {
  font-size: 16px;
  color: #555;
  margin: 0;
}

/*==============================
Swiper
==============================*/

.testimonialSwiper {
  overflow: hidden;
  position: relative;
}

.testimonialSwiper .swiper-wrapper {
  align-items: center;
}

.testimonialSwiper .swiper-slide {
  display: flex;
  align-items: self-start;
  padding: 0 120px;
  height: auto;
}

/*==============================
Card
==============================*/

.review-card {
  display: flex;
  align-items: center;
  gap: 70px;
  width: 100%;
      padding: 40px 0;
}

.review-logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #fff;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.review-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.review-content {
  flex: 1;

  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}

.quote-icon svg {
  display: block;
}

.review-title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  margin: 0;
}

.review-description {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  margin: 0;
}

.review-company {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-top: 8px;
}

/*==============================
Navigation
==============================*/

.testimonialSwiper .swiper-button-prev,
.testimonialSwiper .swiper-button-next {
  width: 54px;
  height: 54px;

  border-radius: 50%;

  color: var(--color-accent);
  transition: 0.3s;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.testimonialSwiper .swiper-button-prev:hover,
.testimonialSwiper .swiper-button-next:hover {
  transform: translateY(-4px);
}

.testimonialSwiper .swiper-button-prev {
  left: 0;
}

.testimonialSwiper .swiper-button-next {
  right: 0;
}
.testimonialSwiper .swiper-button-next svg,.testimonialSwiper .swiper-button-prev svg {
  stroke-width: 3px;
}

/*==============================
Responsive
==============================*/

@media (max-width: 1024px) {
  .testimonialSwiper {
    padding: 0 60px;margin: 60px auto 0;
  }

  .review-card {
    gap: 40px;
  }

  .review-logo {
    width: 160px;
    height: 160px;
    padding: 15px;
  }

  .review-title {
    font-size: 22px;
  }

  .framework-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonialSwiper .swiper-slide {
    padding: 0 20px;
  }
.review-company{
  font-size: 14px;
}
  .review-heading {
    margin-bottom: 40px;
  }

  .testimonialSwiper {
    padding: 0;
  }

  .review-card {
    flex-direction: column;
    text-align: left;
    gap: 30px;
    padding: 20px 0;
  }

  .review-logo {
    width: 150px;
    height: 150px;
    padding: 15px;
  }

  .review-title {
    font-size: 20px;
  }

  .review-description {
    font-size: 14px;
  }

  .testimonialSwiper .swiper-button-prev,
  .testimonialSwiper .swiper-button-next {
    /* display: none; */
  }

  .framework-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/*==============================
        FOOTER
==============================*/

.footer {
  background: #fff
    url("data:image/svg+xml,%3Csvg width='1920' height='726' viewBox='0 0 1920 726' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1923 0H0V726C153.467 601.12 332.435 488.294 531.756 395.361C1030.89 162.644 1543.34 107.965 1923 214.04V0Z' fill='%23F7FFCD'/%3E%3C/svg%3E")
    no-repeat;
  background-size: cover;
  background-position: center top;
  position: relative;
  padding: 80px 0 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column0 {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-logo {
  display: inline-block;
  /* margin-bottom: 20px; */
}

.footer-logo img {
  max-width: 250px;
  width: 100%;
  display: block;
}

.company-info {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.8);
}

.company-info span {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin-bottom:0px;
}

.company-info p {
  margin: 0;
}

.footer-column span {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14 px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #41901f;

}

/*==============================
        SOCIAL ICONS
==============================*/

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #212121;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.footer-social a:hover {
  background: #41901f;
  color: #fff;
  transform: translateY(-1px);
}

/*==============================
        NEWSLETTER
==============================*/

.newsletter {
  display: flex;
  flex-direction: column;
}

.newsletter h3 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
}

.newsletter p {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.75);
}

/*==============================
        EMAIL INPUT
==============================*/

.newsletter-form {
  width: 100%;
}

.newsletter-input {
  display: flex;
  align-items: center;
  height: 60px;
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.newsletter-input input {
  flex: 1;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 24px;
  font-size: 16px;
  color: #000;
}

.newsletter-input input::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

/*==============================
        SUBSCRIBE BUTTON
==============================*/

.newsletter-input button {
  width: 60px;
  height: 60px;
  border: none;
  background: #97c943;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.newsletter-input button svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.newsletter-input button:hover {
  background: #212121;
}

/*==============================
        TOLL FREE
==============================*/

.toll-free > p {
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 16px;
}

.phone-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.toll-btn small {
  display: block;
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 2px;
}

.toll-btn strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

/*=========================================
        FOOTER BOTTOM=*/

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
      font-size: 14px;
    color: #000c;
    text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #97c943;
}

.copyright {
font-size: 14px;
    color: #0009;
  text-align: right;
}

/*=========================================
        LAPTOP
=========================================*/

@media (max-width: 1200px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

/*=========================================
        TABLET
=========================================*/

@media (max-width: 991px) {
  .footer {
    padding: 70px 0 35px;
  }

  .footer-main {
    /* grid-template-columns: 1fr; */
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
    margin-bottom: 50px;
  }

  .footer-column {
    width: 100%;
  }

  .newsletter {
    max-width: 600px;
  }

  .footer-bottom {
    flex-direction: column;
   justify-content: center;
    gap: 20px;
  }

  .copyright {
    text-align: left;
  }
}

/*=========================================
        MOBILE
=========================================*/

@media (max-width: 767px) {
  .footer {
    padding: 40px 0  ;
    background-position: center;
    background-size: cover;
  }

  .footer-column0 {
    gap: 0;
  }

  .footer-logo {
    margin-bottom: 20px;
  }

  .review-card {
    flex-direction: column;
    padding: 0 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 40px;
    margin-bottom: 40px;
  }

  .testimonialSwiper .swiper-button-next,
  .testimonialSwiper .swiper-button-prev {
    width: 24px;
    height: 24px;
  }

  .footer-column h3 {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .footer-links li {
    margin-bottom: 12px;
  }

  .newsletter h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .newsletter p {
    font-size: 14px;
  }

  .newsletter-input {
    height: 54px;
  }

  .newsletter-input input {
    padding: 0 18px;
    font-size: 15px;
  }

  .newsletter-input button {
    width: 54px;
    height: 54px;
  }

  .newsletter-input button svg {
    width: 20px;
    height: 20px;
  }

  .footer-social {
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
  }

  .toll-btn {
    width: 100%;
    justify-content: flex-start;
    padding: 16px 20px;
  }

  .phone-icon {
    width: 44px;
    height: 44px;
  }

  .toll-btn strong {
    font-size: 18px;
  }

  .footer-bottom-links {
    /* flex-direction: column; */
    align-items: flex-start;
    gap: 16px;        justify-content: center;
  }

  .copyright {
    font-size: 14px;
    line-height: 1.6;
  }

  .highlight-card {
    gap: 15px;
  }

  .highlight-card .icon img {
    width: 60px;
    height: 60px;
  }

  .company-info {
    margin-bottom: 32px;
  }
}

/*=========================================
        SMALL MOBILE
=========================================*/

@media (max-width: 480px) {
  .footer-column h3 {
    font-size: 14px;
  }

  .newsletter h3 {
    font-size: 18px;
  }

  .newsletter-input {
    height: 50px;
  }

  .newsletter-input input {
    font-size: 14px;
    padding: 0 16px;
  }

  .newsletter-input button {
    width: 50px;
    height: 50px;
  }

  .phone-icon {
    width: 40px;
    height: 40px;
  }

  .toll-btn strong {
    font-size: 17px;
  }

  .footer-bottom-links a,
  .copyright {
    font-size: 14px;
    text-align: center  ;
  }
}

.footer-call-box {
  background: url("../images/call-btn.png") no-repeat;
  background-size: contain;
  background-position: center left;
  padding: 16px;
  border-radius: 8px;
  margin-top: 24px;
}

.footer-call-box p {
  font-size: 14px;
  color: #fff;
  margin: 0 0 0 60px;
}

.footer-call-box a {
  color: #fff;
  margin: 0 0 0 52px;
  background-color: #97c943;
  padding: 6px 12px 4px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  border-radius: 8px;
  display: inline-block;
  text-decoration: none;
}

.footer-call-box a:hover {
  color: #fff;
}

.footer-newsletter {
   margin: 0 0 16px;
}
.footer-newsletter .footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;

}

.footer-newsletter .footer-newsletter-input-wrap {
  display: flex;
  gap: 8px;
}

.footer-newsletter .footer-newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.footer-newsletter .footer-newsletter-form button {
  background: #41901f;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.footer-newsletter .footer-newsletter-form button:hover {
opacity: .9;
    transform: scale(1.05);
}

.footer-newsletter .footer-newsletter-form button svg {
  height: 20px;
  width: 20px;
}

#preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  z-index: 999999;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pair {
  display: flex;
  gap: 18px;
  animation: loader 3s infinite ease-in-out;
}

.box {
  width: 20px;
  height: 20px;
  background: #006cb5;
}

.box1 {
  width: 20px;
  height: 20px;
  background: #b0cb1f;
}

@keyframes loader {
  0% {
    gap: 18px;
    transform: rotate(0deg);
  }

  20% {
    gap: 0;
  }

  45% {
    gap: 0;
    transform: rotate(360deg);
  }

  60% {
    gap: 18px;
  }

  80% {
    gap: 0;
  }

  100% {
    gap: 0;
    transform: rotate(0deg);
  }
}

.mobile-arrow1 {
  display: inline-flex;
  transition: transform 0.3s ease;
}

.mobile-arrow1.rotate {
  transform: rotate(180deg);
}

/* /////////////ABOUT US PAGE CSS//////////////////// */
/* Container */

.container {
  width: 100%;
  max-width: 1280px;
  /* margin:auto; */
  padding: 0 ;
}

/* ==========================
   HERO BANNER
========================== */

.hero-banner {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
  background: #03254a;
}

@media (max-width: 1024px) {
  .hero-banner {
    min-height: 500px;
  }
}
.hero-banner {

        margin: 79px 0 0 0;
  }
@media (max-width: 768px) {
  .hero-banner {
   min-height: 400px;
        margin: 67px 0 0 0;
  }
}

/* Background Image */

.hero-banner__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition:    0.4s ease;
}

.hero-banner__image.hero-banner__image--loaded {
  opacity: 1;
}

/* Overlay */

.hero-banner__overlay {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 600px;
}

@media (max-width: 1024px) {
  .hero-banner__overlay {
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .hero-banner__overlay {
    min-height: 400px;
  }
}

/* Content */

.hero-banner__content {
  max-width: 1140px;
  padding: clamp(1.25rem, 5.178vw + 0.036rem, 6.25rem);
  background: rgba(3, 37, 74, 0.7);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

/* Decorative Line */

.hero-banner__line {
  width: 52px;
  height: 6px;
  background: #41901f;
  border-radius: 30px;
}

/* Title */

.hero-banner__title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 2.201vw + 0.984rem, 3.625rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0;
  white-space: pre-line;
}

.hero-banner__title span {
  color: #b0cb1f;
}

/* Description */

.hero-banner__text {
  font-size: clamp(1rem, 0.388vw + 0.909rem, 1.375rem);
  line-height: 1.6;
  color: #fff;
  margin: 0 0 24px;
  max-width: 1007px;
  white-space: pre-line;
}

/* Button */

.hero-banner__btn {
  display: inline-block;
  padding: clamp(0.875rem, 0.3vw + 0.8rem, 1rem)
    clamp(1.5rem, 1vw + 1.2rem, 2rem);
  font-size: clamp(0.875rem, 0.2vw + 0.8rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
  border: none;
}

.hero-banner__btn:hover {
  background: #41901f;
}

@media (max-width: 768px) {
  .hero-banner__content {
    max-width: 100%;
    gap: 24px;
  }
  .navbar-toggler {

    padding: 0 0 9px 0;

}

  .hero-banner__btn {
    width: 100%;
    text-align: center;
    display: inline-block;
    padding: clamp(0.875rem, 0.3vw + 0.8rem, 1rem)
      clamp(1.5rem, 1vw + 1.2rem, 2rem);
    font-size: clamp(0.875rem, 0.2vw + 0.8rem, 1rem);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    border: none;
  }
}

/* about us section2 */
.info-header .section-title,
.info-header .section-subtitle {
  text-align: inherit !important;
}

.info-layout {
  display: flex;
  flex-direction: row;
  gap: 60px;
}

@media (max-width: 1024px) {
  .info-layout {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .info-layout {
    gap: 30px;
  }
}

.layout-image-left .info-layout {
  flex-direction: row !important;
}

@media (max-width: 1024px) {
  .layout-image-left .info-layout {
    flex-direction: column !important;
  }
}

.layout-image-left .mv-content-wrapper {
  flex-direction: row;
}

@media (max-width: 1024px) {
  .layout-image-left .mv-content-wrapper {
    flex-direction: column;
  }
}

.layout-image-right .info-layout {
  flex-direction: row-reverse !important;
}

@media (max-width: 1024px) {
  .layout-image-right .info-layout {
    flex-direction: column !important;
  }
}

.layout-image-right .mv-content-wrapper {
  flex-direction: row-reverse;
}

@media (max-width: 1024px) {
  .layout-image-right .mv-content-wrapper {
    flex-direction: column;
  }
}

.layout-image-center .center-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (max-width: 1024px) {
  .layout-image-center .center-layout {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .layout-image-center .center-layout {
    gap: 20px;
  }
}

.layout-image-center .center-layout .info-image-wrapper {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

@media (max-width: 1024px) {
  .layout-image-center .center-layout .info-image-wrapper {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .layout-image-center .center-layout .info-image-wrapper {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.layout-image-center .center-layout .info-content {
  width: 100%;
  max-width: 100%;
}

.info-image-wrapper {
  flex-shrink: 0;
  width: 50%;
  overflow: hidden;
  min-height: 100%;
  will-change: transform, opacity;
  transition:
    transform 0.7s cubic-bezier(0.22, 0.9, 0.37, 1),
    opacity 0.5s ease-out;
}

@media (max-width: 1024px) {
  .info-image-wrapper {
    width: 100% !important;
    max-width: 100%;
    flex-basis: 100% !important;
  }
}

@media (max-width: 768px) {
  .info-image-wrapper {
    width: 100% !important;
    max-width: 100%;
    flex-basis: 100% !important;
    max-height: 400px;
  }
}

.info-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.info-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

@media (max-width: 1024px) {
  .info-content {
    width: 100% !important;
    flex-basis: 100% !important;
  }
}

@media (max-width: 768px) {
  .info-content {
    width: 100% !important;
    flex-basis: 100% !important;
  }
}

.info-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.9;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
}

.bullet-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nested-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nested-item {
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  padding-left: 16px;
}

.nested-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: currentColor;
  font-weight: 700;
}

.icon-wrapper {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.check-icon {
  width: 100%;
  height: 100%;
  display: block;
}

.info-description,
.info-html {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 10px 0 0;
}

.info-html blockquote {
  background-color: #368016;
  padding: 20px;
  color: #fff;
  margin-block: 32px;
  border-radius: 8px;
}

.info-html h2 {
  margin: 0;
  font-size: clamp(1.714rem, 0.518vw + 1.576rem, 2.286rem);
  line-height: 1.4;
  font-weight: 700;
}

.info-html h3 {
  margin: 0 0 20px;
  font-size: clamp(1.714rem, 0.518vw + 1.576rem, 2.286rem);
  line-height: 1.4;
  font-weight: 400;
}

.info-html p {
  font-size: clamp(1rem, 0.129vw + 0.965rem, 1.143rem);
  line-height: 1.8;
  font-weight: 400;
  margin: 0.5em 0;
}

/* about-us section3 */
.two-column-layout {
  display: flex;
  flex-direction: row;
  gap: 60px;
}

@media (max-width: 1024px) {
  .two-column-layout {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .two-column-layout {
    gap: 30px;
  }
}

.two-column-layout {
  flex-direction: row !important;
}

@media (max-width: 1024px) {
  .two-column-layout {
    flex-direction: column !important;
  }
}

.content-wrapper-inner {
  flex-direction: row;
}

@media (max-width: 1024px) {
  .content-wrapper-inner {
    flex-direction: column;
  }
}

@media (max-width: 1024px) {
  .two-column-layout {
    flex-direction: column !important;
  }
}

.image-right .content-wrapper-inner {
  flex-direction: row-reverse;
}

@media (max-width: 1024px) {
  .image-right .content-wrapper-inner {
    flex-direction: column;
  }
}

.image-center .center-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (max-width: 1024px) {
  .image-center .center-layout {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .image-center .center-layout {
    gap: 20px;
  }
}

.image-center .center-layout .image-container {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

@media (max-width: 1024px) {
  .image-center .center-layout .image-container {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .image-center .center-layout .image-container {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.image-center .center-layout .content-wrapper {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 768px) {
  .image-container {
    width: 100% !important;
    max-width: 100%;
    flex-basis: 100% !important;
    max-height: 400px;
  }
}

.custom-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

@media (max-width: 1024px) {
  .content-wrapper {
    width: 100% !important;
    flex-basis: 100% !important;
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    width: 100% !important;
    flex-basis: 100% !important;
  }
}

.custom-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .custom-label {
    font-size: 12px;
  }
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .bullet-item {
    font-size: 14px;
    gap: 10px;
  }
}

.bullet-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nested-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nested-item {
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  padding-left: 16px;
}

.nested-item:before {
  content: "•";
  position: absolute;
  left: 0;
  color: currentColor;
  font-weight: 700;
}

@media (max-width: 768px) {
  .nested-item {
    font-size: 13px;
    padding-left: 14px;
  }
}

.icon-wrapper {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

@media (max-width: 768px) {
  .icon-wrapper {
    width: 18px;
    height: 18px;
    margin-top: 2px;
  }
}

.check-icon {
  width: 100%;
  height: 100%;
  display: block;
}

.custom-description,
.content-html {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 10px 0 0;
}

@media (max-width: 768px) {
  .custom-description,
  .content-html {
    font-size: 14px;
  }
}

.custom-description .ql-align-left,
.content-html .ql-align-left {
  text-align: left;
}

.custom-description .ql-align-center,
.content-html .ql-align-center {
  text-align: center;
}

.custom-description .ql-align-right,
.content-html .ql-align-right {
  text-align: right;
}

.custom-description .ql-align-justify,
.content-html .ql-align-justify {
  text-align: justify;
}

.custom-description table,
.content-html table {
  border-collapse: collapse;
  width: 100%;
  margin: 1em 0;
}

.custom-description th,
.custom-description td,
.content-html th,
.content-html td {
  border: 1px solid #dddddd;
  padding: 0.5em 0.75em;
  text-align: left;
}

.custom-description th,
.content-html th {
  font-weight: 700;
  border-bottom: 2px solid #212121;
}

.content-html h3 {
  margin: 0 0 20px;
  font-size: clamp(1.714rem, 0.518vw + 1.576rem, 2.286rem);
  line-height: 1.4;
  font-weight: 400;
}

.content-html h2 {
  margin: 0;
  font-size: clamp(1.714rem, 0.518vw + 1.576rem, 2.286rem);
  line-height: 1.4;
  font-weight: 700;
}

.content-html p {
  font-size: clamp(1rem, 0.129vw + 0.965rem, 1.143rem);
  line-height: 1.8;
  font-weight: 400;
}

.content-html ul {
  list-style: none;
  padding: 0;
  margin: 30px 0 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.content-html ul li {
  gap: 12px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  position: relative;
  padding-left: 30px;
}

/* about-us section5 */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.stat-card {
  text-align: center;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px #00000026;
  padding: 40px 20px;
}

.stat-card .icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card .icon-wrapper img {
  max-width: 64px;
  max-height: 64px;
}

@media (max-width: 768px) {
  .stat-card .icon-wrapper {
    width: 60px;
    height: 60px;
  }
}

.stat-card .stat-title {
  font-size: clamp(1.143rem, 0.129vw + 1.108rem, 1.286rem);
  font-weight: 700;
  color: #050038;
  margin-bottom: 12px;
}

.stat-card .stat-description {
  font-size: 1rem;
  line-height: 1.5;
  color: #05003899;
  white-space: pre-line;
}

.text-content {
  margin-bottom: 40px;
  text-align: center;
}

.text-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #050038;
  margin-bottom: 16px;
  position: relative;
  z-index: 10;
}

.text-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .text-content p {
    font-size: 13px;
  }
}

.illustration {
  position: absolute;
  bottom: 0;
  left: 60px;
  width: 270px;
  height: auto;
}

@media (max-width: 1024px) {
  .illustration {
    display: none;
  }
}

.illustration img {
  width: 100%;
  height: auto;
}

.decorative-shapes .shape {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #41901f;
  transform: rotate(45deg);
  opacity: 0.8;
  will-change: transform, opacity;
}

.decorative-shapes .shape:nth-child(1) {
  top: 80px;
  right: 100px;
  width: 30px;
  height: 30px;
}

.decorative-shapes .shape:nth-child(2) {
  top: 200px;
  right: 60px;
  width: 20px;
  height: 20px;
}

.decorative-shapes .shape:nth-child(3) {
  bottom: 100px;
  right: 80px;
  width: 35px;
  height: 35px;
}

.decorative-shapes .shape:nth-child(4) {
  bottom: 200px;
  right: 120px;
  width: 15px;
  height: 15px;
}

@media (max-width: 1024px) {
  .decorative-shapes .shape {
    display: none;
  }
}

.decorative-shapes.in-view .shape {
  animation: float-anim 4s ease-in-out infinite;
}

.decorative-shapes.in-view .shape:nth-child(1) {
  animation-duration: 4.2s;
  animation-delay: 0s;
}

.decorative-shapes.in-view .shape:nth-child(2) {
  animation-duration: 3.6s;
  animation-delay: 0.15s;
}

.decorative-shapes.in-view .shape:nth-child(3) {
  animation-duration: 5s;
  animation-delay: 0.08s;
}

.decorative-shapes.in-view .shape:nth-child(4) {
  animation-duration: 3.2s;
  animation-delay: 0.22s;
}

@keyframes float-anim {
  0% {
    transform: rotate(45deg) translateY(0) scale(1);
  }

  50% {
    transform: rotate(30deg) translateY(-8px) scale(1.05);
  }

  to {
    transform: rotate(45deg) translateY(0) scale(1);
  }
}

.cta-button-solid {
  display: inline-block;
  padding: clamp(0.875rem, 0.3vw + 0.8rem, 1rem)
    clamp(1.5rem, 1vw + 1.2rem, 2rem);
  font-size: clamp(0.875rem, 0.2vw + 0.8rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
  border: none;
}

/* aboutus section6 */
.two-column-layout {
  display: flex;
  flex-direction: row;
  gap: 60px;
}

@media (max-width: 1024px) {
  .two-column-layout {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .two-column-layout {
    gap: 30px;
  }

  .cta-button-solid {
    width: 100%;
  }

  .info-html blockquote {
    font-size: 14px !important;
  }

  .framework-conten1 p {
    font-size: 14px !important;
  }
}

.image-right .two-column-layout {
  /* flex-direction: row-reverse !important */
}

.image-center .center-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (max-width: 1024px) {
  .image-center .center-layout {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .image-center .center-layout {
    gap: 20px;
  }
}

.image-center .center-layout .image-container {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

@media (max-width: 1024px) {
  .image-center .center-layout .image-container {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .image-center .center-layout .image-container {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.image-center .center-layout .content-wrapper {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .image-container {
    width: 100% !important;
    max-width: 100%;
    flex-basis: 100% !important;
  }
}

@media (max-width: 768px) {
  .image-container {
    width: 100% !important;
    max-width: 100%;
    flex-basis: 100% !important;
    max-height: 400px;
  }
}

.custom-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

@media (max-width: 1024px) {
  .content-wrapper {
    width: 100% !important;
    flex-basis: 100% !important;
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    width: 100% !important;
    flex-basis: 100% !important;
  }
}

.custom-description,
.content-html {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 10px 0 0;
}

@media (max-width: 768px) {
  .custom-description,
  .content-html {
    font-size: 14px;
  }
}

.content-html h2 {
  margin: 0;
  font-size: clamp(1.714rem, 0.518vw + 1.576rem, 2.286rem);
  line-height: 1.4;
  font-weight: 700;
}

.content-html1 p {
  margin: 0.5em 0;
}

.content-html ul {
  list-style: none;
  padding: 0;
  margin: 30px 0 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.content-html ul li:before {
  content: "";
  flex-shrink: 0;
  width: 17px;
  height: 15px;
  margin-top: 3px;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg width='17' height='15' viewBox='0 0 17 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.05275 15.0003C7.0504 15.0003 7.04767 15.0003 7.04533 15.0003C6.94845 14.9984 6.85704 14.957 6.79142 14.8859L0.0937628 7.60305C-0.021081 7.47805 -0.0316278 7.28977 0.0687628 7.15266C0.169153 7.01594 0.351966 6.96906 0.505872 7.04094L6.63595 9.91125C6.68751 9.93547 6.74845 9.92375 6.7879 9.88273L16.1387 0.109686C16.2652 -0.0227354 16.4723 -0.0371886 16.616 0.076874C16.7598 0.190936 16.793 0.395624 16.6926 0.54914L7.39103 14.7984C7.37775 14.8191 7.36212 14.8378 7.34493 14.8554L7.30392 14.8964C7.23712 14.9628 7.1465 15.0003 7.05275 15.0003Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='17' height='15' viewBox='0 0 17 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.05275 15.0003C7.0504 15.0003 7.04767 15.0003 7.04533 15.0003C6.94845 14.9984 6.85704 14.957 6.79142 14.8859L0.0937628 7.60305C-0.021081 7.47805 -0.0316278 7.28977 0.0687628 7.15266C0.169153 7.01594 0.351966 6.96906 0.505872 7.04094L6.63595 9.91125C6.68751 9.93547 6.74845 9.92375 6.7879 9.88273L16.1387 0.109686C16.2652 -0.0227354 16.4723 -0.0371886 16.616 0.076874C16.7598 0.190936 16.793 0.395624 16.6926 0.54914L7.39103 14.7984C7.37775 14.8191 7.36212 14.8378 7.34493 14.8554L7.30392 14.8964C7.23712 14.9628 7.1465 15.0003 7.05275 15.0003Z' fill='black'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  display: block;
  position: absolute;
  left: 0;
  top: 4px;
}

/* ==========================================
   Cleaned Up Classes - Departments Section
   ========================================== */

.departments-section {
  margin: 0;
  position: relative;
}

.departments-wrapper {
  background-color: rgb(255, 255, 255);
  padding: clamp(50px, 37.865px + 3.236vw, 100px) 0;
}

.departments-content {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

@media (max-width: 768px) {
  .departments-content {
    gap: 50px;
  }
}

.departments-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px 24px;
  row-gap: 80px;
  margin-top: 0;
}

@media (max-width: 1024px) {
  .departments-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 20px;
    row-gap: 60px;
  }
}

@media (max-width: 768px) {
  .departments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 16px;
    row-gap: 50px;
  }
}

.department-card-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 165px;
}

@media (max-width: 768px) {
  .department-card-wrapper {
    min-height: 140px;
  }
}

.department-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 165px;
  padding: 70px 25px 35px;
  border: 2px solid #b0cb1f;
  border-radius: 8px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.department-card:hover {
  box-shadow: 0 4px 12px #b0cb1f33;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .department-card {
    height: 140px;
    padding: 60px 15px 30px;
  }
}

.department-card-text {
  font-size: clamp(1rem, 0.259vw + 1.216rem, 1.2rem);
  font-weight: 400;
  line-height: 1.4;
  color: #25120e;
  text-align: center;
  margin: 0;
}

@media (max-width: 768px) {
  .department-card-text {
    font-size: 18px;
    line-height: 26px;
  }
}

.department-icon-container {
  position: absolute;
  top: -64px;
  left: 50%;
  transform: translate(-50%);
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .department-icon-container {
    width: 90px;
    height: 90px;
    top: -54px;
  }
}

.department-hexagon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.department-icon {
  position: relative;
  width: clamp(1.875rem, 1.942vw + 1.42rem, 3.75rem);
  height: clamp(1.875rem, 1.942vw + 1.42rem, 3.75rem);
  object-fit: contain;
  z-index: 1;
  mix-blend-mode: color-dodge;
}

@media (max-width: 768px) {
  .department-icon {
    width: 50px;
    height: 50px;
  }
}

/* board of director */
/* ==========================================
   Two Column Profile Layout Styles
   ========================================== */

.image-left .mv-content-wrapper {
  flex-direction: row;
}

@media (max-width: 1024px) {
  .image-left .mv-content-wrapper {
    flex-direction: column;
  }
}

.image-right .two-column-layout {
  /* flex-direction: row-reverse !important; */
}

.image-right .mv-content-wrapper {
  flex-direction: row-reverse;
}

@media (max-width: 1024px) {
  .image-right .mv-content-wrapper {
    flex-direction: column;
  }
}

.image-center .center-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (max-width: 1024px) {
  .image-center .center-layout {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .image-center .center-layout {
    gap: 20px;
  }
}

.image-center .center-layout .image-container {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

@media (max-width: 1024px) {
  .image-center .center-layout .image-container {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .image-center .center-layout .image-container {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.image-center .center-layout .content-wrapper {
  width: 100%;
  max-width: 100%;
}

.two-column-layout {
  display: flex;
}

.image-container {
  flex-shrink: 0;
  width: 50%;
  overflow: hidden;
  min-height: 100%;
  will-change: transform, opacity;
  transition:
    transform 0.7s cubic-bezier(0.22, 0.9, 0.37, 1),
    opacity 0.5s ease-out;
  transform: translate(0);
  opacity: 1;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(100px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-100px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1024px) {
  .image-container {
    width: 100% !important;
    max-width: 100%;
    flex-basis: 100% !important;
  }
}

@media (max-width: 768px) {
  .image-container {
    width: 100% !important;
    max-width: 100%;
    flex-basis: 100% !important;
    max-height: 400px;
  }
}

.custom-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

@media (max-width: 1024px) {
  .content-wrapper {
    width: 100% !important;
    flex-basis: 100% !important;
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    width: 100% !important;
    flex-basis: 100% !important;
  }
}

.label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .label {
    font-size: 12px;
  }
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .bullet-item {
    font-size: 14px;
    gap: 10px;
  }
}

.bullet-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nested-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nested-item {
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  padding-left: 16px;
}

.nested-item:before {
  content: "•";
  position: absolute;
  left: 0;
  color: currentColor;
  font-weight: 700;
}

@media (max-width: 768px) {
  .nested-item {
    font-size: 13px;
    padding-left: 14px;
  }
}

.icon-wrapper {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

@media (max-width: 768px) {
  .icon-wrapper {
    width: 18px;
    height: 18px;
    margin-top: 2px;
  }
}

.check-icon {
  width: 100%;
  height: 100%;
  display: block;
}

.description,
.content-html {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 10px 0 0;
}

@media (max-width: 768px) {
  .description,
  .content-html {
    font-size: 14px;
  }
}

/* ==========================================
   Tab Content Visibility Styles
   ========================================== */

.tab-content {
  display: none;
}

.tab-content.active-content {
  display: block;
}

/* ==========================================
   Tabs Navigation Styles
   ========================================== */

.tabs-navigation {
  display: flex;
  gap: 0;
  margin-top: 50px;
  padding: 0;
  justify-content: flex-start;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-button {
  padding: 12px 24px;
  background: #f5f5f5;
  border: 1px solid #e8e7ec;
  border-radius: 24px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #393643;
  transition: all 0.3s ease;
  margin-right: 8px;
  margin-bottom: 8px;
  min-width: 150px;
  text-align: center;
}

.tab-button:hover {
  background: #e9e9e9;
  border-color: #bbb;
}

.tab-button.active {
  background: #006cb5;
  color: #fff;
  border-color: #006cb5;
}

@media (max-width: 768px) {
  .tab-button {
    padding: 10px 18px;
    font-size: 14px;
    /* width: 100%; */
    text-align: center;
  }
}

/* ==========================================
   Two Column Profile Layout Styles
   ========================================== */

.image-left .mv-content-wrapper {
  flex-direction: row;
}

@media (max-width: 1024px) {
  .image-left .mv-content-wrapper {
    flex-direction: column;
  }
}

.image-right .mv-content-wrapper {
  flex-direction: row-reverse;
}

@media (max-width: 1024px) {
  .image-right .mv-content-wrapper {
    flex-direction: column;
  }
}

.image-center .center-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (max-width: 1024px) {
  .image-center .center-layout {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .image-center .center-layout {
    gap: 20px;
  }
}

.image-center .center-layout .image-container {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

@media (max-width: 1024px) {
  .image-center .center-layout .image-container {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .image-center .center-layout .image-container {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.image-center .center-layout .content-wrapper {
  width: 100%;
  max-width: 100%;
}

.two-column-layout {
  display: flex;
}

.image-container {
  flex-shrink: 0;
  width: 50%;
  overflow: hidden;
  min-height: 100%;
  will-change: transform, opacity;
  transition:
    transform 0.7s cubic-bezier(0.22, 0.9, 0.37, 1),
    opacity 0.5s ease-out;
}

@media (max-width: 1024px) {
  .image-container {
    width: 100% !important;
    max-width: 100%;
    flex-basis: 100% !important;
  }
}

@media (max-width: 768px) {
  .image-container {
    width: 100% !important;
    max-width: 100%;
    flex-basis: 100% !important;
    max-height: 400px;
  }
}

.custom-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

@media (max-width: 1024px) {
  .content-wrapper {
    width: 100% !important;
    flex-basis: 100% !important;
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    width: 100% !important;
    flex-basis: 100% !important;
  }
}

.label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .label {
    font-size: 12px;
  }
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .bullet-item {
    font-size: 14px;
    gap: 10px;
  }
}

.bullet-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nested-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nested-item {
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  padding-left: 16px;
}

.nested-item:before {
  content: "•";
  position: absolute;
  left: 0;
  color: currentColor;
  font-weight: 700;
}

@media (max-width: 768px) {
  .nested-item {
    font-size: 13px;
    padding-left: 14px;
  }
}

.icon-wrapper {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

@media (max-width: 768px) {
  .icon-wrapper {
    width: 18px;
    height: 18px;
    margin-top: 2px;
  }
}

.check-icon {
  width: 100%;
  height: 100%;
  display: block;
}

.description,
.content-html {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 10px 0 0;
}

@media (max-width: 768px) {
  .description,
  .content-html {
    font-size: 14px;
  }
}

/* competitve edge */
/* ==========================================
   Info Section & Center Layout Styles
   ========================================== */

.info-section.image-center .center-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (max-width: 1024px) {
  .info-section.image-center .center-layout {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .info-section.image-center .center-layout {
    gap: 20px;
  }
}

.info-section.image-center .center-layout .image-container {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}

@media (max-width: 1024px) {
  .info-section.image-center .center-layout .image-container {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .info-section.image-center .center-layout .image-container {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.info-section.image-center .center-layout .content-wrapper {
  width: 100%;
  max-width: 100%;
}

.image-container {
  flex-shrink: 0;
  width: 50%;
  overflow: hidden;
  min-height: 100%;
  will-change: transform, opacity;
  transition:
    transform 0.7s cubic-bezier(0.22, 0.9, 0.37, 1),
    opacity 0.5s ease-out;
}

@media (max-width: 1024px) {
  .image-container {
    width: 100% !important;
    max-width: 100%;
    flex-basis: 100% !important;
  }
}

@media (max-width: 768px) {
  .image-container {
    width: 100% !important;
    max-width: 100%;
    flex-basis: 100% !important;
    max-height: 400px;
  }
}

.custom-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

@media (max-width: 1024px) {
  .content-wrapper {
    width: 100% !important;
    flex-basis: 100% !important;
  }

  .section-title-competitive {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    width: 100% !important;
    flex-basis: 100% !important;
  }

  .section-title-competitive {
    margin-bottom: 30px;
  }
}

.label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .label {
    font-size: 12px;
  }
}

.section-title-competitive p {
  font-size: clamp(1.143rem, 0.129vw + 1.108rem, 1.286rem);
  color: #050038;
  line-height: 142.857%;
  font-weight: 400;
  margin-bottom: 0;
}

.section-title-competitive > h2 {
  font-size: clamp(2.143rem, 0.647vw + 1.969rem, 2.857rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}

/* ==========================================
   Feature competitive-cards Section Styles
   ========================================== */

.competitive-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.competitive-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 8px #0000001a;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  text-align: center;
  min-width: 0;
  width: calc((100% - 30px * (var(--columns, 4) - 1)) / var(--columns, 4));
  max-width: calc((100% - 30px * (var(--columns, 4) - 1)) / var(--columns, 4));
}

.competitive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px #00000026;
}

.icon-container {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto;
}

.icon {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.competitive-card-title {
  font-size: clamp(1rem, 0.518vw + 0.879rem, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  color: #333;
  text-align: inherit;
}

.competitive-card-description {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: #666;
  flex: 1;
  text-align: inherit;
}

.read-more-link {
  font-size: 15px;
  font-weight: 500;
  color: #06c;
  text-decoration: none;
  margin-top: auto;
  display: inline-block;
  transition: color 0.2s ease;
  text-align: inherit;
}

.read-more-link:hover {
  color: #0052a3;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .competitive-card {
    width: calc((100% - 30px * (2 - 1)) / 2);
    max-width: calc((100% - 30px * (2 - 1)) / 2);
  }

  .competitive-cards-grid {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .competitive-card {
    width: 100%;
    max-width: 100%;
    padding: 24px;
    gap: 14px;
  }

  .competitive-cards-grid {
    gap: 20px;
  }

  .icon-container {
    width: 56px;
    height: 56px;
  }

  .content-html ul li {
    font-size: 14px;
  }

  .competitive-card-description {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .two-column-layout1 {
    flex-direction: column-reverse !important;
  }

  ._galleryGrid_r7odm_34,._galleryGrid_r7odm_35 {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px;
  }
}

@media (max-width: 1024px) {
  ._galleryGrid_r7odm_34 {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
._gallery_r7odm_1 {
  padding: clamp(25px, 18.9325px + 1.618vw, 50px) 0px;
  margin: 0px;
  position: relative;
  overflow: hidden;
}

._galleryGrid_r7odm_34 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
._galleryGrid_r7odm_35 {
  display: grid;
  grid-template-columns: repeat(var(--columns-per-row, 5), 1fr);
  gap: 20px;
  width: 100%;
  min-width: 0;
}

._galleryItem_r7odm_106 {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  background: #f5f5f5;
  min-width: 0;
  width: 100%;
  height: 100%;
}
._galleryItem_r7odm_106 ._imageTitleBelow_r7odm_287 {
  font-size: 14px;
  font-weight: 500;
  color: #333 !important;
  text-align: center;
  padding: 0;
  margin: 0;
  line-height: 1.4;
  word-break: break-word;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
._galleryItem_r7odm_106 ._imageDescriptionBelow_r7odm_312 {
  font-size: 12px;
  font-weight: 400;
  color: #666 !important;
  text-align: center;
  padding: 0;
  margin: 0;
  line-height: 1.4;
  word-break: break-word;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 4.2em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
._galleryItem_r7odm_106._attachedItem_r7odm_117 {
  aspect-ratio: 1;
}

._galleryItem_r7odm_106._rectangleItem_r7odm_120 {
  height: 100%;
  max-height: 310px;
  aspect-ratio: 3/1;
}

._galleryItem_r7odm_106 ._imageContainer_r7odm_135 {
  height: 100%;
}

._galleryItem_r7odm_106:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px #00000026;
}

._galleryItem_r7odm_106:hover ._overlay_r7odm_145 {
  opacity: 1;
}

._galleryItem_r7odm_106:hover img {
  transform: scale(1.05);
}

._galleryItem_r7odm_106 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

._galleryItem_r7odm_106 ._overlay_r7odm_145 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00000080;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

._galleryItem_r7odm_106 ._overlay_r7odm_145 ._svgIcon_r7odm_177 {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

/* Fullscreen Modal Popup Layout matching your screenshots */
._modal_r7odm_347 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

._modalClose_r7odm_370 {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ffffff1a;
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
}

._modalNavLeft_r7odm_399,
._modalNavRight_r7odm_400 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
}

._modalNavLeft_r7odm_399 {
  left: 20px;
}

._modalNavRight_r7odm_400 {
  right: 20px;
}

._modalContent_r7odm_447 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 85vw;
  max-height: 85vh;
}

._modalContent_r7odm_447 img {
  max-width: 85vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

._modalCounter_r7odm_513 {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #000000b3;
  color: #fff;
  padding: 8px 16px;
  border-radius: 16px;
  font-size: 14px;
}

/* Mobile Responsive View */
@media (max-width: 768px) {
  ._galleryGrid_r7odm_34 {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  ._modalNavLeft_r7odm_399 {
    left: 10px;
    width: 40px;
    height: 40px;
  }

  ._modalNavRight_r7odm_400 {
    right: 10px;
    width: 40px;
    height: 40px;
  }

  ._modalClose_r7odm_370 {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

  ._modalContent_r7odm_447 img {
    max-width: 92vw;
    max-height: 70vh;
  }

  ._modalCounter_r7odm_513 {
    bottom: 10px;
    font-size: 12px;
    padding: 6px 12px;
  }
}

@media (max-width: 1024px) {
  ._galleryGrid_r7odm_34._attachedLayout_r7odm_53 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.integrated-section-title p {
  font-size: clamp(1.143rem, 0.129vw + 1.108rem, 1.286rem);
  color: #050038;
  line-height: 142.857%;
  font-weight: 400;
}

.integrated-section-title h2 {
  font-size: clamp(2.143rem, 0.647vw + 1.969rem, 2.857rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}

._imageRight_urban_rev ._urban-content-wrapper {
  flex-direction: row-reverse;
}

@media (max-width: 1024px) {
  ._imageRight_urban_rev ._urban-content-wrapper {
    flex-direction: column;
  }
}

.urban-canopy-section .urban-main-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (max-width: 1024px) {
  .urban-canopy-section .urban-main-layout {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .urban-canopy-section .urban-main-layout {
    gap: 20px;
  }
}

.urban-canopy-section .urban-main-layout .urban-media-wrap {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}

@media (max-width: 1024px) {
  .urban-canopy-section .urban-main-layout .urban-media-wrap {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .urban-canopy-section .urban-main-layout .urban-media-wrap {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.urban-canopy-section .urban-main-layout .urban-text-wrap {
  width: 100%;
  max-width: 100%;
}

.urban-media-wrap {
  flex-shrink: 0;
  width: 50%;
  overflow: hidden;
  min-height: 100%;
  will-change: transform, opacity;
  transition:
    transform 0.7s cubic-bezier(0.22, 0.9, 0.37, 1),
    opacity 0.5s ease-out;
}

@media (max-width: 1024px) {
  .urban-media-wrap {
    width: 100% !important;
    max-width: 100%;
    flex-basis: 100% !important;
  }
}

@media (max-width: 768px) {
  .urban-media-wrap {
    width: 100% !important;
    max-width: 100%;
    flex-basis: 100% !important;
    max-height: 400px;
  }
}

.urban-img-fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.urban-text-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

@media (max-width: 1024px) {
  .urban-text-wrap {
    width: 100% !important;
    flex-basis: 100% !important;
  }
}

@media (max-width: 768px) {
  .urban-text-wrap {
    width: 100% !important;
    flex-basis: 100% !important;
  }
}

.urban-badge-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .urban-badge-label {
    font-size: 12px;
  }
}

.urban-custom-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.urban-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .urban-list-item {
    font-size: 14px;
    gap: 10px;
  }
}

.urban-list-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.urban-sub-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.urban-sub-item {
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  padding-left: 16px;
}

.urban-sub-item:before {
  content: "•";
  position: absolute;
  left: 0;
  color: currentColor;
  font-weight: 700;
}

@media (max-width: 768px) {
  .urban-sub-item {
    font-size: 13px;
    padding-left: 14px;
  }
}

.urban-icon-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

@media (max-width: 768px) {
  .urban-icon-box {
    width: 18px;
    height: 18px;
    margin-top: 2px;
  }
}

.urban-svg-icon {
  width: 100%;
  height: 100%;
  display: block;
}

.urban-body-copy,
.urban-html-content {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 10px 0 0;
}

@media (max-width: 768px) {
  .urban-body-copy,
  .urban-html-content {
    font-size: 14px;
  }
}

.urban-body-copy h1,
.urban-body-copy h2,
.urban-body-copy h3,
.urban-body-copy h4,
.urban-body-copy h5,
.urban-body-copy h6,
.urban-html-content h1,
.urban-html-content h2,
.urban-html-content h3,
.urban-html-content h4,
.urban-html-content h5,
.urban-html-content h6 {
  margin: 1em 0 0.5em;
  font-weight: 700;
}

.urban-body-copy p,
.urban-html-content p {
  margin: 0.5em 0;
}

@media (max-width: 1024px) {
  .urban-canopy-section .urban-main-layout .urban-media-wrap {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.mb40 {
  margin-bottom: 40px;
}

.projects-section {
  position: relative;
  overflow: hidden;
}

.heading-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.heading-content {
  flex: 1;
}

.arrows-wrap {
  display: none;
  gap: 10px;
}

.arrows-wrap button {
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrows-wrap button:hover {
  background: #006cb5;
  color: #fff;
  border-color: #006cb5;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
}

.carousel-wrapper .slick-slider {
  margin: 0 -10px;
}

.carousel-wrapper .slick-slide {
  padding: 0 10px;
}

.carousel-wrapper .slick-slide > div {
  display: flex;
}

.carousel-wrapper .slick-list {
  overflow: hidden;
}

.carousel-wrapper .slick-track {
  display: flex;
}

.carousel-wrapper.full-width .slick-slider {
  margin: 0 -10px;
}

.carousel-wrapper.full-width .slick-slide {
  padding: 0 10px;
}

.carousel-wrapper.full-width .full-width-inner .slick-slider {
  margin: 0 -10px;
}

.carousel-wrapper.full-width .full-width-inner .slick-slide {
  padding: 0 10px;
}

.marquee-wrap {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: projects-marquee 60s linear infinite;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-slide {
  flex: 0 0 auto;
  width: clamp(280px, 25vw, 360px);
  padding: 0 10px;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .marquee-slide {
    width: clamp(280px, 45vw, 400px);
  }
}

@media (max-width: 768px) {
  .marquee-slide {
    width: min(85vw, 340px);
  }
}

@keyframes projects-marquee {
  0% {
    transform: translate(0);
  }

  to {
    transform: translate(-50%);
  }
}

.full-width-inner {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 0;
}

.project-card {
  width: 100% !important;
  height: auto;
  position: relative;
  border-radius: 0;
  overflow: visible;
  outline: none;
}

.project-card:focus {
  outline: none;
}

.project-card .project-image {
  position: relative;
  overflow: hidden;
  height: clamp(18.75rem, 9.709vw + 16.475rem, 28.125rem);
}

.project-card .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card .project-image .project-overlay {
  position: absolute;
  bottom: 7px;
  background: #000000b3;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  padding: 20px;
  width: 100%;
}

.project-card .project-image .project-overlay .overlay-content {
  color: #fff;
  text-align: center;
  max-width: 100%;
}

.project-card .project-image .project-overlay .overlay-content .brief-text {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #fff;
  white-space: pre-line;
}

.project-card .project-image .project-overlay .overlay-content .read-more-link {
  display: inline-block;
  color: #41901f;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.project-card
  .project-image
  .project-overlay
  .overlay-content
  .read-more-link:hover {
  text-decoration: underline;
  transform: translateY(-2px);
}

.project-card .project-image:hover .project-overlay {
  opacity: 1;
}

.project-card .project-info {
  padding: 20px 0;
}

.project-card .project-info h3 {
  font-size: clamp(0.875rem, 0.388vw + 0.784rem, 1.25rem);
  font-weight: 500;
  color: #212121;
  margin-bottom: 8px;
}

._custom-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px;
}

@media (max-width: 768px) {
  ._custom-container {
    gap: 30px;
    padding: 10px;
  }
}

._custom-top-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 32px;
}

._custom-top-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -1.28px;
  margin: 0;
}

@media (max-width: 1024px) {
  ._custom-top-heading {
    font-size: 28px;
    letter-spacing: -1px;
  }
}

@media (max-width: 768px) {
  ._custom-top-heading {
    font-size: 24px;
    letter-spacing: -0.8px;
  }
}

._custom-top-subheading {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  ._custom-top-subheading {
    font-size: 16px;
  }
}

._custom-content-wrapper {
  display: flex;
  gap: 105px;
  align-items: stretch;
}

@media (min-width: 1280px) {
  ._custom-content-wrapper {
    gap: 60px;
  }
}

@media (max-width: 1024px) {
  ._custom-content-wrapper {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  ._custom-content-wrapper {
    gap: 30px;
  }
  ._custom-content-html li{
    font-size: 14px !important;
  }
}

._custom-image-container {
  flex-shrink: 0;
  width: 50%;
  max-width: 720px;
  align-self: stretch;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  ._custom-image-container {
    width: 100%;
    max-width: 100%;
  }
}

._custom-content-html {
  flex: 1;
  margin: 10px 0 0;
}

._custom-content-html h2 {
  margin: 0;
  font-size: clamp(1.714rem, 0.518vw + 1.576rem, 2.286rem);
  line-height: 1.4;
  font-weight: 700;
}
._custom-content-html-terms h2 {
  font-size: clamp(2.143rem, .647vw + 1.969rem, 2.857rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}

._custom-content-html p {
  font-size: clamp(1rem, 0.129vw + 0.965rem, 1.143rem);
  line-height: 1.8;
  font-weight: 400;
  margin: 0.5em 0;
  text-align: left;
}

._custom-content-html ul {
  list-style: none;
  padding: 0;
  margin: 30px 0 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

._custom-content-html ul li {
  gap: 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  padding-left: 30px;
}

._custom-content-html ul li:before {
  content: "";
  flex-shrink: 0;
  width: 17px;
  height: 15px;
  margin-top: 3px;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg width='17' height='15' viewBox='0 0 17 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.05275 15.0003C7.0504 15.0003 7.04767 15.0003 7.04533 15.0003C6.94845 14.9984 6.85704 14.957 6.79142 14.8859L0.0937628 7.60305C-0.021081 7.47805 -0.0316278 7.28977 0.0687628 7.15266C0.169153 7.01594 0.351966 6.96906 0.505872 7.04094L6.63595 9.91125C6.68751 9.93547 6.74845 9.92375 6.7879 9.88273L16.1387 0.109686C16.2652 -0.0227354 16.4723 -0.0371886 16.616 0.076874C16.7598 0.190936 16.793 0.395624 16.6926 0.54914L7.39103 14.7984C7.37775 14.8191 7.36212 14.8378 7.34493 14.8554L7.30392 14.8964C7.23712 14.9628 7.1465 15.0003 7.05275 15.0003Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='17' height='15' viewBox='0 0 17 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.05275 15.0003C7.0504 15.0003 7.04767 15.0003 7.04533 15.0003C6.94845 14.9984 6.85704 14.957 6.79142 14.8859L0.0937628 7.60305C-0.021081 7.47805 -0.0316278 7.28977 0.0687628 7.15266C0.169153 7.01594 0.351966 6.96906 0.505872 7.04094L6.63595 9.91125C6.68751 9.93547 6.74845 9.92375 6.7879 9.88273L16.1387 0.109686C16.2652 -0.0227354 16.4723 -0.0371886 16.616 0.076874C16.7598 0.190936 16.793 0.395624 16.6926 0.54914L7.39103 14.7984C7.37775 14.8191 7.36212 14.8378 7.34493 14.8554L7.30392 14.8964C7.23712 14.9628 7.1465 15.0003 7.05275 15.0003Z' fill='black'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 768px) {
  ._custom-content-html ul li {
    font-size: 14px;
    gap: 10px;
  }

  ._custom-content-html ul li:before {
    width: 15px;
    height: 13px;
    margin-top: 2px;
  }
}

.gis-table th,
.gis-table td,
.gis-table th,
.gis-table td {
  border: 1px solid #dddddd;
  padding: 0.5em 0.75em;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 10px 0 0;
  text-align: left;
}

.gis-table th {
  font-weight: 700;
  border-bottom: 2px solid #212121;
  text-align: -webkit-match-parent;
}
.gis-table1 th,
.gis-table1 td,
.gis-table1 th,
.gis-table1 td {
  border: 1px solid #dddddd;
  padding: 0.5em 0.75em;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 10px 0 0;
  text-align: left;
  border: 1px solid black;
}

.gis-table1 th {
  font-weight: 700;
  border-bottom: 2px solid #212121;
  text-align: -webkit-match-parent;
}

.gis-table1 th {
  text-align: -webkit-match-parent;
  border-color: inherit;
  border-style: solid;
  border-width: 0px 1px;
  padding: 0.5rem;
  background-color: rgba(0, 0, 0, 0);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 9999px inset;
  vertical-align: bottom;
}

.gis-table1 tbody {
  border-width: 2px 0px 0px;
  border-style: solid;
  border-top-color: currentcolor;
  vertical-align: inherit;
}

.gis-table1 tr {
  border-style: solid;
  border-width: 1px 0px;
}
@media (max-width: 768px) {
  .gis-table th,
  .gis-table td,
  .gis-table th,
  .gis-table td {
    font-size: 14px;
  }
  .gis-table1 th,
  .gis-table1 td,
  .gis-table1 th,
  .gis-table1 td {
    font-size: 14px;
    padding: 0.5em;
  }
}
.company-section {
  width: 100%;

  background: #fff;
  position: relative;
}

.company-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.company-layout {
  display: flex;
  gap: 60px;
}

.company-content {
  width: 100%;
  flex-basis: 100%;
}

.director-table {
  border-collapse: collapse;
  width: 100%;
  margin: 1em 0;
}

.director-table thead {
  background: #444;
}

.director-table th {
  padding: 16px;
  text-align: left;
  color: #fff;
  min-width: 150px;
  font-weight: 700;
  border-bottom: 2px solid #212121;
}

.director-table td {
  padding: 16px;
  font-weight: 500;
  border: 1px solid #e8e7ec;
}

.director-table tbody tr {
  border-bottom: 1px solid #e8e7ec;
}

.director-table tbody tr:last-child {
  border-bottom: none;
}

/* Layout variations */

.company-left .company-layout {
  flex-direction: row;
}

.company-right .company-layout {
  flex-direction: row-reverse;
}

.company-center .company-layout {
  flex-direction: column;
  align-items: center;
}

/* Responsive */

@media (max-width: 1024px) {
  .company-layout {
    flex-direction: column !important;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .company-layout {
    gap: 30px;
  }
}

/* media page */
._imageInfoBelow_r7odm_275 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  min-width: 0;
  flex-shrink: 0;
  flex-grow: 0;
  visibility: visible;
  opacity: 1;
  min-height: 0;
}

._galleryItem_r7odm_106._linkItem_r7odm_205 {
  aspect-ratio: auto;
  background: #fff;
  box-shadow: 0 2px 8px #0000001a;

  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
}

._imageContainer_r7odm_135 {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
  margin-bottom: 12px;
  min-width: 0;
  flex-shrink: 0;
  flex-grow: 0;
}

._viewIcon_r7odm_173 {
  font-size: 32px;
  color: #fff;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.news-card {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;

  width: 100%;
  overflow: hidden;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.news-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
  margin-bottom: 12px;
}

.news-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.3s ease;
}

.news-card:hover img {
  transform: scale(1.05);
}

.news-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.5);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;

  transition: opacity 0.3s ease;
}

.news-card:hover .news-overlay {
  opacity: 1;
}

.news-icon {
  font-size: 32px;
}

.news-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  min-width: 0;
  flex-shrink: 0;
  flex-grow: 0;
  visibility: visible;
  opacity: 1;
  min-height: 0;
}

@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card {
    padding: 12px;
  }

  .news-title {
    font-size: 12px;
  }

  .news-description {
    font-size: 11px;
  }
}

.news-title {
  font-size: 14px;
  font-weight: 500;
  color: #333 !important;
  text-align: center;
  padding: 0;
  margin: 0;
  line-height: 1.4;
  word-break: break-word;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-description {
  font-size: 12px;
  font-weight: 400;
  color: #666 !important;
  text-align: center;
  padding: 0;
  margin: 0;
  line-height: 1.4;
  word-break: break-word;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 4.2em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news-grid a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.news-card-link {
  text-decoration: none;
  color: inherit;
}
.news-card-link.hidden {
  display: none;
}
._viewMoreWrap_r7odm_72 {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
._viewMoreBtn_r7odm_83,._viewMoreBtn_r7odm_84 {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #006cb5;
  background: transparent;
  border: 2px solid #006cb5;
  border-radius: 32px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  margin: 16px 0 0;
}
._viewMoreBtn_r7odm_83:hover , ._viewMoreBtn_r7odm_84:hover{
  background-color: #006cb5;
  color: white;
}
.report-list {
  display: grid;
  gap: 16px;
}

.report-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid #e8e7ec;
  border-radius: 8px;
  background: #fff;
  gap: 16px;
}
.report-card-heading {
  font-size: 16px;
  font-weight: 600;
  color: #2f2f30;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}
.file-size {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
}

.report-left {
  display: flex;
  align-items: center;

  gap: 16px;
}

.pdf-icon {
  width: 52px;
  height: 52px;

  border-radius: 10px;

  background: #006cb5;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 22px;
}

.report-details h3 {
  margin: 0;

  font-size: 16px;
}

.report-details p {
  margin-top: 5px;

  color: #777;
}

._sectionTitle_r4xvb_1 {
  margin-bottom: 40px;
}
.wrapper {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.sidebar {
  flex-shrink: 0;
  width: 260px;
  min-height: 100%;
  background: #ededed;
  border-radius: 10px;
  padding: 20px;
}

.city-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  font-size: 1rem;
  color: #2f2f30;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  transition: all 0.2s ease;
  background: #fff;
  cursor: pointer;
  border: 1px solid #e8e7ec;
}

.content {
  flex: 1;
}

.top-bar {
}
.top-bar2 {
  background: #ededed;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(1.5rem, 0.906vw + 1.288rem, 2.375rem);
  flex-wrap: wrap;
  gap: 20px;

}
.year-select {
  display: flex;
  flex-direction: column;
  gap: 8px;  max-width: fit-content;
}
select {
  padding: 10px 40px 10px 16px;
  border: 1px solid #e8e7ec;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  color: #393643;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23393643' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  line-height: 1.4;
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  min-width: 150px;
}
.city-btn span:first-child {
  font-weight: 600;
}
.city-btn.active {
  background: #006cb5;
  color: white;
}
.city-h2 {
  font-size: clamp(1rem, 0.518vw + 0.879rem, 1.5rem);
  font-weight: 600;
  color: #02033b;
  margin: 0;
  line-height: 1.4;
}
.city-btn.active span {
  color: white;
}
.city-count {
  font-size: 12px;
  font-weight: 400;
  color: #646970;
  margin-top: 2px;
}
.report-list {
  display: grid;
  gap: 15px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: #97c943;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.download-btn:hover {
  background: #7aa72c;
}

@media (max-width: 768px) {
  .wrapper {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }
}
._cityTabsTitle_1foex_37 {
  font-size: 14px;
  font-weight: 600;
  color: #393643;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
._reportFileCardIcon_1foex_220 {
  background: #006cb5;
  width: 48px;
  height: 48px;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
select {
    border: 1px solid #ddd;
    outline: none;
}

select:focus {
    border: 1px solid #2196f3; /* slim blue line */
    outline: none;
    box-shadow: none;
}
._reportsAvailable_1foex_166 {
    font-size: 14px;
    color: #646970;
}

/* //////careers////////////// */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  justify-content: center;
  align-items: stretch;
}

@media(max-width: 1024px) {
  .feature-grid {
    gap: 24px;
  }
}

@media(max-width: 768px) {
  .feature-grid {
    gap: 20px;
  }
}

.feature-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 8px #0000001a;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .2s ease, box-shadow .2s ease;
  text-align: center;
  min-width: 0;
  width: calc((100% - 30px * (var(--columns, 4) - 1)) / var(--columns, 4));
  max-width: calc((100% - 30px * (var(--columns, 4) - 1)) / var(--columns, 4));
}

.feature-card[data-position=left] {
  text-align: left;
}

.feature-card[data-position=left] .feature-card__icon-box {
  margin: 0;
}

.feature-card[data-position=left] .feature-card__action {
  align-self: flex-start;
}

.feature-card[data-position=right] {
  text-align: right;
}

.feature-card[data-position=right] .feature-card__icon-box {
  margin-left: auto;
  margin-right: 0;
}

.feature-card[data-position=right] .feature-card__action {
  align-self: flex-end;
}

.feature-card[data-position=center] {
  text-align: center;
}

.feature-card[data-position=center] .feature-card__icon-box {
  margin: 0 auto;
}

.feature-card[data-position=center] .feature-card__action {
  align-self: center;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px #00000026;
}

@media(max-width: 1024px) {
  .feature-card {
    width: calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }
}

@media(max-width: 768px) {
  .feature-card {
    width: 100%;
    max-width: 100%;
    padding: 24px;
    gap: 14px;
  }
}

.feature-grid .feature-card.feature-card--ghost {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.feature-grid .feature-card.feature-card--ghost:hover {
  transform: none;
  box-shadow: none !important;
}

.feature-grid .feature-card.feature-card--transparent {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.feature-grid .feature-card.feature-card--transparent:hover {
  transform: none;
  box-shadow: none !important;
}

.feature-card__icon-box {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 auto;
}
.careers-heading-mb{
  margin-bottom:60px
}
@media(max-width: 768px) {
  .feature-card__icon-box {
    width: 56px;
    height: 56px;
  }
  .feature-card__heading {
    font-size: 16px;
}
.careers-heading-mb{
  margin-bottom:30px
}

}

.feature-card__icon {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.feature-card__heading {
  font-size: clamp(1rem, .518vw + .879rem, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  color: #333;
  text-align: inherit;
}

@media(max-width: 1024px) {
  .feature-card__heading {
    font-size: 18px;
  }
  .careers-heading-mb{
  margin-bottom:40px
}
}

@media(max-width: 768px) {
  .feature-card__heading {
    font-size: 16px;
  }
}

.feature-card__body {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: #666;
  flex: 1;
  text-align: inherit;
}

@media(max-width: 768px) {
  .feature-card__body {
    font-size: 14px;
  }
}

.feature-card__action {
  font-size: 15px;
  font-weight: 500;
  color: #06c;
  text-decoration: none;
  margin-top: auto;
  display: inline-block;
  transition: color .2s ease;
  text-align: inherit;
}

.feature-card__action:hover {
  color: #0052a3;
  text-decoration: underline;
}

@media(max-width: 768px) {
  .feature-card__action {
    font-size: 14px;
  }
}

.careers-section,
.careers-section__wrapper {
  width: 100%;
}

.careers-section__content {
  width: 100%;
  margin: 0 auto;
}

.careers-section__header {
  text-align: center;
  margin-bottom: 60px;
}

.careers-section__header .careers-section__subheading {
  font-size: clamp(.75rem, .388vw + .659rem, 1.125rem);
  font-weight: 500;
  color: #001833;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.careers-section__header .careers-section__title {
  font-size: clamp(1.25rem, 1.036vw + 1.007rem, 2.25rem);
  font-weight: 600;
  color: #001833;
  margin-bottom: 12px;
}

.careers-section__header .careers-section__description {
  font-size: 1rem;
  color: #000;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.careers-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

@media(max-width: 768px) {
  .careers-layout {
    flex-direction: column;
    gap: 30px;
  }
}

.careers-layout__sidebar {
  flex: 0 0 250px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media(max-width: 768px) {
  .careers-layout__sidebar {
    flex: 1;
        width: 100%;
        flex-direction: row !important;
        overflow-x: auto;
        padding-bottom: 10px;
        flex-wrap: nowrap;
    }

  .careers-layout__sidebar::-webkit-scrollbar {
    height: 4px;
  }

  .careers-layout__sidebar::-webkit-scrollbar-track {
    background: #f0f0f0;
  }

  .careers-layout__sidebar::-webkit-scrollbar-thumb {
    background: #b0cb1f;
    border-radius: 2px;
  }
}

.category-btn {
  padding: 0;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: all .3s ease;
  color: #001833;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0;
  position: relative;
}

/* Updated active selector to work with Bootstrap's .active class */
.category-btn.active,
.category-btn.category-btn--active {
  color: #b0cb1f;
  background-color: transparent !important;
}

.category-btn .category-btn__label {
  flex: 1;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.category-btn .category-btn__count {
  margin-left: 8px;
  font-weight: 600;
  opacity: .8;
}

@media(max-width: 768px) {
  .category-btn {
    white-space: nowrap;
    min-width: fit-content;
    padding: 12px 16px;
    border-radius: 6px;
  }
}

.careers-layout__content {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.empty-state,
.loading-state {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  font-size: clamp(1.286rem, .388vw + 1.182rem, 1.714rem);
  font-weight: 500;
  padding: 24px;
  width: 100%;
  text-align: center;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 2px 4px #0000000d;
  padding: 18px 20px;
  transition: all .3s ease;
}

.job-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #0000001a;
}

@media(max-width: 768px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
  }
}

.job-card__info {
  flex: 1;
  display: flex;
  align-items: center;
}

.job-card__info .job-card__title {
  font-size: clamp(1rem, .259vw + .939rem, 1.25rem);
  font-weight: 600;
  color: #001833;
  width: 50%;
  margin: 0;
}

.job-card__info .job-card__details {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

@media(max-width: 768px) {
  .job-card__info .job-card__details {
    gap: 20px;
  }
}

.job-card__info .detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.job-card__info .detail-item .detail-item__label {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.job-card__info .detail-item .detail-item__value {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
/* Ensure hidden tab panes stay hidden until activated */
.tab-pane {
  display: none;
}

/* Ensure active tab pane is displayed */
.tab-pane.active {
  display: block;
}
/* Core Variables */

/* ==========================================
   1. We Are Hiring / Hero Subscription Section
   ========================================== */
.hiring-section {
  width: 100%;
  margin: clamp(50px, 37.865px + 3.236vw, 100px) 0
    clamp(50.5px, 38.2413px + 3.269vw, 101px);
  position: relative;
}

.hiring-card-wrapper {
  width: 100%;
  background-color: var(--main-bg-color, var(--navy-dark));
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 30.2912px + 2.589vw, 80px) 0;
}

.hiring-card-wrapper::before {
  content: "";
  position: absolute;
  top: -300px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 600px;
  background: var(--light-blue-color, #87ceeb);
  z-index: 0;
  transform: translate(12%, -12%);
}

.hiring-content-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hiring-content {
  text-align: center;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

.hiring-title {
  font-size: clamp(1.25rem, 1.424vw + 0.916rem, 2.625rem);
  font-weight: 600;
  color: var(--font-color, #ffffff);
  margin: 0 0 24px;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: -0.5px;
}

.hiring-subtitle {
  font-size: clamp(0.875rem, 0.518vw + 0.754rem, 1.375rem);
  font-weight: 400;
  color: var(--font-color, #ffffff);
}

.hiring-subtitle p {
  margin: 0 0 8px;
  font-size: clamp(0.875rem, 0.518vw + 0.754rem, 1.375rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--font-color, #ffffff);
}

.hiring-subtitle p:last-child {
  margin-bottom: 0;
}

.hiring-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hiring-input-group {
  display: flex;
  width: 100%;
  max-width: 500px;
  gap: 12px;
  align-items: stretch;
}

.hiring-email-input {
  flex: 1;
  padding: clamp(0.875rem, 0.3vw + 0.8rem, 1rem)
    clamp(1rem, 0.5vw + 0.9rem, 1.25rem);
  border: none;
  border-radius: 8px;
  background-color: #ffffff;
  color: var(--text-dark);
  font-size: clamp(0.875rem, 0.2vw + 0.8rem, 1rem);
  font-weight: 400;
  outline: none;
  transition: all 0.3s ease;
}

.hiring-email-input::placeholder {
  color: var(--placeholder-gray);
}

.hiring-email-input:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.hiring-submit-btn {
  padding: clamp(0.875rem, 0.3vw + 0.8rem, 1rem)
    clamp(1.5rem, 1vw + 1.2rem, 2rem);
  border: none;
  border-radius: 8px;
  background-color: var(--button-color, #b0cb1f);
  color: #ffffff;
  font-size: clamp(0.875rem, 0.2vw + 0.8rem, 1rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: fit-content;
}

.hiring-submit-btn:hover {
  background-color: var(--button-hover-color);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hiring-submit-btn:active {
  transform: translateY(0);
}

.hiring-error-msg {
  color: #ffcccc;
  font-size: 0.875rem;
  margin: 0;
  text-align: center;
}

.hiring-success-msg {
  color: #ccffcc;
  font-size: 0.875rem;
  margin: 0;
  text-align: center;
  font-weight: 500;
}

/* ==========================================
   2. Contact Us Section
   ========================================== */
.contact-section {
  width: 100%;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  max-width: 1140px;
  padding: 12px;
}

.contact-card-grid p {
  color: #ffffff !important;
}

.contact-info-panel {
  background-color: var(--main-bg-color, var(--navy-dark));
  color: var(--font-color, #ffffff);
  padding: clamp(2.5rem, 3vw + 1.5rem, 4rem);
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-panel::before {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--button-color);
  opacity: 0.2;
  z-index: 0;
}

.contact-info-panel::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--button-color);
  opacity: 0.3;
  z-index: 0;
}

.contact-info-title {
  font-size: clamp(1.125rem, 0.647vw + 0.973rem, 1.75rem);
  font-weight: 600;
  color: var(--font-color, #ffffff);
  margin: 0 0 16px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.contact-info-subtitle {
  font-size: clamp(0.875rem, 0.259vw + 0.814rem, 1.125rem);
  font-weight: 400;
  color: var(--font-color, #ffffff);
  margin: 0 0 32px;
  line-height: 1.6;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 0.518vw + 1.379rem, 2rem);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(0.875rem, 0.3vw + 0.8rem, 1rem);
  color: var(--font-color, #ffffff);
  line-height: 1.5;
}

.contact-detail-item .contact-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--font-color, #ffffff);
}

.contact-detail-item span {
  flex: 1;
}

.social-links-bar {
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.social-button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #1b1b1b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  color: var(--font-color, #ffffff);
}

.social-button:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
}

.social-button:hover svg path {
  fill: #1b1b1b;
}

.social-button svg {
  width: 14px;
  height: 14px;
}

/* Contact Form Side */
.contact-form-panel {
  background-color: #ffffff;
  padding: clamp(1.5rem, 1.683vw + 1.106rem, 3.125rem);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: clamp(0.875rem, 0.2vw + 0.8rem, 1rem);
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  padding: clamp(0.75rem, 0.3vw + 0.7rem, 0.875rem)
    clamp(0.875rem, 0.3vw + 0.8rem, 1rem);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: clamp(0.875rem, 0.2vw + 0.8rem, 1rem);
  font-family: inherit;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
  border-color: var(--navy-dark);
}

.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group input[type="tel"]::placeholder,
.form-group textarea::placeholder {
  color: var(--placeholder-gray);
}

.form-group textarea {
  resize: vertical;
  height: 120px;
}

.radio-group {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 8px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: clamp(0.875rem, 0.2vw + 0.8rem, 1rem);
  color: var(--text-dark);
}

.radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--navy-dark);
}

.radio-option span {
  -webkit-user-select: none;
  user-select: none;
}

.contact-submit-btn {
  padding: clamp(0.875rem, 0.3vw + 0.8rem, 1rem)
    clamp(1.5rem, 1vw + 1.2rem, 2rem);
  background-color: var(--button-color);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: clamp(0.875rem, 0.2vw + 0.8rem, 1rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-end;
  margin-top: 10px;
}

.contact-submit-btn:hover {
  background-color: var(--button-hover-color);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

.contact-error-msg {
  color: #dc3545;
  font-size: 0.875rem;
  margin: -10px 0 0;
  padding: 8px;
  background-color: #f8d7da;
  border-radius: 4px;
}

.contact-success-msg {
  color: #155724;
  font-size: 0.875rem;
  margin: -10px 0 0;
  padding: 8px;
  background-color: #d4edda;
  border-radius: 4px;
  font-weight: 500;
}

/* ==========================================
   3. Call To Action Section
   ========================================== */
.cta-section {
  width: 100%;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background-color: var(--main-bg-color, #fafee3);
  color: var(--font-color, var(--text-dark));
  border-radius: 16px;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(2rem, 2vw + 1.5rem, 3rem) clamp(1.5rem, 1.5vw + 1rem, 2.5rem);
}

.cta-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-heading {
  font-size: clamp(0.875rem, 0.647vw + 0.723rem, 1.5rem);
  font-weight: 700;
  color: var(--font-color, var(--text-dark));
  margin: 0;
  line-height: 1.3;
}

.cta-text {
  font-size: clamp(0.75rem, 0.259vw + 0.689rem, 1rem);
  font-weight: 400;
  color: var(--font-color, var(--text-dark));
  margin: 0;
  line-height: 1.6;
  opacity: 0.9;
}

.cta-action {
  flex-shrink: 0;
}

.cta-button {
  display: inline-block;
  padding: clamp(0.875rem, 0.3vw + 0.8rem, 1rem)
    clamp(1.5rem, 1vw + 1.2rem, 2rem);
  background-color: var(--button-bg-color, var(--button-color));
  color: var(--button-font-color, #ffffff);
  border: none;
  border-radius: 8px;
  font-size: clamp(0.875rem, 0.2vw + 0.8rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-button:active {
  transform: translateY(0);
}

/* ==========================================
   4. Reports Section
   ========================================== */
.reports-section {
  position: relative;
  width: 100%;
}

.reports-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.reports-content-layout {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

/* ==========================================
   Media Queries
   ========================================== */
@media (max-width: 968px) {
  .contact-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hiring-input-group {
    flex-direction: column;
    gap: 12px;
  }

  .hiring-email-input,
  .hiring-submit-btn {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }

  .reports-content-layout {
    flex-direction: column;
    gap: 20px;
  }
}

/* ////////////////contact-us//////////////////// */

/* Layout Container */
.contact-card-section {
  width: 100%;
  margin: clamp(50px, 37.865px + 3.236vw, 100px) 0px;
    position: relative;
}

.contact-card-wrapper {
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px #0000001a;
    margin: 0 auto;
    max-width: 1140px;
    padding: 12px;
}

@media (max-width: 968px) {
  .contact-card-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Left Sidebar */
.contact-card-sidebar {
  background-color: var(--cc-bg-primary);
  color: #FFFFFF;

  border-radius: calc(var(--cc-radius-lg) - 4px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;

    padding: clamp(25px, 18.9325px + 1.618vw, 50px);
}

.contact-card-sidebar::before,
.contact-card-sidebar::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--cc-accent);
  z-index: 0;
}

.contact-card-sidebar::before {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #b0cb1f;
    opacity: .2;
    z-index: 0;
}

.contact-card-sidebar::after {
      content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #b0cb1f;
    opacity: .3;
    z-index: 0;
}

.contact-card-intro{
  margin-bottom: 40px;
}
.contact-card-intro,
.contact-card-details,
.contact-card-socials {
  position: relative;
  z-index: 1;

}

.contact-card-title {
    font-size: clamp(2.143rem, .647vw + 1.969rem, 2.857rem);
    font-weight: 700;
    margin-bottom: 16px !important;
    line-height: 1.4;
    margin-bottom: 0;
}

.contact-card-subtitle {
     font-size: clamp(1.143rem, .129vw + 1.108rem, 1.286rem);
    color: #050038;
    line-height: 142.857%;
    font-weight: 400;
    margin-bottom: 0;
    color: #fff;
}

.contact-card-details {
display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, .518vw + 1.379rem, 2rem);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    padding: 0;
}

.contact-card-social-btn svg{
  width: 14px;
  height: 14px;
}
.contact-card-detail-item {
display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: clamp(.875rem, .3vw + .8rem, 1rem);
    color: var(--font-color, #FFFFFF);
    line-height: 1.5;
}

.contact-card-icon {
  flex-shrink: 0;
  margin-top: 3px;    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    color: var(--font-color, #FFFFFF);
}

.contact-card-link,
.contact-card-address {
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-card-link:hover {
  opacity: 0.8;
}

.contact-card-socials {
 display: flex;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.contact-card-social-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #1b1b1b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    cursor: pointer;
    color: var(--font-color, #FFFFFF);
}

.contact-card-social-btn:hover {
  background-color: #FFFFFF;
  color: #000;  transform: translateY(-2px);
}

/* Right Content Area */
.contact-card-main {
     background-color: #fff;
    padding: clamp(1.5rem, 1.683vw + 1.106rem, 3.125rem)
}

.contact-card-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 640px) {
  .contact-card-row {
    grid-template-columns: 1fr;
  }
}
.legend{
      font-size: clamp(.875rem, .2vw + .8rem, 1rem);
    font-weight: 500;
    color: #333;
}
.contact-card-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-card-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.contact-card-label,
.contact-card-legend {

    font-size: clamp(.875rem, .2vw + .8rem, 1rem);
    font-weight: 500;
    color: #333;
}

.contact-card-input,
.contact-card-textarea {
    padding: clamp(.75rem, .3vw + .7rem, .875rem) clamp(.875rem, .3vw + .8rem, 1rem);
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: clamp(.875rem, .2vw + .8rem, 1rem);
    font-family: inherit;
    color: #333;
    outline: none;
    transition: border-color .3s ease;
}

.contact-card-input:focus,
.contact-card-textarea:focus {
  border-color: var(--cc-bg-primary);
  box-shadow: 0 0 0 3px rgba(0, 108, 181, 0.15);
}

.contact-card-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-card-radios {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 12px;
  margin-top: 0.25rem;
}

.contact-card-radio-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--cc-text-dark);font-size: clamp(.875rem, .2vw + .8rem, 1rem);
    font-weight: 500;
    color: #333;
}

.contact-card-radio-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #1E3A8A;
}

.contact-card-submit {
  align-self: flex-end;
  padding: 0.875rem 2rem;
  background-color: var(--cc-accent);
  color: #FFFFFF;
  border: none;
  border-radius: var(--cc-radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 0.5rem;
}

.contact-card-submit:hover {
  background-color: var(--cc-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(176, 203, 31, 0.35);
}

.contact-card-submit:active {
  transform: translateY(0);
}
._custom-content-html li{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}
.cta-section {
    width: 100%;
}

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;

    background-color: var(--main-bg-color, #fafee3);
    color: var(--font-color, #333333);

    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto;

    padding: clamp(2rem, 2vw + 1.5rem, 3rem)
             clamp(1.5rem, 1.5vw + 1rem, 2.5rem);
}

.cta-content {
    flex: 1;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-title {
    font-size: clamp(.875rem, .647vw + .723rem, 1.5rem);
    font-weight: 700;

    color: var(--font-color, #333333);

    margin: 0;
    line-height: 1.3;
}

.cta-description {
    font-size: clamp(.75rem, .259vw + .689rem, 1rem);
    font-weight: 400;

    color: var(--font-color, #333333);

    margin: 0;
    line-height: 1.6;
    opacity: .9;
}

.cta-button-wrapper {
    flex-shrink: 0;
}

.cta-button {
    display: inline-block;

    padding: clamp(.875rem, .3vw + .8rem, 1rem)
             clamp(1.5rem, 1vw + 1.2rem, 2rem);

    background-color: var(--button-bg-color, #B0CB1F);
    color: var(--button-font-color, #FFFFFF);

    border: none;
    border-radius: 8px;

    font-size: clamp(.875rem, .2vw + .8rem, 1rem);
    font-weight: 600;

    text-decoration: none;
    cursor: pointer;

    transition: all .3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    opacity: .9;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px #0003;
}

.cta-button:active {
    transform: translateY(0);
}


/* Tablet / Mobile */
@media (max-width: 768px) {

    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

/* ////////////////////////CSR////////////////////////////// */
.csr-section {
    width: 100%;
    position: relative;
}

.csr-header-wrapper {
    margin-bottom: 60px;
}

@media (max-width: 1024px) {
    .csr-header-wrapper {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .csr-header-wrapper {
        margin-bottom: 30px;
    }
}

.csr-header-wrapper .csr-main-title,
.csr-header-wrapper .csr-sub-title {
    text-align: inherit;
}

.csr-main-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.5px;
    margin: 0 0 16px;
    white-space: pre-line;
}

@media (max-width: 1024px) {
    .csr-main-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .csr-main-title {
        font-size: 24px;
    }
}

.csr-sub-title {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    opacity: .95;
    white-space: pre-line;
}

@media (max-width: 768px) {
    .csr-sub-title {
        font-size: 14px;
    }
}

.csr-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    justify-content: center;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .csr-grid {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .csr-grid {
        gap: 20px;
    }
}

.csr-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px #0000001a;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform .2s ease, box-shadow .2s ease;
    text-align: center;
    min-width: 0;
    width: calc((100% - 30px * (var(--columns, 4) - 1)) / var(--columns, 4));
    max-width: calc((100% - 30px * (var(--columns, 4) - 1)) / var(--columns, 4));
}

.csr-card[data-position=left] {
    text-align: left;
}

.csr-card[data-position=left] .csr-img-box {
    margin: 0;
}

.csr-card[data-position=left] .csr-link-item {
    align-self: flex-start;
}

.csr-card[data-position=right] {
    text-align: right;
}

.csr-card[data-position=right] .csr-img-box {
    margin-left: auto;
    margin-right: 0;
}

.csr-card[data-position=right] .csr-link-item {
    align-self: flex-end;
}

.csr-card[data-position=center] {
    text-align: center;
}

.csr-card[data-position=center] .csr-img-box {
    margin: 0 auto;
}

.csr-card[data-position=center] .csr-link-item {
    align-self: center;
}

.csr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px #00000026;
}

@media (max-width: 1024px) {
    .csr-card {
        width: calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }
}

@media (max-width: 768px) {
    .csr-card {
        width: 100%;
        max-width: 100%;
        padding: 24px;
        gap: 14px;
    }
}

.csr-grid .csr-card.csr-card-nobg {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.csr-grid .csr-card.csr-card-nobg:hover {
    transform: none;
    box-shadow: none !important;
}

.csr-grid .csr-card.csr-card-withoutbg {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.csr-grid .csr-card.csr-card-withoutbg:hover {
    transform: none;
    box-shadow: none !important;
}

.csr-img-box {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .csr-img-box {
        width: 56px;
        height: 56px;
    }
}

.csr-img-asset {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

.csr-card-heading {
    font-size: clamp(1rem, .518vw + .879rem, 1.5rem);
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: #333;
    text-align: inherit;
}

@media (max-width: 1024px) {
    .csr-card-heading {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .csr-card-heading {
        font-size: 16px;
    }
}

.csr-card-text {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #666;
    flex: 1;
    text-align: inherit;
}

@media (max-width: 768px) {
    .csr-card-text {
        font-size: 14px;
    }
}

.csr-link-item {
    font-size: 15px;
    font-weight: 500;
    color: #06c;
    text-decoration: none;
    margin-top: auto;
    display: inline-block;
    transition: color .2s ease;
    text-align: inherit;
}

.csr-link-item:hover {
    color: #0052a3;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .csr-link-item {
        font-size: 14px;
    }
}


.info-policy-section {
    padding: 80px 100px;
    width: 100%;
}

@media (max-width: 1300px) {
    .info-policy-section {
        padding: 60px;
    }
}

@media (min-width: 1280px) {
    .info-policy-section {
        padding: 60px 80px;
    }
}

@media (max-width: 1024px) {
    .info-policy-section {
        padding: 50px;
    }
}

@media (max-width: 768px) {
    .info-policy-section {
        padding: 40px 20px;
    }
}

.section-header-wrap {
    text-align: left;
}

@media (max-width: 1024px) {
    .section-header-wrap {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .section-header-wrap {
        margin-bottom: 30px;
    }
}

.section-header-wrap .section-title-text,
.section-header-wrap .section-subtitle-text {
    text-align: inherit !important;
}

.two-column-layout {
    display: flex;
    flex-direction: row;
    gap: 60px;
}

@media (max-width: 1024px) {
    .two-column-layout {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .two-column-layout {
        gap: 30px;
    }
}

.image-left-layout .two-column-layout {
    flex-direction: row !important;
}

@media (max-width: 1024px) {
    .image-left-layout .two-column-layout {
        flex-direction: column !important;
    }
}

.image-left-layout .mv-wrapper {
    flex-direction: row;
}

@media (max-width: 1024px) {
    .image-left-layout .mv-wrapper {
        flex-direction: column;
    }
}

.image-right-layout .two-column-layout {
    flex-direction: row-reverse !important;
}

@media (max-width: 1024px) {
    .image-right-layout .two-column-layout {
        flex-direction: column !important;
    }
}

.image-right-layout .mv-wrapper {
    flex-direction: row-reverse;
}

@media (max-width: 1024px) {
    .image-right-layout .mv-wrapper {
        flex-direction: column;
    }
}

.image-center-layout .center-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

@media (max-width: 1024px) {
    .image-center-layout .center-content-wrapper {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .image-center-layout .center-content-wrapper {
        gap: 20px;
    }
}

.image-center-layout .center-content-wrapper .media-container {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

@media (max-width: 1024px) {
    .image-center-layout .center-content-wrapper .media-container {
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 768px) {
    .image-center-layout .center-content-wrapper .media-container {
        width: 100% !important;
        max-width: 100% !important;
    }
}

.image-center-layout .center-content-wrapper .policy-content-box {
    width: 100%;
    max-width: 100%;
}

.media-container {
    flex-shrink: 0;
    width: 50%;
    overflow: hidden;
    min-height: 100%;
    will-change: transform, opacity;
    transition: transform .7s cubic-bezier(.22, .9, .37, 1), opacity .5s ease-out;
}

@media (max-width: 1024px) {
    .media-container {
        width: 100% !important;
        max-width: 100%;
        flex-basis: 100% !important;
    }
}

@media (max-width: 768px) {
    .media-container {
        width: 100% !important;
        max-width: 100%;
        flex-basis: 100% !important;
        max-height: 400px;
    }
}

.policy-rich-text h2 {
    margin: 0;
    font-size: clamp(1.714rem, .518vw + 1.576rem, 2.286rem);
    line-height: 1.4;
    font-weight: 700;
}

.policy-rich-text p {
    font-size: clamp(1rem, .129vw + .965rem, 1.143rem);
    line-height: 1.8;
    font-weight: 400;
}

/*28082026-blog*/
.blog-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}
.blog-card:hover{
    transform:translateY(-6px);
}
.blog-img{
    width:100%;
    height:250px;
    object-fit:cover;
}
.blog-date{
    font-size:14px;
    color:#777;
    margin-bottom:10px;
}
.blog-date i{
    margin-right:6px;
}
.blog-title{
    font-size:20px;
    font-weight:700;
    color:#062b49;
    line-height:1.35;
    margin-bottom:12px;
}
.blog-text{
    color:#444;
    font-size:16px;
    line-height:1.8;
    margin-bottom:18px;
}
.read-more{
    color:#0b5ed7;
    font-weight:600;
    text-decoration:none;
}
.read-more:hover{
    color:#084298;
}
.blog-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
    margin:0 6px;   /* Left & Right space */
}

.blog-img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
}
/* ===============================
   Environmental Hygiene Blog CSS
================================= */

.environmental-hygiene-section{
    background:#fff;
}

.environmental-hygiene-title{
    font-size:35px;
    font-weight:700;
    line-height:1.3;
    color:#0b2c4d;
    margin-bottom:30px;
}



.environmental-hygiene-image img{
    width:100%;
    border-radius:12px;
    display:block;
}

.environmental-hygiene-content p{
    font-size:16px;
    line-height:1.9;
    color:#333;
    margin-bottom:24px;
    text-align:justify;
}

.environmental-hygiene-content h2{
    font-size:26px;
    font-weight:600;
    color:#0b2c4d;
    margin:45px 0 20px;
}

.environmental-hygiene-content h3{
    font-size:18px;
    font-weight:500;
    color:#0b2c4d;
    margin:30px 0 5px;
}

.environmental-hygiene-content ul{
    padding-left:20px;
    margin-bottom:25px;
}

.environmental-hygiene-content li{
    font-size:16px;
    line-height:1.8;
    margin-bottom:10px;
    color:#333;
}

@media (max-width:768px){

    .environmental-hygiene-title{
        font-size:26px;
    }

    .environmental-hygiene-content p,
    .environmental-hygiene-content li{
        font-size:15px;
        line-height:1.6;
    }

    .environmental-hygiene-content h2{
        font-size:20px;
    }

    .environmental-hygiene-content h3{
        font-size:18px;
    }
    .environmental-hygiene-list li p{
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}
.environmental-hygiene-content{
  padding-inline: 5px;
}
}
.environmental-hygiene-list{
    list-style: disc;
    padding-left: 24px;
    margin: 20px 0 30px;
}

.environmental-hygiene-list li{
    margin-bottom: 22px;
}

.environmental-hygiene-list li strong{
    display: block;
    font-size: 18px;
    color: #0b2c4d;
    margin-bottom: 6px;
}

.environmental-hygiene-list li p{
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: #333;
}
/* Environmental Hygiene Table */

.environmental-hygiene-table{
    margin:30px 0 40px;
    overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  overscroll-behavior-x:contain;
}

.environmental-hygiene-table table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
}

.environmental-hygiene-table thead p{
      background: #005ca1;
    color: #ffffff;
    font-size:20px;
    font-weight:700;
    text-align:center;
    padding:16px;

}
.environmental-hygiene-table thead th{
      background: #005ca1;
    color: #ffffff;
    font-size:20px;
    font-weight:700;
    text-align:center;
    padding:16px;
    border:1px solid #222;
}

.environmental-hygiene-table td{
    /* width:50%; */
    vertical-align:top;
    padding:18px;
    border:1px solid #E6A04B;
}

.eh-number{
    display:block;
    font-size:18px;
    font-weight:600;
    color:#111;

}

.environmental-hygiene-table h4{
    font-size:18px;
    font-weight:600;
    color:#111;
    margin:0 0 8px;
}

.environmental-hygiene-table p{
    font-size:15px;
    line-height:1.6;
    color:#333;
    margin:0;
}

@media (max-width:768px){

  .environmental-hygiene-table table{
    min-width:600px;
    }

    .environmental-hygiene-table thead th{
        font-size:16px;
        padding: 10px;
    }

    .environmental-hygiene-table h4{
        font-size:16px;
    }
    .environmental-hygiene-table td {

    padding: 10px;
}}
.environmental-hygiene-list{
    padding-left:24px;
    margin:20px 0 30px;
}

.environmental-hygiene-list li{
    font-size:16px;
    line-height:1.8;
    color:#333;
    margin-bottom:14px;
}

.environmental-hygiene-list li strong{
    color:#0b2c4d;
    font-weight:600;
}
/* ===== Environmental Hygiene FAQ ===== */

.environmental-hygiene-faq{
    margin-top:30px;
}

.environmental-hygiene-faq details{
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:12px;
    margin-bottom:14px;
    overflow:hidden;
    transition:.3s ease;
}

.environmental-hygiene-faq details[open]{
    border-color:#0b2c4d;
    box-shadow:0 8px 24px rgba(11,44,77,.08);
}

.environmental-hygiene-faq summary{
    list-style:none;
    cursor:pointer;
    padding:18px 22px;
    font-size:18px;
    font-weight:600;
    color:#0b2c4d;
    position:relative;
    padding-right:55px;
}

.environmental-hygiene-faq summary::-webkit-details-marker{
    display:none;
}

.environmental-hygiene-faq summary::after{
    content:"+";
    position:absolute;
    right:22px;
    top:50%;
    transform:translateY(-50%);
    font-size:26px;
    font-weight:300;
    color:#0b2c4d;
}

.environmental-hygiene-faq details[open] summary::after{
    content:"–";
}

.environmental-hygiene-faq p{
    padding:0 22px 20px;
    margin:0;
    font-size:17px;
    line-height:1.8;
    color:#444;
}

@media (max-width:768px){

    .environmental-hygiene-faq summary{
        font-size:16px;
        padding:16px 18px;
        padding-right:48px;
    }

    .environmental-hygiene-faq p{
        font-size:15px;
        padding:0 18px 18px;
    }
}
/*28082026-blog*/
@media (max-width: 768px) {
  ._galleryGrid_r7odm_34,
  ._galleryGrid_r7odm_35 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
}


/* //////////////////////////blog////////////////////////// */

.hygiene-article-intro > .hygiene-article-image {
    float: right;
    width: 40%;
    margin: 0 0 20px 30px;
}

.hygiene-article-intro > .hygiene-article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hygiene-article-intro > .hygiene-article-content {
    width: 100%;
}

.hygiene-article-intro p {
    margin-bottom: 16px;
}

.hygiene-article-intro::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 767px) {

    .hygiene-article-intro > .hygiene-article-image {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }

    .hygiene-article-intro > .hygiene-article-image img {
        max-width: 100%;
    }

}
.quick-answer-box {
    width: 100%;
    margin: 25px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.quick-answer-title {
    padding: 12px 20px;
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
}

.quick-answer-title span {
    font-size: 20px;
    font-weight: 700;
}

.quick-answer-content {
    padding: 18px 20px;
}

.quick-answer-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}


/* Responsive */
@media (max-width: 767px) {

    .quick-answer-box {
        margin: 20px 0;
    }

    .quick-answer-title {
        padding: 10px 15px;
    }

    .quick-answer-title span {
        font-size: 18px;
    }

    .quick-answer-content {
        padding: 15px;
    }

    .quick-answer-content p {
        font-size: 15px;
        line-height: 1.6;
    }
    .tab-btn{
              padding-right: 52px;
    }

}
