/* Smooth scroll */
html{
  scroll-behavior: smooth;
}
/*html, body{
  width:100%;
  height:100%;
  overflow-x:hidden;
}
body{
  margin:0;
  padding:0;
}
*/

/* Offset only for desktop */
@media (min-width: 769px){
  section{
    scroll-margin-top: 80px; /* navbar height */
  }
}


*{margin:0;padding:0;box-sizing:border-box;font-family:Poppins,sans-serif}
body{color:#333}

/* COMMON */
.container{width:90%;max-width:1200px;margin:auto}
h2{text-align:center;margin-bottom:25px}

/* NAVBAR */
.navbar{
  position:sticky;
  top:0;
  background:#0b2c4d;
  z-index:999;
}
.navbar{
  position: sticky;
  top: 0;
  height: 64px;           /* FIXED HEIGHT */
  z-index: 999;
}


.nav-flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
}

/* LOGO */
/* LOGO WITH IMAGE ICON */
/* LOGO WRAPPER */
.nav-logo-text{
  display:flex;
  align-items:center;
  gap:8px;
}

/* ICON */
.logo-icon{
  height:40px;
  flex-shrink:0;
}

/* TEXT WRAP */
.logo-text-wrap{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

/* PURE CSS TYPING TEXT */
.typing-text{
  font-size:15px;
  font-weight:700;
  color:#fff;
  white-space:nowrap;
  overflow:hidden;

  width:0;
  animation: typing 3s steps(20, end) forwards;
  border-right:none; /* cursor removed */
}


/* SUB TEXT */
.logo-sub{
  font-size:11px;
  font-weight:600;
  color:#000000;
  background:#FFC400;
  padding:2px 6px;
  border-radius:4px;
  width:max-content;
  margin-top:4px;
}

/* KEYFRAMES */
@keyframes typing{
  from{ width:0 }
  to{ width:20ch } /* matches text length */
}

/* MOBILE */
@media(max-width:768px){
  .typing-text{
    font-size:14px;
  }
}

/* MENU */
.nav-menu{
  display:flex;
  gap:22px;
}

.nav-menu a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:500;
}

.nav-menu a:hover{
  color:#ff7a00;
}

/* ACTION BUTTONS */
.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

/* COMMON BUTTON STYLE */
.nav-btn{
  display:flex;
  align-items:center;
  gap:6px;
  padding:8px 14px;
  border-radius:6px;
  font-size:14px;
  font-weight:500;
  text-decoration:none;
  white-space:nowrap;
}

/* WHATSAPP */
.nav-btn.whatsapp{
  background:#25D366;
  color:#fff;
}

/* CALL */
.nav-btn.call{
  background:#ff7a00;
  color:#fff;
}

/* ICON SIZE */
.nav-btn i{
  font-size:16px;
}

/* MOBILE FIX */
@media(max-width:768px){
  .nav-menu{
    display:none;
  }

  .nav-btn span{
    display:none; /* icon-only on mobile */
  }

  .nav-btn{
    padding:10px;
  }

.nav-menu.show{
  display:flex;
}

}


/* HERO */
.hero{
  height:80vh;
  background:url("images/banner.jpg") center/cover no-repeat;
  position:relative;
}

