/* ==========================
   GENERAL STYLES
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  background: #ffffff;
  color: #222;
}

a {
  text-decoration: none;
}

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

/* ==========================
   HEADER / NAVIGATION
========================== */
.top {
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 10px 40px;
}

.top .logo-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top .logo-nav .logo {
  height: 60px;  /* fixed logo height */
  width: auto;
}

.top .logo-nav nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #003c88;
  font-weight: 600;
  font-size: 16px;
}

.top .logo-nav nav a.active {
  color: #ff3b3b;
}

/* ==========================
   HERO SECTIONS
========================== */
.hero, .about-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  box-sizing: border-box;
}

.hero {
  height: 90vh;
  background: linear-gradient(rgba(0,60,136,0.7), rgba(0,60,136,0.7)),
              url('images/hero.jpg') center/cover no-repeat;
}

.about-hero {
  height: 300px;
  background: linear-gradient(rgba(0,60,136,0.7), rgba(0,60,136,0.7)),
              url('images/hero-about.jpg') center/cover no-repeat;
  margin-top: 0;
}

.hero-content h1,
.about-hero h1 {
  margin-bottom: 10px;
  font-size: 48px;
}

.hero-content p,
.about-hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* ==========================
   SERVICES SECTION
========================== */
.services {
  padding: 60px 20px;
  text-align: center;
  background: #f7f9fc;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #003c88;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 60px;
  margin-bottom: 15px;
}

/* ==========================
   TESTIMONIALS
========================== */
.testimonials {
  padding: 60px 20px;
  text-align: center;
}

.testimonial {
  display: none;
  max-width: 600px;
  margin: auto;
  font-size: 18px;
}

.testimonial.active {
  display: block;
}

/* ==========================
   ABOUT SECTION
========================== */
.about-section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

.about-section h2 {
  font-size: 28px;
  color: #003c88;
  margin-top: 30px;
  margin-bottom: 15px;
}

.about-section p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* TEAM GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.team-card {
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

/* ==========================
   LEAD FORM (OPTIONAL)
========================== */
.lead-form {
  padding: 60px 20px;
  background: #003c88;
  color: #fff;
  text-align: center;
}

.lead-form h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.lead-form p {
  font-size: 18px;
  margin-bottom: 30px;
}

.form-box {
  max-width: 700px;
  margin: auto;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}

/* ==========================
   WHATSAPP FLOAT BUTTON
========================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  font-size: 28px;
  padding: 15px 18px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 999;
}

/* ==========================
   FOOTER
========================== */
footer {
  background: #003c88;
  color: #fff;
  padding: 20px 40px;
  text-align: center;
}

/* ==========================
   RESPONSIVE MEDIA QUERIES
========================== */
@media (max-width: 768px) {

  /* Header */
  .top .logo-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .top .logo-nav nav {
    margin-top: 10px;
  }

  .top .logo-nav nav a {
    margin-left: 0;
    margin-right: 15px;
  }

  /* Homepage hero */
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  /* About hero */
  .about-hero h1 {
    font-size: 28px;
  }

  .about-hero p {
    font-size: 16px;
  }

  /* Services grid */
  .service-grid {
    grid-template-columns: 1fr;
  }

  /* Team grid */
  .team-grid {
    grid-template-columns: 1fr;
  }
}
/* PARTNER BUTTON FIX */
button.service-card {
  cursor: pointer;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #003c88;
}
/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.contact-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-box h3 {
  margin-bottom: 15px;
  color: #003c88;
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
}

.contact-box button {
  background: #ff3b3b;
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}
/* ===============================
   MOBILE RESPONSIVE FIX (INDEX)
   =============================== */
@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  /* Header fix */
  header {
    padding: 10px 15px;
  }

  nav ul {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  nav ul li a {
    font-size: 14px;
  }

  /* Hero section fix */
  .hero {
    height: auto;
    min-height: auto;
    padding: 40px 15px;
    background-position: center;
  }

  .hero-content {
    position: static;
    width: 100%;
    padding: 20px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 22px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons a {
    width: 100%;
  }

  /* Remove extra white space */
  section {
    margin: 0;
    padding: 40px 15px;
  }

  /* Services cards */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Images responsive */
  img {
    max-width: 100%;
    height: auto;
  }
}
