/* =========================
   Codebility Offshore Pvt. Ltd.
   Professional Responsive CSS
   Theme based on logo colors
========================= */

/* ---------- CSS RESET ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #0f172a;
  background: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- BRAND COLORS ---------- */
:root {
  --navy: #2a316f;
  --teal: #1fa69c;

  --text: #0f172a;
  --muted: #64748b;

  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --card: #ffffff;

  --border: #e5e7eb;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);

  --radius: 16px;
  --container: 1120px;
}

/* ---------- LAYOUT HELPERS ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

.section-header {
  text-align: center;
  margin-bottom: 34px;
}

.section-title {
  font-size: clamp(1.6rem, 1.2rem + 1vw, 2.2rem);
  margin: 0 0 10px;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.section-subtitle {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(31, 166, 156, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(31, 166, 156, 0.32);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(42, 49, 111, 0.25);
  color: var(--navy);
}

.btn-secondary:hover {
  border-color: rgba(42, 49, 111, 0.45);
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
}

/* =========================
   HEADER / NAV
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

/* Logo container */
.brand {
  display: flex;
  align-items: center;
}

/* Logo image */
.brand-logo {
  height: 60px;     /* Desktop size */
  width: auto;
  border-radius: 50%;      /* Keep aspect ratio */
  max-width: 100%;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 1024px) {
  .brand-logo {
    height: 50px;
  }
}

/* Mobile */
@media (max-width: 720px) {
  .brand-logo {
    height: 42px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .brand-logo {
    height: 36px;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  font-weight: 600;
  color: rgba(42, 49, 111, 0.92);
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
  background: rgba(31, 166, 156, 0.1);
  color: var(--navy);
}


/* Mobile menu button */
.nav-toggle {
  display: none;
  border: 1px solid rgba(42, 49, 111, 0.2);
  background: #ffffff;
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle-line {
  width: 22px;
  height: 2px;
  background: var(--navy);
  display: block;
}

.nav-toggle-line + .nav-toggle-line {
  margin-top: 5px;
}

/* =========================
   MOBILE NAV FIX
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

/* IMPORTANT: make header-inner a positioning context */
.header-inner {
  position: relative;
}

@media (max-width: 720px) {
  /* show hamburger */
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 0;
  }

  /* dropdown menu (hidden by default but NOT display:none) */
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;

    display: flex;                /* keep it flex */
    flex-direction: column;
    align-items: stretch;
    gap: 10px;

    background: #ffffff;
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);

    /* hidden state */
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  /* open state */
  .nav.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* make links look nicer in dropdown */
  .nav-link {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
  }

  /* make CTA full width */
  .nav .btn {
    width: 100%;
  }
}


/* =========================
   HERO
========================= */
.hero {
  padding: 74px 0 64px;
  background:
    radial-gradient(900px 420px at 15% 5%, rgba(31, 166, 156, 0.13), transparent 60%),
    radial-gradient(900px 420px at 85% 15%, rgba(42, 49, 111, 0.14), transparent 60%),
    linear-gradient(180deg, #ffffff, var(--bg-soft));
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 32px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31, 166, 156, 0.12);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 0 14px;
}

.hero-title {
  font-size: clamp(2rem, 1.4rem + 2vw, 3.1rem);
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.hero-subtitle {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: var(--radius);
  padding: 14px 12px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.stat-number {
  display: block;
  font-weight: 800;
  color: var(--navy);
  font-size: 1.2rem;
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-media {
  position: relative;
}

.hero-image {
  width: 100%;
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(229, 231, 235, 0.9);
}

.shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.9;
}

.shape-1 {
  width: 120px;
  right: -14px;
  bottom: -18px;
  filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.12));
}



.text-accent {
  color: #1fa69c; /* Teal brand color */
}

/* =========================
   FEATURES
========================= */
.features {
  padding: 72px 0;
  background: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--card);
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  border-color: rgba(31, 166, 156, 0.35);
}

.feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}

.feature-title {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.05rem;
}

.feature-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* =========================
   SERVICES
========================= */
/* ===================== OUR SERVICES ===================== */

/* =========================
   SERVICES (PILLARS VERSION) – THEME MATCH
   Paste BELOW your existing SERVICES styles
========================= */

