:root {


  
  /* Brand Colors */

  --color-primary: rgb(0, 153, 153);    /* Deep Teal */
  --color-secondary: rgb(255, 255, 255); /* Pure White */
  --color-tertiary: rgb(194, 164, 109);  /* Sandstone / Warm Taupe */


  /* Font Colors */
 
  --primary-font-color: rgb(0, 153, 153);     /* Deep Teal */
  --secondary-font-color: rgb(255, 255, 255); /* Pure White */
  --tertiary-font-color: rgb(194, 164, 109);  /* Sandstone / Warm Taupe */


  /* Background Colors */

    --primary-bg-color: rgb(0, 153, 153);  /* Deep Teal */
    --secondary-bg-color: rgb(255, 255, 255); /* Pure White */
    --tertiary-bg-color: rgb(194, 164, 109); /* Sandstone / Warm Taupe */
    --primary-semi-transparent-bg-color: rgba(0, 153, 153, 0.5); /* Semi-transparent Deep Teal */
    --secondary-semi-transparent-bg-color: rgba(255, 255, 255, 0.5); /* Semi-transparent Pure White */
    --tertiary-semi-transparent-bg-color: rgba(194, 164, 109, 0.5); /* Semi-transparent Sandstone / Warm Taupe */

  /* CTA Font Colors */

  --cta-primary-font-color: rgb(0, 153, 153); /* Deep Teal */
  --cta-secondary-font-color: rgb(255, 255, 255); /* Pure White */
  --cta-tertiary-font-color: rgb(194, 164, 109); /* Sandstone / Warm Taupe */


  /* CTA Backgrounds */

    --cta-primary-bg-color: rgb(0, 153, 153);    /* Deep Teal */
    --cta-secondary-bg-color: rgb(255, 255, 255); /* Pure White */
    --cta-tertiary-bg-color: rgb(194, 164, 109);  /* Sandstone / Warm Taupe */


  /* Border Colors */

    --border-primary-color: rgb(0, 153, 153);    /* Deep Teal */
    --border-secondary-color: rgb(255, 255, 255); /* Pure White */
    --border-tertiary-color: rgb(194, 164, 109);  /* Sandstone / Warm Taupe */

 /* 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;



 --transition-timing: 0.3s;


  /* Fonts with Fallbacks */
  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Futura PT", "Open Sans", Arial, Helvetica, sans-serif;
  --font-cta: "Bebas Neue", "Roboto", Arial, Helvetica, sans-serif;


/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
   
}

::-webkit-scrollbar-track {
    background: var(--color-tertiary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
    width: 8px;
    
}

  



}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
  }






/*

  .top-bar {
  background-color: var(--color-primary);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-family: var(--font-body);
  font-size: 8px;
}

.top-bar__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.top-bar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem ;
  flex-wrap: wrap;
}


.top-bar__left,
.top-bar__right {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.top-bar__right {
  justify-content: flex-end;
}

.top-bar__center {
  flex: 0 0 auto;
}


.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  text-decoration: none;
  font: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary-font-color);
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.contact-link__icon {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.contact-link__text {
  transition: transform 0.25s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-body);
}

.contact-link:hover {
  color: var(--tertiary-font-color);
}

.top-bar__left .contact-link:hover .contact-link__icon,
.top-bar__right .contact-link:hover .contact-link__icon {
  transform: translateX(-2px);
}

.top-bar__left .contact-link:hover .contact-link__text,
.top-bar__right .contact-link:hover .contact-link__text {
  transform: translateX(2px);
}


.cta-button {
  display: inline-block;
  padding: 8px 10px;
  background-color: var(--cta-secondary-bg-color);
  color: var(--cta-primary-font-color);
  border: none;
  border-radius: 3px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.cta-button:hover {
  background-color: var(--cta-tertiary-bg-color);
  color: var(--cta-secondary-font-color);
  transform: translateY(2px);
}


@media (max-width: 768px) {
  .top-bar__content {
    flex-direction: column;
    align-items: center;
  }

  .top-bar__center {
    order: 3;
    width: 35%;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }

  .top-bar__right {
    justify-content: flex-start;
  }
}
*/








/* ================= NAVBAR ================= */
a {
  text-decoration: none;
  color: var(--primary-font-color);
}
.navbar {
 
  width: 100%;


  /* ADDED */
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 9999;
  
}



.navbar__inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 15px 40px 10px 15px;
  border-radius: 1px;
 
  background-color: var(--cta-secondary-bg-color);
}

.navbar__logo > img {
   max-height: 80px;
   width: auto;
  
}

/* ================= DESKTOP LINKS ================= */
.navbar__menu {
  display: flex;
  gap: 0.5rem 2rem;
  list-style: none;
  
}

ul.navbar__menu {
  margin: 0;
  padding-right: 30px; 
}

