/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 8%;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.logo img {
  height: 70px;
}

.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav ul li a {
  text-decoration: none;
  font-weight: 500;
  color: #0a2239;
  transition: color 0.3s;
}

.nav ul li a:hover,
.nav ul li a.active {
  color: #ff7a00;
}

.track-btn {
  padding: 8px 18px;
  background: #ff7a00;
  color: #fff !important;
  border-radius: 25px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #0a2239;
  border-radius: 3px;
}

/* About Hero Section */
.about-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 8% 80px; /* padding-top accounts for fixed header */
  gap: 40px;
}

.about-hero-content {
  flex: 1;
  max-width: 550px;
}

.about-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0a2239;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-hero-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #333;
}

.about-hero-content .cta-btn {
  padding: 12px 28px;
  background: #ff7a00;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.about-hero-content .cta-btn:hover {
  background: #e66a00;
}

.about-hero-image {
  flex: 1;
}

.about-hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0px 6px 20px rgba(0,0,0,0.15);
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 8%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 15px 20px;
    border-radius: 10px;
  }

  .nav.active {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .hamburger {
    display: flex;
  }

  .about-hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 5% 60px;
  }

  .about-hero-content h1 {
    font-size: 2rem;
  }

  .about-hero-image img {
    margin-top: 20px;
    max-width: 100%;
  }
}






/* About Company, Mission & Vision */
.about-details {
  padding: 80px 8%;
  background: #fff;
}

.about-block {
  margin-bottom: 60px;
  position: relative;
  animation: fadeUp 1s ease both;
  text-align: center;
}

.about-block h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0a2239;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.about-block h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 60%;
  height: 4px;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff7a00, #0a2239);
}

.about-block p {
  font-size: 1.1rem;
  color: #444;
  max-width: 850px;
  line-height: 1.7;
  margin: 0 auto;
}

/* Unique styling per section */
.about-block.company {
  padding-left: 20px;
  border-left: 5px solid #ff7a00;
}

.about-block.mission {
  padding-right: 20px;
  border-right: 5px solid #0a2239;
}

.about-block.vision {
  padding-left: 20px;
  border-left: 5px solid #ff7a00;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 900px) {
  .about-block {
    text-align: center;
    border: none;
    padding: 0;
  }

  .about-block h2::after {
    width: 100%;
  }
}



/* WHY CHOOSE US */
.why-choose {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 8%;
  background: #f9fafc;
  gap: 50px;
  flex-wrap: wrap;
}

.choose-left {
  flex: 1;
  min-width: 280px;
}

.choose-left h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0a2239;
  margin-bottom: 20px;
  position: relative;
}

.choose-left h2 span {
  color: #f47b20;
}

.choose-left p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  max-width: 500px;
}

.choose-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}

.reason {
  text-align: center;
  animation: fadeZoom 1s ease forwards;
  opacity: 0;
  transform: scale(0.9);
}

.reason .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 12px;
  background: #fff;
  border-radius: 50%;
  border: 3px solid #f47b20;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #0a2239;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.reason p {
  font-size: 1rem;
  color: #222;
  font-weight: 600;
}

/* Animations */
@keyframes fadeZoom {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.reason:nth-child(1) { animation-delay: .1s; }
.reason:nth-child(2) { animation-delay: .2s; }
.reason:nth-child(3) { animation-delay: .3s; }
.reason:nth-child(4) { animation-delay: .4s; }
.reason:nth-child(5) { animation-delay: .5s; }
.reason:nth-child(6) { animation-delay: .6s; }

/* Mobile */
@media (max-width: 900px) {
  .why-choose {
    flex-direction: column;
    text-align: center;
  }

  .choose-left p {
    margin: 0 auto 30px;
  }
}









:root{
  --dear-navy: #0A1A3C;
  --dear-orange: #F47B20;
  --dear-gold: #FFD700;
}

/* SIMPLE WHITE FOOTER */
.simple-footer {
  background: #fff;
  color: var(--dear-navy);
  padding: 18px 6%;
  border-top: 1px solid rgba(10,26,60,0.06);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Top row layout */
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}

/* LEFT group: logo + actions */
.footer-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* logo image */
.footer-logo-img {
  height: 48px;      /* adjust to taste */
  width: auto;
  display: block;
}

/* action buttons next to logo */
.footer-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* small pill buttons */
.footer-btn {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.92rem;
  transition: transform .15s ease, box-shadow .15s ease;
}

/* contact button: subtle outline */
.footer-btn.contact {
  background: transparent;
  color: var(--dear-navy);
  border: 1.5px solid rgba(10,26,60,0.08);
}

/* track button: brand filled */
.footer-btn.track {
  background: var(--dear-orange);
  color: #fff;
  border: 1.5px solid var(--dear-orange);
}

.footer-btn:hover { transform: translateY(-3px); }

/* RIGHT group: social icons aligned far right */
.footer-right {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* social icon links */
.social-link {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--dear-navy);
  text-decoration: none;
  background: rgba(10,26,60,0.03);
  transition: background .15s ease, transform .15s ease, color .15s ease;
}

.social-link:hover {
  background: var(--dear-orange);
  color: #fff;
  transform: translateY(-3px);
}

/* bottom bar */
.footer-bottom {
  margin-top: 12px;
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid rgba(10,26,60,0.04);
  font-size: 0.92rem;
  color: #445066;
}

.footer-bottom span { color: var(--dear-navy); font-weight: 700; }

/* RESPONSIVE: stack vertically on small screens */
@media (max-width: 780px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-left { gap: 12px; justify-content: center; }
  .footer-right { order: 3; } /* ensure social icons go last */
  .footer-actions { justify-content: center; }
}



/* WhatsApp Floating Button */
.whatsapp-help {
  position: fixed;
  bottom: 20px;
  right: 20px;
  text-align: center;
  z-index: 1000;
}

.whatsapp-help .help-text {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.whatsapp-float {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #20ba5a;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}
