:root {


  
  /* Brand Colors */

  --color-primary: rgb(15, 17, 55);    
  --color-secondary: rgb(205, 27, 47); 
  --color-tertiary: rgb(255, 255, 255); 


  /* Font Colors */
 
  --primary-font-color: rgb(15, 17, 55);     
  --secondary-font-color: rgb(205, 27, 47); 
  --tertiary-font-color:rgb(255, 255, 255); 


  /* Background Colors */

    --primary-bg-color: rgb(15, 17, 55);  
    --secondary-bg-color: rgb(205, 27, 47); 
    --tertiary-bg-color: rgb(255, 255, 255); 
   
   
   
  /* CTA Font Colors */

  --cta-primary-font-color: rgb(255, 255, 255); 
  --cta-secondary-font-color: rgb(15, 17, 55);
  --cta-tertiary-font-color: rgb(205, 27, 47); 

  /* CTA Backgrounds */

    --cta-primary-bg-color: rgb(15, 17, 55);    
    --cta-secondary-bg-color: rgb(255, 255, 255);
    --cta-tertiary-bg-color: rgb(205, 27, 47); 


  /* Border Colors */

    --border-primary-color: rgb(15, 17, 55);    
    --border-secondary-color: rgb(2255, 255, 255); 
    --border-tertiary-color: rgb(205, 27, 47); 
    
    
    
 /* Font Sizes */

    --font-size-small: 0.875rem;  /* 14px */
    --font-size-medium: 1rem;     /* 16px */
    --font-size-large: 1.25rem;   /* 20px */
    --font-size-xlarge: 1.5rem;   /* 24px */
    --font-size-xxlarge: 2rem;    /* 32px */
    --font-size-special: 3rem;    /* 48px */
    

/* CTA padding */

 --cta-padding-y: 14px;
 --cta-padding-x: 28px;






  /* Fonts with Fallbacks */
  --font-heading: "Open sans", Georgia, "Times New Roman", serif;
  --font-body: "roboto", "Open Sans", Arial, Helvetica, sans-serif;
  --font-cta: "Inter", "Roboto", Arial, Helvetica, sans-serif;


/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
   
}

::-webkit-scrollbar-track {
    background: var(--color-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-tertiary);
    width: 8px;
    
}

  



}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
  }




/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



a {
  text-decoration: none;
  color: inherit;
}

/* NAVBAR */
.nav {
  position: sticky;
  top: 0;
  background: var(--tertiary-bg-color);
  z-index: 1000;
  
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 1.5rem 0.3rem 0.1rem;
}


.nav__logo img{
    height: auto;
    width: 250px;

}



/* DESKTOP MENU */
.nav__menu {
  display: flex;
  gap: 1.5rem;
}

.nav__link {
  font-size: var(--font-size-xlarge);
  color: var(--primary-font-color);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 6px 10px;
}

.nav__link:hover {
  
  background: none;
  color: var(--secondary-font-color);
  transform: scale(1.1);
}

/* CTA */
.nav__cta {
  font-family: var(--font-cta);
  font-size: var(--font-size-medium);
  padding: var(--cta-padding-y) var(--cta-padding-x);
  background: var(--cta-tertiary-bg-color);
  color: var(--cta-primary-font-color);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.nav__cta:hover {
  background: var(--primary-bg-color);
  color: var(--cta-primary-font-color);
  transform: scale(1.1);
}

/* DROPDOWN */
.nav__dropdown {
  position: relative;
}

.nav__icon img{
  height:auto;
  width: 16px;

}



.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--tertiary-bg-color);
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 1rem;
  border: 1px solid var(--border-primary-color);
  min-width: 350px;
}

.nav__dropdown.active .dropdown {
  display: grid;
}

.dropdown a {
  text-decoration: underline;
  font-size: var(--font-size-large);
  color: var(--primary-font-color);
  padding: 4px;
  transition: background 0.2s;
}

.dropdown a:hover {
  background: var(--secondary-bg-color);
  border-radius: 4px;
  padding: 4px;
  color: var(--tertiary-font-color);
}

/* HAMBURGER */
.nav__hamburger {
  display: none;
  font-size: var(--font-size-special);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary-font-color);
}

.nav__hamburger:hover {
  
  font-size: var(--font-size-special);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--secondary-font-color);
}


/* MOBILE PANEL */
.mobile {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0,0,0,0.4);
  z-index: 99999;
  
}

.mobile.active {
  display: block;
}

.mobile__panel {
  width: 65vw;
  height: 100vh;
  background: var(--tertiary-bg-color);
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  
}

.mobile__close {
  align-self: flex-end;
  font-size: var(--font-size-special);
  color: var(--primary-font-color);
  background: none;
  border: none;
  cursor: pointer;
}


.mobile__close:hover {
  align-self: flex-end;
  font-size: var(--font-size-special);
  color: var(--secondary-font-color);
  background: none;
  border: none;
  cursor: pointer;
}


.mobile__link {
  font-size: var(--font-size-large);
  color: var(--primary-font-color);
  padding-top: 7px; 
}

.mobile__link:hover {
   font-size: var(--font-size-xlarge);


}

/* MOBILE DROPDOWN */
.mobile__submenu {
  display: none;
  padding-left: 10px;
  padding-top: 10px; 
}

.mobile__submenu a:hover {
 color: var(--secondary-font-color);
 
}

.mobile__toggle {
 font-size: var(--font-size-large);
 color: var(--primary-font-color);
 cursor: pointer;

}

.mobile__toggle:hover {
 font-size: var(--font-size-xlarge);

}

.mobile__toggle img{
padding-left: 5px;
height: auto;
width: 20px;

}

