*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#f8fafc;
  color:#111827;
  line-height:1.7;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

a{
  text-decoration:none;
  color:inherit;
}

section{
  padding:90px 0;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title span{
  color:#ff7b00;
  font-weight:600;
}

.section-title h2{
  font-size:40px;
  margin-top:10px;
}

/* HEADER */

header{
  background:#fff;
  position:sticky;
  top:0;
  z-index:999;
  box-shadow:0 2px 15px rgba(0,0,0,0.05);
}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:15px 0;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo img{
  width:70px;
}

.logo h2{
  font-size:22px;
  color:#002868;
}

.nav-links{
  display:flex;
  gap:30px;
  list-style:none;
}

.nav-links a{
  font-weight:500;
  transition:0.3s;
}

.nav-links a:hover{
  color:#ff7b00;
}

.menu-toggle{
  display:none;
  font-size:30px;
  cursor:pointer;
}

/* HERO */

.hero{
  background:
  linear-gradient(rgba(0,40,104,0.88),rgba(0,40,104,0.88)),
  url('https://images.unsplash.com/photo-1600518464441-9154a4dea21b?q=80&w=1600&auto=format&fit=crop');

  background-size:cover;
  background-position:center;

  color:#fff;

  min-height:75vh;

  display:flex;
  align-items:center;
}

.hero-content{
  max-width:700px;
}

.hero-tag{
  background:rgba(255,255,255,0.12);
  padding:8px 18px;
  border-radius:30px;
  display:inline-block;
  margin-bottom:20px;
}

.hero h1{
  font-size:58px;
  line-height:1.2;
  margin-bottom:20px;
}

.hero p{
  color:#e5e7eb;
  margin-bottom:35px;
}

.hero-btns{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.btn{
  padding:14px 28px;
  border-radius:10px;
  font-weight:600;
  transition:0.3s;
}

.primary-btn{
  background:#ff7b00;
  color:#fff;
}

.secondary-btn{
  background:#fff;
  color:#002868;
}

.btn:hover{
  transform:translateY(-4px);
}

/* ABOUT */

.about-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about-image img{
  width:100%;
  height:500px;
  object-fit:cover;
  border-radius:24px;
}

.about-content h3{
  font-size:36px;
  margin-bottom:20px;
  color:#002868;
}

.about-content p{
  margin-bottom:18px;
  color:#4b5563;
}

.about-points{
  display:flex;
  gap:20px;
  margin-top:30px;
  flex-wrap:wrap;
}

.point-box{
  background:#fff;
  padding:20px;
  border-radius:16px;
  box-shadow:0 5px 20px rgba(0,0,0,0.06);
  min-width:140px;
  text-align:center;
}

.point-box h4{
  color:#ff7b00;
  font-size:28px;
}

/* SERVICES */

.services-section{
  background:#fff;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.service-card{
  background:#f8fafc;
  padding:35px 28px;
  border-radius:22px;
  transition:0.4s;
  border:1px solid #e5e7eb;
}

.service-card:hover{
  transform:translateY(-12px);
  background:#002868;
  color:#fff;
}

.service-number{
  font-size:50px;
  font-weight:700;
  color:#ff7b00;
  opacity:0.25;
  margin-bottom:15px;
}

.service-card h3{
  margin-bottom:14px;
  font-size:24px;
}

.service-card{
  overflow:hidden;
}

.service-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:18px;
  margin-bottom:20px;
}
/* CONTACT */

.contact-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.contact-form{
  background:#fff;
  padding:40px;
  border-radius:24px;
  box-shadow:0 5px 25px rgba(0,0,0,0.08);
}

.contact-form h3{
  margin-bottom:20px;
  color:#002868;
}

.input-group{
  margin-bottom:18px;
}

.input-group input,
.input-group textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid #d1d5db;
  border-radius:12px;
  outline:none;
  font-family:'Poppins',sans-serif;
}

textarea{
  resize:none;
  height:130px;
}

.submit-btn{
  width:100%;
  padding:15px;
  border:none;
  background:#ff7b00;
  color:#fff;
  border-radius:12px;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
}

.map-box iframe{
  width:100%;
  height:100%;
  min-height:500px;
  border:none;
  border-radius:24px;
}

/* FOOTER */

footer{
  background:#002868;
  color:#fff;
  padding:80px 0 30px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
}

.footer-logo{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:20px;
}

.footer-logo img{
  width:80px;
}

.footer-column h4{
  margin-bottom:18px;
}

.footer-column ul{
  list-style:none;
}

.footer-column li{
  margin-bottom:12px;
}

.footer-column a{
  transition:0.3s;
}

.footer-column a:hover{
  color:#ff7b00;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  margin-top:50px;
  padding-top:20px;
  text-align:center;
}
.footer-contact li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:18px;
}

.footer-contact i{
  color:#ff7b00;
  font-size:18px;
  margin-top:4px;
  min-width:18px;
}
/* RESPONSIVE */

@media(max-width:992px){

  .about-wrapper,
  .contact-wrapper{
    grid-template-columns:1fr;
  }

  .hero{
    padding:100px 0;
    text-align:center;
  }

  .hero h1{
    font-size:44px;
  }

  .hero-btns{
    justify-content:center;
  }
}

@media(max-width:768px){

  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:center;
    padding:20px 0;
    display:none;
  }

  .nav-links.active{
    display:flex;
  }

  .hero h1{
    font-size:36px;
  }

  .section-title h2{
    font-size:32px;
  }

  .about-content h3{
    font-size:30px;
  }

  .logo h2{
    font-size:18px;
  }

  .logo img{
    width:60px;
  }
}

@media(max-width:480px){

  section{
    padding:70px 0;
  }

  .hero h1{
    font-size:30px;
  }

  .btn{
    width:100%;
    text-align:center;
  }

  .hero-btns{
    flex-direction:column;
  }
}