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

body {
  background: #ffffff;
  color: #333;
  line-height: 1.6;
}

/* ================= HEADER ================= */
.header {
  position: sticky;
  top: 0;
  /* background: #083c7a; */
  background: #0b3c6f;
  /* background: white; */
  color: #fff;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 25px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  
}
 
.brand img {
  height: 50px;
  /* color: #fff; */
  background: white;
  font-size: auto;
  object-fit: contain;
  display: block;          /* mobile + desktop perfect */
  width: auto;
  /* padding: 4px; */
  /* border: 2px solid #fff; */
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255,255,255,0.6);
}
 
.brand span {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  /* white-space: nowrap; */
}
 
/* Mobile tweak */
@media (max-width: 768px) {
  .brand img {
    height: 36px;
  }
 
  .brand span {
    font-size: 16px;
  }
}

/* Logo + text container */
/* .logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
} */
 
/* Logo image */
/* .logo {
  width: 42px;
  height: 42px;
  object-fit: contain; */
 
  /* 🔥 White border effect */
  /* border: 2px solid #ffffff;
  border-radius: 50%;
  padding: 4px; */
 
  /* Optional glow (premium look) */
  /* box-shadow: 0 0 6px rgba(255,255,255,0.6);
} */
 
/* Brand text */
/* .brand-text {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
} */

.nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 22px;
  font-size: 14px;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #fff;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ================= HERO ================= */
.hero {
  background: linear-gradient(135deg, #0a66c2, #4aa3df);
  color: #fff;
  text-align: center;
  padding: 90px 20px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  max-width: 850px;
  margin: auto;
}

/* ================= BUTTON ================= */
.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 28px;
  background: #ffffff;
  color: #083c7a;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #083c7a;
  color: #fff;
}

/* ================= SECTIONS ================= */
.section {
  max-width: 1100px;
  margin: auto;
  padding: 70px 20px;
}

.section.light {
  background: #f2f8ff;
}

.section h2 {
  text-align: center;
  color: #083c7a;
  margin-bottom: 30px;
}

/* ================= SERVICES ================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #0a66c2, #4aa3df);
}

.card {
  background: #fff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.read-more {
  margin-top: 15px;
  padding: 10px 18px;
  background: #083c7a;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.read-more:hover {
  background: #0a66c2;
}

/* ================= WHY CHOOSE US ================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: auto;
}

.why-card {
  background: #f2f8ff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  transition: 0.3s;
}

.why-card:hover {
  background: #083c7a;
  color: #fff;
  transform: translateY(-5px);
}

/* ================= MISSION & VISION ================= */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.mv-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

/* ================= CONTACT SECTION ================= */

.contact-section {
  background: #eefbff;
  padding: 80px 20px;
}

.contact-section h2 {
  text-align: center;
  color: #083c7a;
  margin-bottom: 8px;
}

.contact-text {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
  font-size: 15px;
}

.contact-card {
  max-width: 760px;
  margin: auto;
  background: #fff;
  padding: 35px 40px;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

#contactForm {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#contactForm input {
  height: 52px;
  padding: 0 16px;
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid #cfcfcf;
}

#contactForm input:focus {
  border-color: #0a66c2;
  outline: none;
  box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.15);
}

/* Service Dropdown */

.services-wrapper {
  position: relative;
}

.services-toggle {
  height: 52px;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #fff;
  font-size: 15px;
}

.services-toggle:hover {
  border-color: #0a66c2;
}

.services-dropdown {
  display: none;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  padding: 12px;
}

.services-dropdown label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}

.services-dropdown label:hover {
  background: #f3f7fb;
}

.services-preview {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  background: #e9f7ef;
  border-left: 5px solid #2e7d32;
  border-radius: 8px;
  font-size: 14px;
  color: #1b5e20;
  font-weight: 500;
}

/* ===== BUTTON ===== */

#contactForm .btn {
  height: 52px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #083c7a, #0a66c2);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

#contactForm .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(10, 102, 194, 0.35);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ===== STATUS ===== */

.form-status {
  display: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
}

.form-status.success {
  display: block;
  background: #e6fffa;
  color: #065f46;
  border: 1px solid #34d399;
}

.form-status.error {
  display: block;
  background: #ffecec;
  color: #7f1d1d;
  border: 1px solid #f87171;
}

.contact-info {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #333;
}

/* Responsive */
@media (max-width: 600px) {
  .contact-card {
    padding: 25px 20px;
  }
}

/* ================= MODAL ================= */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  overflow-y: auto;
}

.modal-content {
  background: #fff;
  margin: 80px auto;
  padding: 30px;
  width: 90%;
  max-width: 600px;
  border-radius: 12px;
  position: relative;
}

.modal-content h3 {
  color: #083c7a;
  margin-bottom: 10px;
}

.modal-content ul {
  margin: 15px 0;
  padding-left: 20px;
}

.modal-content li {
  margin-bottom: 8px;
}

.close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/* ================= FOOTER ================= */
.footer {
  background: #083c7a;
  color: #fff;
  text-align: center;
  padding: 18px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    right: 0;
    top: 65px;
    background: #083c7a;
    width: 220px;
    flex-direction: column;
    display: none;
  }
  .nav.active {
    display: flex;
  }
  .nav a {
    padding: 14px;
    margin: 0;
  }
  .menu-toggle {
    display: block;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}