.services {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  background: linear-gradient(
    180deg,
    var(--bg-soft) 0%,
    rgba(246, 248, 252, 0.65) 45%,
    #ffffff 100%
  );
}

/* Soft decorative blobs */
.services::before,
.services::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.22;
  pointer-events: none;
}

.services::before {
  top: -260px;
  left: -240px;
  background: radial-gradient(circle at 30% 30%, rgba(31, 166, 156, 0.55), transparent 60%);
}

.services::after {
  bottom: -300px;
  right: -240px;
  background: radial-gradient(circle at 30% 30%, rgba(42, 49, 111, 0.55), transparent 60%);
}

.services-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 26px;
}

.services-header h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: -0.02em;
}

.services-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Pillars layout */
.pillars-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

/* Pillar container – premium card */
.pillar {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
  padding: 18px;
  backdrop-filter: blur(6px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.10);
  border-color: rgba(31, 166, 156, 0.25);
}

/* Pillar title with accent bar */
.pillar-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
  padding: 12px 12px;
  border-radius: 14px;
  background: linear-gradient(
    90deg,
    rgba(42, 49, 111, 0.08),
    rgba(31, 166, 156, 0.08)
  );
  color: var(--navy);
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  border: 1px solid rgba(42, 49, 111, 0.10);
}

.pillar-title::after {
  content: "";
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 30%, rgba(31, 166, 156, 0.30), rgba(42, 49, 111, 0.10));
  border: 1px solid rgba(31, 166, 156, 0.20);
  box-shadow: 0 14px 28px rgba(31, 166, 156, 0.12);
  flex: 0 0 auto;
}

/* Cards inside each pillar */
.service-cards {
  display: grid;
  gap: 14px;
}

/* Make each inner card stronger + branded */
.services .service-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: var(--radius);
  padding: 18px 16px 16px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}

/* Accent left rail */
.services .service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--teal), rgba(42, 49, 111, 0.70));
  opacity: 0.85;
}

.services .service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
  border-color: rgba(42, 49, 111, 0.22);
}

.services .service-card h4 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.services .service-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.98rem;
}

/* Cleaner bullet list with custom check dots */
.services .service-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.services .service-card li {
  position: relative;
  padding-left: 26px;
  color: rgba(15, 23, 42, 0.86);
  line-height: 1.55;
  font-size: 0.98rem;
}

/* Teal check badge */
.services .service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(31, 166, 156, 0.14);
  border: 1px solid rgba(31, 166, 156, 0.28);
  box-shadow: 0 8px 18px rgba(31, 166, 156, 0.12);
}

/* Small check mark */
.services .service-card li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.62em;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}

/* Responsive */
@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .pillar {
    padding: 16px;
  }
}

@media (max-width: 720px) {
  .services {
    padding: 72px 0;
  }

  .pillar-title::after {
    width: 40px;
    height: 40px;
  }

  .services .service-card {
    padding: 16px 14px 14px;
  }
}
/* =========================
   ABOUT
========================= */
.about {
  padding: 78px 0;
  background: #ffffff;
}

.about-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.about-image {
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(229, 231, 235, 0.9);
}

.about-text {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.highlight {
  border: 1px solid rgba(229, 231, 235, 0.95);
  background: rgba(246, 248, 252, 0.55);
  border-radius: var(--radius);
  padding: 14px 12px;
}

.highlight-title {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 1rem;
}

.highlight-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}
/* =========================
   GALLERY
========================= */
.gallery {
  padding: 78px 0;
  background: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

/* Creates a professional “masonry-like” layout */
.gallery-item {
  margin: 0;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.95);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  background: #ffffff;
  transform: translateZ(0);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Desktop layout (6 images) */
.gallery-item:nth-child(1) { grid-column: span 6; grid-row: span 2; min-height: 320px; }
.gallery-item:nth-child(2) { grid-column: span 3; grid-row: span 1; min-height: 150px; }
.gallery-item:nth-child(3) { grid-column: span 3; grid-row: span 1; min-height: 150px; }
.gallery-item:nth-child(4) { grid-column: span 3; grid-row: span 1; min-height: 150px; }
.gallery-item:nth-child(5) { grid-column: span 3; grid-row: span 1; min-height: 150px; }
.gallery-item:nth-child(6) { grid-column: span 6; grid-row: span 1; min-height: 200px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }
}

