@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins', sans-serif;
  color:#333;
  background:#fff;
  overflow-x:hidden;
}

a{
  text-decoration:none;
}

.topbar{
  background:#0b2c4d;
  color:#fff;
  padding:10px 7%;
  display:flex;
  justify-content:space-between;
  font-size:14px;
}

.topbar i{
  margin-right:7px;
  color:#f4b400;
}

.header{
  background:#fff;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 7%;
  position:relative;
}

.brand img{
  width:135px;
  display:block;
}

.menu-toggle{
  display:none;
  font-size:28px;
  color:#0b2c4d;
  cursor:pointer;
}

/* NAVBAR */
.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  background:#f7f9fc;
  padding:15px 25px;
}

.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.brand img{
  width:140px;
  height:auto;
  object-fit:contain;
}

.nav{
  display:flex;
  align-items:center;
  gap:40px;
}

.navbar a,
.nav a{
  color:#0c0c0c;
  text-decoration:none;
  font-size:18px;
  font-weight:600;
  transition:.3s;
}

.navbar a:hover,
.nav a:hover{
  color:#f7c948;
}

/* DROPDOWN */
.dropdown{
  position:relative;
}

.dropdown-content{
  position:absolute;
  top:100%;
  left:0;
  background:#0b2c4d;
  min-width:220px;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
  z-index:1000;

  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:.2s ease;
}

.dropdown-content a{
  display:block;
  color:#fff;
  padding:12px 18px;
  font-size:16px;
}

.dropdown-content a:hover{
  background:#123f6b;
  color:#fff;
}

.dropdown:hover .dropdown-content{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}


/* HERO */
.service-hero{
  min-height:340px;
  background:#06264d;
  color:#fff;
  text-align:center;
  padding:95px 8%;
}

.service-hero h2{
  font-size:48px;
  margin-bottom:15px;
}

.service-hero p{
  max-width:800px;
  margin:auto;
  font-size:18px;
  line-height:1.8;
}

.menu-btn{
  display:none;
  border:none;
  background:#06264d;
  color:#fff;
  font-size:24px;
  padding:8px 14px;
  border-radius:6px;
  cursor:pointer;
}

@media(max-width:768px){
  .menu-btn{
    display:block;
  }

  .nav{
    display:none;
    flex-direction:column;
    width:100%;
    text-align:center;
    gap:15px;
  }

  .nav.show{
    display:flex;
  }
}

/* SERVICES */
.services-section{
  padding:70px 7%;
}

.services-title{
  text-align:center;
  margin-bottom:45px;
}

.services-title h2,
.why-section h2,
.service-cta h2{
  font-size:36px;
  color:#003366;
  margin-bottom:12px;
}

