html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  background: #ffffff;
  color: #145D71;
}

img {
  max-width: 100%;
}

.btn:focus,
a {
  box-shadow: none;
  outline: none !important;
}

a {
  color: #145D71;
}
.show-all {
  width: 100% !important;
  text-align: center;
  margin-top: 3rem;
}
.text-light-green {
  color: #99c43c;
}
.sec-p-y {
  padding: 6rem 0;
}
.sec-p-y-sm {
  padding: 4rem 0;
}
.sec-p-t {
  padding-top: 4rem;
}
.btn-style {
  background-color: #145d71;
  border-radius: 1.75rem;
  padding: 8px 16px;
  border: 1px solid #145d71;
  color: #ffffff;
  transition: all 0.35s;
}
.btn-style:hover,
.btn-style:focus {
  box-shadow: none;
  outline: none;
  background-color: #ffffff;
  color: #145d71;
}
.btn-style.outline:focus,
.btn-style.outline:hover {
  background-color: #145d71;
  color: #ffffff;
}

.btn-style.outline {
  background-color: #ffffff;
  color: #145d71;
}
.btn-style.light-green {
  background-color: #99c43c;
  border-color: #99c43c;
  color: #000000;
}
.btn-style.light-green:hover,
.btn-style.light-green:focus {
  background-color: #fff;
}
.btn-style.btn-w {
  background-color: unset;
  background: unset;
  border-color: #ffffff;
  color: rgba(255, 255, 255, 1);
}
.btn-style.btn-w:hover {
  background-color: unset;
  background: unset;
  border-color: #ffffff;
  color: rgba(255, 255, 255, 1);
}
/* -------------- fixed btn------------- */
.fixed-btns {
  position: fixed;
  z-index: 999;
  left: 20px;
  bottom: 20px;
  width: 54px;
}

.fixed-btns .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  font-size: 22px;
  color: #fff;
  border-radius: 50%;
  transition: all 300ms ease;
}

.fixed-btns .btn svg {
  height: 20px;
}

.fixed-btns .btn.whats {
  box-shadow: 0px 8px 18px #25d36633;
  background-color: #25d366;
}

.fixed-btns .btn.whats:hover {
  background-color: #ffffff;
  color: #25d366;
}
/* ================================ navbar ======================== */
.navbar {
  padding-top: 1.5rem;
  padding-bottom: 0;
  transition: padding 0.3s;
}
.navbar-brand {
  flex-shrink: 0;
  margin-right: 1rem;
}

.navbar-brand img {
  max-height: 28px;
  width: auto;
  height: auto;
  min-width: 82px;
}
.navbar .container {
  background: linear-gradient(90deg, rgba(22, 98, 114, 0.8) 0%, rgba(164, 191, 60, 0.8) 100%);
  padding: 10px 22px;
  border-radius: 4rem;
  transition: all 0.3s;
  overflow: visible;
}

@media (min-width: 992px) {
  .navbar .container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
  }
}
.navbar.menuopen .container,
.navbar.scrolled .container {
  background: linear-gradient(90deg, rgba(22, 98, 114, 0.8) 0%, rgba(164, 191, 60, 0.8) 100%);
  box-shadow: 0px 2px 6px rgba(0, 7, 69, 0.2);
}
.navbar.scrolled {
  padding-top: 0;
}
.navbar.menuopen .container {
  border-radius: 1.5rem;
}
.navbar .nav-link {
  color: #fff;
  font-size: 14px;
}
.navbar .nav-item {
  margin-inline-end: 0.1rem;
}
.nav-btns {
  display: flex;
  align-items: center;
}
.nav-btns .btn-trans {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 6px 3px;
  margin-inline-start: 4px;
}
.nav-btns .btn-trans img {
  margin-inline-end: 6px;
  margin-bottom: 2px;
  height: 18px;
}
.nav-btns .btn-style {
  margin: 0 8px;
}
/* ssssssssss nav toggler start  sssssssssssss*/

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  height: 38px;
  width: 38px;
  border-radius: 50%;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.08);
}

.navbar-toggler span,
.navbar-toggler span:before,
.navbar-toggler span:after {
  position: absolute;
  display: inline-block;
  height: 2px;
  width: 17px;
  background-color: rgba(255, 255, 255, 0.85);
  will-change: transform;
}

.navbar-toggler span {
  background-color: transparent;
}

.navbar-toggler span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 0;
  padding: 0;
  will-change: transform;
  transition: background-color 0.3s 0s;
}

.navbar-toggler span:before,
.navbar-toggler span:after {
  content: "";
  left: 50%;
  transform: translateX(-50%);
  transform-origin: 50% 50%;
  transition: transform 0.3s 0.1s;
}

.navbar-toggler span:before {
  top: -6px;
}

.navbar-toggler span:after {
  top: 6px;
}

.navbar-toggler.collapsed span {
  background: rgba(255, 255, 255, 0.85);
}

.navbar-toggler.collapsed span:before,
.navbar-toggler.collapsed span:after {
  transform: translateX(-50%);
}

.navbar-toggler:not(.collapsed) span {
  background-color: transparent !important;
}

.navbar-toggler:not(.collapsed) span:before {
  transform: translateX(-50%) rotate(45deg) !important;
  top: 0 !important;
}

.navbar-toggler:not(.collapsed) span:after {
  transform: translateX(-50%) rotate(-45deg) !important;
  top: 0 !important;
}

/* eeeeeee nav toggler end  eeeeeee */

/* ================================ banner ======================== */
header .banner {
  width: 100%;
}
.main-slider {
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 500px;
}

.prog-wr {
  width: 100%;
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  top: auto;
  z-index: 10;
}

.main-slider .swiper-pagination {
  position: static !important;
}
.swiper-pagination-progressbar {
  top: auto !important;
  border-radius: 10px;
  bottom: 20%;
  width: 16% !important;
  min-width: 150px !important;
  max-width: 300px !important;
}
.swiper-pagination-progressbar {
  background: #989898db;
  border-radius: 10px !important;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #ffffff;
  border-radius: 10px !important;
}
.swiper-count {
  margin-inline-start: 16px;
  color: #ffffff;
}
.main-slider .navi span {
  width: 32px;
  height: 32px;
  border: 1px solid #ffffff;
  display: inline-flex;
  border-radius: 50%;
  color: #ffffff;
  justify-content: center;
  align-items: center;
}
.main-slider .navi span:first-child {
  margin-inline-end: 1rem;
}

.main-slider .swiper-slide {
  width: 100%;
  height: 100%;
}
.slide-inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.slide-inner .text-lay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.main-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-inner .text-lay p {
  max-width: 668px;
  line-height: 2;
}
.slide-inner .text-lay h4 {
  font-size: 48px;
  font-weight: 600;
}

.slide-inner .text-lay h1 {
  font-size: 80px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.2em;
}
.arch {
  z-index: 10;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(74%);
  background-color: #ffffff;
  width: 20%;
  max-width: 350px;
  min-width: 160px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  text-align: center;
}
.arch img {
  height: 18%;
  margin-top: 5%;
}
/* ========================about ============================== */
.img-eff {
  font-size: 24px;
  padding-inline-end: 2em;
  position: relative;
}
.img-eff .img-wr {
  position: relative;
  width: 100%;
}
.img-eff .img-wr::before,
.img-eff .img-wr::after {
  content: "";
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 20px !important;
  z-index: -1;
  right: auto;
}
.img-eff .img-wr::before {
  background-color: #dfdcf1;
  left: 1em;
  z-index: 2;
  height: calc(100% - 2em);
}
.img-eff .img-wr::after {
  background-color: #e6fff6;
  left: 2em;
  height: calc(100% - 4em);
}
.img-eff .img-wr img {
  width: 100%;
  position: relative;
  display: block;
  z-index: 2;
}

#about .text-col {
  max-width: 50rem;
  padding: 0 1.75rem;
}

#about h1 {
  color: #145d71;
  font-size: 40px;
  font-weight: 600;
  /* max-width: 500px; */
  margin-bottom: 0.2em;
  margin-top: 1rem;
}
#about p {
  color: #145d71;
  font-size: 1rem;
  line-height: normal;
  margin-bottom: 0.5rem;
}
.btn-style.wide {
  min-width: 186px;
}
#about .btn-style {
  font-size: 16px;
}
/* ============================= serv ================================= */
.sec-title {
  color: #145D71;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.sec-title .after-title {
  line-height: normal;
  font-size: 1.25rem;
  color: #145D71;
  font-weight: normal;
  margin-top: 1em;
}
.sec-title.text-center {
  margin-left: auto;
  margin-right: auto;
  /* max-width: 460px; */
  padding-left: 10rem;
  padding-right: 10rem;
}
#services {
  background: #daf2e1;
  background: linear-gradient(210deg, rgba(218, 242, 225, 1) 0%, rgba(244, 247, 248, 1) 21%, rgba(244, 247, 248, 1) 78%, rgba(220, 231, 245, 1) 100%);
}

/* Services section: animate sec-title and after-title on scroll */
#services .sec-title.text-center.wow,
#services .after-title.wow {
  --animate-duration: 0.7s;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* #services section: responsive title and subtitle */
#services .sec-title.text-center {
  font-size: 1.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