.mobile__dropdown.active .mobile__submenu {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* RESPONSIVE */
@media(max-width: 768px) {

  .nav__menu {
    display: none;
  }

  .nav__hamburger {
    display: block;
  }

  .nav__cta {
    margin-right: auto;
    margin-left: 1rem;
  }
}



/* ================= HERO ================= */
.hero {
  position: relative;
  width: 100%; /* FIX: prevents overflow */
  height: 90vh;
  overflow: hidden; /* CRITICAL FIX */
}

/* SLIDES */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

/* IMAGE */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK OVERLAY (NEW) */
.slide__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 17, 55, 0.35); /* matches your primary tone */
  z-index: 2;
}

/* LOADER */
.slide__loader {
  position: absolute;
  inset: 0;
  background: var(--primary-bg-color);
  z-index: 4;
  opacity: 0.6;
  transition: opacity 0.6s ease;
}

.slide.loaded .slide__loader {
  opacity: 0;
  pointer-events: none;
}

/* CONTENT */
.slide__content {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 600px;
  color: var(--tertiary-font-color);
  z-index: 3;
}

/* EYEBROW */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.eyebrow__line_hero {
  width: 15vw;
  height: 2px;
  background: var(--color-tertiary);
}

.eyebrow__text {
  font-size: var(--font-size-medium);
}

/* HEADINGS */
.hero h1,
.hero h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-special);
  font-weight: 900;
  margin: 10px 0;
}

/* DESCRIPTION */
.hero p {
  font-size: var(--font-size-large);
}

/* CTA */
.hero-cta {
  display: inline-block;
  margin-top: 15px;
  padding: var(--cta-padding-y) var(--cta-padding-x);
  background: var(--cta-tertiary-bg-color);
  color: var(--cta-primary-font-color);
  font-family: var(--font-cta);
  font-size: var(--font-size-large);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.hero-cta:hover {
  transform: scale(1.05);
  background: var(--cta-primary-bg-color);
}

/* PROGRESS */
.progress {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 5;
}

.progress__dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--color-tertiary);
  background: transparent;
  color: var(--tertiary-font-color);
  cursor: pointer;
}

.progress__dot.active {
  border-color: var(--color-secondary);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .slide__content {
    left: 8%;
    max-width: 85%;
  }

  .eyebrow__line_hero {
    width: 10vw;
  }

  .hero h1,
  .hero h2 {
    font-size: var(--font-size-xxlarge);
  }
}




/* ================= SECTION ================= */
.achievements {
  background: var(--tertiary-bg-color);
  padding: 80px 5%;
}

/* CONTAINER */
.achievements__container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT */
.achievements__content {
  flex: 1;
  max-width: 550px;
}

/* EYEBROW */
.achievements__eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: var(--font-size-xlarge);
}

.achievements__line {
  width: 15vw;
  height: 2px;
  background: var(--color-primary);
}

/* TITLE */
.achievements__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xxlarge);
  margin-bottom: 20px;
}

.primary { color: var(--primary-font-color); }
.secondary { color: var(--secondary-font-color); }

/* DESCRIPTION */
.achievements__description {
  font-size: var(--font-size-xlarge);
  line-height: 1.6;
}

/* RIGHT GRID */
.achievements__stats {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* ================= STAT CARD ================= */
.stat {
  padding: 20px 15px;
  border: 1px solid var(--border-tertiary-color);
 
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
}

/* ICON */
.stat__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

/* NUMBER */
.stat h3 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-font-color);
  line-height: 1;
}






/* LABEL */
.stat p {
  font-size: 1.2rem;
  max-width: 220px;
}

/* ================= GLASS HOVER ================= */
.stat:hover {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* LINK */
.achievements__link {
  grid-column: span 3;
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-font-color);
  text-decoration: none;
  font-weight: bold;
}

.achievements__link .icon {
  transition: transform 0.3s ease;
}

.achievements__link:hover .icon {
  transform: translateX(5px);
}
@media (max-width: 1024px) {
  .achievements__stats {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center; /* centers grid tracks */
    max-width: 600px;        /* controls overall grid width */
    margin: 0 auto;          /* centers container */
  }

  .achievements__link {
    grid-column: span 2; /* adjust from 3 → 2 */
  }
}

@media (max-width: 768px) {

  .achievements__container {
    flex-direction: column;
  }

  .achievements__stats {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    max-width: 500px; /* slightly tighter on mobile */
    margin: 0 auto;
    text-align: center;
  }

  .stat {
    align-items: center;
  }

  .stat p {
    max-width: 100%;
  }

  .achievements__line {
    width: 15vw;
  }

  .achievements__link {
    grid-column: span 2;
  }
}













/* SECTION */
.trust {
  background: var(--tertiary-bg-color);
  padding: 80px 5%;
  color: var(--primary-font-color);
  overflow: hidden;
}

/* EYEBROW */
.trust__eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.trust__line {
  width: 15vw;
  height: 2px;
  background: var(--color-primary);
}

.trust__eyebrow-text {
  font-size: var(--font-size-xlarge);
  color: var(--primary-font-color);
}

/* TITLE */
.trust__title {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  margin: 10px 0;
}

.trust__title .primary {
  color: var(--primary-font-color);
}

.trust__title .secondary {
  color: var(--secondary-font-color);
}

/* DESCRIPTION */
.trust__description {
  max-width: 700px;
  margin-bottom: 40px;
 font-size: var(--font-size-large);
  opacity: 0.9;
}

/* CAROUSEL */
.trust__carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.trust__track {
  display: flex;
  align-items: center;
  gap: 130px;
  width: max-content;
  animation: scroll 25s linear infinite;
}

/* LOGOS */
.trust__track img {
  height: 100px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.trust__track img:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* ANIMATION */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .trust {
    padding: 50px 20px;
  }

  .trust__title {
    font-size: 2rem;
  }

  .trust__track {
    gap: 60px;
  }

  .trust__track img {
    height: 65px;
  }
}








