/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  color: #1d1d1f;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  background: #0a2540;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

nav a {
  color: #fff;
  margin-left: 25px;
  text-decoration: none;
}

nav a.active {
  border-bottom: 2px solid #f9b233;
}

/* HERO */
.hero,
.page-hero {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero {
  height: 50vh;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.hero-content {
  position: relative;
  color: #fff;
  max-width: 800px;
}

.hero h1 {
  font-size: 48px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 35px;
  background: #f9b233;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.light-bg {
  background: #f4f6f8;
}

.section-title {
  text-align: center;
  font-size: 36px;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  padding: 20px 20px 0;
}

.service-card p {
  padding: 10px 20px 25px;
}

/* SERVICE DETAIL */
.service-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  border-radius: 12px;
}

/* PROCESS GRID */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.process-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.process-card span {
  font-size: 28px;
  font-weight: bold;
  color: #f9b233;
  display: block;
  margin-bottom: 10px;
}

/* STATS SECTION */
.stats {
  background: #0a2540;
  color: #fff;
  padding: 70px 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stats h3 {
  font-size: 40px;
  color: #f9b233;
  margin-bottom: 10px;
}

/* CTA SECTION */
.cta {
  background: linear-gradient(to right,#0a2540,#144272);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.cta .btn {
  margin-top: 25px;
}

/* ABOUT */
.about-flex {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
}

/* VALUES GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
}

/* CONTACT */
.contact-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-box {
  background: #f4f6f8;
  padding: 30px;
  border-radius: 10px;
}

/* FOOTER */
.footer {
  background: #0a2540;
  color: white;
  text-align: center;
  padding: 25px 0;
}

.social {
  margin-top: 15px;
}

.social a {
  margin-right: 15px;
  color: #f9b233;
  text-decoration: none;
}

/* ANIMATIONS */
.fade-in,
.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
  .service-row,
  .service-row.reverse,
  .about-flex,
  .contact-grid {
    flex-direction: column;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
}






/* Extra styling for the Google Form */
.contact-box iframe {
  width: 100%;
  max-width: 600px;
  height: 650px;
  border: none;
  margin-top: 20px;
}
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.contact-info, .contact-box {
  flex: 1 1 300px;
}