/* ===== ABOUT HERO (CSS) ===== */

.about-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;

  /* Replace with your about banner image */
  background-image: url("images/about-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay */
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 20, 33, 0.68);
}

/* Content container */
.about-hero__container {
  position: relative;
  z-index: 2;
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 70px 0;
  color: #ffffff;
}

/* Title */
.about-hero__title {
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.6px;
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  max-width: 900px;
}

/* Text */
.about-hero__text {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
  max-width: 820px;
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 700px) {
  .about-hero {
    min-height: 460px;
  }

  .about-hero__container {
    padding: 55px 0;
  }

  .about-hero__title,
  .about-hero__text {
    max-width: 100%;
  }
}


.about-stats {
  background: #164f67;
  padding: 34px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-stats__wrap {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.about-stat__number {
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
}

.about-stat__label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.about-stats__nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.about-stats__nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 900px) {
  .about-stats__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .about-stats__wrap {
    grid-template-columns: 1fr;
  }

  .about-stats__nav {
    display: none;
  }
}

/* =====================================================
    "ABOUT US"  (Picture 2 style)
===================================================== */

.about-us {
  padding: 90px 20px;
  background: #ffffff; /* remove if your page background is already white */
}

.about-container {
  max-width: 880px;      /* controls the narrow centered column */
  margin: 0 auto;
  text-align: center;
}

.about-title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  margin-bottom: 26px;
  color: #0f172a;
  letter-spacing: 0.2px;
}

.about-container p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #64748b;
  margin: 0 auto 26px;   /* spacing between paragraphs */
  max-width: 820px;      /* keeps lines readable (like pic 2) */
}

.about-container p:last-child {
  margin-bottom: 0;
}


/* =====================================================
   WHY CHOOSE US 
===================================================== */

.why-choose-us {
  background: #ffffff;
  padding: 90px 20px;
}

.why-choose-us__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT TEXT */
.why-choose-us__text h2 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 24px;
}

.why-choose-us__text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 18px;
  max-width: 640px;
}

.why-choose-us__text a {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 26px;
  background: #164f67;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.why-choose-us__text a:hover {
  background: #0f3b50;
  transform: translateY(-2px);
}

/* RIGHT IMAGE */
.why-choose-us__image {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
}

.why-choose-us__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* BADGE */
.why-choose-us__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #164f67;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-choose-us__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-choose-us__text p {
    max-width: 100%;
  }

  .why-choose-us__badge {
    bottom: 14px;
    left: 14px;
  }
}
/* =====================================================
   OUR VALUES (matches your screenshots)
===================================================== */

.values {
  background: #ffffff;
  padding: 90px 20px;
}

.values__container {
  max-width: 1200px;
  margin: 0 auto;
}

.values__header {
  text-align: center;
  margin-bottom: 45px;
}

.values__title {
  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.values__subtitle {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 720px;
}

/* 2x2 grid like picture 1 + picture 2 combined */
.values__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

/* Card styling */
.values__card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 26px 26px 28px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.values__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.10);
}

/* Icon box top-left */
.values__icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #eef2f6;
  color: #0b5a7c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

/* Card title + text */
.values__card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.values__text {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.75;
  margin: 0;
  max-width: 520px;
}

/* Responsive */
@media (max-width: 900px) {
  .values__grid {
    grid-template-columns: 1fr;
  }

  .values__text {
    max-width: 100%;
  }
}
 .team-section {
  background: #134c63;
  padding: 90px 20px;
  text-align: center;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
}

.team-section h2 {
  font-size: 2.4rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.team-subtitle {
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
}

.team-card {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.team-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.team-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #0f172a;
}

.team-card p {
  max-width: 700px;
  margin: 0 auto 20px;
  color: #64748b;
  line-height: 1.8;
}

.team-footnote {
  font-size: 0.95rem;
  color: #64748b;
}
/* =====================================================
   REVIEWS SECTION (matches screenshot)
===================================================== */

.reviews {
  background: #ffffff;
  padding: 90px 20px;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.reviews-title {
  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.reviews-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  margin-bottom: 18px;
}

.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b5a7c;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 42px;
}

.reviews-link:hover {
  text-decoration: underline;
}

/* grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  text-align: left;
}

/* cards */
.review-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 280px;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.10);
}

/* top row */
.review-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.review-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.review-date {
  font-size: 0.9rem;
  color: #94a3b8;
}

.review-stars {
  color: #f5b301; /* gold stars */
  font-size: 1.15rem;
  letter-spacing: 2px;
  white-space: nowrap;
}

/* review text */
.review-text {
  color: #475569;
  line-height: 1.75;
  font-size: 0.98rem;
  margin: 0 0 22px;
}

/* footer */
.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e8f1ff;
  color: #1d4ed8;
  font-weight: 700;
  font-size: 0.75rem;
}

.review-google-link {
  color: #0b5a7c;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.review-google-link:hover {
  text-decoration: underline;
}

/* show more button */
.reviews-more {
  margin: 40px auto 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 700;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.06);
}

.reviews-more:hover {
  background: #f8fafc;
}

.reviews-more-icon {
  font-size: 1.1rem;
  line-height: 1;
}

/* responsive */
@media (max-width: 980px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CTA SECTION (Picture 2 Style) ===== */
.cta-section {
  background: #0f4e63; /* deep blue/teal like picture 2 */
  padding: 90px 20px;
}

.cta-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  color: #ffffff;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}

.cta-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 38px;
}

/* Buttons container */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Buttons */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  background: #ffffff;
  color: #0f172a;
  text-decoration: none;

  padding: 14px 26px;
  border-radius: 10px;

  font-weight: 600;
  font-size: 1rem;

  min-width: 240px;
  border: 1px solid rgba(255, 255, 255, 0.6);

  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.cta-btn i {
  font-size: 1rem;
  opacity: 0.9;
}

