

/* Reset */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Segoe UI', sans-serif; line-height:1.6; }



/* ===== Header & Hero (Services) ===== */
:root{
  --navy: #0A1A3C;
  --orange: #F47B20;
  --muted: #ffffff;
}

/* Header */
.sh-header{
  position: sticky;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1200;
  box-shadow: 0 2px 10px rgba(10,26,60,0.04);
}
.sh-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 24px;
  gap:16px;
}
.sh-logo img{ height:75px; display:block; }

/* Nav (desktop) */
.sh-nav ul{
  display:flex;
  gap:26px;
  list-style:none;
  margin:0;
  padding:0;
}
.sh-nav a{
  text-decoration:none;
  color:var(--navy);
  font-weight:600;
  padding:6px 4px;
  transition: color .18s ease;
}
.sh-nav a.active, .sh-nav a:hover{ color:var(--orange); }

/* Actions: track & hamburger */
.sh-actions{ display:flex; align-items:center; gap:12px; }
.sh-track{
  display:inline-block;
  padding:8px 14px;
  background:var(--orange);
  color:#fff;
  border-radius:8px;
  text-decoration:none;
  font-weight:700;
}
.sh-hamburger{
  display:none;
  width:44px;
  height:40px;
  border-radius:8px;
  border:none;
  background:transparent;
  cursor:pointer;
  padding:6px;
}
.sh-hamburger span{
  display:block;
  height:2.8px;
  background:var(--navy);
  margin:5px 0;
  border-radius:2px;
  transition: transform .25s ease, opacity .2s ease;
}

/* Hero section */
.sh-hero{
  background: #fff; /* white background requested */
  padding: 80px 24px;
}
.sh-hero-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  gap:40px;
  align-items:center;
  justify-content:space-between;
}

/* LEFT text */
.sh-hero-text{ flex:1; min-width:260px; }
.sh-eyebrow{
  display:inline-block;
  font-size:0.85rem;
  letter-spacing:.06em;
  color:var(--orange);
  font-weight:700;
  margin-bottom:12px;
}
.sh-hero-text h1{
  font-size:2.4rem;
  color:var(--navy);
  line-height:1.08;
  margin-bottom:16px;
}
.sh-hero-text .accent{
  background: linear-gradient(90deg, rgba(244,123,32,0.12), rgba(10,26,60,0.06));
  padding:6px 10px;
  border-radius:8px;
  color:var(--navy);
  font-weight:800;
}
.sh-lead{
  color:#334155;
  margin-bottom:20px;
  max-width:54ch;
}

/* CTAs */
.sh-ctas{ display:flex; gap:12px; flex-wrap:wrap; }
.btn{ text-decoration:none; display:inline-block; padding:10px 18px; border-radius:10px; font-weight:700; }
.btn-primary{ background:var(--navy); color:#fff; }
.btn-primary:hover{ transform:translateY(-3px); background:#082032; }
.btn-outline{ background:transparent; border:2px solid var(--navy); color:var(--navy); }
.btn-outline:hover{ background:var(--navy); color:#fff; }

/* RIGHT media */
.sh-hero-media{ flex:1; max-width:540px; position:relative; display:flex; align-items:center; justify-content:center; }
.sh-hero-media img{
  width:100%;
  height:auto;
  border-radius:14px;
  box-shadow: 0 18px 40px rgba(10,26,60,0.06);
  display:block;
  transform-origin:center;
}
.sh-decor{
  position:absolute;
  right:-30px;
  bottom:-20px;
  width:140px;
  height:140px;
  background: linear-gradient(135deg, rgba(244,123,32,0.12), rgba(10,26,60,0.06));
  border-radius:20px;
  transform: rotate(18deg);
  z-index:-1;
}

/* Fade-in animation (for header & hero) */
.sh-fade{ opacity:0; transform:translateY(10px); animation: shFade 700ms ease-out forwards; }
@keyframes shFade{ to{ opacity:1; transform:none } }

/* Mobile Responsive: hamburger & stacking */
@media (max-width: 900px){
  .sh-nav{ display:none; position:absolute; top:68px; right:16px; background:#fff; box-shadow:0 8px 30px rgba(0,0,0,0.08); border-radius:10px; padding:16px; color: #0A1A3C; }
  .sh-nav.open{ display:block; }
  .sh-hamburger{ display:inline-flex; }
  .sh-hero-inner{ flex-direction:column; text-align:center; }
  .sh-hero-media{ order:2; width:100%; max-width:720px; }
  .sh-hero-text{ order:1; }
  .sh-decor{ display:none; }
}

/* Hamburger open state (X) */
.sh-hamburger.open span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.sh-hamburger.open span:nth-child(2){ opacity:0; transform:scaleX(0); }
.sh-hamburger.open span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }










: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;
}







/* ===== Services Section ===== */
.services-section {
  width: 100%;
  padding: 80px 10%;
  background: #fff;
}

.service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
}

.service-text {
  flex: 1;
}

.service-text h2 {
  font-size: 2rem;
  color: #0a2239;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.service-text h2 span {
  position: relative;
  z-index: 2;
}

/* line behind text */
.service-text h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 12px;
  background: #F47B20;
  z-index: 1;
  border-radius: 6px;
}

.service-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.service-image img:hover {
  transform: scale(1.05);
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .service {
    flex-direction: column;
    text-align: center;
  }
  
  .service-image {
    margin-top: 20px;
  }
}





/* Services Section Header */
.sh-services-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.sh-services-header h2 {
  font-size: 2.6rem;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

/* Optional accent under header */
.sh-services-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin: 12px auto 0 auto;
  border-radius: 2px;
}

.sh-services-header p {
  font-size: 1rem;
  color: #334155;
  line-height: 1.6;
  margin-top: 12px;
}

/* Fade-in animation for header */
.sh-services-header.sh-fade {
  opacity: 0;
  transform: translateY(10px);
  animation: shFade 700ms ease-out forwards;
  animation-delay: 0.1s;
}