#services .sec-title.text-center .after-title {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 0.5em;
}
@media (min-width: 576px) {
  #services .sec-title.text-center {
    font-size: 1.75rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  #services .sec-title.text-center .after-title {
    font-size: 1.05rem;
  }
}
@media (min-width: 768px) {
  #services .sec-title.text-center {
    font-size: 2rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  #services .sec-title.text-center .after-title {
    font-size: 1.15rem;
  }
}
@media (min-width: 992px) {
  #services .sec-title.text-center {
    font-size: 2.25rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }
  #services .sec-title.text-center .after-title {
    font-size: 1.2rem;
  }
}
@media (min-width: 1200px) {
  #services .sec-title.text-center {
    font-size: 2.5rem;
    padding-left: 10rem;
    padding-right: 10rem;
  }
  #services .sec-title.text-center .after-title {
    font-size: 1.25rem;
  }
}

/* #team section: responsive title and subtitle */
#team .sec-title.text-center {
  font-size: 1.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
#team .sec-title.text-center .after-title {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 0.5em;
}
@media (min-width: 576px) {
  #team .sec-title.text-center {
    font-size: 1.75rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  #team .sec-title.text-center .after-title {
    font-size: 1.05rem;
  }
}
@media (min-width: 768px) {
  #team .sec-title.text-center {
    font-size: 2rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  #team .sec-title.text-center .after-title {
    font-size: 1.15rem;
  }
}
@media (min-width: 992px) {
  #team .sec-title.text-center {
    font-size: 2.25rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }
  #team .sec-title.text-center .after-title {
    font-size: 1.2rem;
  }
}
@media (min-width: 1200px) {
  #team .sec-title.text-center {
    font-size: 2.5rem;
    padding-left: 10rem;
    padding-right: 10rem;
  }
  #team .sec-title.text-center .after-title {
    font-size: 1.25rem;
  }
}

.serv-col .serv-card p,
.serv-col .serv-card .c-title,
.serv-col {
  transition: all 0.35s;
}
.serv-card {
  padding-bottom: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 3.5rem;
}
.serv-card .c-title {
  color: #000000;
  font-weight: bold;
  margin-bottom: 1rem;
  margin-top: 20px;
}
.serv-card p {
  color: #145D71;
}

.serv-col:hover {
  background-color: #145d71;
}

.serv-col:hover .serv-card .c-title,
.serv-col:hover .serv-card p {
  color: #ffffff;
}

.serv-col:hover .serv-card .i-wr img {
  filter: grayscale(1) saturate(0%) contrast(10000%) invert(100%);
}

/* =============================================== New Services Design ======================= */
.serv-sec-new {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.services-grid-new {
  margin-bottom: 3rem;
  justify-content: center;
}

.serv-col-new {
  margin-bottom: 2rem;
}

.serv-card-new-link:hover .serv-card-new {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.serv-card-new-link {
  cursor: pointer;
}

.serv-card-new {
  background-color: #ffffff;
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.serv-card-new:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.serv-card-header {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.serv-icon-wrapper {
  margin-bottom: 0;
  flex-shrink: 0;
}

.serv-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: rgba(20, 93, 113, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #145d71;
  overflow: hidden;
}

.serv-icon.serv-icon-image {
  background-color: transparent;
  padding: 0;
}

.serv-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.serv-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.serv-card-title {
  color: #145D71;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0;
  line-height: normal;
}

.serv-card-body {
  display: flex;
  flex-direction: column;
}

.serv-card-description {
  color: #145D71;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.serv-sub-services {
  list-style: none;
  padding: 0;
  margin: 0;
}

.serv-sub-services li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: #145D71;
  font-size: 1rem;
  line-height: normal;
}

.serv-sub-services li:last-child {
  margin-bottom: 0;
}

.serv-sub-services .check-icon {
  width: 20px;
  height: 20px;
  margin-right: 0.75rem;
  flex-shrink: 0;
  display: block;
}

.serv-sub-services li span {
  flex: 1;
  font-weight: 600;
}

.btn-services-cta {
  background: linear-gradient(90deg, #8B9A46 0%, #145d71 100%);
  color: #ffffff;
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-services-cta:hover {
  background: linear-gradient(90deg, #7a8839 0%, #114a5a 100%);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(20, 93, 113, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .serv-col-new {
    margin-bottom: 1.5rem;
  }
  
  .serv-card-new {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .serv-sec-new {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  
  .serv-card-title {
    font-size: 20px;
  }
  
  .serv-card-description {
    font-size: 14px;
  }
}

/* =============================================== team ======================= */
#team {
  background-size: cover;
  background-repeat: no-repeat;
}
.team-card {
  border-radius: 0.625rem;
  border: 1px solid #B7E51F;
  /* background: linear-gradient(180deg, #B7E51F 0%, #1EC4E2 100%); */
  padding: 0.75rem;
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* Modern slide-from-left animation for team cards */
.team-card-animate {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Staggered delays for each card - works with any column class */
#team .row > div:nth-child(1) .team-card-animate {
  transition-delay: 0.15s;
}

#team .row > div:nth-child(2) .team-card-animate {
  transition-delay: 0.3s;
}

#team .row > div:nth-child(3) .team-card-animate {
  transition-delay: 0.45s;
}

#team .row > div:nth-child(4) .team-card-animate {
  transition-delay: 0.6s;
}

#team .row > div:nth-child(5) .team-card-animate {
  transition-delay: 0.75s;
}

#team .row > div:nth-child(6) .team-card-animate {
  transition-delay: 0.9s;
}

#team .row > div:nth-child(7) .team-card-animate {
  transition-delay: 1.05s;
}

#team .row > div:nth-child(8) .team-card-animate {
  transition-delay: 1.2s;
}

#team .row > div:nth-child(9) .team-card-animate {
  transition-delay: 1.35s;
}

#team .row > div:nth-child(10) .team-card-animate {
  transition-delay: 1.5s;
}

#team .row > div:nth-child(11) .team-card-animate {
  transition-delay: 1.65s;
}

#team .row > div:nth-child(12) .team-card-animate {
  transition-delay: 1.8s;
}

/* Animated state */
#team.animate-in .team-card-animate,
.team-card-animate.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.team-card .img-wr {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
}
.team-card .img-wr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card .cont {
  text-align: center;
  margin-top: 1rem;
}
.team-card .cont .name {
  color: #145D71;
  font-weight: bold;
  margin: 6px 0;
}
.team-card .cont .role {
  color: #145D71;
  font-size: 14px;
}

.team-card .lay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 0.625rem;
  background: transparent radial-gradient(100% 100% at 49.81% 100%, #668011 0%, #116F80 84.66%);
  justify-content: space-between;
  color: #fff;
  transition: all 0.4s ease-out;
  opacity: 0.3;
  perspective: 400px;
  transform: translateX(-100%);
}
.team-card:hover .lay {
  opacity: 1;
  transform: translateX(0);
}
.team-card .lay .c-body {
  height: calc(100% - 81px);
  padding: 0.5rem 0;
  overflow-y: hidden;
  width: 100%;
}
.team-card .c-head {
  display: flex;
  padding: 0.5rem 0;
  align-items: center;
  font-size: 14px;
  line-height: 1;
  border-bottom: 1px solid #ffffff29;
  padding-bottom: 1rem;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.team-card .c-head span {
  color: #99c43c;
  background-color: #fff;
  border-radius: 50%;
  padding: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-inline-end: 0.5rem;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #0000007f;
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.team-card .lay p {
  font-size: 0.875rem;
  line-height: normal;
  font-weight: 300;
  text-align: center;
}
.more-btn,
.team-card .lay a {
  text-decoration: none !important;
  font-size: 0.875rem;
  box-shadow: none;
  outline: none;
  color: #fff;
  align-self: center;
}
.more-btn:hover {
  color: #99c43c;
}
.more-btn svg,
.team-card .lay a svg {
  transition: all 0.3s;
}
.more-btn:hover svg,
.team-card .lay a:hover svg {
  transform: translateX(8px);
}
/* ============================== stat ============================ */
#stat {
  background: #daf2e1;
  background: linear-gradient(210deg, rgba(218, 242, 225, 1) 0%, rgba(244, 247, 248, 1) 21%, rgba(244, 247, 248, 1) 78%, rgba(220, 231, 245, 1) 100%);
  padding: 4rem 0;
}

/* #stat section: responsive title and subtitle */
#stat .sec-title.text-center {
  font-size: 1.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
#stat .sec-title.text-center .after-title {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 0.5em;
}
@media (min-width: 576px) {
  #stat .sec-title.text-center {
    font-size: 1.75rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  #stat .sec-title.text-center .after-title {
    font-size: 1.05rem;
  }
}
@media (min-width: 768px) {
  #stat .sec-title.text-center {
    font-size: 2rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  #stat .sec-title.text-center .after-title {
    font-size: 1.15rem;
  }
}
@media (min-width: 992px) {
  #stat .sec-title.text-center {
    font-size: 2.25rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }
  #stat .sec-title.text-center .after-title {
    font-size: 1.2rem;
  }
}
@media (min-width: 1200px) {
  #stat .sec-title.text-center {
    font-size: 2.5rem;
    padding-left: 10rem;
    padding-right: 10rem;
  }
  #stat .sec-title.text-center .after-title {
    font-size: 1.25rem;
  }
}

.stats-chart-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stats-chart-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Slide-right animation for stats cards */
.stats-card-animate {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Staggered delays for each stats card */
#stat .row > div:nth-child(1) .stats-card-animate {
  transition-delay: 0.15s;
}