.navbar__item {
  position: relative;
  
}
.navbar__item img {
  width: 12px;
  height: 12px;
}

.navbar__link,
.navbar__toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  cursor: pointer;
  font: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  color: var(--primary-font-color);
  transition: transform var(--transition-timing), opacity var(--transition-timing);
}

.navbar__link:hover,
.navbar__toggle:hover {
  transform: translateY(-3px) scale(1.03);
}

/* ================= DROPDOWNS ================= */
.dropdown {
  z-index: 999;
  position: fixed;
   margin-top: 30px;/* below navbar */
  left: 50%;
  transform: translateX(-50%);
  width: 99vw;
  max-width: 1500px;
  background: var(--secondary-bg-color);
  display: none;
  border-radius: 4px;
}

.dropdown.active {
  display: flex;
}

.dropdown__grid {
  display: flex;
  width: 100%;
  padding: 1.5rem 0;
}

.dropdown__col {
  flex: 1;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  position: relative;
}

.dropdown__col img {
  width: 100%;
  height: auto;
  object-fit: contain;
}



.dropdown__col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 5%;
  width: 1px;
  height: 90%;
  background: var(--border-primary-color);
}

/* ================= MOBILE ================= */
.navbar__hamburger {
  display: none; /* hidden by default */
  background: none;
  border: none;
  cursor: pointer;
  width: 35px;
  height: 20px;
  position: relative;
  
}

.navbar__hamburger span {
  position: absolute;
  right: 30px;
  width: 100%;
  height: 3px;
  background: var(--primary-font-color);
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}

.navbar__hamburger span:nth-child(1) {
  top: 0;
}
.navbar__hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.navbar__hamburger span:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}

.navbar__hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.mobile-panel {
  z-index: 10001;
  position: fixed;
  inset: 0 auto 0 0;
  width: 65%;
  height: 100vh;
  background: var(--secondary-bg-color);
  transform: translateX(-100%);
  transition: transform var(--transition-timing);
  
  padding: 1rem;
  padding-top: 2rem;
}

.mobile-panel.active {
  transform: translateX(0);
}

.mobile-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 20px;
}


.mobile-menu li {
  font-size: 20px;
}



.mobile-menu li img {
  max-width: 170px;
  height: auto;
 
}
 
.mobile-menu li a:hover {
  color: var(--color-tertiary);
}




.mobile-accordion  img{
  width: 12px;
  height: 12px;
  margin-left: 6px;
  margin-bottom: 0.12rem;
}



.mobile-accordion > button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font: inherit;
  color: var(--primary-font-color);
}

.mobile-sub {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: max-height var(--transition-timing), opacity var(--transition-timing);
  opacity: 0;
  padding-left: 1rem;
  padding-top: 0.3rem;
}

.mobile-sub a {
  padding-top: 0.5rem;
}

.mobile-sub a:hover {
  color: var(--tertiary-font-color);
}

.mobile-sub.active {
  max-height: 500px;
  opacity: 1;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 720px) {

  .navbar__menu {
    display: none;  /* hide desktop menu */
    
  }
  .navbar__hamburger {
    display: block; /* show hamburger */
    
  }
}

@media (min-width: 900px) {
  .navbar__menu {
    display: flex;  /* show desktop menu */
  }
  .navbar__hamburger {
    display: none; /* hide hamburger */
    
  }
  .mobile-panel {
    display: none; /* remove mobile menu completely */
  }
}







/* =========================================================
   HERO SECTION
   ========================================================= */

/* ---------- ROOT SAFETY ---------- */
.hero * {
  box-sizing: border-box;
}

/* ---------- HERO BASE ---------- */
.hero {

  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
  color: var(--color-primary);
  background-color: #04ecd9; /* fallback */
}

/* ---------- SLIDER CONTAINER ---------- */
.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* ---------- INDIVIDUAL SLIDES ---------- */
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroFade 20s infinite ease-in-out;
  will-change: opacity;
}

/* Animation offsets */
.hero__slide--1 { animation-delay: 0s; }
.hero__slide--2 { animation-delay: 5s; }
.hero__slide--3 { animation-delay: 10s; }

/* ---------- IMAGE NORMALIZATION ---------- */
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
}

/* ---------- FADE KEYFRAMES ---------- */
@keyframes heroFade {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  33%  { opacity: 1; }
  43%  { opacity: 0; }
  100% { opacity: 0; }
}

/* ---------- OVERLAY (CONTRAST CONTROL) ---------- */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.55)
    );
  z-index: 1;
  pointer-events: none;
}

/* ---------- HERO CONTENT ---------- */
.hero__content {
  position: relative;
  z-index: 2;

  height: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;

  opacity: 0;
  transform: translateY(-20px);
  animation: heroContentEnter 600ms ease-out forwards;
}