/* SECTION */
.about {
  background: var(--primary-bg-color);
  padding: 80px 5%;
  color: var(--tertiary-font-color);
}

/* CONTAINER */
.about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT CONTENT */
.about__content {
  flex: 1;
  max-width: 600px;
}

/* EYEBROW */
.about__eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.about__line {
  width: 15vw;
  height: 2px;
  background: var(--tertiary-font-color);
}

.about__eyebrow-text {
  font-size: var(--font-size-medium);
}

/* TITLE */
.about__title {
  font-family: var(--font-heading);
  
  font-size: var(--font-size-xxlarge);
  margin-bottom: 20px;
}

.about__title .primary {
  color: var(--tertiary-font-color);
}

.about__title .secondary {
  color: var(--secondary-font-color);
}

/* DESCRIPTION */
.about__description {
  font-size: var(--font-size-large);
  margin-bottom: 15px;
  opacity: 1;
  line-height: 1.6;
}

/* RIGHT IMAGE */
.about__image-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* BORDER */
.about__image-border {
  border: 2px dotted var(--tertiary-font-color);
  padding: 10px;
}

/* IMAGE WRAPPER */
.about__image-wrapper {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

/* IMAGE */
.about__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .about__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .about__content {
    max-width: 100%;
  }

  .about__line {
    width: 20vw;
  }

  .about__image-container {
    width: 100%;
    justify-content: flex-start;
  }
}








/* ================= SECTION ================= */
.services {
  background: var(--tertiary-bg-color);
  padding: 80px 5%;
}

/* ================= HEADER ================= */
.services__header {
  max-width: 700px;
  margin-bottom: 50px;
}

.services__eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.services__line {
  width: 15vw;
  height: 2px;
  background: var(--color-primary);
}

/* ================= TITLE ================= */
.services__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 15px;
}

.primary { color: var(--primary-font-color); }
.secondary { color: var(--secondary-font-color); }

/* ================= DESCRIPTION ================= */
.services__description {
  line-height: 1.6;
}

/* ================= GRID ================= */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */
.service-card {
  display: flex;
  background: var(--tertiary-bg-color);
  overflow: hidden;

  /* KEY FIXES */
  min-height: 240px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* ================= LEFT ================= */
.service-card__content {
  flex: 1;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card__number {
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--secondary-font-color);
  font-size: var(--font-size-large);
}

.service-card__content h3 {
  margin-bottom: 10px;
  font-size: var(--font-size-large);
}

.service-card__content p {
  font-size: var(--font-size-medium);
  line-height: 1.5;
}

/* ================= RIGHT IMAGE ================= */
.service-card__image {
  position: relative;
  width: 40%;

  /* CRITICAL FIX: container controls image */
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

/* IMAGE CONTROL */
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK OVERLAY FOR READABILITY */
.service-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 17, 55, 0.25);
}

/* ================= LINK ================= */
.service-card__link {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: var(--tertiary-font-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  font-weight: bold;
}

.service-card__link .icon {
  transition: transform 0.3s ease;
}

.service-card__link:hover .icon {
  transform: translateX(5px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .service-card {
    flex-direction: column;
  }

  .service-card__image {
    width: 100%;
    aspect-ratio: 16 / 9; /* cleaner mobile ratio */
  }

  .service-card__content {
    text-align: left;
  }

  .services__line {
    width: 15vw;
  }
}










/* =========================
   CTA CONTAINER FIX
========================= */
.section--cta {
  background: url("/assets/images/cta-bg-II.jpg") center / cover no-repeat; 
  padding: 80px 5%;
}


.cta__title {

font-size: var(--font-size-special);

}


.cta__description {
font-size: var(--font-size-large);

}
/* =========================
   CONTACT STRUCTURE
========================= */

.cta__contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

/* GROUP (ICON + TEXT) */
.cta__contact-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap; /* ensures wrapping on smaller widths */
}

/* ICON */
.cta__icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

/* LINKS WRAPPER */
.cta__contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

/* LINKS */
.cta__contact-links a {
  font-size: clamp(1.2rem, 2.5vw, var(--font-size-special));
  font-family: var(--font-cta);
  color: var(--primary-font-color);
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.cta__contact-links a:hover {
  color: var(--secondary-font-color);
}

/* DIVIDER */
.divider {
  font-weight: bold;
  color: var(--secondary-font-color);
}

/* =========================
   RESPONSIVE IMPROVEMENTS
========================= */

@media (max-width: 768px) {

  .section--cta {
    text-align: center;
  }

  .cta {
    align-items: center;
  }

  .cta__contact-group {
    justify-content: center;
  }

  .cta__contact-links {
    justify-content: center;
  }

  .cta__description {
    max-width: 100%;
  }
}

/* SMALL DEVICES */
@media (max-width: 480px) {

  .cta__contact-links a {
    font-size: 1.2rem; /* prevents overflow from very large text */
  }

  .cta__icon {
    width: 38px;
    height: 38px;
  }
}











/* =========================
   INDUSTRIES SECTION
========================= */

.section--industries {
  background: var(--tertiary-bg-color);
  color: var(--primary-font-color);
  padding: 80px 5%; /* FIX: proper section padding */
}

.industries {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto; /* centers entire section */
}

/* =========================
   HEADER
========================= */

.industries__eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
}

.industries__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.industries__title .primary {
  color: var(--primary-font-color);
}

.industries__title .secondary {
  color: var(--secondary-font-color);
}

.industries__description {
  max-width: 600px;
  font-size: var(--font-size-medium);
  line-height: 1.6;
}

/* =========================
   GRID
========================= */

.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; /* FIX: proper spacing between cards */
  margin-top: 40px;
}

/* =========================
   CARD
========================= */

.industries-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* HOVER EFFECT */
.industries-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* =========================
   IMAGE (TOP)
========================= */