#stat .row > div:nth-child(2) .stats-card-animate {
  transition-delay: 0.3s;
}

#stat .row > div:nth-child(3) .stats-card-animate {
  transition-delay: 0.45s;
}

#stat .row > div:nth-child(4) .stats-card-animate {
  transition-delay: 0.6s;
}

#stat .row > div:nth-child(5) .stats-card-animate {
  transition-delay: 0.75s;
}

#stat .row > div:nth-child(6) .stats-card-animate {
  transition-delay: 0.9s;
}

/* Animated state */
#stat.animate-in .stats-card-animate,
.stats-card-animate.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.stats-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.stats-icon-wrapper {
  width: 48px;
  height: 48px;
  background: #E8F4F7;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stats-icon {
  width: 24px;
  height: 24px;
  color: #0F738E;
  stroke-width: 2;
}
.stats-growth-badge {
  background: #DBFFE6;
  color: #16AF56;
  padding: 0.625rem;
  border-radius: 1.25rem;
  font-size: 1rem;
  font-weight: 700;
}
.stats-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #145D71;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.stats-card-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #145D71;
  margin-bottom: 1rem;
  line-height: normal;
  font-style: normal;
}
.stats-chart-container {
  height: 80px;
  width: 100%;
  margin-top: auto;
  position: relative;
  min-height: 80px;
}
.stats-chart-container canvas {
  display: block;
  width: 100% !important;
  height: 80px !important;
}

/* Responsive styles for stats cards */
@media (max-width: 1199px) {
  .stats-card-value {
    font-size: 2.25rem;
  }
  .stats-card-title {
    font-size: 0.9rem;
  }
}

@media (max-width: 991px) {
  #stat .col-lg-3 {
    margin-bottom: 1.5rem;
  }
  .stats-chart-card {
    padding: 1.25rem;
  }
  .stats-card-value {
    font-size: 2rem;
  }
  .stats-icon-wrapper {
    width: 44px;
    height: 44px;
  }
  .stats-icon-wrapper svg {
    width: 36px;
    height: 36px;
  }
  .industry-sectors-card .row {
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  #stat {
    padding: 3rem 0;
  }
  #stat .col-md-3 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 1.5rem;
  }
  #stat .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .stats-chart-card {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
  }
  .stats-card-value {
    font-size: 1.75rem;
  }
  .stats-card-title {
    font-size: 0.85rem;
  }
  .stats-chart-container {
    height: 70px;
  }
  .stats-icon-wrapper {
    width: 40px;
    height: 40px;
  }
  .stats-icon-wrapper svg {
    width: 32px;
    height: 32px;
  }
  .stats-growth-badge {
    padding: 0.5rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  #stat {
    padding: 2.5rem 0;
  }
  #stat .col-lg-3,
  #stat .col-md-6,
  #stat .col-sm-6,
  #stat .col-12 {
    margin-bottom: 1.5rem;
  }
  .stats-chart-card {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }
  .stats-card-value {
    font-size: 1.75rem;
  }
  .stats-card-title {
    font-size: 0.875rem;
  }
  .stats-card-header {
    margin-bottom: 0.75rem;
  }
  .stats-icon-wrapper {
    width: 40px;
    height: 40px;
  }
  .stats-icon-wrapper svg {
    width: 30px;
    height: 30px;
  }
  .stats-growth-badge {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
  }
  .stats-chart-container {
    height: 65px;
  }
}

@media (max-width: 400px) {
  .stats-chart-card {
    padding: 1rem;
  }
  .stats-card-value {
    font-size: 1.5rem;
  }
  .stats-card-title {
    font-size: 0.8rem;
  }
  .stats-icon-wrapper {
    width: 36px;
    height: 36px;
  }
  .stats-icon-wrapper svg {
    width: 28px;
    height: 28px;
  }
}

/* Legacy styles for backward compatibility */
.num-card {
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.num-card .bold {
  font-size: 46px;
  font-weight: 600;
}
.num-card .lbl {
  font-size: 18px;
}
#stat .col-6 {
  padding: 0.75rem 0.5rem;
}
/* ======================= blogs ========================= */
.blog-card {
  background: 
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(90deg, #A4BF3C 0%, #166272 100%) border-box;
  border: 2px solid transparent;
  border-radius: 1rem;
  padding: 1rem;
  height: 100%;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
}
.blog-card .img-wr {
  width: 100%;
  aspect-ratio: 3.5 / 2;
  margin-bottom: 1rem;
}
.blog-card .img-wr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.blog-card .c-title {
  color: #145D71;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 15px;
}
.blog-card p {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 15px;
}
.blog-card .more-btn {
  margin-bottom: 0.5rem;
  color: #145D71;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.blog-card:hover .more-btn {
  color: #99c43c;
}
.blog-slider .swiper-slide {
  width: 350px;
}

/* Blog section scroll-triggered animations - staggered fade-in up */
#blogs .sec-title.text-center.wow,
#blogs .after-title.wow,
#blogs .blog-slider.wow,
#blogs .navi-wr.wow {
  --animate-duration: 0.7s;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* #blogs section: responsive title and subtitle */
#blogs .sec-title.text-center {
  font-size: 1.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
#blogs .sec-title.text-center .after-title {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 0.5em;
}
@media (min-width: 576px) {
  #blogs .sec-title.text-center {
    font-size: 1.75rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  #blogs .sec-title.text-center .after-title {
    font-size: 1.05rem;
  }
}
@media (min-width: 768px) {
  #blogs .sec-title.text-center {
    font-size: 2rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  #blogs .sec-title.text-center .after-title {
    font-size: 1.15rem;
  }
}
@media (min-width: 992px) {
  #blogs .sec-title.text-center {
    font-size: 2.25rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }
  #blogs .sec-title.text-center .after-title {
    font-size: 1.2rem;
  }
}
@media (min-width: 1200px) {
  #blogs .sec-title.text-center {
    font-size: 2.5rem;
    padding-left: 10rem;
    padding-right: 10rem;
  }
  #blogs .sec-title.text-center .after-title {
    font-size: 1.25rem;
  }
}

.navi-wr {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
}

.blog-slider .navi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.blog-slider .navi span {
  width: 36px;
  height: 36px;
  border: 1px solid #145d71;
  display: inline-flex;
  border-radius: 50%;
  color: #145d71;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: transparent;
  position: relative;
  overflow: hidden;
}

.blog-slider .navi span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: linear-gradient(90deg, #A4BF3C 0%, #166272 100%);
  transform: translate(-50%, -50%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.blog-slider .navi span i {
  display: block;
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
}

.blog-slider .navi span i svg,
.blog-slider .navi span svg {
  width: 18px;
  height: 18px;
  stroke: #145d71;
  stroke-width: 2;
  fill: none;
  transition: stroke 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  position: relative;
  z-index: 1;
}

.blog-slider .navi span:hover {
  border-color: transparent;
  transform: translateY(-2px);
}

.blog-slider .navi span:hover::before {
  width: 100%;
  height: 100%;
}

.blog-slider .navi span:hover i svg,
.blog-slider .navi span:hover svg {
  stroke: #ffffff;
}
.blog-slider .navi span:first-child {
  margin-inline-end: 1rem;
}
.navi-wr a {
  color: #fff;
  font-size: 18px;
  margin: 0 0.5rem;
  font-weight: 500;
}
/* =============================== contact ================================ */
#contactUs {
  background: #daf2e1;
  background: linear-gradient(210deg, rgba(218, 242, 225, 1) 0%, rgba(244, 247, 248, 1) 21%, rgba(244, 247, 248, 1) 78%, rgba(220, 231, 245, 1) 100%);
}

/* Contact form wrapper: overlay is positioned to match form exactly */
.contact-form-wrapper {
  display: block;
}
/* Contact form success overlay – same dimensions as #contactUs .form-style */
.contact-form-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(90deg, #A4BF3C 0%, #166272 100%) border-box;
  border: 5px solid transparent;
  border-radius: 1rem;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 1.5rem 3rem;
  min-height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.contact-form-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.contact-form-overlay .contact-form-success-text {
  color: #145D71;
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease 0.12s, transform 0.35s ease 0.12s;
}
.contact-form-overlay.is-visible .contact-form-success-text {
  opacity: 1;
  transform: translateY(0);
}
.contact-form-overlay #contact-form-show-another {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease 0.22s, transform 0.35s ease 0.22s;
}
.contact-form-overlay.is-visible #contact-form-show-another {
  opacity: 1;
  transform: translateY(0);
}
.lihgt-green {
  background: linear-gradient(90deg, #A4BF3C 0%, #166272 100%);
  display: flex;
  padding: 0.5rem 1rem;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  border-radius: 1.5rem;
  justify-content: center;
  width: fit-content;
  text-transform: uppercase;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
#contactUs .lihgt-green .contact-tag-icon svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

#contactUs .sec-title {
  max-width: 490px;
  line-height: normal;
  text-transform: capitalize;
}

#contactUs .sec-title .after-title {
  margin-top: 0.5rem;
}

.infos .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.infos .info-item .i-wr {
  margin-inline-end: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: rgba(153, 196, 60, 0.15);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #99c43c;
}
.infos .info-item .i-wr svg {
  height: 18px;
}
.infos .info-item div {
  color: #145D71;
  font-weight: 600;
}
.info-item a:hover {
  color: #99c43c;
}
.form-style h3{
  text-transform: capitalize;
}
.form-style .custom-file-label,
.form-style .form-control {
  min-height: 46px;
  border: 1px solid #eceef2;
  border-radius: 8px;
  background-color: #fbfbfb;
  color: #495057;
  font-size: 0.95rem;
}
.form-style .custom-file-label {
  line-height: 34px;
}