/* ---------- CONTENT ANIMATION ---------- */
@keyframes heroContentEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- TEXT ---------- */
.hero__title {
  font-size: clamp(6rem, 4vw, 1.7rem);
  padding-bottom: 25px;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-weight: 800;
}

.hero__subtitle {
  width: 90%;
  font-size: clamp(2rem, 2vw, 1.25rem);
  font-family: var(--font-body);
  font-weight: 300;
  margin-bottom: 5rem;
  line-height: 1.6;
  color: var(--color-secondary);
}

/* ---------- CTA CONTAINER ---------- */
.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: left;
}

/* ---------- BUTTON BASE ---------- */
.btn {
  font: --var(--font-cta);
  font-weight: 700;
  padding: 1rem 1.5rem;
  cursor: pointer;
  border-radius: 5px;
  transition:
    background-color 200ms ease,
    color 200ms ease,
    border-color 200ms ease,
    transform 200ms ease;
}

/* ---------- PRIMARY CTA ---------- */
.btn--primary {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  color: var(--color-secondary);
  border: 2px solid var(--color-tertiary);
  background: var(--color-tertiary);
}

/* ---------- OUTLINE CTA ---------- */
.btn--outline {
  background: none;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--color-tertiary);
  border-color: var(--color-tertiary);
  color: #000;
}

/* ---------- ACCESSIBILITY ---------- */
.btn:focus-visible {
  outline: 3px solid var(--color-tertiary);
  outline-offset: 3px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .hero {
    min-height: 480px;
  }
 
  .hero__title {
  font-size: clamp(4rem, 4vw, 1.7rem);
  line-height: 1.15;
  margin-bottom: 0.5rem;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-weight: 900;
  padding-bottom: 20px;
}

.hero__subtitle {
  font-size: clamp(1.5rem, 2vw, 1.25rem);
  font-family: var(--font-body);
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1;
  color: var(--color-secondary);

}

  .hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: left;
  margin-top: 70px;
  font-family: var(--font-cta);
  font-weight: 700;
  
  }

  .btn {
   
    padding: 0.6rem 1rem;
    max-width: 280px;
  }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero__slide,
  .hero__content {
    animation: none;
  }

  .hero__content {
    opacity: 1;
    transform: none;
  }
}









/* ================= SECTION BASE ================= */
.meet-doc {
  background: var(--secondary-bg-color);
  padding: 2rem 1rem;
}

/* ================= LAYOUT ================= */
.meet-doc__layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center; /* horizontal alignment between columns */
}

/* ================= LEFT CONTENT ================= */
.meet-doc__content {
  background: var(--secondary-bg-color);
  color: var(--primary-font-color);
  padding: 2.5rem;
  position: relative;
}

.meet-doc__section-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xxlarge);
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.meet-doc__heading {
  font-size: var(--font-size-large);
  margin-bottom: 1rem;
}

.meet-doc__content p {
  font-family: var(--font-body);
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* CTA */
.meet-doc__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: var(--cta-padding-y) var(--cta-padding-x);
  background: var(--cta-primary-bg-color);
  color: var(--cta-secondary-font-color);
  border-radius: 5px;
  text-decoration: none;
  font-family: var(--font-cta);
  transition: transform var(--transition-timing), opacity var(--transition-timing);
}

.meet-doc__cta:hover {
  transform: translateY(-2px);
}

/* Decorative SVG placeholder */
.meet-doc__decorative-icon {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}

/* ================= RIGHT IMAGE ================= */
.meet-doc__image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
 
}

.meet-doc__image {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 720px) {
  .meet-doc__layout {
    grid-template-columns: 1fr;
  }

  .meet-doc__image {
    height: auto;
  }
}






/* ================= ARTICLE BASE ================= */
.impact-article {
  background-color: var(--primary-bg-color);
  color: var(--secondary-font-color);
  padding: clamp(3rem, 5vw, 6rem) clamp(2rem, 6vw, 8rem);
 
  overflow: hidden; /* hard stop on overflow */
}

/* ================= GRID LAYOUT ================= */
.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* ================= LEFT COLUMN ================= */
.impact-left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.impact-eyebrow {
   font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-body);
  opacity: 0.9;
}

.impact-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 4vw, var(--font-size-special));
  font-weight: 700;
  line-height: 1.15;
  
  margin: 0;
}

/* ================= CTA ================= */
.impact-cta {
  margin-top: 1.5rem;
  align-self: flex-start;

  display: inline-flex;
  align-items: center;
  gap: 0.75rem;

  padding: 5px 10px;
  border: 2px solid var(--border-secondary-color);
  border-radius: 5px;

  font-family: var(--font-cta);
  font-size: var(--font-size-medium);
  letter-spacing: 0.05em;
  text-decoration: none;

  color: var(--cta-secondary-font-color);
  background-color: transparent;

  transition:
    background-color var(--transition-timing) ease,
    color var(--transition-timing) ease,
    transform var(--transition-timing) ease;
}