.industries-card__top {
  height: 200px; /* FIX: container controls image size */
  overflow: hidden;
}

.industries-card__top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   CONTENT (BOTTOM)
========================= */

.industries-card__bottom {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* HEADER (TITLE + NUMBER) */
.industries-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.industries-card__title {
  font-size: var(--font-size-large);
  color: var(--primary-font-color);
  margin: 0;
}

.industries-card__number {
  font-size: var(--font-size-large);
  font-weight: bold;
  color: var(--secondary-font-color);
}

/* DESCRIPTION */
.industries-card__bottom p {
  font-size: var(--font-size-medium);
  line-height: 1.5;
  color: var(--primary-font-color);
}

/* =========================
   RESPONSIVE
========================= */

/* TABLET */
@media (max-width: 1024px) {
  .industries__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .section--industries {
    padding: 60px 20px;
  }

  .industries {
    align-items: flex-start;
  }

  .industries__grid {
    grid-template-columns: 1fr;
  }

  .industries-card__header {
    flex-direction: row;
  }

  .industries__description {
    max-width: 100%;
  }
}











/* =========================
   OPERATING SECTION
========================= */

.section--operating {
  background: var(--primary-bg-color);
  color: var(--tertiary-font-color);
  padding: 80px 5%; /* FIX: added proper padding */
}

.operating {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   LEFT CONTENT
========================= */

.operating__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eyebrow__line_operating {


 width: 15vw;
  height: 2px;
  background: var(--color-tertiary);


}


.operating__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.operating__title .primary {
  color: var(--tertiary-font-color);
}

.operating__title .secondary {
  color: var(--secondary-font-color);
}

.operating__description {
  max-width: 600px;
  line-height: 1.6;
}

/* =========================
   HOURS LIST
========================= */

.operating__hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.operating__day {
  display: flex;
  justify-content: space-between;
  font-size: var(--font-size-medium);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.operating__day--highlight {
  color: var(--secondary-font-color);
  font-weight: bold;
}

/* =========================
   STATUS
========================= */

.operating__status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.operating__status-indicator {
  width: 10px;
  height: 10px;
  background: var(--color-secondary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

/* =========================
   CONTACT CARDS
========================= */

.operating__contact {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.operating__card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.operating__card img {
  width: 20px;
  height: 20px;
}

.operating__card:hover {
  background: rgba(255,255,255,0.15);
}

/* =========================
   IMAGE
========================= */

.operating__image-wrapper {
  border: 2px dotted var(--color-tertiary);
  padding: 10px;
}

.operating__image-inner img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .section--operating {
    padding: 60px 20px;
  }

  .operating {
    grid-template-columns: 1fr;
  }

  .operating__contact {
    flex-direction: column;
    align-items: flex-start;
  }
}

















/* =========================
   METHODOLOGY SECTION (FIXED)
========================= */

.section--methodology {
  background: var(--tertiary-bg-color);
  color: var(--primary-font-color);
  padding: 80px 5%;
}

/* WRAPPER */
.methodology {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   HEADER TEXT AREA
========================= */

.methodology__eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
}

.methodology__eyebrow-text {
  font-size: var(--font-size-medium);
  opacity: 0.9;
}

.methodology__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.methodology__title .primary {
  color: var(--primary-font-color);
}

.methodology__title .secondary {
  color: var(--secondary-font-color);
}

.methodology__description {
  max-width: 650px;
  font-size: var(--font-size-medium);
  line-height: 1.6;
}

/* =========================
   CARDS LAYOUT (IMPROVED)
========================= */

.methodology__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 20px;
}

/* CARD */
.methodology-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* HOVER EFFECT */
.methodology-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

/* HEADER */
.methodology-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ICON */
.methodology-card__icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}

/* TITLE */
.methodology-card__title {
  font-size: var(--font-size-large);
  font-weight: 700;
  color: var(--primary-font-color);
}

/* DESCRIPTION */
.methodology-card__description {
  font-size: var(--font-size-medium);
  line-height: 1.6;
  color: var(--primary-font-color);
  opacity: 0.85;
}

/* =========================
   RESPONSIVE FIXES
========================= */

@media (max-width: 768px) {

  .section--methodology {
    padding: 60px 5%;
  }

  .methodology {
    align-items: flex-start;
  }

  /* switch to single column */
  .methodology__cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .methodology-card {
    width: 100%;
    max-width: 100%;
  }

  .methodology__description {
    max-width: 100%;
  }
}

/* extra small devices */
@media (max-width: 480px) {

  .methodology-card {
    padding: 18px;
  }

  .methodology-card__title {
    font-size: 1.1rem;
  }
}






/* =========================
   WHY CHOOSE US SECTION (FIXED)
========================= */

.section--why {
  background: var(--tertiary-bg-color);
  color: var(--primary-font-color);
  padding: 80px 5%;
}

/* MAIN WRAPPER */
.why {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   LEFT CONTENT
========================= */

.why__left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* TITLE */
.why__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.why__title .primary {
  color: var(--primary-font-color);
}

.why__title .secondary {
  color: var(--secondary-font-color);
}

/* DESCRIPTION */
.why__description {
  max-width: 650px;
  font-size: var(--font-size-medium);
  line-height: 1.6;
}

/* =========================
   FEATURES GRID (IMPROVED)
========================= */

.why__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 25px;
  margin-top: 10px;
}

/* FEATURE ITEM */
.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
}

/* ICON */
.why-feature__icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

/* TEXT */
.why-feature p {
  font-size: var(--font-size-medium);
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
}

/* =========================
   RIGHT IMAGE BLOCK
========================= */

.why__image-wrapper {
  border: 2px dotted var(--color-tertiary);
  padding: 10px;
}

.why__image-inner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 1024px) {

  .why {
    gap: 40px;
  }

  .why__features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .section--why {
    padding: 60px 5%;
  }

  .why {
    grid-template-columns: 1fr;
  }

  .why__left {
    text-align: left;
  }

  .why__features {
    grid-template-columns: 1fr;
  }

  .why-feature {
    align-items: center;
  }
}

@media (max-width: 480px) {

  .why__title {
    font-size: 1.6rem;
  }

  .why-feature p {
    font-size: 0.95rem;
  }
}













/* =========================
   FAQ SECTION (FIXED)
========================= */

.section--faq {
  background: var(--primary-bg-color);
  color: var(--tertiary-font-color);
  padding: 80px 5%;
}

/* MAIN WRAPPER */
.faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* =========================
   LEFT SIDE
========================= */

.faq__left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* TITLE */
.faq__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.faq__title .primary {
  color: var(--tertiary-font-color);
}

.faq__title .secondary {
  color: var(--secondary-font-color);
}

/* DESCRIPTION */
.faq__description {
  max-width: 650px;
  font-size: var(--font-size-medium);
  line-height: 1.6;
  opacity: 0.9;
}

/* =========================
   IMAGE BLOCK
========================= */

.faq__image-wrapper {
  border: 2px dotted var(--color-tertiary);
  padding: 10px;
  margin-top: 10px;
}

.faq__image-inner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* =========================
   ACCORDION
========================= */

.faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 8px;
}

