*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}
header{
background:#fff;
padding:15px 8%;
display:flex;
justify-content:space-between;
align-items:center;
box-shadow:0 3px 15px rgba(0,0,0,.08);
position:sticky;
top:0;
z-index:1000;
}

.logo{
display:flex;
align-items:center;
gap:15px;
}

.logo img{
width:50px;
}

.logo h2{
font-size:26px;
color:#08276d;
}

.logo span{
font-size:14px;
color:#666;
}

.nav-links{
      display:flex;
      gap:30px;
    }
    /* ================= DROPDOWN ================= */

.dropdown{
  position:relative;
}

.drop-btn{
  color:#061c54;
  font-weight:600;
  transition:0.3s;
}

.drop-btn:hover{
  color:#0aa6df;
}

.dropdown-content{
  position:absolute;
  top:35px;
  left:0;
  min-width:240px;
  background:#fff;
  border-radius:12px;
  padding:10px 0;
  box-shadow:0 10px 25px rgba(0,0,0,0.12);

  opacity:0;
  visibility:hidden;
  transform:translateY(10px);

  transition:0.3s;
  z-index:999;
}

.dropdown-content a{
  display:block;
  padding:12px 20px;
  color:#061c54;
  font-weight:500;
  transition:0.3s;
}

.dropdown-content a:hover{
  background:#f4f8ff;
  color:#08a6df;
  padding-left:28px;
}

.dropdown:hover .dropdown-content{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
/* Sub Dropdown */

.sub-dropdown{
  position:relative;
}

.sub-btn{
  display:block;
  padding:12px 20px;
  color:#061c54;
  font-weight:500;
}

.sub-dropdown-content{
  position:absolute;
  top:0;
  right:100%;
  min-width:220px;
  background:#fff;
  border-radius:12px;
  padding:10px 0;
  box-shadow:0 10px 25px rgba(0,0,0,0.12);

  opacity:0;
  visibility:hidden;
  transform:translateX(10px);
  transition:0.3s;
}

.sub-dropdown-content a{
  display:block;
  padding:12px 20px;
  color:#061c54;
  font-weight:500;
}

.sub-dropdown-content a:hover{
  background:#f4f8ff;
  color:#08a6df;
}

.sub-dropdown:hover .sub-dropdown-content{
  opacity:1;
  visibility:visible;
  transform:translateX(0);
}

    .nav-links a{
      color:#061c54;
      font-weight:600;
      transition:0.3s;
    }

    .nav-links a:hover{
      color:#0aa6df;
    }
    a {
    text-decoration: none;
}
    /* =====================================
   MOBILE HAMBURGER MENU
===================================== */

.menu-toggle{
    display:none;
    font-size:32px;
    font-weight:700;
    color:#08276d;
    cursor:pointer;
    line-height:1;
}

/* Tablet & Mobile */
@media screen and (max-width:768px){

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-direction:row;
    padding:12px 20px;
    background:#fff;
    position:relative;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    flex:1;
}

.logo img{
    width:48px;
    height:auto;
}

.logo h2{
    font-size:22px;
    margin:0;
    line-height:1;
}

.logo span{
    display:block;
    font-size:12px;
    margin-top:3px;
    color:#666;
    line-height:1.2;
}

.menu-toggle{
    display:flex;
    justify-content:center;
    align-items:center;
    width:42px;
    height:42px;
    font-size:34px;
    flex-shrink:0;
}

.navbar{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    max-height:0;
    overflow:hidden;
    transition:.4s ease;
    box-shadow:0 10px 20px rgba(0,0,0,.08);
    z-index:999;
}

.navbar.active{
    max-height:900px;
}

.nav-links{
    display:flex;
    flex-direction:column;
    width:100%;
    gap:0;
}

.nav-links>a,
.drop-btn{
    display:block;
    width:100%;
    padding:16px 22px;
    border-bottom:1px solid #ececec;
}

.dropdown-content,
.sub-dropdown-content{
    position:static;
    opacity:1;
    visibility:visible;
    display:none;
    transform:none;
    box-shadow:none;
    background:#f7f9fc;
    min-width:100%;
}

.dropdown:hover .dropdown-content{
    display:block;
}

.sub-dropdown:hover .sub-dropdown-content{
    display:block;
}

.dropdown-content a,
.sub-dropdown-content a{
    padding:14px 35px;
}

.header-contact{
    margin:0;
    padding:18px;
    text-align:Left;
    border-top:1px solid #eee;
}




}


