:root{
  --hero-height: 280px;           /* adjust height if you want */
  --overlay1: rgba(7, 95, 150, .80);  /* deep teal */
  --overlay2: rgba(7, 95, 150, .55);  /* lighter teal */
  --text-light: #ffffff;
  --shadow: 0 12px 28px rgba(0,0,0,.16);
}

/* Simple page base if needed */
body{margin:0;font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:#0f1b2b;background:#fff}

/* ---------- Contact hero ---------- */
.contact-hero{
  position: relative;
  min-height: var(--hero-height);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px 16px;

  /* BG image + teal overlay like screenshot */
  background:
    linear-gradient(180deg, var(--overlay1) 0%, var(--overlay2) 55%, rgba(7,95,150,0.0) 100%),
    /* fallback if image not found: solid color */
    url("/assets/contact-hero.jpg") center/cover no-repeat,
    #0a5b93;
  color: var(--text-light);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-hero::after{
  /* soft vignetting to increase contrast on edges */
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(100% 70% at 50% 50%, rgba(0,0,0,0) 60%, rgba(0,0,0,.15) 100%);
  pointer-events:none;
}

.contact-hero__inner{
  position: relative; z-index: 1;
  max-width: 880px;
  padding: 0 12px;
}

.contact-hero h1{
  margin:0 0 10px;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: .3px;
}

.contact-hero p{
  margin:0;
  color: rgba(255,255,255,.92);
  font-size: clamp(14px, 2.3vw, 16px);
  line-height: 1.7;
  max-width: 720px;
  margin-inline: auto;
}

/* Optional main spacing */
.contact-content{ padding: 48px 16px; max-width: 1180px; margin: 0 auto; }

/* Responsive tweak for small screens */
@media (max-width: 520px){
  :root { --hero-height: 240px; }
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap");

:root{
  --gt-blue1:#1e4c88;      /* form gradient top */
  --gt-blue2:#0f3e80;      /* form gradient bottom */
  --gt-ink:#0d2238;
  --gt-white:#fff;
  --gt-muted:rgba(255,255,255,.78);
  --gt-shadow:0 22px 60px rgba(9,34,74,.25);
  --gt-r:22px;             /* corner radius */
}

/* section wrapper */
.getintouch{
  background:#f3f9ff;
  padding:64px 5% 110px;
  font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

/* two panels with exact sizes & overlap */
.gt-wrap{
  max-width:1120px;
  margin:0 auto;
  display:grid;
  grid-template-columns:600px 470px;  /* EXACT like reference */
  align-items:center;
  gap:0;
  position:relative;
}

/* LEFT IMAGE CARD */
.gt-imgcard{
  width:600px; height:370px;
  margin:0;
  position:relative;
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--gt-shadow);
  background:#0a376a;
}
.gt-imgcard img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  filter:saturate(1.05) contrast(1.02) brightness(.95);
}

/* Huge text overlay */
.gt-headlines{
  position:absolute; inset:0;
  display:flex; flex-direction:column; justify-content:center;
  pointer-events:none;
  padding-left:38px;
}
.gt-headlines span{
  color:rgba(255,255,255,.92);
  font-weight:800;
  font-size:120px;              /* big like screenshot */
  line-height:.86;
  letter-spacing:.01em;
}

/* tiny link bottom-left */
.gt-sign{
  position:absolute; left:38px; bottom:26px;
  color:#e6f0ff; text-decoration:none;
  letter-spacing:.18em; font-size:15px;
}

/* RIGHT FORM CARD */
.gt-form{
  width:470px; min-height:370px;
  margin-left:-70px;             /* overlap onto image card */
  padding:28px 30px 38px;
  border-radius:var(--gt-r);
  background:linear-gradient(180deg,var(--gt-blue1) 0%, var(--gt-blue2) 100%);
  color:var(--gt-white);
  box-shadow:var(--gt-shadow);
  position:relative;
  z-index:2;
}

/* round close button */
.gt-x{
  position:absolute; right:16px; top:16px;
  width:34px; height:34px; border-radius:50%;
  border:0; background:rgba(255,255,255,.22);
  color:#fff; font-size:20px; line-height:1;
  display:grid; place-items:center; cursor:pointer;
}
.gt-x:hover{ background:rgba(255,255,255,.3); }

.gt-form h3{
  margin:6px 0 22px;
  font-size:32px; font-weight:700;
}

/* underlined inputs + label caps */
.gt-row{ display:block; margin:14px 0 18px; }
.gt-row > span{
  display:block; color:var(--gt-muted);
  font-size:12px; letter-spacing:.12em;
  margin-bottom:10px;
}
.gt-row input{
  width:100%; border:0; outline:none;
  background:transparent; color:#fff;
  padding:8px 0 10px; font-size:16px;
  border-bottom:1px solid rgba(255,255,255,.35);
}
.gt-row textarea{
  width:100%; border-radius:10px;
  border:1px solid rgba(255,255,255,.28);
  background:transparent; color:#fff;
  padding:12px 14px; outline:none; resize:vertical;
  margin-bottom: 40px;
}

/* pill SEND button near bottom-left (exact look) */
.gt-send{
  position:absolute; 
  left:38px; 
  bottom:24px;
  padding:12px 28px;
  border:none; border-radius:999px;
  background:#fff; color:var(--gt-ink);
  font-weight:800; letter-spacing:.06em;
  box-shadow:0 18px 38px rgba(0,0,0,.18);
  cursor:pointer;
}
.gt-send:hover{ transform:translateY(-1px); }

/* responsive keep-overlap feel */
@media (max-width:1060px){
  .gt-wrap{ grid-template-columns:1fr; }
  .gt-imgcard{ width:100%; }
  .gt-form{
    width:clamp(320px,92%,520px);
    margin: -70px auto 0;  /* overlap hint on mobile */
  }
  .gt-headlines span{ font-size:clamp(64px,18vw,120px); }
}


.map-section{
  padding: 40px 5% 80px;
  background: #f6fbff; /* match your page bg; tweak as needed */
}

.map-container{
  max-width: 1140px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  overflow: hidden; /* rounds the iframe corners */
  background:#fff;
}

/* Make iframe responsive */
.map-embed{
  display: block;
  width: 100%;
  height: min(60vh, 420px); /* responsive height; adjust if you want */
  border: 0;
}


:root {
  --blue-top: #0b4fad;
  --blue-bottom: #1b6ed0;
  --text-light: #fff;
  --text-dark: #0f264a;
}

/* Section container */
.learn-section {
  position: relative;
  background: #f8fbff;
  overflow: hidden;
}

/* Top hero area */
.learn-hero {
  background: linear-gradient(135deg, var(--blue-top), var(--blue-bottom));
  color: var(--text-light);
  text-align: center;
  padding: 100px 20px 160px;
  position: relative;
}

.learn-hero h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
}

.learn-hero p {
  max-width: 700px;
  margin: 0 auto 28px;
  line-height: 1.7;
  font-size: 16px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue-top);
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}

/* Floating cards */
.learn-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
  margin-top: -100px; /* float above the blue section */
  padding-bottom: 80px;
  z-index: 2;
}

.card {
  background: #fff;
  width: 300px;
  padding: 36px 28px;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.card img {
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.card p {
  color: #6a7a96;
  font-size: 14px;
  line-height: 1.6;
}

.card:hover,
.card.active {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

/* Underline highlight for active card */
.card.active::after {
  content: "";
  display: block;
  height: 4px;
  width: 70px;
  background: var(--blue-bottom);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* Responsive layout */
@media (max-width: 768px) {
  .learn-cards {
    flex-direction: column;
    align-items: center;
  }
  .card {
    width: 90%;
  }
}