/* Hover */
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

/* Responsive */
@media (max-width: 600px) {
  .cta-section {
    padding: 70px 16px;
  }

  .cta-text br {
    display: none; /* avoid forced line break on mobile */
  }

  .cta-btn {
    width: 100%;
    min-width: unset;
  }
}

/* =========================================
   SERVICES HERO (Image with caption)
   Place under navbar
========================================= */

.services-hero {
  position: relative;
  width: 100%;
  min-height: 420px;                 /* banner height like your screenshot */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  /* ✅ Replace this path with your real image file */
  background-image: url("images/services-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay to make text readable (matches screenshot vibe) */
.services-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 45%, rgba(0,0,0,0.25), rgba(0,0,0,0.78) 70%),
    linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.25) 100%);
  z-index: 1;
}

/* Text block */
.services-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;

  /* pushes text slightly left like the image */
  padding: 115px 20px;
  text-align: center;
}

/* Title */
.services-hero__title {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 0 0 16px;
}

/* Subtitle */
.services-hero__subtitle {
  color: rgba(255, 255, 255, 0.85);
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
  .services-hero {
    min-height: 360px;
  }

  .services-hero__content {
    padding: 95px 16px;
  }

  .services-hero__subtitle {
    font-size: 1rem;
    line-height: 1.7;
  }
}
/* =========================================
   ADDITIONAL SERVICES (Merged like picture)
========================================= */

.additional-services {
  background: #ffffff; /* same outer layer */
  padding: 70px 20px;
}

.additional-services__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 34px;
}

.additional-services__title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px;
}

.additional-services__subtitle {
  margin: 0;
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* 3 columns on desktop like your screenshots */
.additional-services__grid {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

/* Card */
.add-card {
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 26px;

  display: flex;
  flex-direction: column;

  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.add-card:hover {
  transform: translateY(-3px);
  border-color: #d7e2ee;
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.08);
}

/* Icon box */
.add-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #eef3f7;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  color: #0f4e63;
  margin-bottom: 14px;
}

/* Card title */
.add-card__title {
  margin: 0 0 10px;
  font-size: 1.12rem;
  font-weight: 800;
  color: #0f172a;
}

/* Card text */
.add-card__desc {
  margin: 0 0 18px;
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 38ch; /* helps match the layout spacing */
}

/* Learn more pinned near bottom */
.add-card__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0f4e63;
  font-weight: 700;
  font-size: 0.95rem;
}

.add-card__arrow {
  display: inline-block;
  transform: translateY(0.5px);
  transition: transform 0.18s ease;
}

.add-card:hover .add-card__arrow {
  transform: translate(3px, 0.5px);
}

/* Responsive */
@media (max-width: 1000px) {
  .additional-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .additional-services__grid {
    grid-template-columns: 1fr;
  }

  .add-card {
    padding: 22px 18px;
  }

  .add-card__icon {
    width: 52px;
    height: 52px;
  }

  .add-card__desc {
    max-width: 100%;
  }
}
/* =========================================
   OUR PROCESS
========================================= */

.our-process {
  background: #ffffff;
  padding: 80px 20px;
}

.our-process__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 48px;
}

.our-process__title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px;
}

.our-process__subtitle {
  margin: 0;
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Steps row */
.our-process__steps {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;

  text-align: center;
}

/* Each step */
.process-step {
  padding: 10px 8px;
}

.process-step__num {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0f4e63;          
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.process-step__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px;
}

.process-step__text {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 1000px) {
  .our-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 38px;
  }
}

@media (max-width: 520px) {
  .our-process {
    padding: 70px 16px;
  }

  .our-process__steps {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .process-step__num {
    font-size: 2.2rem;
  }
}

/* =========================================
   CORE SERVICES (match screenshots)
========================================= */

.core-services{
  background:#ffffff;
  padding: 70px 20px;
}

.core-services__header{
  text-align:center;
  margin-bottom: 34px;
}

.core-services__title{
  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 800;
  color:#0f172a;
  margin: 0 0 10px;
}

.core-services__subtitle{
  color:#64748b;
  font-size: 1.05rem;
  margin: 0;
}

/* 2-column grid like screenshots */
.core-services__grid{
  max-width: 1200px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

/* Card look */
.service-card{
  display:block;
  text-decoration:none;
  background:#ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 26px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
  color: inherit;
  min-height: 380px; /* helps cards feel consistent like screenshot */
}

.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.10);
}

/* top header row: icon + titles */
.service-card__top{
  display:flex;
  gap: 16px;
  align-items:flex-start;
  margin-bottom: 14px;
}

.service-card__icon{
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background:#edf2f5;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 22px;
  flex: 0 0 54px;
}

.service-card__title{
  font-size: 1.2rem;
  font-weight: 800;
  color:#0f172a;
  margin: 0 0 6px;
}

.service-card__desc{
  color:#64748b;
  margin: 0;
  line-height: 1.6;
  font-size: 0.98rem;
}

/* bullet list like screenshot */
.service-card__list{
  margin: 12px 0 18px;
  padding-left: 18px;
  color:#475569;
}

.service-card__list li{
  margin: 0 0 8px;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* "Learn More →" */
.service-card__more{
  display:inline-flex;
  gap: 10px;
  align-items:center;
  font-weight: 700;
  color:#0b5a7c;
  font-size: 0.95rem;
}

.service-card__arrow{
  display:inline-block;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 980px){
  .core-services__grid{
    grid-template-columns: 1fr;
  }
}