.form-style .custom-file-label::after {
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 10px 24px;
  line-height: 1.5;
  color: #ffffff;
  content: "Browse";
  background: linear-gradient(90deg, #99C43C 0%, #145D71 100%);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.form-style .custom-file:hover .custom-file-label::after,
.form-style .custom-file-label:hover::after {
  background: linear-gradient(90deg, #B7E51F 0%, #1EC4E2 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(183, 229, 31, 0.4);
}
.form-style .custom-file-input {
  min-height: 44px;
}
.form-style .form-control::placeholder {
  color: #495057;
  font-size: 0.95rem;
}
.form-style .form-control:focus {
  outline: none;
  border-color: #145d71;
  box-shadow: none;
}
.form-style .custom-file-input:focus ~ .custom-file-label {
  border-color: #145d71;
  box-shadow: none;
}
div.iti.iti--allow-dropdown {
  display: flex;
  min-height: 46px;
  border: 1px solid #eceef2;
  background-color: #fbfbfb;
  font-size: 14px;
  position: relative;
  padding: 0 !important;
  border-radius: 8px;
}
div.iti.iti--allow-dropdown .form-control {
  border: 0;
  height: 44px;
}
.iti__flag-container {
  position: static !important;
  border-radius: 8px;
}
.iti.iti--allow-dropdown .form-control {
  padding: 6px 12px !important;
  box-shadow: none !important;
}
.iti__country-list {
  width: 100%;
}
.iti__country {
  width: 100%;
  overflow: hidden;
}
.iti__dial-code,
.iti__country-name {
  display: inline-flex;
  font-size: 0.85em;
  white-space: normal;
}
.iti__selected-flag {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  height: 44px;
}
.form-style {
  background-color: #ffffff;
  padding: 48px;
  border-radius: 1rem;
}

/* Gradient border for contact form - Optimized approach */
#contactUs .form-style {
  background: 
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(90deg, #A4BF3C 0%, #166272 100%) border-box;
  border: 5px solid transparent;
  border-radius: 1rem;
  padding: 1.5rem 3rem;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
}
.form-style h3 {
  color: #145D71;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 1em;
}
.form-style .form-group {
  margin-bottom: 1.5rem;
}
/* ---------------------- clints ============================ */
.clints-sec .sec-title {
  max-width: 480px;
  margin-top: 20px;
}
.clints-sec .sec-title .after-title {
  color: #145D71;
}

.speech-slider .swiper-slide {
  background-color: #145d71;
  height: 100%;
  padding: 2rem;
  border: 1px solid #ffff;
}
.speech-card {
  color: #fff;
  padding: 0;
  font-weight: 300;
}

.speech-card .inner {
  padding: 1rem;
  width: 100%;
  height: 100%;
}

.speech-card .inner p {
  padding-left: 20px;
  padding-top: 6px;
  padding-bottom: 6px;
  margin-bottom: 3rem;
  line-height: 30px;
  border-left: 2px solid #ffffff;
  font-size: 18px;
  color: #ffffff;
}

.speech-card .inner .d-flex {
  justify-content: space-between;
  align-items: center;
}

.speech-card .inner .d-flex .person {
  display: flex;
  align-items: center;
  color: #ffff;
}

.speech-card .inner .d-flex .person img {
  margin-right: 1rem;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.speech-card .inner .d-flex .person .dis {
  color: #99c43c;
  font-size: 14px;
}
/* ======================carrers================ */
#carrers {
  color: #ffffff;
}
#carrers .wr {
  max-width: 600px;
}
#carrers .wr h3 {
  font-size: 36px;
  line-height: 1.5;
  margin: 0.6em 0;
}
#carrers .wr .more-btn {
  color: #ffffff;
}
#carrers .col-lg-6 > img {
  margin-inline-start: auto;
  display: block;
}

/* ======================================= New Careers Section Design ==================== */
.careers-section {
  background: #ffffff;
  padding: 5rem 0;
}

.careers-section .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Careers Hero Content */
.careers-hero-content {
  padding: 0;
}