.services-title p{
  max-width:850px;
  margin:auto;
  color:#030303;
  line-height:1.8;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.service-card{
  background:#fff;
  padding:24px 18px;
  border-radius:16px;
  min-height:110px;
  box-shadow:0 8px 24px rgba(0,0,0,0.08);
  border-left:5px solid #f39c12;
  color:#003366;
  font-size:17px;
  font-weight:600;
  line-height:1.5;
  display:flex;
  align-items:center;
  transition:.3s ease;
}

.service-card:hover{
  transform:translateY(-7px);
  background:linear-gradient(135deg,#003366,#0059b3);
  color:#fff;
  border-left-color:#fff;
  box-shadow:0 14px 35px rgba(0,0,0,0.16);
}

/* WHY SECTION */
.why-section{
  padding:70px 7%;
  background:#fff;
  text-align:center;
}

.why-grid{
  margin-top:35px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.why-grid div{
  padding:35px 25px;
  border-radius:18px;
  background:#f5f8fc;
  box-shadow:0 8px 24px rgba(0,0,0,0.07);
}

.why-grid h3{
  color:#003366;
  margin-bottom:12px;
  font-size:22px;
}

.why-grid p{
  color:#030303;
  line-height:1.7;
}

/* CTA */
.service-cta{
  padding:65px 8%;
  text-align:center;
  background:#06264d;
  color:#fff;
}

.service-cta h2{
  color:#fff;
}

.service-cta p{
  font-size:18px;
  margin-bottom:25px;
}

.service-cta a{
  display:inline-block;
  text-decoration:none;
  background:#003366;
  color:#fff;
  padding:14px 36px;
  border-radius:30px;
  font-weight:600;
}

.service-cta a:hover{
  background:#fff;
  color:#003366;
}

/* FOOTER */
.footer{
  background:linear-gradient(135deg,#07294d,#021c35);
  color:#fff;
  padding:70px 8% 25px;
  margin-top:80px;
}

.footer-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
}

.footer-box h3{
  color:#ffb703;
  font-size:24px;
  margin-bottom:25px;
  position:relative;
}

.footer-box h3::after{
  content:"";
  width:60px;
  height:3px;
  background:#ffb703;
  position:absolute;
  left:0;
  bottom:-8px;
  border-radius:10px;
}

.footer-box p{
  line-height:2;
  color:#d6d6d6;
  font-size:16px;
}

.footer-box a{
  display:block;
  color:#d6d6d6;
  text-decoration:none;
  margin-bottom:14px;
  transition:.3s;
  font-size:16px;
}

.footer-box a:hover{
  color:#ffb703;
  transform:translateX(6px);
}

.footer-box i{
  margin-right:10px;
  font-size:18px;
}

.footer-bottom{
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.2);
  margin-top:50px;
  padding-top:20px;
  color:#cfcfcf;
  font-size:15px;
}



/* MOBILE RESPONSIVE */
@media(max-width:768px){

  .topbar{
    flex-direction:column;
    text-align:center;
    padding:10px 5%;
    gap:6px;
    font-size:13px;
  }

  .navbar{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    gap:0;
    padding:12px 5%;
  }

  .brand img{
    width:105px;
  }

  .menu-toggle{
    display:block;
    margin-left:auto;
    font-size:28px;
    color:#0b2c4d;
    cursor:pointer;
  }

  .nav{
    display:none;
    flex-direction:column;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#0b2c4d;
    padding:12px 0;
    gap:0;
    text-align:center;
    z-index:9999;
  }

  .nav.active{
    display:flex;
  }

  .nav a{
    width:100%;
    color:#fff;
    padding:12px 0;
    font-size:16px;
  }

  .dropdown{
    width:100%;
    text-align:center;
  }

  .dropdown > a{
    display:block;
    width:100%;
    color:#fff;
    padding:12px 0;
    font-size:16px;
    cursor:pointer;
  }

  .dropdown-content{
    position:static;
    width:100%;
    min-width:100%;
    background:#123f6b;
    display:none;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    border-radius:0;
  }

  .dropdown:hover .dropdown-content{
    display:none;
    opacity:1;
    visibility:visible;
    transform:none;
  }

  .dropdown.active .dropdown-content{
    display:block;
  }

  .dropdown-content a{
    color:#fff;
    background:#123f6b;
    padding:12px;
    font-size:15px;
    border-bottom:1px solid rgba(255,255,255,0.1);
  }

  .service-hero{
    min-height:auto;
    padding:65px 6%;
  }

  .service-hero h2{
    font-size:31px;
    line-height:1.3;
  }

  .service-hero p{
    font-size:15px;
    line-height:1.7;
  }

  .services-section{
    padding:50px 6%;
  }

  .services-title{
    margin-bottom:30px;
  }

  .services-title h2,
  .why-section h2,
  .service-cta h2{
    font-size:28px;
    line-height:1.3;
  }

  .services-title p{
    font-size:15px;
  }

  .services-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .service-card{
    min-height:auto;
    padding:22px 18px;
    font-size:16px;
    text-align:center;
    justify-content:center;
  }

  .why-section{
    padding:55px 6%;
  }

  .why-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .why-grid div{
    padding:28px 20px;
  }

  .service-cta{
    padding:55px 6%;
  }

  .service-cta p{
    font-size:16px;
  }

  .service-cta a{
    width:100%;
    max-width:260px;
    padding:14px 25px;
  }

  .footer{
    padding:55px 6% 22px;
    margin-top:50px;
  }

  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
    gap:30px;
  }

  .footer-box h3::after{
    left:50%;
    transform:translateX(-50%);
  }

  .footer-box a:hover{
    transform:none;
  }
}
