/* ================= ROOT & RESET ================= */
:root {
  --blue: #1D3C78;
  --teal: #00B3A4;
  --gray: #4A4A4A;
  --light: #F4F6F8;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: var(--gray);
  background: linear-gradient(180deg, #f7f9fc, #ffffff);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ================= TYPOGRAPHY ================= */
h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--blue);
  margin: 0 0 12px;
}

h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }

p { font-size: 1rem; margin: 0 0 16px; }

/* ================= LAYOUT ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}

.section {
  padding: clamp(50px, 8vw, 90px) 0;
}

.light {
  background: var(--light);
}

/* ================= HEADER ================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

.nav nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.nav nav a {
  font-size: 0.9rem;
  color: var(--gray);
}

/* ================= BRAND ================= */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.08);
}

.brand-mark {
  height: 42px;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  font-size: 0.7rem;
  text-transform: uppercase;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.contact-btn {
  background: #FFC107;
  color: #111;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  background: url('../assets/hero-image1.jpg') center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
}

.hero-text {
  color: #fff;
}

.hero-text p {
  color: #f1f1f1;
  font-size: 1.05rem;
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

/* ================= GRIDS ================= */
.grid-3,
.cards,
.metrics,
.job-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* ================= CARDS ================= */
.card,
.metric-card,
.job-card {
  background: #fff;
  padding: 28px 22px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.card:hover,
.metric-card:hover,
.job-card:hover {
  transform: translateY(-5px);
}

.card-icon,
.metric-icon,
.job-icon {
  font-size: 2.3rem;
  margin-bottom: 12px;
}

/* ================= METRICS ================= */
.metric-card .counter {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
}

/* ================= CONTACT ================= */
.contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.contact-info,
.contact-form {
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.contact-info {
  background: linear-gradient(135deg, #b8f1e3, #7fbfd4);
  color: #000;
}

.contact-info .info-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
}

/* ================= FORMS ================= */
.contact-form {
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.contact-form button {
  background: var(--blue);
  color: #fff;
  padding: 12px;
  border-radius: 24px;
  border: none;
  font-weight: 600;
}

/* ================= MAP ================= */
.map-container {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* ================= SOCIAL ICONS ================= */
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--teal);
  transform: translateY(-3px);
}


/* ================= FOOTER ================= */
footer {
  background: #212121;
  color: #fff;
  text-align: center;
  padding: 26px 12px;
  font-size: 0.85rem;
}


/* ================= DESKTOP BREAKPOINT ================= */
@media (min-width: 768px) {

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .cta {
    flex-direction: row;
    justify-content: flex-start;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards,
  .metrics,
  .job-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-cards-container {
    grid-template-columns: 1fr 1fr;
  }
}
/* ===== HAMBURGER ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--blue);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    background: #fff;
    padding: 16px;
    margin-top: 10px;
  }

  .nav-links.active {
    display: flex;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
/* ================= FULL-WIDTH MAP ================= */
.map-wrapper {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: 60px;
}

.map-wrapper iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

/* Taller map on large screens */
@media (min-width: 768px) {
  .map-wrapper iframe {
    height: 450px;
  }
}

/* ================= FOOTER ================= */
.footer {
  background-color: #111;
  color: #f0f0f0;
  font-family: 'Open Sans', sans-serif;
  padding: 40px 0 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.footer-logo {
  width: 50px;
  height: auto;
}

.footer-section h3 {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 600;
   color: #6183d2;
}

.footer-section p,
.footer-section ul {
  font-size: 14px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #f0f0f0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #1da1f2;
}

/* .social-icons a {
  margin-right: 12px;
  font-size: 18px;
  color: #f0f0f0;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #1da1f2;
} */

.social-icons a {
  margin-right: 15px;
  font-size: 20px; /* increase size */
  color: #f0f0f0;
  transition: color 0.3s;
  display: inline-block;
}

.social-icons a:hover {
  color: #1da1f2;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
  border-top: 1px solid #333;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
}

/* Center all Headings and subheadings */

.section h2,
.section > .container > h2 {
  text-align: center;
}

.section h2 + p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section h3 {
  text-align: center;
}
.card ul {
  list-style-position: inside;
  padding: 0;
  text-align: center;
}
/* Ensure all footer section headings are centered uniformly */
.footer-section h3 {
  text-align: center;
}