.impact-cta:hover,
.impact-cta:focus-visible {
  background-color: var(--cta-tertiary-bg-color);
  color: var(--cta-secondary-font-color);
}

.impact-cta:focus-visible {
  outline: 2px dashed var(--border-tertiary-color);
  outline-offset: 4px;
}

.cta-icon {
  width: 1rem;
  height: 1rem;
  display: inline-block;
}

/* ================= RIGHT COLUMN ================= */
.impact-right {
  text-align: right;
}

.impact-statement {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2.5vw, var(--font-size-xlarge));
  line-height: 1.6;
  margin: 0;
}

/* ================= RESPONSIVE FONT SCALING ONLY ================= */
@media (max-width: 768px) {
  .impact-title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .impact-statement {
    font-size: clamp(1.05rem, 3.5vw, 1.25rem);
  }
}

@media (max-width: 480px) {
  .impact-title {
    font-size: 1.75rem;
  }

  .impact-statement {
    font-size: 1rem;
  }
}


/* ================= SECTION BASE ================= */
.achievements {
  background-color: var(--primary-bg-color);
  color: var(--secondary-font-color);
  border-top: 2px solid var(--border-secondary-color);
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 6vw, 8rem);
  overflow: hidden;
}

/* ================= GRID ================= */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

/* Responsive: 3 x 2 */
@media (max-width: 1024px) {
  .achievements-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ================= ITEM ================= */
.achievement {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

/* ================= ICON ================= */
.achievement img {
  width: 4rem;
  height: 4rem;
  display: block;
}

/* ================= NUMBER ================= */
.achievement-number {
  font-family: var(--font-cta);
  font-size: var(--font-size-special);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  min-width: 4ch;
  display: inline-block;
}

/* ================= LABEL ================= */
.achievement-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--font-size-medium);
  margin: 0;
}

/* ================= RESPONSIVE FONT SCALING ONLY ================= */
@media (max-width: 768px) {
  .achievement-number {
    font-size: var(--font-size-xxlarge);
  }

  .achievement-label {
    font-size: var(--font-size-small);
  }
}




/* ================= SECTION BASE ================= */
.services-section {
  background-color: var(--secondary-bg-color);
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 6vw, 8rem);
  overflow: hidden;
}

/* ================= HEADER ================= */
.services-header {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3.5rem;
}

.services-header h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-special);
  color: var(--primary-font-color);
  margin: 0;
}

.services-intro {
  margin-top: 0.75rem;
  font-family: var(--font-body);
  font-size: var(--font-size-large);
  color: var(--tertiary-font-color);
}

/* Decorative SVG */
.services-decor {
  position: absolute;
  top: 0;
  right: 0;
  width: 3rem;
  height: auto;
  pointer-events: none;
}

/* ================= GRID ================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  max-width: 1400px;
  margin: 0 auto;
}

/* Responsive: 2 columns */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ================= CARD ================= */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4 / 3;
}

/* Image */
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-timing) ease;
}

/* Overlay */
.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: rgba(0, 153, 153, 0.85);
  color: var(--secondary-font-color);
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;

  transition:
    background-color var(--transition-timing) ease,
    transform var(--transition-timing) ease;
}

/* ================= INTERACTION ================= */
.service-card:hover img,
.service-card:focus-within img {
  transform: scale(1.05);
}

.service-overlay:hover,
.service-overlay:focus-visible {
  background-color: rgba(0, 0, 0, 0.6);
}

.service-overlay:focus-visible {
  outline: 2px solid var(--border-primary-color);
  outline-offset: -2px;
}

/* ================= RESPONSIVE TYPE ================= */
@media (max-width: 768px) {
  .services-header h2 {
    font-size: var(--font-size-xxlarge);
  }

  .services-intro {
    font-size: var(--font-size-medium);
  }
}





/* ================= SECTION BASE ================= */
.why-choose-us {
  position: relative;
  background-color: var(--secondary-bg-color);
  padding: clamp(1rem, 6vw, 6rem) clamp(2rem, 6vw, 8rem);
  overflow: hidden;
}

/* Decorative SVG */
.why-decor {
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 3.5rem;
  height: auto;
  pointer-events: none;
  padding: 10px;
}

/* ================= HEADER ================= */
.why-header {
  margin-bottom: 2.5rem;
  padding-left: 2rem;
}

.why-header h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-special);
  color: var(--primary-font-color);
  margin: 0;
  text-align: left;
}