/* QUESTION BUTTON */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--tertiary-font-color);
  text-align: left;
  padding: 14px 0;
  font-size: var(--font-size-medium);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  line-height: 1.4;
}

/* ICON */
.faq-icon {
  font-size: 20px;
  transition: transform 0.25s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: var(--font-size-small);
  line-height: 1.6;
  opacity: 0.85;
  padding-right: 10px;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 10px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* =========================
   CTA / LINK
========================= */

.faq__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--secondary-font-color);
  text-decoration: none;
  font-weight: 600;
}

.faq__more img {
  transition: transform 0.2s ease;
}

.faq__more:hover img {
  transform: translateX(5px);
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 1024px) {
  .faq {
    gap: 40px;
  }
}

@media (max-width: 768px) {

  .section--faq {
    padding: 60px 5%;
  }

  .faq {
    grid-template-columns: 1fr;
  }

  .faq__left {
    text-align: left;
  }

  .faq__description {
    max-width: 100%;
  }
}

@media (max-width: 480px) {

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
}









/* ==============Director message ============*/






/* =========================
   DIRECTOR SECTION
========================= */

.section--director {
  background: var(--tertiary-bg-color);
  color: var(--primary-font-color);
  padding: 80px 5%;
}

.director {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--section-gap);
  align-items: center;
}

/* =========================
   LEFT SIDE
========================= */

.director__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 15px;
}

.director__title .primary {
  color: var(--primary-font-color);
}

.director__title .secondary {
  color: var(--secondary-font-color);
}

.director__message {
  max-width: 650px;
  font-size: var(--font-size-medium);
  line-height: 1.7;
}

/* SIGNATURE */
.director__signature {
  margin-top: 25px;
}

.director__name {
  font-weight: 700;
  font-size: var(--font-size-large);
}

.director__role {
  font-size: var(--font-size-small);
  opacity: 0.8;
}

/* =========================
   IMAGE SIDE
========================= */

.director__image-wrapper {
  border: 2px dotted var(--color-tertiary);
  padding: 10px;
}

.director__image-inner {
  width: 100%;
  overflow: hidden;
}

.director__image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .director {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .director__message {
    max-width: 100%;
  }
}






/* =========================
   CONTACT SECTION (REDESIGNED)
========================= */

.section--contact {
  background: var(--primary-bg-color);
  color: var(--tertiary-font-color);
  padding: 100px 5%;
}

/* MAIN GRID */
.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

/* =========================
   LEFT SIDE (FORM)
========================= */
.eyebrow__line_contact {
  width: 15vw;
  height: 2px;
  background: var(--tertiary-font-color);

}


.contact__title {
  color: var(--tertiary-font-color);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 15px;
}

.contact__description {
  max-width: 600px;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* FORM */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--tertiary-font-color);
  outline: none;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.contact__submit {
  margin-top: 10px;
  padding: var(--cta-padding-y) var(--cta-padding-x);
  background: var(--cta-tertiary-bg-color);
  color: var(--cta-primary-font-color);
  border: none;
  cursor: pointer;
}

/* =========================
   RIGHT SIDE (INFO)
========================= */

.contact__right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* IMAGE */
.contact__image {
  border: 2px dotted var(--color-tertiary);
  padding: 10px;
}

.contact__image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* CARDS GRID */
.contact__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

/* CARD */
.contact-card {
  display: flex;
  gap: 12px;
  padding: 15px;
 
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.1);
}

/* ICON */
.contact-card__icon {
  font-size: 20px;
  min-width: 30px;
  color: var(--secondary-font-color);
}

/* TEXT */
.contact-card h3 {
  font-size: var(--font-size-medium);
  margin-bottom: 3px;
}

.contact-card p {
  font-size: var(--font-size-small);
  line-height: 1.4;
}


.contact-card__icon img {

height: 34px;
width: 34px;

}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact__right {
    order: 2;
  }
}

@media (max-width: 500px) {
  .section--contact {
    padding: 70px 5%;
  }
}


/* =========================
   FOOTER BASE (FIXED)
========================= */

.footer {
  background: var(--tertiary-bg-color);
  color: var(--primary-font-color);

  /* FIX: proper vertical breathing space */
  padding: 80px 20px 30px;
}

/* =========================
   CONTAINER
========================= */

.footer__container {
  max-width: var(--container-width);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;

  /* FIX: prevents content sticking to edges */
  padding-bottom: 40px;
}

/* =========================
   COLUMN STRUCTURE
========================= */

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* =========================
   TITLES
========================= */

