/* --------------------
  Base styles and reset
----------------------- */

:root {
  --color-primary: #b1d135;
/*   --color-secondary: #00423a; */
  --color-secondary: #006b84;
  --box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

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

@font-face {
  font-family: "ITC Avant Garde Gothic Std";
  src: url("../fonts/ITCAvantGardeStd-Bold.woff2") format("woff2"),
    url("../fonts/ITCAvantGardeStd-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ITC Avant Garde Gothic Std Book";
  src: url("../fonts/ITCAvantGardeStd-Bk.woff2") format("woff2"),
    url("../fonts/ITCAvantGardeStd-Bk.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ITC Avant Garde Gothic Std";
  src: url("../fonts/ITCAvantGardeStd-Md.woff2") format("woff2"),
    url("../fonts/ITCAvantGardeStd-Md.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ITC Avant Garde Gothic Std Demi";
  src: url("../fonts/ITCAvantGardeStd-Demi.woff2") format("woff2"),
    url("../fonts/ITCAvantGardeStd-Demi.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Minion Pro";
  src: url("../fonts/MinionPro-Regular.woff2") format("woff2"),
    url("../fonts/MinionPro-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "ITC Avant Garde Gothic Std Book", sans-serif;
}

h1,
h2,
h3,
h4 {
  font-family: "ITC Avant Garde Gothic Std", sans-serif;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  font-family: "ITC Avant Garde Gothic Std", sans-serif;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

/* --------------------
  Utilities
----------------------- */
.container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  max-width: 100%;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  transition: 0.3s ease;
  letter-spacing: 1px;
}

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

/* --------------------
  Header
----------------------- */
.header {
  background-color: #00423a;
  color: white;
  /*padding: 2rem 0;*/
}

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

.navbar_menu {
  display: flex;
  gap: 2rem;
  z-index: 10;
}

.navbar_menu a {
  font-weight: 600;
  font-size: 1.20rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
  letter-spacing: 2px;
}

.dropdown-menu a {
  text-transform: none;
}

.navbar_menu a:hover {
  color: var(--color-primary);
}

.navbar-item {
  position: relative;
  padding: 1.5rem 0;
  cursor: pointer;
	margin-right: 10px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  color: var(--color-secondary);
  width: 200px;
  padding: 1.25rem;
  box-shadow: var(--box-shadow);
  border-top: 6px solid var(--color-primary);
  display: none;
  z-index: 10;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 0;
  font-size: 1rem;
  letter-spacing: 0px;
}

.navbar-item:hover .dropdown-menu {
  display: block;
}

.navbar_toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: red;
  cursor: pointer;
}

.navbar-item:hover .dropdown-toggle img {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

/* --------------------
  Hero
----------------------- */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding-left: 10rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 500;
  color: var(--color-primary);
}

.hero-title span {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-description {
  font-size: 1.55rem;
  margin-top: 1rem;
  max-width: 750px;
  line-height: 1.5;
}

.hero-cta {
  margin-top: 4rem;
  max-width: 600px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* --------------------
  Vision
----------------------- */
.vision {
  padding: 4rem 0;
  color: var(--color-secondary);
}

.vision-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.vision-title {
  font-size: 2rem;
  font-weight: 800;
}

.vision-description {
  margin-top: 1rem;
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  max-width: 900px;
}

.vision-cta {
  margin-top: 1rem;
  font-weight: 800;
}

.vision-highlights {
  border-left: 5px solid var(--color-primary);
  padding-left: 1.5rem;
  margin-top: 1rem;
}

.vision-highlights h3 {
  font-size: 2.1rem;
  font-weight: 900;
}

/* --------------------
  Services
----------------------- */
.services {
  background-color: var(--color-secondary);
  padding: 4rem 0;
  text-align: center;
  color: white;
}

.services-title {
  font-size: 2rem;
  font-weight: 900;
}

.services-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.services-card {
  position: relative;
	width: clamp(300px, 25.2vw, 400px);
  height: clamp(300px, 25.2vw, 400px);
  border-radius: 50%;
  cursor: pointer;
}

.servics-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: opacity 0.5s ease;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--color-primary);
  border-radius: 50%;
  color: var(--color-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-overlay h3 {
  font-size: 2rem;
  font-weight: 500;
}

.services-card:hover .servics-img {
  opacity: 0;
}

.services-card:hover .service-overlay {
  opacity: 1;
}

.services-description {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.services-description span {
  color: var(--color-primary);
  font-weight: 600;
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 5rem solid rgba(255, 255, 255, 0.4);
}

/* --------------------
  Locations
----------------------- */
.locations {
  padding: 4rem 0;
  color: var(--color-secondary);
  text-align: center;
}

.locations-title {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
}

.locations-description {
  font-size: 1.5rem;
  margin-top: 0.75rem;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.locations-card {
  cursor: pointer;
  position: relative;
}

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

.locations-overlay {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
  inset: 0;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.locations-card:hover .locations-overlay {
  opacity: 1;
}

.locations-overlay h3 {
  font-size: 2rem;
  max-width: 200px;
  text-transform: uppercase;
  font-weight: 800;
}

/* --------------------
  Stats
----------------------- */
.stats {
  padding: 4rem 0;
  background-color: var(--color-secondary);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.stats-title {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.2;
}

.stats-text {
  display: block;
  font-size: clamp(1rem, 4vw, 1.25rem);
  font-weight: 600;
  text-transform: uppercase;
}

.stats-card p {
  font-size: 1.25rem;
  margin-top: 0.75rem;
}

.stats-card:nth-child(2),
.stats-card:nth-child(3) {
  border-left: 4px solid var(--color-primary);
  padding-left: 1.75rem;
}

/* --------------------
  commitment
----------------------- */
.commitment {
  background-color: #404040;
  text-align: center;
  color: white;
  overflow: hidden;
}

.commitment-content {
  padding: 4rem 1rem;
}

.commitment-title {
  font-size: 3.2rem;
  text-transform: uppercase;
  font-weight: 500;
}

.commitment-title span {
  color: var(--color-primary);
  font-weight: 600;
}

.commitment-description {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

.commitment-swiper {
  width: 100%;
  height: 700px;
  position: relative;
}

.swiper-title {
	position: absolute;
	top: 30%;
	left: 55%;
	transform: translate(-50%, -50%);
	z-index: 10;
	font-size: 4rem;
	font-weight: 500;
	width: 100%;
	color: #fff;
}

.swiper-title span {
  font-weight: 600;
}

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

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-primary);
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.6);
  transform: scale(1.1);
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 24px;
}

/* --------------------
  Testimonial
----------------------- */
.testimonials {
  padding: 4rem 0;
  position: relative;
  color: var(--color-secondary);
}

.quote-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  background-color: rgb(255, 255, 255);
  z-index: 99;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quote-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.testimonial-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-primary);
  gap: 2rem;
  padding: 4rem;
}

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

.testimonial-quote p {
  font-size: 1.7rem;
  max-width: 600px;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.testimonial-quote i {
  font-size: 1.25rem;
}

.testimonial-content {
  margin-top: 3rem;
}
.testimonial-title {
  font-size: 1.75rem;
}

.testimonial-description {
  font-size: 1.25rem;
  margin-top: 0.75rem;
}

.testimonial-cta {
  margin-top: 1rem;
  font-weight: 600;
}

.testimonials .swiper-button-next,
.testimonials .swiper-button-prev {
  color: var(--color-primary);
  background: none;
  width: 60px;
  height: 60px;
}

.slider-swiper .swiper-button-next,
.slider-swiper .swiper-button-prev {
  color: var(--color-primary);
  background: none;
  width: 60px;
  height: 60px;
}

/* --------------------
  Construction Page
----------------------- */
.construction_title {
  font-size: 4.25rem;
  font-weight: 500;
}
.construction_title span {
  color: var(--color-primary);
  font-weight: 700;
  display: block;
  text-transform: uppercase;
}

.construction_approach_card {
  padding: 0 2.5rem;
  text-align: center;
}

.construction_approach_card:nth-child(1),
.construction_approach_card:nth-child(2) {
  border-right: 2px solid var(--color-secondary);
}

.construction_approach_card h3 {
  color: var(--color-primary);
}

.construction_services {
  background-color: var(--color-secondary);
  color: white;
}

.row:has(.construction_service_col:nth-child(5):last-child)
  .construction_service_col:nth-child(-n + 3) {
  border-bottom: 1px solid gray;
}
.row:has(.construction_service_col:nth-child(5):last-child) .construction_service_col {
  border-top: none;
}
.row:has(.construction_service_col:nth-child(5):last-child) .construction_service_col:nth-child(5) {
  border-right: none;
}

.construction_service_col {
  border-top: 1px solid gray;
  border-right: 1px solid gray;
}
.construction_service_col:nth-child(-n + 3) {
  border-top: none;
}
.construction_service_col:nth-child(3n) {
  border-right: none;
}

.construction_service_card {
  padding: 2rem;
}

/* --------------------
  Footer
----------------------- */
.footer {
/*   padding: 4rem 0; */
  background-color: var(--color-secondary);
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: right;
  color: white;
}

.footer-description {
  display: flex;
  gap: 3rem;
}

.footer-description p {
  font-size: 1.25rem;
  line-height: 1.5;
}

.footer-description span {
  margin: 0 10px;
}

.footer-icon {
  margin-top: auto;
}

/* --------------------
  Healthcare Page
----------------------- */
.healthcare_banner {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
.healthcare_banner .healthcare_swiper {
  height: 100%;
}
.healthcare_banner_content {
  color: white;
  text-align: right;
}

.healthcare_banner_text {
  margin-top: 2rem;
  max-width: 760px;
  margin-left: auto;
}

.healthcare_expertise_img img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}

.healthcare_expertise_img {
  position: absolute;
  right: 0;
  margin: 0;
  padding: 0;
}

.healthcare_features_col {
  border-top: 1px solid gray;
  border-right: 1px solid gray;
}
/* First row → no top border */
.healthcare_features_col:nth-child(-n + 2) {
  border-top: none;
}
/* Every 2nd column → no right border */
.healthcare_features_col:nth-child(2n) {
  border-right: none;
}

.healthcare_feature_card {
  padding: 2rem;
}

.healthcare_projects {
  background-color: var(--color-secondary);
}
.healthcare_projects h3 span {
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
}

/* ---- Top row (cards 1 & 2) ---- */
.healthcare_features_col:nth-child(-n + 2) .healthcare_feature_card {
  padding-top: 0;
  padding-bottom: 2rem;
}

/* ---- Bottom row (cards 3 & 4) ---- */
.healthcare_features_col:nth-child(n + 3) .healthcare_feature_card {
  padding-top: 2rem;
  padding-bottom: 0;
}

/* ---- First column (cards 1 & 3) ---- */
.healthcare_features_col:nth-child(2n + 1) .healthcare_feature_card {
  padding-left: 0;
  padding-right: 2rem;
}

/* ---- Second column (cards 2 & 4) ---- */
.healthcare_features_col:nth-child(2n) .healthcare_feature_card {
  padding-left: 2rem;
  padding-right: 0;
}

.healthcare_feature_card h3 {
  text-transform: uppercase;
  color: var(--color-primary);
  max-width: 400px;
  margin: 0 auto;
}

.healthcare_swiper {
  width: 100%;
  height: 600px;
  position: relative;
}


/* --------------------
  Media Queries
----------------------- */
@media (max-width: 1400px) {
  .logo img {
    width: 250px;
  }
  .hero_content {
    padding-left: 6.75rem;
  }

  .commitment_card_img {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 1200px) {
  .logo img {
    width: 200px;
  }
  .navbar_menu a {
    font-size: 1rem;
  }

  .hero_content {
    padding-left: 1rem;
  }
  .hero_title {
    font-size: 3rem;
  }
  .hero_description {
    font-size: 1.5rem;
  }

  .section_title {
    font-size: 1.75;
  }
  .section_description {
    font-size: 1.25rem;
  }

  .construction_title {
    font-size: 2.5rem;
  }

  .story_commitment_card {
    margin-top: 6rem;
  }
  .commitment_card_overlay {
    border: 6rem solid rgba(255, 255, 255, 0.4);
    border-right-color: transparent;
  }

  .healthcare_expertise_img img {
    height: auto;
  }
  .healthcare_expertise_img {
    position: static;
  }

  .footer-content p {
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .icon-cross {
    display: none;
  }
  .header {
    padding: 1rem 0;
  }
  .navbar_toggle {
	  display: block;
	  background-color: #006b84;
	  padding: 5px;
	}
  .navbar_toggle.active .icon-bars {
    display: none;
  }
  .navbar_toggle.active .icon-cross {
    display: block;
  }
  .navbar_menu {
    position: absolute;
    box-shadow: var(--box-shadow);
    top: 70px;
    right: 20px;
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 230px;
    display: none;
    padding: 1rem;
  }
  .navbar_menu.show {
    display: flex;
  }
  .navbar_menu > .menu-item {
    width: 100%;
    padding: 0.5rem 0;
    height: 100%;
    display: block;
  }
  .current-menu-parent {
    background: none;
  }
  .current-menu-parent > a {
    color: var(--color-primary);
  }
  .header.scrolled .navbar_menu > .menu-item {
    height: auto;
  }
  .navbar_menu > .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("../icons/caret-down.svg") no-repeat center;
    background-size: contain;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
  }
  .navbar_menu > .menu-item-has-children.show > a::after {
    transform: rotate(180deg);
  }
  .sub-menu {
    position: static;
    padding: 0 1.25rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    margin-top: 0.75rem;
  }
  .sub-menu.show {
    max-height: 500px;
  }

  .btn_primary {
    font-size: 1rem;
  }


	
  .stats_card:nth-child(2),
  .stats_card:nth-child(3) {
    border-left: none;
  }

  .story_stats .stats_card {
    padding: 1rem;
  }

  .story_stats .stats_card:nth-child(1) {
    border-right: 0;
  }
  .story_stats .stats_card:nth-child(3) {
    border-left: 0;
  }
  .construction_approach_card:nth-child(1),
  .construction_approach_card:nth-child(2) {
    border-right: 0;
  }

  .service_overlay a,
  .locations_overlay a {
    font-size: 1.25rem;
  }

  .testimonial_card {
    text-align: center;
  }

  .construction_service_col,
  .healthcare_features_col {
    border: none;
  }
  .construction_service_col .construction_service_card,
  .healthcare_features_col .healthcare_feature_card {
    padding-top: 0 !important;
    padding-bottom: 2rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
	
  .row:has(.construction_service_col:nth-child(5):last-child)
    .construction_service_col:nth-child(-n + 3) {
    border-bottom: 0;
  }
	
	.testimonial-card {
		text-align: center;
	}

  .footer_description p {
    border-bottom: 1px solid #ccc;
  }
}

@media (max-width: 768px) {
  .section_title {
    font-size: 1.5rem;
  }
  .section_description {
    font-size: 1rem;
  }

  .construction_title {
    font-size: 1.5rem;
  }

  .commitment_content {
    padding: 2rem 1rem;
  }

  .testimonial-card {
    padding: 3rem 1rem;
  }
  .testimonial-img img {
    max-width: 250px;
  }
	.testimonial-card p {
		padding: 1rem;
		font-size: 21px;
	}

  .story_commitment_card,
  .story_commitment_card:nth-child(even) {
    gap: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .commitment_card_img {
    width: 280px;
    height: 280px;
  }
}

@media (min-width: 1400px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1330px !important;
  }
}


@media only screen and (max-width: 480px) {

.client-flex {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
}
	
.sponsor .image-17 {
  width: 100% !important;
    aspect-ratio: 19 / 8 !important;
    height: 100% !important;
    margin: 0 !important;
}
}
/* --------------------
  Key Frames
----------------------- */
@keyframes spinStop {
  0% {
    transform: rotate(0deg);
  }
  70% {
    transform: rotate(720deg); /* two spins */
  }
  100% {
    transform: rotate(720deg); /* stops a bit off-center for natural feel */
  }
}


.section.sponsor.no-paddings {
	height: auto !important;
}