/* ================= GRID ================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
}

/* Responsive: 2 columns */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ================= ITEM ================= */
.why-item {
  padding: 0.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;

  /* subtle divider */
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

/* Remove right border on far-right items */
.why-item:nth-child(3n) {
  border-right: none;
}

/* horizontal divider between rows (desktop) */
.why-item:nth-child(n + 4) {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

/* Responsive borders */
@media (max-width: 1024px) {
  .why-item {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    border-top: 1px solid transparent;
  }

  .why-item:nth-child(2n) {
    border-right: none;
  }

  /* horizontal divider between rows */
  .why-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
}

/* ================= TYPOGRAPHY ================= */
.why-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xlarge);
  color: var(--primary-font-color);
  text-align: left;
  margin: 0 0 0.75rem;
}

.why-text {
  font-family: var(--font-body);
  font-size: var(--font-size-medium);
  color: var(--tertiary-font-color);
  text-align: flex-start;
  margin: 0;
  line-height: 1.6;
}

/* ================= RESPONSIVE TYPE ================= */
@media (max-width: 768px) {
  .why-title {
    font-size: var(--font-size-large);
  }

  .why-text {
    font-size: var(--font-size-small);
  }
}



.operating-hours {
  background: var(--primary-bg-color);
  color: var(--secondary-font-color);
  padding: 4rem 2rem;
  overflow: hidden;
}

.operating-hours__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.operating-hours__images {
  position: relative;
  min-height: 360px;
}

/* Image positioning */
.operating-hours__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  position: absolute;
}

/* Image A is below Image B */
.operating-hours__img--a {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

/* Image B overlaps on top but lower and to the right */
.operating-hours__img--b {
  top: 40px;
  left: 20px;
  width: 90%;
  z-index: 2;
}

.operating-hours__content {
  padding: 1rem;
}

.operating-hours__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xxlarge);
  margin-bottom: 1.5rem;
}

/* Dot leader line layout */
.operating-hours__line {
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: var(--font-size-medium);
  margin: 0.5rem 0;
}

.operating-hours__line .day {
  font-weight: 700;
  margin-right: 0.75rem;
}

.operating-hours__line .dots {
  flex: 1;
  border-bottom: 1px dotted var(--secondary-font-color);
  margin: 0 0.75rem;
  height: 1px;
}

.operating-hours__line .time {
  font-weight: 600;
  white-space: nowrap;
}

/* Responsive Layout */
@media (max-width: 900px) {
  .operating-hours__grid {
    grid-template-columns: 1fr;
  }

  .operating-hours__images {
    min-height: 320px;
    margin-top: 2rem;
  }

  /* On mobile, images stack under the hours */
  .operating-hours__img--a,
  .operating-hours__img--b {
    position: relative;
    width: 100%;
    left: 0;
  }

  .operating-hours__img--b {
    top: 20px;
  }
}



.cta {
  background: var(--tertiary-bg-color);
  color: var(--secondary-font-color);
  padding: 4rem 2rem;
  overflow: hidden;
}

.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.cta__title {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  margin: 0;
}

.cta__statement {
  font-family: var(--font-body);
  font-size: var(--font-size-large);
  margin: 0 0 1.5rem 0;
}

.cta__contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cta__contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta__icon {
  width: 52px;
  height: 52px;
}

.cta__contact-text {
  display: grid;
  gap: 0.25rem;
  
}

.cta__contact-line {
  font-family: var(--font-body);
  font-size: var(--font-size-medium);
  font-weight: 600;
  color: var(--cta-secondary-font-color)
}

/* Responsive layout */
@media (max-width: 900px) {
  .cta__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .cta__contacts {
    grid-template-columns: 1fr;
  }
}








.faq-section {
  background-color: var(--secondary-bg-color);
  color: var(--primary-font-color);
  padding: 4rem 0;
  font-family: var(--font-body);
}

.faq-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.faq-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xxlarge);
  margin-bottom: 1.5rem;
}

.faq-image {
  width: 100%;
  max-height: 700px;
  border-radius: 8px;
}

.accordion-item {
  border-bottom: 1px solid var(--border-primary-color);
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-size-medium);
  cursor: pointer;
  color: var(--primary-font-color);
}

.accordion-header span {
  text-align: left;
  flex: 1;
}

.icon {
  width: 20px;
  height: 20px;
  stroke: var(--primary-font-color);
  fill: none;
  stroke-width: 2;
}

.minus {
  display: none;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-timing) ease;
}

.accordion-content p {
  padding-bottom: 1rem;
  font-size: var(--font-size-small);
}

/* ACTIVE STATE */
.accordion-item.active .accordion-content {
  max-height: 300px;
}

.accordion-item.active .plus {
  display: none;
}

.accordion-item.active .minus {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-container {
    grid-template-columns: 1fr;
  }

  .faq-left {
    order: 1;
  }

  .faq-right {
    order: 2;
  }
}









/* ================= TESTIMONIALS SECTION ================= */