.footer__title {
  font-size: var(--font-size-large);
  font-family: var(--font-heading);
  margin-bottom: 5px;
}

/* =========================
   LOGO
========================= */

.footer__logo {
  width: 140px;
  height: auto;
}

/* =========================
   DESCRIPTION
========================= */

.footer__description {
  max-width: 320px;
  line-height: 1.6;
  opacity: 0.9;
}

/* =========================
   LISTS
========================= */

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__list li {
  margin-bottom: 10px;
}

.footer__list a {
  text-decoration: none;
  color: var(--primary-font-color);
  transition: color 0.25s ease;
}

.footer__list a:hover {
  color: var(--secondary-font-color);
}

/* =========================
   FOOTER BOTTOM (FIXED STACKING)
========================= */

.footer__bottom {
  max-width: var(--container-width);
  margin: 0 auto;

  padding-top: 25px;
  border-top: 1px solid var(--border-primary-color);

  display: flex;
  flex-direction: column; /* FIX: ensures stacking */
  align-items: flex-start;
  gap: 10px;
}

/* COPYRIGHT + CREDIT STACK CLEANLY */
.footer__copyright,
.footer__credit {
  font-size: var(--font-size-small);
  line-height: 1.5;
}

/* LINKS */
.footer__credit a {
  text-decoration: none;
  color: var(--primary-font-color);
  font-weight: 600;
}

.footer__credit a:hover {
  color: var(--secondary-font-color);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .footer {
    padding: 60px 20px 25px;
  }

  .footer__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__col {
    align-items: flex-start;
  }

  .footer__bottom {
    align-items: flex-start;
  }
}

















/* ======================= Who We are ==================== */
/* =========================
   SECTION BASE
========================= */

.section--history {
  background: var(--tertiary-bg-color);
  color: var(--primary-font-color);
padding: 80px 40px;
}

/* =========================
   CONTAINER
========================= */

.history {
  max-width: var(--container-width);
  margin: 0 auto;

  /* FIX: horizontal padding so content never touches edges */
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(30px, 5vw, var(--section-gap));
  align-items: center;
}

/* =========================
   LEFT COLUMN SPACING
========================= */

.history__left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* =========================
   EYEBROW
========================= */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow__line {
  width: 60px;
  max-width: 200px;
  height: 2px;
  background: var(--color-primary);
  flex-shrink: 0;
}

.history__eyebrow-text {
  font-size: var(--font-size-small);
  line-height: 1.4;
}

/* =========================
   TITLE
========================= */

.history__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-family: var(--font-heading);
  line-height: 1.2;
  margin: 0;
}

.history__title .primary {
  color: var(--primary-font-color);
}

.history__title .secondary {
  color: var(--secondary-font-color);
}

/* =========================
   DESCRIPTION
========================= */

.history__description {
  max-width: 600px;
  line-height: 1.7;

  /* FIX: prevent paragraph stacking from feeling cramped */
  margin: 0;
}

/* add separation between paragraphs */
.history__description + .history__description {
  margin-top: 12px;
}

/* =========================
   IMAGE
========================= */

.history__image-wrapper {
  border: 2px dotted var(--border-primary-color);

  /* FIX: avoid tight framing */
  padding: 12px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.history__image-inner {
  width: 100%;
}

.history__image-inner img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .history {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .history__left {
    text-align: left;
  }

  .history__image-wrapper {
    margin-top: 10px;
  }
}









/* =========================
   SECTION BASE
========================= */

.section--mission {
  background: var(--tertiary-bg-color);
  color: var(--primary-font-color);
padding: 80px 40px;
}

/* =========================
   LAYOUT WRAPPER
========================= */

.mission {
  max-width: var(--container-width);
  margin: 0 auto;

  /* FIX: prevents edge collision */
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(30px, 5vw, var(--section-gap));
  align-items: center;
}

/* =========================
   LEFT COLUMN SPACING
========================= */

.mission__left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* =========================
   EYEBROW
========================= */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow__line {
  width: 60px;
  max-width: 200px;
  height: 2px;
  background: var(--color-primary);
  flex-shrink: 0;
}

.mission__eyebrow-text {
  font-size: var(--font-size-small);
  line-height: 1.4;
}

/* =========================
   TITLE
========================= */

.mission__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-family: var(--font-heading);
  line-height: 1.2;
  margin: 0;
}

.mission__title .primary {
  color: var(--primary-font-color);
}

.mission__title .secondary {
  color: var(--secondary-font-color);
}

/* =========================
   DESCRIPTION
========================= */

.mission__description {
  max-width: 600px;
  line-height: 1.7;
  margin: 0;
}

/* =========================
   IMAGE
========================= */

.mission__image-wrapper {
  border: 2px dotted var(--border-primary-color);

  /* FIX: more balanced framing */
  padding: 12px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.mission__image-inner {
  width: 100%;
}

.mission__image-inner img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .mission {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .mission__left {
    text-align: left;
  }

  .mission__image-wrapper {
    margin-top: 10px;
  }
}









/* =========================
   SECTION BASE
========================= */

.section--vision {
  background: var(--tertiary-bg-color);
  color: var(--primary-font-color);

 padding: 80px 40px;
}

/* =========================
   LAYOUT WRAPPER
========================= */

.vision {
  max-width: var(--container-width);
  margin: 0 auto;

  /* FIX: prevent edge touching */
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(30px, 5vw, var(--section-gap));
  align-items: center;
}

/* =========================
   LEFT COLUMN SPACING
========================= */

.vision__left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* =========================
   EYEBROW
========================= */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow__line {
  width: 60px;
  max-width: 200px;
  height: 2px;
  background: var(--color-primary);
  flex-shrink: 0;
}

.vision__eyebrow-text {
  font-size: var(--font-size-small);
  line-height: 1.4;
}

/* =========================
   TITLE
========================= */

.vision__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-family: var(--font-heading);
  line-height: 1.2;
  margin: 0;
}

