/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

/* Header Top */
.header-top {
  background-color: #004080;
  color: white;
  padding: 10px 20px;
  font-size: 0.9rem;
  text-align: center;
}

/* Main Header */
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 40px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo img {
  max-width: 120px;
}

.navbar ol {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.navbar a {
  text-decoration: none;
  color: #004080;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #007bff;
}

.contact-info {
  text-align: right;
  font-size: 0.85rem;
  max-width: 200px;
}

/* About Section */
.about-main {
  background: #fff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-main h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #004080;
}

.about-main p,
.about-main h3 {
  max-width: 800px;
  margin-bottom: 15px;
}

/* FAQ Section */
.faq-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #eef2f5;
  padding: 60px 40px;
}

.faq-content {
  flex: 1 1 50%;
  padding-right: 40px;
}

.faq-image {
  flex: 1 1 40%;
}

.faq-image img {
  max-width: 100%;
  height: auto;
}

/* Stats Section */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  background: #004080;
  color: rgb(0, 0, 0);
  padding: 40px 20px;
}

.stats-item {
  flex: 1 1 200px;
  text-align: center;
  margin: 20px;
}

.stats-item img {
  max-width: 60px;
  margin-top: 10px;
}

/* Footer */
.footer {
  background: #222;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 40px;
}

.footer-section {
  flex: 1 1 250px;
  margin: 20px;
}

.footer-section h2 {
  color: #d4af37;
  margin-bottom: 15px;
}

.footer-section p,
.footer-section a {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-section form input,
.footer-section form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 4px;
}

.footer-section form button {
  background: #d4af37;
  color: #000;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

.footer-section.logo-blurb img {
  max-width: 100px;
  height: auto;
  margin-bottom: 10px;
}

/* Responsive Tweak */
@media (max-width: 768px) {
  .header-main,
  .stats,
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .faq-section {
    flex-direction: column;
  }

  .faq-content,
  .faq-image {
    padding: 0;
  }

  .contact-info {
    text-align: center;
    margin-top: 20px;
  }
}
/* Header Top */
.header-top {
  background-color: #004080;
  color: white;
  padding: 10px 20px;
  text-align: center;
  font-size: 0.9rem;
}

.header-top a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Main Header */
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 20px 40px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.logo img {
  max-width: 120px;
  height: auto;
}

.navbar ol {
  display: flex;
  list-style: none;
  gap: 25px;
}

.navbar a {
  text-decoration: none;
  color: #004080;
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #007bff;
}

.contact-info {
  max-width: 220px;
  font-size: 0.9rem;
  text-align: right;
}

.contact-info h3 {
  margin-bottom: 5px;
  color: #004080;
}
/* Breadcrumb Section */
.breadcrumb-section {
  background-color: #004080;
  color: white;
  padding: 20px 40px;
  text-align: center;
}

.breadcrumb-section a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
}

/* Intro Section */
.gos-main {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.gos-main h2 {
  font-size: 2.4rem;
  color: #004080;
  margin-bottom: 20px;
}

.gos-main p {
  max-width: 900px;
  margin: 0 auto 30px;
  font-size: 1rem;
  line-height: 1.6;
}

.gos-main-img img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Services Layout */
.gos-section {
  background-color: #eef2f5;
  padding: 60px 30px;
}

.gos-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #004080;
  margin-bottom: 40px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  padding: 20px;
  flex: 1 1 300px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  color: #004080;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: #333;
}

.service-card img {
  max-width: 100%;
  height: auto;
  margin-top: auto;
  border-radius: 4px;
}

/* Responsive Tweak */
@media (max-width: 768px) {
  .gos-main h2 {
    font-size: 1.8rem;
  }

  .service-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    max-width: 90%;
  }
}
.footer {
  background: #1a1a1a;
  color: white;
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-contact,
.footer-form,
.footer-links,
.footer-newsletter,
.footer-logo {
  flex: 1 1 300px;
  margin: 20px;
}

.footer-logo img {
  max-width: 100px;
  margin-bottom: 10px;
}

.footer-main h3,
.footer-secondary h3 {
  color: #d4af37;
  margin-bottom: 10px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer a:hover {
  text-decoration: underline;
}

.footer form input,
.footer form textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border-radius: 4px;
  border: none;
}

.footer form button {
  margin-top: 10px;
  padding: 10px 20px;
  background: #d4af37;
  color: black;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.footer-secondary {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #444;
  padding-top: 40px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  color: #aaa;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-main,
  .footer-secondary {
    flex-direction: column;
    align-items: center;
  }

  .footer-contact,
  .footer-form,
  .footer-links,
  .footer-newsletter,
  .footer-logo {
    max-width: 100%;
    text-align: center;
  }
}
/* === HERO CONTACT HEADING === */
.contact-hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('contact-banner.jpg') center/cover no-repeat;
  color: white;
  padding: 100px 20px 60px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contact-hero p {
  font-size: 1rem;
}

.contact-hero a {
  color: #ffd700;
  text-decoration: none;
}

.contact-hero .arrow {
  margin: 0 8px;
  color: #eee;
}

/* === FORM + DETAILS FLEX === */
.contact-form-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 60px 30px;
  background-color: #f9f9f9;
  gap: 40px;
}

.form-container {
  flex: 1 1 400px;
  max-width: 500px;
}

.form-container h2 {
  margin-bottom: 20px;
  color: #004080;
}

.form-container form input,
.form-container form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.95rem;
}