.testimonials {
  background: var(--secondary-bg-color);
  padding: 4rem 0;
}

.testimonials__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonials__header h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-xxlarge);
  color: var(--primary-font-color);
}

.testimonials__header p {
  font-size: var(--font-size-medium);
}

/* ================= CAROUSEL ================= */

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  outline: none;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

/* ================= CARD ================= */

.testimonial {
  min-width: 100%;
  display: flex;
  background: var(--primary-bg-color);
  color: var(--secondary-font-color);
  border-radius: 12px;
  overflow: hidden;
}

/* Left */
.testimonial__content {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial__content blockquote {
  font-size: var(--font-size-large);
  line-height: 1.6;
}

.testimonial__name {
  align-self: flex-end;
  font-weight: 600;
  margin-top: 1.5rem;
}

/* Right */
.testimonial__image {
  flex: 1;
  max-height: 350px; ;
}

.testimonial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= PROGRESS BAR ================= */

.testimonial-progress {
  margin-top: 1rem;
  height: 4px;
  background: var(--secondary-semi-transparent-bg-color);
  overflow: hidden;
}

.testimonial-progress__bar {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--tertiary-bg-color);
  transition: width 8s linear;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .testimonial {
    flex-direction: column;
  }

  .testimonial__image {
    height: 260px;
  }
}






/* ================= TEAM SECTION ================= */
.team-section {
  background: var(--secondary-bg-color);
  padding: 4rem 1rem;
  font-family: var(--font-body);
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.team-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xxlarge);
  color: var(--primary-font-color);
  margin-bottom: 3rem;
}

/* ================= GRID ================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

/* ================= CARD ================= */
.team-card {
  background: var(--secondary-bg-color);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  transform: translateZ(0);
  transition: transform var(--transition-timing),
              box-shadow var(--transition-timing);
  will-change: transform;
  max-height: 500px;
  
}

.team-card:hover,
.team-card:focus-visible {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-card.is-expanded {
  transform: scale(1.05);
}

/* ================= IMAGE ================= */
.team-image {
  height: 70%;
 
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================= CONTENT ================= */
.team-content {
  height: 30%;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-name {
  font-size: var(--font-size-large);
  color: var(--primary-font-color);
  margin-bottom: 0.5rem;
}

.team-quote {
  font-size: var(--font-size-medium);
  color: var(--primary-font-color);
  line-height: 1.5;
}

/* ================= CTA ================= */
.team-cta {
  margin-top: 2rem;
}

.btn-learn-more {
  font-family: var(--font-cta);
  padding: var(--cta-padding-y) var(--cta-padding-x);
  background: var(--cta-primary-bg-color);
  color: var(--cta-secondary-font-color);
  text-decoration: none;
  border-radius: 6px;
  transition: background var(--transition-timing),
              transform var(--transition-timing);
}

.btn-learn-more:hover,
.btn-learn-more:focus-visible {
  background: var(--cta-tertiary-bg-color);
  transform: translateY(-2px);
}


/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= REDUCED MOTION ================= */
@media (prefers-reduced-motion: reduce) {
  .team-card,
  .btn-learn-more {
    transition: none;
  }
}






/* ================= GET IN TOUCH SECTION ================= */
.get-in-touch {
  background: var(--primary-bg-color);
  padding: 4rem 1rem;
  font-family: var(--font-body);
}

.get-in-touch__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 3rem;
}

/* ================= LEFT COLUMN ================= */
.get-in-touch__left h2 {
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--secondary-font-color);
  margin: 0;
}

/* ================= RIGHT COLUMN ================= */
.get-in-touch__right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-style: normal;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--secondary-font-color);
  font-size: var(--font-size-medium);
}

.contact-row img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  filter: brightness(0) invert(1); /* ensures secondary color */
}

.contact-row a,
.contact-row span {
  color: var(--secondary-font-color);
  text-decoration: none;
}

.contact-row a:focus-visible {
  outline: 2px solid var(--tertiary-bg-color);
  outline-offset: 3px;
}

/* ================= RESPONSIVE ================= */
/* Same layout, reduced scale */
@media (max-width: 768px) {
  .get-in-touch__container {
    gap: 2rem;
  }

  .get-in-touch__left h2 {
    font-size: 2.5rem
  }

  .contact-row {
    font-size: var(--font-size-small);
  }

  .contact-row img {
    width: 18px;
    height: 18px;
  }
}
/* ================= CONTACT FORM SECTION ================= */
.contact-form-section {
  background: var(--primary-bg-color);
  padding: 4rem 1rem;
  font-family: var(--font-body);
}

.contact-form-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xxlarge);
  color: var(--secondary-font-color);
  margin-bottom: 3rem;
}

/* ================= FORM GRID ================= */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Always two columns */
.form-field {
  display: flex;
  flex-direction: column;
}

.form-field--full {
  grid-column: span 2;
}

