/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: #fff;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, box-shadow 0.4s;
  z-index: 1000;
  background: transparent;
}

.header.scrolled {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Logo image */
.logo img {
  height: 100px;
  filter: brightness(0) invert(1); /* makes logo white by default */
  transition: filter 0.3s ease-in-out;
}

/* Restore original colors when scrolled */
.header.scrolled .logo img {
  filter: none;
}

/* Navbar */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.header.scrolled .navbar ul li a {
  color: #0A1A3C; /* Navy when scrolled */
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: #F47B20; /* Orange */
}

.tracking-btn {
  background: #F47B20;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.tracking-btn:hover {
  background: #ff944d;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
}

.header.scrolled .hamburger span {
  background: #0A1A3C;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Hero */
.hero {
  height: 100vh;
  background: url('images/home.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  color: #fff;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 26, 60, 0.75);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

/* Fade In Animation */
.fade-in {
  opacity: 0;
  animation: fadeInUp 2s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #F47B20;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-btn {
  background: #F47B20;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #ff944d;
}

/* Mobile */
@media (max-width: 900px) {
  .navbar {
    position: absolute;
    top: 70px;
    left: -100%;
    background: #fff;
    width: 100%;
    transition: 0.3s;
  }

  .navbar ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
  }

  .navbar.active {
    left: 0;
  }

  .navbar ul li a {
    color: #0A1A3C;
  }

  .tracking-btn {
    background: #F47B20;
    color: #fff;
  }

  .hamburger {
    display: flex;
  }
}



/* Brand vars (adjust to your saved logo colors if needed) */
:root{
  --dear-navy: #0A1A3C;
  --dear-orange:#F47B20;
  --dear-muted:#f4f7f9;
  --dear-card-radius:18px;
}

/* ABOUT OVERLAY WRAPPER (keeps spacing and background under the card) */
.dearmah-about-overlay{
  background: var(--dear-muted);
  padding: 110px 20px 80px; /* space for overlap */
}

/* CARD that overlaps the hero */
.dearmah-about-card{
  max-width: 1100px;
  margin: -100px auto 0; /* the negative margin overlaps the hero */
  background: #ffffff;
  border-radius: var(--dear-card-radius);
  box-shadow: 0 18px 40px rgba(10,26,60,0.12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  overflow: hidden;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 700ms cubic-bezier(.2,.9,.25,1), opacity 600ms ease;
}

/* When in view — slide up + fade */
.dearmah-about-card.in-view{
  transform: translateY(0);
  opacity: 1;
}

/* left image / media */
.dearmah-about-media{
  min-height: 320px;
  display: block;
  overflow: hidden;
}
.dearmah-about-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center;
}

/* right text body */
.dearmah-about-body{
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dearmah-about-body h2{
  color: var(--dear-navy);
  font-size: 1.9rem;
  margin-bottom: 14px;
}
.dearmah-about-body p{
  color: #233147;
  margin-bottom: 12px;
  line-height: 1.6;
}
.dearmah-small{
  color: #3b4a63;
  font-size: .95rem;
  margin-top: 6px;
}

/* bullets */
.dearmah-bullets{
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 8px 18px;
  margin: 18px 0;
  padding: 0;
}
.dearmah-bullets li{
  position: relative;
  padding-left: 22px;
  color: #334155;
  font-weight: 500;
  font-size: .95rem;
}
.dearmah-bullets li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--dear-orange);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

/* buttons */
.dearmah-actions{
  margin-top: 8px;
  display:flex;
  gap: 12px;
  align-items:center;
}
.dearmah-btn{
  display:inline-block;
  padding:10px 18px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  border:2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease;
}
.dearmah-btn.primary{
  background: var(--dear-orange);
  color: #fff;
}
.dearmah-btn.primary:hover{ transform: translateY(-3px); box-shadow: 0 8px 18px rgba(244,123,32,0.18); }
.dearmah-btn.outline{
  background: transparent;
  color: var(--dear-navy);
  border-color: rgba(10,26,60,0.06);
}
.dearmah-btn.outline:hover{ transform: translateY(-3px); box-shadow: 0 8px 18px rgba(10,26,60,0.06); }

/* subtle floating for media */
@keyframes dear-floating {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
.float-subtle { animation: dear-floating 6s ease-in-out infinite; }

/* Responsive: collapse to single column */
@media (max-width: 880px){
  .dearmah-about-card{ grid-template-columns: 1fr; margin: -70px 18px 0; }
  .dearmah-about-media{ min-height: 220px; }
  .dearmah-about-body{ padding: 24px; }
  .dearmah-bullets{ grid-template-columns: 1fr; }
}









/* Services Section */
.services-section {
  padding: 80px 10%;
  background: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #0a2239; /* your brand navy */
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.service-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.3rem;
  margin: 20px 0 10px;
  color: #333;
}

.service-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff6600; /* your brand orange */
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

.service-btn:hover {
  background: #e05500;
  transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}




.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 70px 10%;
  background: white;
  color: white;
  gap: 40px;
}

.cta-content {
  flex: 1;
}

.cta h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ff6600; /* Gold accent */
  margin-bottom: 20px;
  
}

.cta p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 500px;
  color: #0A1A3C;
}

.cta-video {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-video video {
  width: 100%;
  max-width: 500px;
  border-radius: 50%;
  
  object-fit: cover;
  background: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cta {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .cta h2 {
    font-size: 2rem;
  }

  .cta p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .cta-video video {
    max-width: 280px;
    margin-top: 20px;
  }
}




: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: 70px;      /* 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;
}