.form-container form button {
  padding: 12px 20px;
  background-color: #004080;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.contact-sidebar {
  flex: 1 1 250px;
  max-width: 300px;
  background-color: #004080;
  color: white;
  padding: 30px 20px;
  border-radius: 8px;
}

.contact-sidebar h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #ffd700;
}

/* === CONTACT METHOD CARDS === */
.contact-methods-centered {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.contact-card-centered {
  flex: 1 1 280px;
  max-width: 320px;
  background-color: #f9f9f9;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.contact-card-centered:hover {
  transform: translateY(-5px);
}

.contact-card-centered img {
  width: 64px;
  height: 64px;
  margin-bottom: 15px;
}

.contact-card-centered h3 {
  color: #004080;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.contact-card-centered p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #333;
}

.contact-card-centered .contact-detail {
  font-weight: bold;
  color: #004080;
  font-size: 1.1rem;
}

.chat-button {
  margin-top: 12px;
  padding: 10px 20px;
  background-color: #004080;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.chat-button:hover {
  background-color: #0066cc;
}

/* === MEDIA RESPONSIVE === */
@media (max-width: 768px) {
  .header-main,
  .contact-form-section,
  .contact-methods-centered {
    flex-direction: column;
    align-items: center;
  }

  .form-container,
  .contact-sidebar,
  .contact-card-centered {
    max-width: 90%;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }
}
/* Header Top Bar */
.header-top {
  background-color: #004080;
  color: #fff;
  padding: 8px 20px;
  text-align: center;
  font-size: 0.9rem;
}

.header-top a {
  color: #ffd700;
  text-decoration: none;
}

/* Main Header */
.header-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 20px 40px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo img {
  max-width: 140px;
  height: auto;
}

.navbar ol {
  display: flex;
  list-style: none;
  gap: 30px;
}

.navbar a {
  color: #004080;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #007bff;
}

.contact-info {
  text-align: right;
  max-width: 220px;
  font-size: 0.9rem;
}

.contact-info h3 {
  margin: 5px 0;
  color: #004080;
  font-size: 0.95rem;
}

.contact-info p {
  margin-bottom: 8px;
  font-size: 0.85rem;
}

/* Responsive Tweak */
@media (max-width: 768px) {
  .header-main {
    flex-direction: column;
    text-align: center;
  }

  .navbar ol {
    flex-direction: column;
    gap: 15px;
    margin: 15px 0;
  }

  .contact-info {
    text-align: center;
    margin-top: 15px;
  }
}
/* Services Hero */
.our-services-hero {
  background-color: #004080;
  color: white;
  text-align: center;
  padding: 60px 20px;
}
/* Home Link Services */
.our-services-hero a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
}

.our-services-hero h2 {
  font-size: 2.5rem;
  letter-spacing: 1px;
}

/* Services Grid */
.services-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 60px 30px;
  justify-content: center;
  background-color: #f9f9f9;
}

.service-card {
  flex: 1 1 300px;
  max-width: 350px;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  max-width: 100%;
  height: auto;
  margin-top: 15px;
  border-radius: 6px;
}

.service-card h3 {
  color: #004080;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .our-services-hero h2 {
    font-size: 2rem;
  }

  .service-card {
    max-width: 100%;
  }
}
/* OUR SERVICES HERO */
.our-services-hero {
  background: #004080;
  color: white;
  text-align: center;
  padding: 60px 20px;
}
.our-services-hero h2 {
  font-size: 2.5rem;
  letter-spacing: 1px;
}

/* SERVICE GRID */
.services-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  background: #f9f9f9;
  padding: 60px 20px;
}
.service-card {
  flex: 1 1 280px;
  max-width: 320px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card h3 {
  color: #2600fd;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.service-card p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 15px;
}
.service-card img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* STATS SECTION */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  background: #eef2f5;
  padding: 60px 20px;
  gap: 20px;
}
.stat-item {
  flex: 1 1 150px;
  text-align: center;
  padding: 20px;
}
.stat-item h3 {
  font-size: 2.5rem;
  color: #004080;
  margin-bottom: 8px;
}
.stat-item p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}
.stat-item img {
  max-width: 60px;
  height: auto;
}

/* FOOTER */
/* (reuse your existing `.footer`, `.footer-main`, `.footer-secondary`, `.footer-bottom` rules) */

/* RESPONSIVE TWEAKS */
@media (max-width: 768px) {
  .services-section,
  .stats {
    flex-direction: column;
    align-items: center;
  }
  .service-card,
  .stat-item {
    max-width: 90%;
  }
}