.vision__title .primary {
  color: var(--primary-font-color);
}

.vision__title .secondary {
  color: var(--secondary-font-color);
}

/* =========================
   DESCRIPTION
========================= */

.vision__description {
  max-width: 600px;
  line-height: 1.7;
  margin: 0;
}

/* =========================
   IMAGE
========================= */

.vision__image-wrapper {
  border: 2px dotted var(--border-primary-color);

  /* FIX: improved visual breathing space */
  padding: 12px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.vision__image-inner {
  width: 100%;
}

.vision__image-inner img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .vision {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .vision__left {
    text-align: left;
  }

  .vision__image-wrapper {
    margin-top: 10px;
  }
}    






/* =========================
   SECTION BASE
========================= */

.section--core-values {
  background: var(--tertiary-bg-color);
  color: var(--primary-font-color);

 padding: 80px 40px;
}

/* =========================
   LAYOUT WRAPPER
========================= */

.core-values {
  max-width: var(--container-width);
  margin: 0 auto;

  /* FIX: prevent edge collision */
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(30px, 5vw, var(--section-gap));
  align-items: center;
}

/* =========================
   LEFT COLUMN SPACING
========================= */

.core-values__left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* =========================
   EYEBROW
========================= */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow__line {
  width: 60px;
  max-width: 200px;
  height: 2px;
  background: var(--color-primary);
  flex-shrink: 0;
}

.core-values__eyebrow-text {
  font-size: var(--font-size-small);
  line-height: 1.4;
}

/* =========================
   TITLE
========================= */

.core-values__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-family: var(--font-heading);
  line-height: 1.2;
  margin: 0;
}

.core-values__title .primary {
  color: var(--primary-font-color);
}

.core-values__title .secondary {
  color: var(--secondary-font-color);
}

/* =========================
   DESCRIPTION
========================= */

.core-values__description {
  max-width: 600px;
  line-height: 1.7;
  margin: 0;
}

/* =========================
   IMAGE
========================= */

.core-values__image-wrapper {
  border: 2px dotted var(--border-primary-color);

  /* FIX: better visual breathing space */
  padding: 12px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.core-values__image-inner {
  width: 100%;
}

.core-values__image-inner img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .core-values {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .core-values__left {
    text-align: left;
  }

  .core-values__image-wrapper {
    margin-top: 10px;
  }
}





/* ===============================
   SECTION BASE
================================ */
.qa-section {
  width: 100%;
  background: var(--tertiary-bg-color);
  padding: 80px 20px;
}

/* ===============================
   LAYOUT
================================ */
.qa-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* ===============================
   LEFT CONTENT
================================ */
.qa-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Eyebrow */
.qa-eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
}

.qa-line {
  width: 30vw;
  max-width: 200px;
  height: 2px;
  background: var(--color-primary);
}

.qa-eyebrow-text {
  font-size: var(--font-size-small);
  color: var(--primary-font-color);
}

/* Title */
.qa-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xxlarge);
  color: var(--primary-font-color);
  line-height: 1.3;
}

.qa-title span {
  color: var(--secondary-font-color);
}

/* Description */
.qa-description {
  font-size: var(--font-size-medium);
  color: var(--primary-font-color);
  line-height: 1.6;
}

/* ===============================
   RIGHT IMAGE
================================ */
.qa-image-container {
  display: flex;
  justify-content: center;
}

.qa-image-border {
  border: 2px dotted var(--color-tertiary);
  padding: 10px;
}

.qa-image-wrapper {
  overflow: hidden;
}

.qa-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .qa-container {
    grid-template-columns: 1fr;
  }

  .qa-line {
    width: 50%;
  }
}

@media (max-width: 600px) {
  .qa-section {
    padding: 60px 15px;
  }

  .qa-title {
    font-size: var(--font-size-xlarge);
  }

  .qa-line {
    width: 40%;
  }
}



















/* =================terms ==============*/


/* ===============================
   SECTION BASE
================================ */
.tos-section {
  width: 100%;
  background: var(--tertiary-bg-color);
  padding: 80px 20px;
}

/* ===============================
   CONTAINER
================================ */
.tos-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* ===============================
   EYEBROW
================================ */
.tos-eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
}

.tos-line {
  width: 30vw;
  max-width: 200px;
  height: 2px;
  background: var(--color-primary);
}

.tos-eyebrow-text {
  font-size: var(--font-size-small);
  color: var(--primary-font-color);
}

/* ===============================
   TITLE
================================ */
.tos-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xxlarge);
  color: var(--primary-font-color);
}

.tos-title span {
  color: var(--secondary-font-color);
}

/* ===============================
   DESCRIPTION
================================ */
.tos-description {
  font-size: var(--font-size-medium);
  color: var(--primary-font-color);
  line-height: 1.6;
}

/* ===============================
   GRID
================================ */
.tos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ===============================
   CARD
================================ */
.tos-card {
  padding: 20px;
  background: var(--tertiary-bg-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.tos-number {
  font-size: var(--font-size-large);
  font-weight: bold;
  color: var(--secondary-font-color);
  margin-bottom: 10px;
}

.tos-card-title {
  font-size: var(--font-size-medium);
  font-weight: bold;
  color: var(--primary-font-color);
  margin-bottom: 10px;
}

.tos-card p {
  font-size: var(--font-size-small);
  color: var(--primary-font-color);
  line-height: 1.5;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .tos-grid {
    grid-template-columns: 1fr;
  }

  .tos-line {
    width: 50%;
  }
}

@media (max-width: 600px) {
  .tos-section {
    padding: 60px 15px;
  }

  .tos-title {
    font-size: var(--font-size-xlarge);
  }

  .tos-line {
    width: 40%;
  }
}




/* ===============================
   SECTION
================================ */
.pp-section {
  width: 100%;
  background: var(--tertiary-bg-color);
  padding: 80px 20px;
}

/* ===============================
   CONTAINER
================================ */
.pp-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* ===============================
   EYEBROW
================================ */
.pp-eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
}

.pp-line {
  width: 15vw;
  max-width: 120px;
  height: 2px;
  background: var(--color-primary);
}

.pp-eyebrow-text {
  font-size: var(--font-size-small);
  color: var(--primary-font-color);
}

/* ===============================
   TITLE
================================ */
.pp-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xxlarge);
  color: var(--primary-font-color);
}