/* #carrers careers-hero-content: scroll-triggered animations */
#carrers .careers-tag.wow,
#carrers .careers-main-heading.wow,
#carrers .careers-sub-heading.wow,
#carrers .careers-description.wow,
#carrers .careers-cta-buttons.wow,
#carrers .careers-image-wrapper.wow,
#carrers .careers-stat-card.wow {
  --animate-duration: 0.6s;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.careers-tag {
  background: linear-gradient(90deg, #A4BF3C 0%, #166272 100%);
  display: flex;
  padding: 0.5rem 1rem;
  align-items: center;  
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  border-radius: 1.5rem;
  justify-content: center;
  width: fit-content;
  text-transform: uppercase;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.careers-tag svg {
  width: 14px;
  height: 14px;
}

.careers-main-heading {
  color: #145D71;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  max-width: 490px;
  line-height: normal;
  text-transform: capitalize;
}

.careers-heading-keep-together {
  white-space: nowrap;
}

.careers-heading-highlight {
  color: #145D71;
}

.careers-sub-heading {
  line-height: normal;
  font-size: 1.25rem;
  color: #145D71;
  font-weight: normal;
  margin-bottom: 1.5rem;
}

.careers-description {
  font-size: 1rem;
  color: #145D71;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 550px;
}

/* Careers CTA Buttons */
.careers-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-careers-primary {
  background: linear-gradient(90deg, #99C43C 0%, #145D71 100%);
  color: #ffffff;
  padding: 10px 32px;
  border-radius: 48px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: none;
  line-height: 1.5;
  vertical-align: middle;
}

.btn-careers-primary:hover {
  background: linear-gradient(90deg, #B7E51F 0%, #1EC4E2 100%);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(183, 229, 31, 0.4);
}

.btn-careers-primary .arrow-right {
  width: 19px;
  height: 13px;
  margin-left: 0.5rem;
  margin-right: 0;
}

.btn-hero .arrow-right,
a.btn.btn-hero .arrow-right {
  width: 16px;
  height: 11px;
}

.btn-careers-secondary {
  background: #1A4450;
  color: #ffffff;
  padding: 10px 32px;
  border-radius: 48px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #8FBC40;
  transition: all 0.3s ease;
  line-height: 1.5;
  vertical-align: middle;
}

.btn-careers-secondary:hover {
  background: linear-gradient(90deg, #B7E51F 0%, #1EC4E2 100%);
  color: #ffffff;
  border-color: #1EC4E2;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(183, 229, 31, 0.4);
}

/* Careers Image */
.careers-section .row.align-items-center .col-lg-6 {
  padding: 0 2rem;
}

.careers-section .row.align-items-center .col-lg-6:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
}

.careers-image-wrapper {
  position: relative;
  overflow: visible;
  width: 100%;
  max-width: 430px;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 auto;
}

.careers-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  display: block;
}

.careers-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid #99C43C;
  z-index: 0;
  pointer-events: none;
  transform: translate(24px, 24px);
  box-sizing: border-box;
}

/* Careers Stats Row */
.careers-stats-row {
  margin-top: 4rem;
  width: 100%;
  justify-content: center;
}

.careers-stat-card {
  font-family: "IBM Plex Sans", sans-serif;
  background: linear-gradient(292deg, #C6EFF1 -80.94%, #F9FDFE 45.71%, #FFF 82.68%);
  border: 2px solid #00C9DB;
  border-radius: 20px;
  padding: 1rem;
  height: fit-content;
  transition: all 0.3s ease;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 12.75rem;
  margin: 0 auto;
}

.careers-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}

.stat-icon svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.stat-icon .careers-stat-card-icon {
  width: 20px;
  height: 20px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  flex-shrink: 0;
}

.stat-icon svg path {
  fill: url(#statGradient);
}

.stat-label {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  background: linear-gradient(90deg, #99C43C 0%, #2B8C43 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: 1px;
  margin: 0;
}

.stat-value {
  flex: 1 0 0;
  color: var(--Second, #145D71);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0.5rem;
}

.stat-description {
  color: var(--Second, #145D71);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* Responsive Styles for Careers */
@media (max-width: 991.98px) {
  .careers-hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  
  .careers-main-heading {
    font-size: 2.5rem;
  }
  
  .careers-sub-heading {
    font-size: 1.25rem;
  }
  
  .careers-stats-row {
    margin-top: 3rem;
  }
  
  .careers-stat-card {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .careers-section {
    padding: 3rem 0;
  }
  
  .careers-main-heading {
    font-size: 2rem;
  }
  
  .careers-sub-heading {
    font-size: 1.1rem;
  }
  
  .careers-description {
    font-size: 0.95rem;
  }
  
  .careers-cta-buttons {
    flex-direction: column;
  }
  
  .btn-careers-primary,
  .btn-careers-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .stat-value {
    font-size: 1.5rem;
  }
  
  .careers-stat-card {
    padding: 1.5rem;
    max-width: 100%;
  }
  
  .careers-stats-row {
    margin-top: 2rem;
  }
}

/* ======================================= part sec ==================== */
/* Industry Sectors Section */
.industry-sectors-section {
  background: #daf2e1;
  background: linear-gradient(210deg, rgba(218, 242, 225, 1) 0%, rgba(244, 247, 248, 1) 21%, rgba(244, 247, 248, 1) 78%, rgba(220, 231, 245, 1) 100%);
}

.industry-sectors-header {
  margin-bottom: 3rem;
}

.industry-sectors-title {
  color: var(--Second, #145D71);
  text-align: center;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 1rem;
}

.industry-sectors-subtitle {
  color: var(--Second, #145D71);
  text-align: center;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 800px;
  margin: 0 auto;
}

/* 6 Industry Sector Cards Grid */
.industry-sector-cards-grid {
  margin-bottom: 3rem;
  row-gap: 2.5rem;
}

.industry-sector-card {
  border-radius: 32px;
  border: 1px solid var(--Stroke, #EAEAEA);
  background: #FFF;
  box-shadow: 0 4px 6px 0 rgba(64, 149, 191, 0.50);
  padding: 1.5rem 1.5rem 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.industry-sector-card:hover {
  box-shadow: 0 8px 24px rgba(0, 76, 143, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.industry-sector-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.industry-sector-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 8px;
  background: linear-gradient(90deg, #99C43C 0%, #2B8C43 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-sector-card-icon svg {
  width: 26px;
  height: 26px;
}

.industry-sector-card-share {
  color: var(--Second, #145D71);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  white-space: nowrap;
}

.industry-sector-card-title {
  color: var(--Second, #145D71);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 0.5rem 0;
}

.industry-sector-card-desc {
  color: var(--Second, #145D71);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 1rem 0;
  flex: 1;
}

.industry-sector-card-divider {
  border: none;
  border-top: 1px solid #E9ECEF;
  margin: 0 0 1rem 0;
}

.industry-sector-card-metric {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35em;
  font-family: "IBM Plex Sans", sans-serif;
  line-height: normal;
}

.industry-sector-card-metric-value {
  color: var(--Second, #145D71);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.industry-sector-card-metric-value .industry-sector-card-currency-icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.2em;
}

.industry-sector-card-metric-label {
  color: var(--Second, #145D71);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.industry-sectors-card-wrapper {
  background: linear-gradient(135deg, #6BD474 0%, #69C4E6 100%);
  border-radius: 25px;
  padding: 3px;
  margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: visible;
}

.industry-sectors-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 3rem;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

.sector-distribution {
  padding-right: 2rem;
}

.sector-distribution-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sector-distribution-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.sector-list {
  display: flex;
  flex-direction: column;
}

.sector-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
}

.sector-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sector-name {
  flex: 1;
  font-size: 1rem;
  color: #1a1a1a;
  font-weight: 500;
}

.sector-value {
  font-size: 0.95rem;
  color: #666;
  font-weight: 400;
  text-align: right;
}

/* Donut Chart Styles */
.donut-chart-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.donut-chart-wrapper canvas {
  max-width: 100%;
  height: auto;
}

.chart-center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

.chart-total-label {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.chart-total-value {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  font-family: "IBM Plex Sans", sans-serif;
}

.chart-growth-badge {
  display: inline-block;
  background-color: #E7FFE7;
  color: #2D7747;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Know More Button */
.btn-know-more {
  background: linear-gradient(90deg, #99C43C 0%, #145D71 100%);
  color: #ffffff;
  border: none;
  border-radius: 48px;
  padding: 10px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  line-height: 1.5;
  vertical-align: middle;
  margin-top: 2rem;
}

.btn-know-more:hover {
  background: linear-gradient(90deg, #B7E51F 0%, #1EC4E2 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(183, 229, 31, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.btn-know-more .arrow-right {
  margin-left: 0.5rem;
  margin-right: 0;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .sector-distribution {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .industry-sectors-card {
    padding: 2rem;
  }
  
  .industry-sectors-title {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .industry-sectors-title {
    font-size: 1.75rem;
  }
  
  .industry-sectors-subtitle {
    font-size: 1rem;
  }
  
  .industry-sectors-card {
    padding: 1.5rem;
    border-radius: 20px;
  }
  
  .industry-sector-card {
    padding: 1.25rem 1.25rem 1rem;
    border-radius: 24px;
  }
  
  .industry-sector-card-title {
    font-size: 1rem;
  }
  
  .industry-sector-card-desc {
    font-size: 0.875rem;
  }
  
  .industry-sector-card-metric-value {
    font-size: 1.125rem;
  }
  
  .industry-sector-card-metric-label {
    font-size: 0.875rem;
  }
  
  .sector-distribution-title {
    font-size: 1.25rem;
  }
  
  .chart-total-value {
    font-size: 1.5rem;
  }
}

/* Legacy styles for backward compatibility */

.sector-distribution-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sector-distribution-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.sector-list {
  display: flex;
  flex-direction: column;
}

.sector-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
}

.sector-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sector-name {
  flex: 1;
  font-size: 1rem;
  color: #1a1a1a;
  font-weight: 500;
}

.sector-value {
  font-size: 0.95rem;
  color: #666;
  font-weight: 400;
  text-align: right;
}

/* Donut Chart Styles */
.donut-chart-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.donut-chart-wrapper canvas {
  max-width: 100%;
  height: auto;
}

.chart-center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

.chart-total-label {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.chart-total-value {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  font-family: "IBM Plex Sans", sans-serif;
}

.chart-growth-badge {
  display: inline-block;
  background-color: #E7FFE7;
  color: #2D7747;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Know More Button */
.btn-know-more {
  background: linear-gradient(90deg, #99C43C 0%, #145D71 100%);
  color: #ffffff;
  border: none;
  border-radius: 48px;
  padding: 10px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  line-height: 1.5;
  vertical-align: middle;
  margin-top: 2rem;
}

.btn-know-more:hover {
  background: linear-gradient(90deg, #B7E51F 0%, #1EC4E2 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(183, 229, 31, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.btn-know-more .arrow-right {
  margin-left: 0.5rem;
  margin-right: 0;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .sector-distribution {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .industry-sectors-card {
    padding: 2rem;
  }
  
  .industry-sectors-title {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .industry-sectors-title {
    font-size: 1.75rem;
  }
  
  .industry-sectors-subtitle {
    font-size: 1rem;
  }
  
  .industry-sectors-card {
    padding: 1.5rem;
    border-radius: 20px;
  }
  
  .sector-distribution-title {
    font-size: 1.25rem;
  }
  
  .chart-total-value {
    font-size: 1.5rem;
  }
}

/* Fix Chart Cropping */
.industry-sectors-section .row > .col-lg-6:last-child {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.industry-sectors-section .donut-chart-wrapper {
  width: 100% !important;
  max-width: 500px !important;
  margin: 0 auto !important;
  aspect-ratio: 1 !important;
  min-height: 300px !important;
  height: auto !important;
  padding: 20px !important;
  box-sizing: border-box !important;
  overflow: visible !important;
  align-self: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.industry-sectors-section .donut-chart-wrapper canvas {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  display: block !important;
  box-sizing: border-box !important;
  margin: 0 auto !important;
  image-rendering: -webkit-optimize-contrast !important;
  image-rendering: auto !important;
}

/* Chart Title Styles */
.industry-sectors-section .chart-total-label {
  color: #145D71 !important;
  text-align: center !important;
  leading-trim: both !important;
  text-edge: cap !important;
  font-family: "IBM Plex Sans", sans-serif !important;
  font-size: 1.5rem !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: normal !important;
  margin-bottom: 0.5rem !important;
}

/* Currency Icon Styles for Chart */
.industry-sectors-section .chart-total-value {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  color: #145D71 !important;
  text-align: center !important;
  font-family: "IBM Plex Sans", sans-serif !important;
  font-size: 3rem !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: normal !important;
}

.industry-sectors-section .chart-total-value .currency-icon {
  width: 28px !important;
  height: 28px !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

.industry-sectors-section .chart-total-value .chart-value-text {
  display: inline-block !important;
  color: #145D71 !important;
  text-align: center !important;
  font-family: "IBM Plex Sans", sans-serif !important;
  font-size: 3rem !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: normal !important;
}

/* Chart Growth Badge Styles */
.industry-sectors-section .chart-growth-badge {
  display: flex !important;
  padding: 0.5rem 0.75rem !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.625rem !important;
  color: #145D71 !important;
  text-align: center !important;
  leading-trim: both !important;
  text-edge: cap !important;
  font-family: "IBM Plex Sans", sans-serif !important;
  font-size: 1.5rem !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: normal !important;
  width: fit-content !important;
  margin: 0 auto !important;
}

/* Sector Value Currency Icon Styles */
.industry-sectors-section .sector-value {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 0.25rem !important;
  color: #145D71 !important;
  font-weight: 600 !important;
}

.industry-sectors-section .sector-value .sector-currency-icon {
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

/* Sector Distribution Title Styles */
.industry-sectors-section .sector-distribution-title {
  color: #145D71 !important;
  font-family: "IBM Plex Sans", sans-serif !important;
  font-size: 1.5rem !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: normal !important;
  text-transform: uppercase !important;
  margin-bottom: 1rem !important;
}

/* Sector Distribution Description Styles */
.industry-sectors-section .sector-distribution-description {
  color: #145D71 !important;
  font-family: "IBM Plex Sans", sans-serif !important;
  font-size: 1rem !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: normal !important;
}

/* Sector list: sector name and value use brand teal and IBM Plex Sans */
#part.industry-sectors-section .sector-name {
  color: #145D71 !important;
  font-family: "IBM Plex Sans", sans-serif !important;
}

#part.industry-sectors-section .sector-value {
  font-family: "IBM Plex Sans", sans-serif !important;
}

/* Sector Item Hover Animations */
#part.industry-sectors-section .sector-item {
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  padding: 0.75rem 1rem !important;
  border-radius: 12px !important;
}

#part.industry-sectors-section .sector-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(107, 212, 115, 0.05) 0%, rgba(105, 196, 230, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

#part.industry-sectors-section .sector-item:hover::before,
#part.industry-sectors-section .sector-item.sector-item-hover::before {
  opacity: 1;
}

#part.industry-sectors-section .sector-item:hover,
#part.industry-sectors-section .sector-item.sector-item-hover {
  transform: translateX(8px) scale(1.02) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  background: linear-gradient(135deg, rgba(107, 212, 115, 0.08) 0%, rgba(105, 196, 230, 0.08) 100%) !important;
}

#part.industry-sectors-section .sector-item > * {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

#part.industry-sectors-section .sector-item:hover .sector-dot,
#part.industry-sectors-section .sector-item.sector-item-hover .sector-dot {
  width: 14px !important;
  height: 14px !important;
  box-shadow: 0 0 0 3px rgba(107, 212, 115, 0.2) !important;
  transform: scale(1.2) !important;
}

#part.industry-sectors-section .sector-item:hover .sector-name,
#part.industry-sectors-section .sector-item.sector-item-hover .sector-name {
  color: #145D71 !important;
  font-weight: 600 !important;
  transform: translateX(4px) !important;
}

#part.industry-sectors-section .sector-item:hover .sector-value,
#part.industry-sectors-section .sector-item.sector-item-hover .sector-value {
  color: #145D71 !important;
  font-weight: 600 !important;
  transform: scale(1.05) !important;
}

#part.industry-sectors-section .donut-chart-wrapper canvas {
  transition: transform 0.3s ease !important;
  cursor: pointer !important;
}

#part.industry-sectors-section .donut-chart-wrapper:hover canvas {
  transform: scale(1.02) !important;
}

/* Legacy styles for backward compatibility */
#part .sec-title {
  max-width: 620px;
}
#part .sec-title span {
  color: #145d71;
}
#part .col-6 {
  padding: 0.5rem !important;
}
.part-card {
  padding: 20px 8px;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  height: 100%;
}
#part .row {
  margin: 0 -0.5rem;
}
.part-card img {
  max-height: 80px;
  height: 100%;
}
/* ============================== footer=================== */
.site-footer {
  background: linear-gradient(96deg, #110F39 0%, #206A5B 100%);
  padding: 4rem 0 0;
  color: #ffffff;
  font-family: "IBM Plex Sans", sans-serif;
}

/* Footer Top Section */
.site-footer .footer-top {
  padding-bottom: 3rem;
}

/* Branding Column */
.site-footer .footer-brand {
  max-width: 100%;
}

.site-footer .footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0.5rem;
}

.site-footer .footer-logo img {
  height: 35px;
  width: auto;
}

.site-footer .footer-company-name {
  font-size: 1.25rem;
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
  line-height: normal;
}

.site-footer .footer-description {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #C4D4CA;
  margin-bottom: 1.5rem;
  max-width: 20rem;
}

.site-footer .footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.site-footer .footer-social .social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.site-footer .footer-social .social-icon:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Footer Columns */
.site-footer .footer-column {
  height: 100%;
}

.site-footer .footer-column.links-col {
  
}

.site-footer .footer-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.site-footer .footer-links a {
  color: #C4D4CA;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.site-footer .footer-links a:hover {
  color: #ffffff;
  text-decoration: none;
}

/* Contact Section */
.site-footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.site-footer .contact-icon {
  color: #4ade80;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
}

.site-footer .contact-text {
  color: #C4D4CA;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  flex: 1;
}

.site-footer .contact-text a {
  color: #C4D4CA;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer .contact-text a:hover {
  color: #ffffff;
  text-decoration: none;
}

/* Footer Bottom */
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.5rem 0;
  margin-top: 2rem;
}

.site-footer .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer .footer-copyright {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 300;
}

.site-footer .footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer .footer-legal a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer .footer-legal a:hover {
  color: #ffffff;
  text-decoration: none;
}

.site-footer .legal-separator {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .site-footer .footer-top {
    padding-bottom: 2rem;
  }
  
  .site-footer .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .site-footer .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 3rem 0 0;
  }
  
  .site-footer .footer-title {
    font-size: 16px;
    margin-bottom: 1rem;
  }
  
  .site-footer .footer-description {
    font-size: 13px;
  }
}
/* =======================================================================
                            about page
========================================================================== */
.inner-banner {
  position: relative;
  padding-top: 45px;
  background-color: #0a2f39;
  color: #ffffff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 250px;
}

/* Same gradient overlay as hero section */
.inner-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(12, 56, 68, 0.5) 0%, rgba(16, 74, 90, 0.5) 71%, rgba(20, 93, 113, 0.5) 100%);
  z-index: 1;
}

.inner-banner .container {
  position: relative;
  z-index: 2;
}

.inner-banner .d-flex {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 280px;
  padding-bottom: 1rem;
}
.breadcrumb {
  background: transparent;
  text-transform: capitalize;
}
.breadcrumb a {
  color: #ffffff;
  text-decoration: none !important;
}
.breadcrumb .active {
  color: #afafaf;
}
.inner-banner h3 {
  font-size: 2rem;
}
.inner-page #about h1 {
  font-size: 2rem;
}
#about .text-gray {
  color: #6a6a6a;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.sub-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #145D71;
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}
.sub-title span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background-color: rgba(153, 196, 60, 0.1);
  margin-inline-end: 0.75rem;
}
.mv-wr p {
  font-size: 0.875rem;
  line-height: 2;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
}
.vesion .sub-title span {
  background-color: rgba(20, 93, 113, 0.1);
}
.ve-img {
  width: 100%;
  border-radius: 1rem;
}
/* =========================== team member ================================*/
.member-info .role {
  color: #145D71;
  font-size: 18px;
  margin: 0.5rem 0;
}
.member-info .name {
  font-size: 1.8rem;
  color: #145D71;
  font-weight: bold;
  margin-bottom: 1rem;
}
.member-info .item {
  color: #145D71;
  margin-bottom: 20px;
}
.member-info .item span {
  background-color: #145d71;
  width: 8px;
  height: 8px;
  display: inline-flex;
  border-radius: 50%;
  margin-inline-end: 10px;
  vertical-align: middle;
}
.team-mem .img-wr {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
}
.team-mem .img-wr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 1.5rem;
}
.more-about {
  background-image: url(../pic/Group\ 20014@2x.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.more-about p {
  color: #145D71;
  font-size: 14px;
  line-height: 2;
}
section[hidden] {
  display: none !important;
}

/* ===================== profile page (team member) ===================== */
.profile-page {
  background: #daf2e1;
  background: linear-gradient(210deg, rgba(218, 242, 225, 1) 0%, rgba(244, 247, 248, 1) 21%, rgba(244, 247, 248, 1) 78%, rgba(220, 231, 245, 1) 100%);
}
.profile-page-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #145D71;
  font-family: "IBM Plex Sans", sans-serif;
}
.profile-card.profile-header-card {
  background: #fff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  padding: 0;
}
.profile-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  padding: 0;
}
.profile-header {
  display: flex;
  padding: 0 16px;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 40px;
  flex: 1 0 0;
  align-self: stretch;
  flex-wrap: wrap;
}
.profile-photo-wrap {
  flex: 0 0 28%;
  max-width: 28%;
  align-self: stretch;
  display: flex;
  padding: 40px 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 20px;
  background: #fff;
}
.profile-photo-inner {
  width: 266px;
  height: 360px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.profile-photo {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center center;
  box-shadow: -4px 4px 7.6px 0 #F2F2F2;
}
.profile-name-block {
  flex: 1;
  min-width: 0;
  padding: 2.5rem 2.5rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.profile-badge {
  display: flex;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  border: 2px solid #99C43C;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  background: linear-gradient(90deg, #99C43C 0%, #145D71 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
  width: fit-content;
}
.profile-name {
  color: var(--Second, #145D71);
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1rem;
}
.profile-bio {
  color: var(--Second, #145D71);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 1.5rem;
  max-width: 100%;
}
.profile-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.profile-ctas .profile-contact-btn {
  display: flex;
  height: 50px;
  padding: 17px 26px;
  justify-content: center;
  align-items: center;
  gap: 9px;
  border-radius: 41px;
  background: linear-gradient(90deg, #99C43C 0%, #145D71 100%);
  border: none;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
}
.profile-ctas .profile-contact-btn:hover {
  background: linear-gradient(90deg, #8ab335 0%, #0e4554 100%);
  color: #fff;
}
.profile-ctas .profile-linkedin {
  width: 44px;
  flex-shrink: 0;
  align-self: stretch;
  aspect-ratio: 1 / 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
}
.profile-ctas .profile-linkedin svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.profile-ctas .profile-linkedin:hover {
  background: transparent;
  opacity: 0.85;
}
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
  padding: 0;
}
.profile-col-left,
.profile-col-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.profile-info-card {
  background: #fff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  padding: 24px;
}
.profile-cert-card,
.profile-focus-card {
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, rgba(153, 196, 60, 0.6) 0%, rgba(20, 93, 113, 0.5) 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.profile-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #145D71;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.profile-card-title-gradient {
  background: var(--GRD_2, linear-gradient(90deg, #2B8C43 0%, #99C43C 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.profile-card-title-gradient .profile-card-icon-wrap,
.profile-card-title-gradient .profile-card-icon-wrap svg {
  -webkit-text-fill-color: initial;
  color: #2B8C43;
}
.profile-card-icon-wrap {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.profile-card-icon-wrap .profile-card-icon {
  color: #99c43c;
  font-size: 1.25rem;
}
.profile-card-icon-wrap .profile-card-icon-svg {
  width: 24px;
  height: 24px;
  display: block;
}
.profile-card-text,
.profile-card-html {
  padding-left: 0.7rem;
  padding-right: 0.7rem;
}
.profile-card-html,
.profile-expertise-list,
.profile-cert-list {
  font-size: 0.9rem;
  color: #145D71;
  line-height: 1.65;
  margin: 0;
}
.profile-card-html p {
  margin-bottom: 0.75rem;
}
.profile-card-html p:last-child {
  margin-bottom: 0;
}
.profile-card-placeholder {
  color: #145D71;
  font-style: italic;
  opacity: 0.85;
}
.profile-card-html ul {
  margin: 0.5rem 0 0 1rem;
  padding-left: 0;
}
.profile-card-html li {
  margin-bottom: 0.35rem;
}
.profile-expertise-list ul {
  margin: 0.4rem 0 0 -0.7rem;
  padding-left: 0.5rem;
}
.profile-expertise-list li {
  margin-bottom: 0.6rem;
}
.profile-expertise-list li:last-child {
  margin-bottom: 0;
}
.profile-expertise-item {
  margin-bottom: 0.85rem;
}
.profile-expertise-item:last-child {
  margin-bottom: 0;
}
.profile-expertise-heading {
  color: #145D71;
  display: block;
  margin-bottom: 0.25rem;
}
.profile-expertise-content {
  color: #145D71;
  opacity: 0.9;
}
.profile-expertise-sublist {
  margin: 0.35rem 0 0 1rem;
  padding-left: 0.75rem;
  list-style: none;
  border-left: 1px solid rgba(20, 93, 113, 0.35);
}
.profile-expertise-sublist li {
  margin-bottom: 0.25rem;
  color: #145D71;
  opacity: 0.9;
}
.profile-boards,
.profile-boards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}
.profile-board-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  background: #f5f7f6;
  border-radius: 8px;
}
.profile-board-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
}
.profile-board-role {
  color: #145D71;
  font-weight: 700;
  font-size: 0.9rem;
}
.profile-board-org {
  color: #145D71;
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.88;
}
.profile-card-title-with-line {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 10px;
  margin-bottom: 14px;
}
.profile-cert-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.profile-cert-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.profile-cert-item:last-child {
  margin-bottom: 0;
}
.profile-cert-check-wrap {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.profile-cert-check-wrap .profile-cert-check-svg {
  width: 23px;
  height: 21px;
  display: block;
}
.profile-cert-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.profile-cert-name {
  color: #145D71;
  font-weight: 600;
  font-size: 0.95rem;
}
.profile-cert-desc {
  color: #6b7280;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.4;
  padding-left: 0;
}
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.profile-tag {
  display: inline-block;
  background: #99c43c;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
}
.profile-partner-card {
  text-align: center;
  padding: 28px 24px;
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, rgba(153, 196, 60, 0.6) 0%, rgba(20, 93, 113, 0.5) 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.profile-partner-icon {
  margin-bottom: 14px;
  display: inline-block;
  line-height: 0;
}
.profile-partner-icon .profile-partner-icon-svg {
  width: 50px;
  height: 50px;
  display: block;
}
.profile-partner-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #145D71;
  margin-bottom: 8px;
}
.profile-partner-desc {
  font-size: 0.9rem;
  font-weight: 400;
  color: #6b7280;
  margin-bottom: 22px;
  line-height: 1.5;
}
.profile-partner-card .btn-style.light-green {
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 12px 28px;
  font-weight: 600;
  background: linear-gradient(90deg, #99C43C 0%, #145D71 100%);
  box-shadow: 0 2px 8px rgba(20, 93, 113, 0.25);
}
.profile-partner-card .btn-style.light-green:hover {
  background: linear-gradient(90deg, #8ab335 0%, #0e4554 100%);
  color: #fff;
  box-shadow: 0 3px 12px rgba(20, 93, 113, 0.3);
}

/* ===================== serv detailes============= */
.serv-tabs .img-wr img {
  margin-bottom: 1.5rem;
}
.serv-tabs h3 {
  color: #000000;
  font-size: 1.5rem;
  font-weight: 700;
}
.serv-tabs .bold {
  color: #000000;
  font-weight: bold;
  margin-bottom: 1.75rem;
}
.serv-tabs .item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.serv-tabs .item span {
  color: #145d71;
  height: 21px;
  display: inline-flex;
  flex-shrink: 0;
  margin-inline-end: 0.5rem;
  align-items: center;
}
.serv-tabs .item div {
  font-size: 14px;
  color: #145D71;
}
.serv-tabs .btn-style {
  font-size: 14px;
}
.pills-style .nav-link {
  padding: 1.25rem;
  background-color: #f5faff !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 0.5rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000000;
  font-weight: 500;
  font-size: 0.9rem;
}
.pills-style .nav-link span:last-child {
  width: 40px;
  height: 26px;
  background-color: #ffffff;
  color: #145d71;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
.pills-style .nav-link.active {
  color: #145d71;
}

.pills-style .nav-link.active span:last-child {
  background-color: #145d71;
  color: #ffffff;
}

/* ===================== Services Professional Page (new design) ===================== */
.services-professional-page {
  background: linear-gradient(to top right, rgba(218, 242, 225, 0.4) 0%, rgba(244, 247, 248, 0.6) 40%, #ffffff 100%);
}

#services-professional .services-professional-header {
  margin-bottom: 2.5rem;
}

.services-professional-title {
  color: #145D71;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-family: "IBM Plex Sans", sans-serif;
}

.services-professional-intro {
  color: #4a4a4a;
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Left: nav panel card */
.services-nav-card {
  border-radius: 24px;
  border: 0.5px solid var(--footerFont, #C4D4CA);
  background: #FFF;
  box-shadow: 0 2px 6px 0 rgba(64, 149, 191, 0.25);
  padding: 1.25rem;
}

.services-nav-pills .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  border: 1px solid transparent;
  color: #4a4a4a;
  font-weight: 500;
  font-size: 1rem;
  background: transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services-nav-pills .nav-link:active {
  transform: scale(0.98);
}

.services-nav-pills .nav-link:last-child {
  margin-bottom: 0;
}

/* Nav link text (first span) - normal state */
.services-nav-pills .nav-link > span:first-child {
  color: var(--Second, #145D71);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.services-nav-pills .nav-link .nav-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--Second, #145D71);
  background: transparent;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.services-nav-pills .nav-link.active {
  background: #FFF padding-box;
  background-image: linear-gradient(#FFF, #FFF), linear-gradient(90deg, #00CB9A 0%, #0099FE 100%);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #2B8C43;
  animation: servicesNavActive 0.35s ease;
}

@keyframes servicesNavActive {
  from {
    opacity: 0.92;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.services-nav-pills .nav-link.active .nav-arrow {
  background: linear-gradient(135deg, #90c95a 0%, #3d9744 100%);
  color: #ffffff;
}

/* Active nav link text (first span) */
.services-nav-pills .nav-link.active > span:first-child {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  background: linear-gradient(90deg, #99C43C 0%, #2B8C43 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Right: detail card */
.services-detail-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.services-detail-title {
  color: #285f57;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "IBM Plex Sans", sans-serif;
}

.services-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(144, 201, 90, 0.2);
  border: 1px solid rgba(45, 151, 68, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-detail-icon svg {
  color: #2B8C43;
  width: 22px;
  height: 22px;
}

.services-detail-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* Bare image (no span) when icon is from CMS image */
.services-detail-title .services-detail-icon-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.services-detail-body {
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.services-detail-body p {
  margin-bottom: 1rem;
  color: #4a4a4a;
}

.services-detail-body p:last-child {
  margin-bottom: 0;
}

.services-detail-body strong,
.services-detail-body b {
  color: #145D71;
}

.services-subservices-heading {
  color: #4a4a4a;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.services-subservices-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.5rem 0;
}

.services-subservices-list li {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
  position: relative;
}

.services-subservices-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #145D71;
  font-weight: bold;
}

.services-subservice-title {
  display: block;
  color: #285f57;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.services-subservice-desc {
  color: #4a4a4a;
  font-size: 0.95rem;
  line-height: 1.5;
}

.btn-request-service {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff !important;
  background: linear-gradient(90deg, #90c95a 0%, #3d9744 100%);
  border: none;
  box-shadow: 0 4px 12px rgba(61, 151, 68, 0.35);
  transition: box-shadow 0.2s, transform 0.2s;
}

.btn-request-service:hover {
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(61, 151, 68, 0.45);
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .services-professional-title {
    font-size: 2.5rem;
  }
}

.modal-style .modal-content {
  border-radius: 2rem;
}
.modal-style .modal-header {
  border-bottom: 0;
  padding-top: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.modal-style .modal-title {
  font-size: 17px;
  font-weight: 600;
  color: #000000;
}
.modal-style .form-style {
  padding: 2rem;
  padding-top: 0;
}
.modal-style .form-style h5 {
  font-size: 17px;
  font-weight: 600;
  color: #000000;
  text-align: center;
  margin-bottom: 1.2rem;
}
.modal-style .form-style p {
  text-align: center;
  color: #474747;
  font-size: 14px;
  margin-bottom: 1.5rem;
}
.modal-style .form-style .form-group {
  margin-bottom: 1rem;
}
.modal-style .form-style .btn-style {
  margin-top: 1.5rem;
}
.map-card {
  border: 1px solid #ececec;
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 12px;
}
.map-card .infos {
  margin-top: 1rem;
}
.map-card .infos .info-item {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}
.map-card .infos .info-item .i-wr {
  width: 36px;
  height: 36px;
}
/* =================== report================== */
.report-sec p {
  color: #145D71;
  max-width: 730px;
}
/* =================== media ======================= */
.round-pills {
  margin-bottom: 2rem;
}
.round-pills .nav-link {
  border-radius: 2rem;
  background-color: #ffffff;
  color: #145d71;
  border: 1px solid #145d71;
  margin-inline-end: 1rem;
  min-width: 142px;
  text-align: center;
}
.round-pills .nav-link.active {
  color: #ffffff;
  background-color: #145d71;
}

.round-pills .nav-link:last-child {
  margin-inline-end: 0;
}

.media-sec .col-lg-4 {
  padding: 0.75rem;
}
.media-card {
  height: 100%;
  width: 100%;
  border-radius: 8px;
}
.media-card > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  position: relative;
}
.media-card > a .lay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  color: #ffffff;
  z-index: 2;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease;
  transform: scale(0);
  display: flex;
  justify-content: center;
  align-items: center;
}
.media-card > a .lay span {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #99c43c;
  border-radius: 50%;
}
.media-card > a .lay span svg {
  height: 20px;
}
.media-card > a:hover .lay {
  transform: scale(1);
}
.media-card > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
/* =========================== submit ====================== */
.blue-bg {
  background-color: rgba(20, 92, 112, 0.04);
}
.set-max-width {
  max-width: 824px;
  margin-left: auto;
  margin-right: auto;
}
.form-style label {
  color: #2c2c2c;
  font-size: 0.875rem;
  font-family: 200;
}
.set-max-width .form-style .btn-style {
  max-width: 200px;
  margin-top: 1.5rem;
}
/* =============================== jobs ============================ */

.vid-slider .swiper-slide {
  width: 230px;
  height: 400px;
  transition: width 0.6s ease;
}
.vid-slider .swiper-slide.swiper-slide-active {
  width: 420px;
  max-width: 96vw;
}
.swiper-slide .media-card img {
  border-radius: 0;
}

.swiper-slide .media-card > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: unset;
  border-radius: 0;
  position: relative;
  height: 100%;
}

.swiper-slide .media-card > a .lay {
  background: rgba(0, 0, 0, 0.4);
  transform: scale(1);
  border-radius: 0;
}

.container-fluid.jobs {
  padding: 0;
  border: 2px solid rgba(20, 93, 113, 0.22);
}
.jobs .list-item {
  display: block;
  padding: 2rem;
  border-bottom: 2px solid rgba(20, 93, 113, 0.22);
  border-inline-start: 2px solid rgba(20, 93, 113, 0.22);
}
.jobs .list-item:hover {
  background-color: rgba(20, 93, 113, 0.12);
  text-decoration: none !important;
}
.jobs .list-item:last-child {
  border-bottom: 0;
}
.jobs .list-item p {
  margin-bottom: 0;
  font-size: 12px;
  color: #145D71;
}
.jobs .list-item .text-light-green {
  font-size: 12px;
  margin-bottom: 0.5rem;
}
.list-item h6 {
  color: #000000;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.jobs-text {
  padding: 1rem;
  max-width: 532px;
}
.jobs-text h1 {
  color: #145D71;
  font-size: 60px;
  margin: 1.2rem 0;
}
.jobs-text p {
  font-size: 14px;
  line-height: 2;
  color: #145D71;
}
.send-your .d-flex {
  align-items: center;
  justify-content: space-between;
}
.send-your .d-flex h2 {
  color: #145D71;
  font-size: 40px;
}
/* /////////////////////////////////////////////////// */
.p-box {
  padding-inline-end: 4%;
}
.about-slider {
  width: 100%;
  min-height: 300px;
}
.about-slider .swiper-slide-shadow {
  background-color: #ffffff;
}
.about-slider .swiper-slide {
  height: auto;
  border: 4px solid rgba(255, 255, 255, 0);
}
.about-slider .swiper-slide .img-card {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
}
.about-slider .swiper-slide .img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* About Section – Flexbox layout (2 rows × 2 items) */
.about-images-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 456px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-images-grid.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.about-grid-row {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
}

.about-grid-item {
  position: relative;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.about-images-grid.animate-in .about-grid-row:nth-child(1) .about-grid-item:nth-child(1) {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.1s;
  margin-top: 1rem;
}

.about-images-grid.animate-in .about-grid-row:nth-child(1) .about-grid-item:nth-child(2) {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.2s;
}

.about-images-grid.animate-in .about-grid-row:nth-child(2) .about-grid-item:nth-child(1) {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.3s;
  margin-top: 1rem;
}

.about-images-grid.animate-in .about-grid-row:nth-child(2) .about-grid-item:nth-child(2) {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.4s;
  margin-top: 1rem;
}

.about-img-frame {
  position: relative;
  display: block;
  width: 128px;
  height: 128px;
  overflow: hidden;
  border: 8px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: linear-gradient(#e8f4f8, #e8f4f8) padding-box,
              linear-gradient(135deg, #145d71 0%, #2b8c43 50%, #99c43c 100%) border-box;
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.about-img-tl {
  border-radius: 50px 0 0 0;
}

.about-img-tr {
  border-radius: 0;
}

.about-img-bl {
  border-radius: 0 0 0 50px;
}

.about-img-br {
  border-radius: 0 0 50px 0;
  margin-top: -1rem;
}

.about-img-frame:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 24px rgba(20, 93, 113, 0.25);
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-img-frame:hover img {
  transform: scale(1.08);
}

@media (min-width: 768px) {
  .about-img-frame {
    width: 192px;
    height: 192px;
  }
}

@media (min-width: 1200px) {
  .about-images-grid {
    gap: 0.5rem;
    max-width: 100%;
  }

  .about-grid-row {
    gap: 1rem;
  }

  .about-img-frame {
    width: 224px;
    height: 224px;
  }

  .about-img-br {
    margin-top: -1rem;
  }
}

@media (max-width: 991px) {
  .about-images-grid {
    max-width: 380px;
  }
}

@media (max-width: 575px) {
  .about-images-grid {
    gap: 0.4rem;
    max-width: 280px;
  }

  .about-grid-row {
    gap: 1rem;
  }

  .about-img-frame {
    width: 132px;
    height: 132px;
    border-width: 6px;
  }

  .about-img-tl {
    border-radius: 32px 0 0 0;
  }

  .about-img-tr {
    border-radius: 0;
  }

  .about-img-bl {
    border-radius: 0 0 0 32px;
  }

  .about-img-br {
    border-radius: 0 0 32px 0;
    margin-top: -0.75rem;
  }
}

/* =========================== About Maham (Purpose, Vision, Mission) ================================ */
.about-maham-section {
  background: #daf2e1;
  background: linear-gradient(210deg, rgba(218, 242, 225, 1) 0%, rgba(244, 247, 248, 1) 21%, rgba(244, 247, 248, 1) 78%, rgba(220, 231, 245, 1) 100%);
}

.about-maham-heading {
  color: var(--Second, #145D71);
  text-align: center;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 82px;
  margin-bottom: 1rem;
}

.about-maham-intro {
  color: var(--Second, #145D71);
  text-align: center;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.about-maham-cards {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  padding: 24px 0;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

/* Card columns: flex children */
.about-maham-cards > div {
  flex: 1 1 100%;
  min-width: 0;
  max-width: 100%;
}

@media (min-width: 768px) {
  .about-maham-cards {
    gap: 16px;
    padding: 28px 24px;
  }
  .about-maham-cards > div {
    flex: 1 1 calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
  }
}

@media (min-width: 992px) {
  .about-maham-cards {
    gap: 32px;
    padding: 32px 80px;
  }
  .about-maham-cards > div {
    flex: 1 1 calc((100% - 64px) / 3);
    max-width: calc((100% - 64px) / 3);
  }
}

.about-maham-card {
  border-radius: 16px;
  border: 2px solid #00A4E7;
  background: var(--LinGradCards, linear-gradient(292deg, #C6EFF1 -80.94%, #F9FDFE 45.71%, #FFF 82.68%));
  box-shadow: 0 4px 6px 0 rgba(64, 149, 191, 0.25);
  padding: 1.75rem;
  height: 100%;
  transition: box-shadow 0.3s ease;
}

.about-maham-card:hover {
  box-shadow: 0 6px 12px 0 rgba(64, 149, 191, 0.35);
}

.about-maham-card-title {
  background: linear-gradient(90deg, #99C43C 0%, #2B8C43 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: justify;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.about-maham-card-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-maham-card-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.about-maham-card-text {
  color: var(--Second, #145D71);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