.hero-overlay{
  background:rgba(11,44,77,.7);
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.hero-content h1{color:#fff;font-size:42px}
.hero-content p{color:#fff;margin:15px 0 25px}
.hero-btn{
  background:#25D366;
  color:#fff;
  padding:12px 24px;
  border-radius:6px;
  text-decoration:none;
}

/* SECTIONS */
.about,.why,.quote{padding:60px 0}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:30px;align-items:center}
.two-col img{width:100%;border-radius:10px}

.icon-list{list-style:none}
.icon-list li{margin-bottom:10px;font-weight:500}
.icon-list i{color:#ff7a00;margin-right:8px}

/* FORM */
form{max-width:420px;margin:auto}
input,textarea{width:100%;padding:12px;margin-bottom:10px;border:1px solid #ccc}
button{width:100%;padding:12px;background:#ff7a00;color:#fff;border:none}

/* FOOTER */
.footer{background:#0b2c4d;color:#fff;text-align:center;padding:15px}

/* STICKY MOBILE */
.sticky{position:fixed;bottom:0;width:100%;display:flex}
.sticky a{width:50%;padding:14px;text-align:center;color:#fff;text-decoration:none}
.sticky a:first-child{background:#0b2c4d}
.sticky a:last-child{background:#25D366}

/* RESPONSIVE */
@media(max-width:768px){
.two-col{grid-template-columns:1fr}
nav{display:none}
.hero-content h1{font-size:28px}
}
@media(min-width:769px){
.sticky{display:none}
}
/* SERVICES SECTION */
.services{
  padding:60px 0;
  background:#f9fafb;
}

.services h2{
  text-align:center;
  margin-bottom:35px;
  color:#0b2c4d;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}

.service-card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  transition:transform .3s ease;
}

.service-card:hover{
  transform:translateY(-6px);
}

.service-card img{
  width:100%;
  height:170px;
  object-fit:cover;
}

.service-card i{
  font-size:28px;
  color:#ff7a00;
  margin-top:15px;
}

.service-card h4{
  margin:10px 0 6px;
  font-size:17px;
  color:#0b2c4d;
}

.service-card p{
  font-size:14px;
  line-height:1.5;
  padding:0 15px 20px;
  color:#555;
}

/* MOBILE */
@media(max-width:768px){
  .service-card img{
    height:150px;
  }
}

/* WHY CHOOSE + FORM WITH IMAGE */
.why-form{
  padding:70px 0;
  background:#f4f6f8;
}

.why-form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:flex-start;
}

/* COMMON CARD STYLE */
.why-box,
.form-box{
  background:#fff;
  padding:30px;
  border-radius:14px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

/* IMAGE */
.why-box img,
.form-box img{
  width:100%;
  height:295px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:18px;
}

/* HEADINGS */
.why-box h3,
.form-box h3{
  color:#0b2c4d;
  margin-bottom:15px;
  text-align:center;
}

/* WHY LIST */
.why-list{
  list-style:none;
}

.why-list li{
  margin-bottom:12px;
  font-weight:500;
  color:#333;
}

.why-list i{
  color:#ff7a00;
  margin-right:10px;
}

/* FORM FIX (IMPORTANT) */
.form-box form{
  width:100%;
}

.form-box input,
.form-box textarea{
  width:100%;
  padding:12px;
  margin-bottom:14px;
  border-radius:6px;
  border:1px solid #ccc;
  font-size:14px;
  display:block;
  box-sizing:border-box;
}

.form-box textarea{
  resize:none;
  height:100px;
}

.form-box button{
  width:100%;
  padding:14px;
  background:#25D366;
  color:#fff;
  border:none;
  border-radius:6px;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
}

.form-box button i{
  margin-right:6px;
}

/* MOBILE */
@media(max-width:768px){
  .why-form-grid{
    grid-template-columns:1fr;
  }
}


/* HAMBURGER */
.hamburger{
  display:none;
  flex-direction:column;
  gap:4px;
  cursor:pointer;
}

.hamburger span{
  width:22px;
  height:2px;
  background:#fff;
}

/* MOBILE */
@media(max-width:768px){
  .nav-menu{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#0b2c4d;
    display:none;
    flex-direction:column;
  }

  .nav-menu a{
    padding:12px 20px;
    border-top:1px solid rgba(255,255,255,0.1);
  }

  .nav-menu.show{
    display:flex;
  }

  .hamburger{
    display:flex;
  }
}
/* FULL WIDTH CONTACT SECTION */
/* CONTACT SECTION */
.contact-separate{
  width:100%;
  padding:60px 15px;
  background:#f4f6f8;
}

/* GRID */
.contact-separate-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:20px;
}

/* CARD */
.contact-card{
  background:#fff;
  padding:25px 20px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

/* ICON */
.contact-card i{
  font-size:32px;
  color:#ff7a00;
  margin-bottom:12px;
}

/* TITLE */
.contact-card h4{
  font-size:17px;
  margin-bottom:8px;
  color:#0b2c4d;
}

/* TEXT */
.contact-card p{
  font-size:14px;
  color:#444;
  line-height:1.6;
  margin:0;
}

/* BREAK LONG TEXT (EMAIL FIX) */
.break-text{
  word-break:break-all;
}

/* LINKS */
.contact-card a{
  color:#0b2c4d;
  text-decoration:none;
  font-weight:500;
}

/* MOBILE */
@media(max-width:480px){
  .contact-card{
    padding:20px 16px;
  }

  .contact-card h4{
    font-size:16px;
  }

  .contact-card p{
    font-size:13px;
  }
}

/* Fix for sticky navbar overlap */
