/* =========================
   RESET & GLOBAL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #f6f8fb;
  color: #333;
}

/* GLOBAL IMAGE SAFETY */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* LOGO */
.nav-left img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

/* MENU */
.nav-right {
  display: flex;
  gap: 32px;
}

.nav-right a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  position: relative;
}

.nav-right a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #0b3c5d;
  transition: width 0.3s ease;
}

.nav-right a:hover::after {
  width: 100%;
}

.nav-right a:hover {
  color: #0b3c5d;
}

/* =========================
   HERO
========================= */
.hero {
  background: linear-gradient(135deg, #0b3c5d, #0e517a);
  padding: 90px 40px;
  color: #ffffff;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-text h1 {
  font-size: 44px;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.hero-btn {
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.primary-btn {
  background: #ffffff;
  color: #0b3c5d;
}

.secondary-btn {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.hero-tagline {
  margin-bottom: 15px;
  font-size: 16px;
}

.hero-trust {
  font-size: 14.5px;
  line-height: 1.8;
}

/* HERO IMAGE */
.hero-image img {
  max-width: 420px;
  width: 100%;
  margin-left: auto;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 80px 20px;
  text-align: center;
}

.section h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #0b3c5d;
}

.section p {
  max-width: 800px;
  margin: auto;
  font-size: 16px;
}

/* =========================
   ABOUT
========================= */
.about-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-text {
  flex: 1;
  text-align: left;
}

.about-image img {
  max-width: 480px;
  width: 100%;
  border-radius: 12px;
}

/* =========================
   SERVICES
========================= */
.services {
  max-width: 1100px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-box {
  background: #ffffff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  text-align: left;
}

.service-box img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-box h3 {
  color: #0b3c5d;
  margin-bottom: 8px;
}

.service-box p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #555;
}

/* =========================
   WHY CHOOSE US
========================= */
.why-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-box {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.why-icon {
  font-size: 34px;
  margin-bottom: 15px;
}

/* =========================
   CONTACT (FINAL – WHATSAPP ONLY)
========================= */
.contact-subtext {
  margin-bottom: 50px;
  color: #555;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-image img {
  max-width: 480px;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.contact-content {
  text-align: left;
  max-width: 460px;
}

.contact-content h3 {
  font-size: 28px;
  margin-bottom: 14px;
  color: #0b3c5d;
}

.contact-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

.contact-points {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.contact-points li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}

.whatsapp-contact-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.45);
}

.privacy-note {
  font-size: 13px;
  margin-top: 12px;
  color: #777;
}

/* =========================
   FOOTER
========================= */
footer {
  background: #0b3c5d;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

.disclaimer {
  font-size: 12px;
  margin-top: 10px;
  opacity: 0.9;
}

/* =========================
   WHATSAPP FLOAT
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  z-index: 2000;
}

.whatsapp-float img {
  width: 26px;
  height: 26px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
  .hero-container,
  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .services,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-image img,
  .about-image img,
  .contact-image img {
    margin: auto;
  }

  .contact-content {
    text-align: center;
  }

  .navbar {
    padding: 14px 25px;
  }

  .nav-left img {
    height: 58px;
  }
}