@media (max-width: 720px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    min-height: 220px;
  }
}
/* =========================
   TEAM SECTION (PREMIUM SLIDER)
========================= */

.team {
  padding: 110px 0; /* Bigger section spacing */
  background: #f6f8fc;
  text-align: center;
}

.team-slider {
  display: grid;
  grid-template-columns: 70px 1fr 70px; /* Larger arrow spacing */
  align-items: center;
  gap: 20px;
  margin-top: 60px;
}

/* Viewport */
.team-viewport {
  overflow: hidden;
  border-radius: 22px;
}

/* Track */
.team-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

/* Individual Slide */
.team-slide {
  min-width: 100%;
  padding: 60px 30px; /* Bigger padding */
  background: #ffffff;
  border: 1px solid rgba(229,231,235,0.95);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(15,23,42,0.12);
}

/* Image */
.team-slide img {
  width: 180px;        /* Bigger image */
  height: 180px;       /* Bigger image */
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #1fa69c;
  margin-bottom: 28px;
  box-shadow: 0 20px 35px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-slide:hover img {
  transform: scale(1.05);
  border-color: #2a316f;
}

/* Name */
.team-slide h3 {
  margin: 0;
  font-size: 1.6rem;   /* Bigger name */
  font-weight: 800;
  color: #2a316f;
}

/* Role */
.team-slide .role {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1fa69c;
  position: relative;
}

/* Decorative underline */
.team-slide .role::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: rgba(31,166,156,0.6);
  border-radius: 50px;
  margin: 14px auto 0;
}

/* =========================
   SLIDER BUTTONS
========================= */

.slider-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: #2a316f;
  color: white;
  font-size: 26px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.slider-btn:hover {
  background: #1fa69c;
  transform: scale(1.08);
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablet */
@media (max-width: 1024px) {
  .team-slider {
    grid-template-columns: 60px 1fr 60px;
  }

  .team-slide {
    padding: 50px 25px;
  }

  .team-slide img {
    width: 160px;
    height: 160px;
  }
}

/* Mobile */
@media (max-width: 720px) {
  .team-slider {
    grid-template-columns: 50px 1fr 50px;
    gap: 12px;
  }

  .team-slide {
    padding: 40px 20px;
  }

  .team-slide img {
    width: 140px;
    height: 140px;
  }

  .slider-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}


/* =========================
   CONTACT
========================= */
.contact {
  padding: 78px 0;
  background: var(--bg-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 12px;
}

.info-card {
  background: var(--card);
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.info-title {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 1.05rem;
}

.info-text {
  margin: 0;
  color: var(--muted);
}

.info-text a {
  color: var(--navy);
  font-weight: 600;
}

.info-text a:hover {
  color: var(--teal);
}

.contact-form {
  background: var(--card);
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.form-row {
  margin-bottom: 14px;
}

label {
  display: block;
  font-weight: 700;
  color: rgba(42, 49, 111, 0.95);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

input,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(229, 231, 235, 1);
  outline: none;
  font: inherit;
  color: var(--text);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
  min-height: 140px;
}

input:focus,
textarea:focus {
  border-color: rgba(31, 166, 156, 0.7);
  box-shadow: 0 0 0 4px rgba(31, 166, 156, 0.12);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* =========================
   LOCATION / MAP
========================= */
.location {
  padding: 78px 0;
  background: #ffffff;
}

.map-wrapper {
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.95);
  box-shadow: var(--shadow);
}

.map-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.92);
  padding-top: 46px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
  padding-bottom: 32px;
}

.footer-logo {
 height: 48px;
  width: 48px;          /* Make width equal to height */
  border-radius: 50%;   /* Makes it perfectly round */
  object-fit: cover;    /* Keeps image proportional */
  
}

.footer-text {
  margin: 2;
  color: rgba(255, 255, 255, 0.8);
  max-width: 50ch;
}

.footer-title {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.05rem;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin: 8px 0;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--teal);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 14px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

/* =========================
   RESPONSIVE BREAKPOINTS
========================= */


/* Large tablets */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* Phones */
@media (max-width: 720px) {


  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
  }

  .hero {
    padding: 62px 0 54px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .map-image {
    height: 320px;
  }
}

/* Very small phones */
@media (max-width: 420px) {
  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}