/* Small Mobile */

@media screen and (max-width:480px){

header{
    padding:10px 15px;
}

.logo{
    gap:10px;
}

.logo img{
    width:31px;
}

.logo h2{
    font-size:18px;
}

.logo span{
    font-size:11px;
}

.menu-toggle{
    width:38px;
    height:38px;
    font-size:30px;
}

}

body{
background:#f5f7fb;
color:#333;
}

/* Container */

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* Hero */

.contact-hero{

background:linear-gradient(135deg,#003b70,#0d6efd);

color:#fff;

padding:90px 20px;

text-align:center;

}

.contact-hero h1{

font-size:46px;

margin-bottom:20px;

}

.contact-hero p{

max-width:750px;

margin:auto;

line-height:1.8;

font-size:18px;

}

/* Contact Section */

.contact-section{

padding:80px 0;

}

.contact-wrapper{

display:grid;

grid-template-columns:1fr 1.3fr;

gap:50px;

align-items:start;

}

/* Left */

.contact-info{

background:#fff;

padding:40px;

border-radius:12px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.contact-info h2{

font-size:30px;

margin-bottom:20px;

color:#003b70;

}

.contact-info p{

line-height:1.8;

margin-bottom:30px;

}

.info-box{

display:flex;

align-items:flex-start;

margin-bottom:25px;

}

.info-box i{

font-size:22px;

width:55px;

height:55px;

background:#0d6efd;

color:#fff;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

margin-right:18px;

}

.info-box h3{

margin-bottom:8px;

color:#003b70;

}

/* Form */

.contact-form{
width: 100%;
  max-width: 900px;
  background: #ffffff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 16px 18px;
  margin-bottom: 18px;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  font-size: 16px;
}

.contact-form button {
  width: 100%;
  padding: 16px;
  background: #08276d;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.contact-form button:hover {
  background: #0b3d9a;
}

/* Map */

.map-section{

padding:0 0 80px;

}

.map-section h2{

text-align:center;

margin-bottom:30px;

font-size:34px;

color:#003b70;

}

.map-box{

border-radius:12px;

overflow:hidden;

box-shadow:0 10px 25px rgba(0,0,0,.1);

}

.map-box iframe{

width:100%;

height:450px;

border:0;

}

/* Responsive */

@media(max-width:991px){

.contact-wrapper{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.contact-hero{

padding:70px 20px;

}

.contact-hero h1{

font-size:34px;

}

.row{

flex-direction:column;

gap:15px;

}

.contact-info,
.contact-form{

padding:30px;

}

}

@media(max-width:480px){

.contact-hero h1{

font-size:28px;

}

.contact-hero p{

font-size:15px;

}

.contact-info h2,
.contact-form h2{

font-size:24px;

}

button{

width:100%;

}

.map-box iframe{

height:300px;

}
footer h3 {
    font-size: 18px;
  }

  footer p {
    font-size: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

}
/* =============================================
   FOOTER
============================================= */
footer {
  background: #061c54;
  color: #fff;
  padding: 50px 8%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

footer h3 {
  margin-bottom: 20px;
  color: #08a6df;
}

footer p {
  margin-bottom: 10px;
  line-height: 28px;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  color: #ccc;
}
.dropdown-menu a,
.submenu a,
.mobile-dropdown a {
    text-decoration: none !important;
}