/* 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 */
.navbar{
  position:sticky;
  top:0;
  width:100%;
  background:#0b2c4d;
  z-index:999;
}

.nav-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 15px;
}

/* LOGO */
.nav-logo-text{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo-icon{
  height:56px;   /* larger icon */
  width:auto;
  object-fit:contain;
  flex-shrink:0;
  
}

.logo-text-wrap{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.typing-text{
  font-size:16px;
  font-weight:700;
  color:#fff;
  white-space:nowrap;
  overflow:hidden;
  width:0;
  animation: typing 3s steps(20,end) forwards;
}

.logo-sub{
  font-size:11px;
  font-weight:600;
  color:#fff;
  background:#FFC400;
  padding:3px 8px;
  border-radius:4px;
  margin-top:4px;
  width:max-content;
}

/* MENU */
.nav-menu{
  display:flex;
  gap:25px;
}

.nav-menu a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
  font-size:14px;
}

/* ACTION BUTTONS */
.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.nav-btn{
  padding:8px 10px;
  border-radius:6px;
  color:#fff;
}

.nav-btn.whatsapp{ background:#25D366; }
.nav-btn.call{ background:#ff7a00; }

/* HAMBURGER */
.hamburger{
  display:none;
  flex-direction:column;
  gap:4px;
  cursor:pointer;
}

.hamburger span{
  width:22px;
  height:2px;
  background:#fff;
}

/* TYPING ANIMATION */
@keyframes typing{
  from{ width:0 }
  to{ width:20ch; }
}

/* MOBILE */
@media (max-width:768px){

  .nav-menu{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#0b2c4d;
    flex-direction:column;
    display:none;
	gap:5px;
  
  }

  .nav-menu a{
    padding:5px 14px;
    border-top:1px solid rgba(255,255,255,0.1);
  }

  .nav-menu.show{
    display:flex;
  }

  .hamburger{
    display:flex;
  }

  /* Hide WhatsApp & Call on mobile */
  .nav-btn.whatsapp,
  .nav-btn.call{
    display:none;
  }

  .logo-icon{
    height:50px;
  }

  .typing-text{
    font-size:14px;
  }
}

/* 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;
}

@media(max-width:768px){

.hero{
    min-height:65vh;
    padding:30px 15px;
    display:flex;
    align-items:center;
  }

}


/* 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:auto;
  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;
  }
}


/* 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 */

.read-more-btn{
    display:inline-block;
    margin-top:15px;
    padding:10px 22px;
    background:#ff7a00;
    color:#fff;
    text-decoration:none;
    border-radius:25px;
    font-size:14px;
    font-weight:500;
    transition:all 0.3s ease;
}

.read-more-btn:hover{
    background:#e66a00;
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

.read-more-btn span{
    margin-left:6px;
    transition:0.3s;
}

.read-more-btn:hover span{
    margin-left:12px;
}