.contact-section {
  padding: 80px 20px;
  background: #f8f9fb;
  font-family: 'Segoe UI', sans-serif;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.section-title {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.07);
}

.contact-card h2 {
  margin-bottom: 25px;
  font-size: 26px;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-item h4 {
  margin-bottom: 5px;
  font-size: 16px;
  color: #555;
}

.contact-item a {
  text-decoration: none;
  color: #0077cc;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

.connect-title {
  margin-top: 30px;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f3f6;
  border-radius: 50%;
  transition: 0.3s ease;
}

.social-links a:hover {
  background: #0077cc;
  transform: translateY(-4px);
}

.social-links img {
  width: 22px;
  height: 22px;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    height: 350px;
  }
}




























:root {
  --primary: #0a1a44;
  --accent: #2563eb;
  --bg: #f4f6fb;
  --card: #ffffff;
  --text: #1f2937;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
}



/* ================= HEADER ================= */
.contact_header {
  width: 100%;
  /*max-width: 1200px;*/
  margin: auto;
  height: 260px;
  background-image: linear-gradient(rgba(10,26,68,0.6), rgba(10,26,68,0.6)), url('our_contact_images/our_contact_1.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 0rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
}

.contact_header_child_1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
}

.contact_header_child_2 h1 {
  margin: 0.5rem 0 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: #e5e7eb;
}

/* ================= MAIN LAYOUT ================= */
.contact_map_container {
  width: 90%;
  max-width: 1200px;
  margin: 1rem auto 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
}

/* ================= MAP ================= */
.map_container {
  background: var(--card);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.map_container_child {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

iframe {
  border-radius: 0.75rem;
}

/* ================= CONTACT DETAILS ================= */
.contact_details_container {
  background: var(--card);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.contact_details_container h2 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.contact_details_container p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 1rem;
}

.contact_details_container strong {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 500;
  color: #333;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s, transform 0.2s;
}

.social-item img {
  width: 24px;
  height: 24px;
}

.social-item:hover {
  background: #f2f2f2;
  transform: translateY(-2px);
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 48px;
  height: 3px;
  background: #0a66c2;
  display: block;
  margin-top: 6px;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .contact_map_container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .contact_header_child_1 {
    font-size: 1.9rem;
  }
}