/* ================= LABELS ================= */
.form-field label {
  color: var(--secondary-font-color);
  font-size: var(--font-size-small);
  margin-bottom: 0.5rem;
}

/* ================= INPUTS ================= */
.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border-secondary-color);
  padding: 0.5rem 0;
  color: var(--secondary-font-color);
  font-size: var(--font-size-medium);
  font-family: var(--font-body);
  outline: none;
}

.form-field select {
  appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Focus state */
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--border-tertiary-color);
}

/* ================= CAPTCHA ================= */
.form-captcha {
  grid-column: span 2;
}

/* ================= ACTIONS ================= */
.form-actions {
  grid-column: span 2;
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

/* Send button */
.btn-send {
  padding: var(--cta-padding-y) var(--cta-padding-x);
  background: var(--cta-secondary-bg-color);
  color: var(--cta-primary-font-color);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-cta);
  transition: background var(--transition-timing),
              transform var(--transition-timing);
}

.btn-send:hover,
.btn-send:focus-visible {
  background: var(--cta-tertiary-bg-color);
  transform: translateY(-2px);
}

/* Cancel button */
.btn-cancel {
  padding: var(--cta-padding-y) var(--cta-padding-x);
  background: transparent;
  border: 2px solid var(--border-secondary-color);
  color: var(--secondary-font-color);
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-cta);
  transition: border-color var(--transition-timing),
              color var(--transition-timing),
              transform var(--transition-timing);
}

.btn-cancel:hover,
.btn-cancel:focus-visible {
  border-color: var(--border-tertiary-color);
  color: var(--tertiary-font-color);
  transform: translateY(-2px);
}

/* ================= REDUCED MOTION ================= */
@media (prefers-reduced-motion: reduce) {
  .btn-send,
  .btn-cancel {
    transition: none;
  }
}

















/* ================= FOOTER ================= */
.site-footer {
  background: var(--secondary-bg-color);
  color: var(--primary-font-color);
  padding: 4rem 1rem 2rem;
  font-family: var(--font-body);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

/* ================= COLUMNS ================= */
.footer-column h3 {
  font-family: var(--font-heading);
  font-size: var(--font-size-large);
  margin-bottom: 1rem;
  color: var(--primary-font-color);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li {
  margin-top: 0.75rem;
}

.footer-links a {
  color: var(--primary-font-color);
  text-decoration: none;
  font-size: var(--font-size-medium);
  transition: color var(--transition-timing);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--tertiary-font-color);
  outline: none;
}

/* ================= BOTTOM ================= */
.footer-bottom {
  border-top: 1px solid var(--secondary-semi-transparent-bg-color);
  padding-top: 1.5rem;
  text-align: center;
  font-size: var(--font-size-small);
}

/* ================= RESPONSIVE ================= */
/* Only two columns on smaller viewports */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================= ACCESSIBILITY ================= */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  color: var(--primary-font-color);
}




































/*==============================================================
=====================================================================
===========================================================================
================================================================================
=================WHO WE ARE PAGE===========================================
======================================================================
================================================================*/

/* ================= WHO WE ARE SECTION ================= */

.who-we-are {
  background-color: var(--primary-bg-color);
  padding-top: 90px;
  padding-bottom: 70px;
  font-family: var(--font-body);
}

.who-we-are__container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.who-we-are__header {
  margin-bottom: 40px;
}

.who-we-are__header h1 {
  font-family: var(--font-heading);
  font-size: var(--font-size-special);
  color: var(--secondary-font-color);
  margin: 0;
}

/* ================= CONTENT LAYOUT ================= */

.who-we-are__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.who-we-are__text p {
  color: var(--secondary-font-color);
  font-size: var(--font-size-medium);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ================= IMAGE ================= */

.who-we-are__image img {
  width: 100%;
  height: 300px;
  display: block;
  border-radius: 6px;
  object-fit: cover;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .who-we-are__content {
    grid-template-columns: 1fr;
  }

  .who-we-are__header h1 {
    font-size: var(--font-size-xxlarge);
  }
}








/* ===============================
   Mission & Vision Section
================================ */

.mission-vision {
  background-color: var(--secondary-bg-color);
  padding: 70px 0;
  color: var(--tertiary-font-color);
}

.mission-vision__container {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Shared block layout */
.mv-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 80px;
}

.mv-block:last-child {
  margin-bottom: 0;
}

/* Text content */
.mv-block__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xxlarge);
  margin-bottom: 16px;
}

.mv-block__text {
  font-family: var(--font-body);
  font-size: var(--font-size-medium);
  line-height: 1.7;
  max-width: 520px;
}

/* Image handling */
.mv-block__image img {
  width: 100%;
  height: 350px;
  display: block;
  border-radius: 12px;
}

/* ===============================
   Responsive Behavior
================================ */