.pp-title span {
  color: var(--secondary-font-color);
}

/* ===============================
   DESCRIPTION
================================ */
.pp-description {
  font-size: var(--font-size-medium);
  color: var(--primary-font-color);
  line-height: 1.6;
}

/* ===============================
   GRID
================================ */
.pp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ===============================
   CARD
================================ */
.pp-card {
  padding: 20px;
  background: var(--tertiary-bg-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.pp-number {
  font-size: var(--font-size-large);
  font-weight: bold;
  color: var(--secondary-font-color);
  margin-bottom: 10px;
}

.pp-card-title {
  font-size: var(--font-size-medium);
  font-weight: bold;
  color: var(--primary-font-color);
  margin-bottom: 10px;
}

.pp-card p {
  font-size: var(--font-size-small);
  color: var(--primary-font-color);
  line-height: 1.5;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .pp-grid {
    grid-template-columns: 1fr;
  }

  .pp-line {
    width: 40%;
  }
}

@media (max-width: 600px) {
  .pp-section {
    padding: 60px 15px;
  }

  .pp-title {
    font-size: var(--font-size-xlarge);
  }

  .pp-line {
    width: 35%;
  }
}
























/* ================== Services ================ * /


/* ===============================
   BASE SECTION
================================ */
.svc-section {
  width: 100%;
  background: var(--tertiary-bg-color);
  padding: 80px 20px;
}

/* ===============================
   LAYOUT
================================ */
.svc-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ===============================
   LEFT CONTENT
================================ */
.svc-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.svc-eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
}

.svc-line {
  width: 15vw;
  max-width: 120px;
  height: 2px;
  background: var(--color-primary);
}

.svc-eyebrow-text {
  font-size: var(--font-size-small);
  color: var(--primary-font-color);
}

.svc-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xxlarge);
  color: var(--primary-font-color);
}

.svc-title span {
  color: var(--secondary-font-color);
}

.svc-description {
  font-size: var(--font-size-medium);
  color: var(--primary-font-color);
  line-height: 1.6;
}

/* ===============================
   RIGHT CONTENT
================================ */
.svc-side {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Image */
.svc-image-border {
  border: 2px dotted var(--color-primary);
  padding: 10px;
}

.svc-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===============================
   SUB SERVICES
================================ */
.svc-subservices {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.svc-sub-item h3 {
  font-size: var(--font-size-large);
  color: var(--primary-font-color);
}

.svc-sub-item p {
  font-size: var(--font-size-small);
  color: var(--primary-font-color);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .svc-container {
    grid-template-columns: 1fr;
  }

  .svc-line {
    width: 40%;
  }
}

@media (max-width: 600px) {
  .svc-section {
    padding: 60px 15px;
  }

  .svc-title {
    font-size: var(--font-size-xlarge);
  }
}


















/* ===========team============= */

/* =========================
   TEAM SECTION
========================= */
.team-section {
  background: var(--tertiary-bg-color);
  color: var(--primary-font-color);
  padding: 60px 20px;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */
.team-header {
  margin-bottom: 50px;
}

.team-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-line {
  width: 15vw;
  height: 2px;
  background: var(--border-primary-color);
}

.team-title {
  font-size: var(--font-size-special);
  font-family: var(--font-heading);
  margin: 20px 0;
}

.team-title span {
  color: var(--secondary-font-color);
}

.team-description {
  max-width: 600px;
}

/* =========================
   CARDS
========================= */
.team-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.team-card {
  display: flex;
  gap: 20px;
  background: var(--tertiary-bg-color);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
}

/* LEFT IMAGE */
.team-card-left img {
  width: 200px;
  height: auto;
  object-fit: cover;
}

/* RIGHT CONTENT */
.team-card-right {
  flex: 1;
}

.team-card-right h2 {
  margin: 0 0 10px;
}

.team-bio {
  margin: 10px 0;
}

.team-message {
  margin-top: 15px;
  font-style: italic;
  color: var(--secondary-font-color);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .team-card {
    flex-direction: column;
  }

  .team-card-left img {
    width: 100%;
  }

  .team-header {
    text-align: left;
  }
}











/* =========================
   SECTION
========================= */
.resources-section {
  background: var(--tertiary-bg-color);
  color: var(--primary-font-color);
  padding: 60px 20px;
}

.resources-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */
.resources-header {
  margin-bottom: 50px;
}

.resources-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.resources-line {
  width: 15vw;
  height: 2px;
  background: var(--border-primary-color);
}

.resources-title {
  font-size: var(--font-size-special);
  font-family: var(--font-heading);
  margin: 20px 0;
}

.resources-title span {
  color: var(--secondary-font-color);
}

.resources-description {
  max-width: 600px;
}

/* =========================
   CARDS
========================= */
.resources-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.resources-card {
  padding: 20px;
  background: var(--tertiary-bg-color);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.resources-card h2 {
  font-size: var(--font-size-large);
  margin-bottom: 10px;
}

.resources-card a {
  color: var(--primary-font-color);
  text-decoration: none;
  font-weight: bold;
}

.resources-card a:hover {
  color: var(--secondary-font-color);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .resources-cards {
    grid-template-columns: 1fr;
  }

  .resources-header {
    text-align: left;
  }
}