@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:#0a257c;
  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{
  min-height:85vh;
  padding:90px 7%;
  display:grid;
  grid-template-columns:1.4fr 0.9fr;
  align-items:center;
  gap:45px;
  background:linear-gradient(120deg,#0b2c4d 0%,#0d5e9c 65%,#ebe9e6 65%);
  color:#fff;
}

.tagline,
.section-label{
  color:#f4b400;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:12px;
}

.hero h2{
  font-size:48px;
  line-height:1.2;
  margin-bottom:20px;
}

.hero p{
  font-size:17px;
  line-height:1.8;
  color:#eaf3ff;
  margin-bottom:28px;
}

.hero-buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.btn{
  padding:14px 28px;
  border-radius:4px;
  font-weight:700;
  transition:0.3s;
}

.primary{
  background:#f4b400;
  color:#0b2c4d;
}

.primary:hover{
  background:#fff;
}

.secondary{
  border:2px solid #fff;
  color:#fff;
}

.secondary:hover{
  background:#fff;
  color:#0b2c4d;
}

.hero-card{
  background:#fff;
  color:#0b2c4d;
  padding:38px;
  border-radius:8px;
  box-shadow:0 20px 45px rgba(0,0,0,0.25);
  border-bottom:6px solid #fcfbf9;
}

.hero-card h3{
  font-size:28px;
  margin-bottom:15px;
}

.hero-card p{
  color:#555;
}

.hero-card a{
  color:#0d5e9c;
  font-weight:700;
}

.features{
  width:86%;
  margin:-45px auto 70px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  position:relative;
  z-index:5;
}

.feature-box{
  background:#fff;
  padding:32px;
  border-radius:6px;
  box-shadow:0 12px 35px rgba(0,0,0,0.12);
  border-top:5px solid #f4b400;
  transition:0.3s;
}

.feature-box:hover{
  transform:translateY(-8px);
}

.feature-box h3{
  color:#0b2c4d;
  margin-bottom:12px;
  font-size:22px;
}

.feature-box p{
  color:#666;
  line-height:1.7;
}

.about-section{
  padding:90px 7%;
  display:grid;
  grid-template-columns:1.4fr 0.8fr;
  gap:55px;
  align-items:center;
}

.about-content h2,
.section h2{
  font-size:40px;
  color:#0b2c4d;
  margin-bottom:20px;
}

.about-content p{
  color:#555;
  line-height:1.9;
  margin-bottom:16px;
}

.stats-card{
  background:#0b2c4d;
  color:#fff;
  padding:42px;
  border-radius:8px;
  position:relative;
  overflow:hidden;
}

.stats-card::before{
  content:"";
  position:absolute;
  width:120px;
  height:120px;
  background:#f4b400;
  border-radius:50%;
  top:-45px;
  right:-45px;
}

.stats-card h3{
  font-size:26px;
  margin-bottom:22px;
  position:relative;
}

.stat-item{
  padding:17px 0;
  border-bottom:1px solid rgba(255,255,255,0.2);
  position:relative;
}

.stat-item strong{
  display:block;
  font-size:42px;
  color:#f4b400;
}

.stat-item span{
  color:#eaf3ff;
}

.section{
  padding:90px 7%;
  text-align:center;
}

.gray{
  background:#f5f8fb;
}

.service-grid,
.process-grid{
  margin-top:45px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.service-card,
.process-grid div{
  background:#fff;
  padding:32px 25px;
  border-radius:6px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  border-bottom:4px solid #0d5e9c;
  transition:0.3s;
}

.service-card:hover,
.process-grid div:hover{
  transform:translateY(-8px);
  border-bottom-color:#f4b400;
}

.service-card h3,
.process-grid h3{
  color:#0b2c4d;
  margin-bottom:10px;
  font-size:22px;
}

.service-card p,
.process-grid p{
  color:#666;
  line-height:1.7;
}

.service-card a{
  display:inline-block;
  margin-top:16px;
  color:#0d5e9c;
  font-weight:700;
}

.process-grid span{
  display:inline-block;
  color:#f4b400;
  font-size:34px;
  font-weight:800;
  margin-bottom:12px;
}

.contact-section{
  padding:90px 7%;
  background:#f2f5f8;
}

.contact-card{
  max-width:1050px;
  margin:auto;
  background:#fff;
  padding:50px;
  border-radius:8px;
  text-align:center;
  box-shadow:0 20px 45px rgba(0,0,0,0.25);
}

.contact-badge{
  display:inline-block;
  background:#f4b400;
  color:#0b2c4d;
  padding:8px 22px;
  font-weight:800;
  margin-bottom:15px;
}

.contact-card h2{
  color:#0b2c4d;
  font-size:36px;
  margin-bottom:35px;
}

.contact-details{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-bottom:35px;
}

.detail-box{
  background:#f5f8fb;
  padding:25px;
  border-radius:6px;
  border-left:4px solid #f4b400;
}

.detail-box h4{
  color:#0b2c4d;
  margin-bottom:10px;
}

.detail-box p{
  color:#555;
  line-height:1.7;
}

.appointment-btn{
  display:inline-block;
  background:#0d5e9c;
  color:#fff;
  padding:14px 32px;
  border-radius:4px;
  font-weight:700;
  transition:0.3s;
}

.appointment-btn:hover{
  background:#f4b400;
  color:#0b2c4d;
}

.footer{
  background:#071f38;
  color:#fff;
  padding:70px 7% 25px;
}

.footer-container{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:35px;
}

.footer-box h3{
  font-size:21px;
  margin-bottom:22px;
  position:relative;
}

.footer-box h3::after{
  content:"";
  width:45px;
  height:3px;
  background:#f4b400;
  position:absolute;
  left:0;
  bottom:-8px;
}

.footer-box p,
.footer-box a{
  color:#dce8f5;
  font-size:15px;
  line-height:1.8;
  margin-bottom:8px;
  display:block;
}

.footer-box a:hover{
  color:#f4b400;
}

.footer-bottom{
  text-align:center;
  margin-top:45px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,0.18);
  color:#cbd5e1;
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){

  .topbar{
    flex-direction:column;
    text-align:center;
    padding:10px 5%;
    gap:6px;
    font-size:13px;
  }

  .navbar{
    padding:12px 5%;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
  }

  .brand img{
    width:105px;
  }

  .menu-toggle{
    display:block;
    margin-left:auto;
  }

  .nav{
    display:none;
    flex-direction:column;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#0b2c4d;
    padding:12px 0;
    text-align:center;
    gap:0;
    z-index:999;
  }

  .nav.active{
    display:flex;
  }

  .nav a{
    width:100%;
    color:#fff;
    padding:12px 0;
    font-size:16px;
  }

  @media(max-width:768px){

  .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%;
    background:#123f6b;
    display:none;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
  }

  .dropdown-content a{
    display:block;
    color:#fff;
    padding:12px;
    border-bottom:1px solid rgba(255,255,255,0.1);
  }

  .dropdown.active .dropdown-content{
    display:block;
  }

  
}
  .hero{
    min-height:auto;
    padding:65px 6%;
    grid-template-columns:1fr;
    text-align:center;
    background:linear-gradient(135deg,#0b2c4d,#0d5e9c);
  }

  .hero h2{
    font-size:31px;
  }

  .hero p{
    font-size:15px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:center;
  }

  .btn{
    width:100%;
    max-width:270px;
    text-align:center;
  }

  .hero-card{
    padding:28px;
  }

  .features{
    width:90%;
    margin:35px auto;
    grid-template-columns:1fr;
  }

  .about-section{
    padding:65px 6%;
    grid-template-columns:1fr;
    text-align:center;
    gap:35px;
  }

  .about-content h2,
  .section h2{
    font-size:30px;
  }

  .stats-card{
    padding:30px;
  }

  .stat-item strong{
    font-size:34px;
  }

  .section{
    padding:65px 6%;
  }

  .service-grid,
  .process-grid{
    grid-template-columns:1fr;
  }

  .contact-section{
    padding:70px 6%;
  }

  .contact-card{
    padding:32px 20px;
  }

  .contact-card h2{
    font-size:25px;
  }

  .contact-details{
    grid-template-columns:1fr;
  }

  .footer{
    padding:60px 6% 22px;
  }

  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-box h3::after{
    left:50%;
    transform:translateX(-50%);
  }
}