@media (max-width: 768px) {
  .mv-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mv-block__title {
    font-size: var(--font-size-xlarge);
  }

  .mv-block__text {
    max-width: 100%;
  }
}





























/*==============================================================
=====================================================================
===========================================================================
================================================================================
=================terms of service===========================================
======================================================================
================================================================*/






/* ===============================
   Terms of Service Section
================================ */

.terms-of-service {
  background-color: var(--secondary-bg-color);
  padding: 70px 0;
  color: var(--primary-font-color);
}

.terms-of-service__container {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.terms-of-service__header {
  max-width: 760px;
  margin-bottom: 48px;
}

.terms-of-service__header h1 {
  font-family: var(--font-heading);
  font-size: var(--font-size-special);
  margin-bottom: 16px;
}

.terms-of-service__intro {
  font-family: var(--font-body);
  font-size: var(--font-size-medium);
  line-height: 1.7;
}

/* Content blocks */
.terms-block {
  max-width: 760px;
  margin-bottom: 40px;
}

.terms-block h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-large);
  margin-bottom: 12px;
}

.terms-block p {
  font-family: var(--font-body);
  font-size: var(--font-size-medium);
  line-height: 1.7;
}

/* ===============================
   Responsive Behavior
================================ */

@media (max-width: 768px) {
  .terms-of-service__header h1 {
    font-size: var(--font-size-xxlarge);
  }

  .terms-block {
    max-width: 100%;
  }
}



















































/*==============================================================
=====================================================================
===========================================================================
================================================================================
=================Privacy Policy===========================================
======================================================================
================================================================*/



/* ===============================
   Privacy Policy Section
================================ */

.privacy-policy {
  background-color: var(--secondary-bg-color);
  padding: 70px 0;
  color: var(--primary-font-color);
}

.privacy-policy__container {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.privacy-policy__header {
  max-width: 760px;
  margin-bottom: 48px;
}

.privacy-policy__header h1 {
  font-family: var(--font-heading);
  font-size: var(--font-size-special);
  margin-bottom: 16px;
}

.privacy-policy__intro {
  font-family: var(--font-body);
  font-size: var(--font-size-medium);
  line-height: 1.7;
}

/* Content blocks */
.policy-block {
  max-width: 760px;
  margin-bottom: 40px;
}

.policy-block h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-large);
  margin-bottom: 12px;
}

.policy-block p {
  font-family: var(--font-body);
  font-size: var(--font-size-medium);
  line-height: 1.7;
  margin-bottom: 12px;
}

.policy-block ul {
  padding-left: 20px;
  margin: 0;
}

.policy-block li {
  font-family: var(--font-body);
  font-size: var(--font-size-medium);
  line-height: 1.6;
  margin-bottom: 6px;
}

/* ===============================
   Responsive Behavior
================================ */

@media (max-width: 768px) {
  .privacy-policy__header h1 {
    font-size: var(--font-size-xxlarge);
  }

  .policy-block {
    max-width: 100%;
  }
}

















/*==============================================================
=====================================================================
===========================================================================
================================================================================
=================gallery===========================================
======================================================================
================================================================*/


.pinterest-gallery {
  padding-top: 100px;
  background: var(--secondary-bg-color);
}

.gallery-grid {
  column-count: 4;        /* 4 columns on desktop */
  column-gap: 18px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
  
/* Responsive */
@media (max-width: 900px) {
  .gallery-grid {
    column-count: 2;      /* 2 columns on mobile */
  }
}




















/*==============================================================
=====================================================================
===========================================================================
================================================================================
=================Service page===========================================
======================================================================
================================================================*/


.service-section {
  background-color: var(--secondary-bg-color);
  padding-top: 100px;
  padding-bottom: 70px;
}

.service-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.service-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.service-text h1 {
  font-family: var(--font-heading);
  font-size: var(--font-size-xxlarge);
  color: var(--primary-font-color);
  margin-bottom: 16px;
}

.service-intro {
  font-family: var(--font-body);
  font-size: var(--font-size-large);
  line-height: 1.6;
  color: var(--primary-font-color);
}

.service-image img {
  width: 100%;
  height: 350px;
  border-radius: 8px;
  object-fit: cover;
}

.service-details {
  margin-top: 48px;
}

.service-details p {
  font-family: var(--font-body);
  font-size: var(--font-size-medium);
  line-height: 1.7;
  color: var(--primary-font-color);
  margin-bottom: 20px;
}

.service-details h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-xlarge);
  margin: 32px 0 16px;
  color: var(--primary-font-color);
}

.service-details ul {
  padding-left: 20px;
}

.service-details li {
  font-family: var(--font-body);
  margin-bottom: 10px;
  color: var(--primary-font-color);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .service-top {
    grid-template-columns: 1fr;
  }
}
