*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{
background:#f7f9fc;
color:#222;
}

section{
padding:90px 8%;
}

/* HEADER */

header{
background:#fff;
padding:15px 3%;
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;
   left: 100%;
  right: auto;
  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;
  transition: all 0.3s;
}

.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;
      text-decoration: none !important;
    }

    .nav-links a:hover{
      color:#0aa6df;
    }
    .contact-info{
display:flex;
flex-direction:column;
justify-content:center;
}

.contact-info h3{
color:#08276d;
margin-bottom:20px;
}
.header-contact{
    display:flex;
    align-items:flex-start;
    gap:10px;
}

.header-contact i{
    color:#ff4d4d;
    font-size:22px;
    margin-top:4px;
}

.phone-numbers{
    display:flex;
    flex-direction:column;
    line-height:1.5;
}

.phone-numbers a{
    text-decoration:none;
    color:#08276d;
    font-weight:600;
    font-size:15px;
    transition:0.3s;
}

.phone-numbers a:hover{
    color:#f7941d;
}


.menu-toggle{
    display:none;
    font-size:32px;
    font-weight:700;
    color:#08276d;
    cursor:pointer;
    line-height:1;
}
/* 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;
    }
/* HERO */

.career-hero{

height:70vh;

background:url("../Images/careers-bg.jpg") center/cover;

position:relative;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

color:#fff;

}

.hero-overlay{

position:absolute;

inset:0;

background:rgba(0,0,0,.55);

}

.hero-content{

position:relative;

z-index:2;

max-width:700px;

}

.hero-content h1{

font-size:60px;

margin-bottom:20px;

}

.hero-content span{

color:#08a6df;

}

.hero-content p{

font-size:20px;

margin-bottom:35px;

}

.btn{

display:inline-block;

padding:16px 35px;

background:#08a6df;

color:#fff;

border-radius:40px;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.btn:hover{

background:#08276d;

}

/* WHY */

.why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.card{

background:#fff;

padding:35px;

border-radius:20px;

text-align:center;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.3s;

}

.card:hover{

transform:translateY(-8px);

}

.icon{

font-size:45px;

margin-bottom:20px;

}

/* JOBS */

.jobs{

background:#eef5ff;

}

.job-card{

background:#fff;

padding:30px;

margin-bottom:25px;

border-left:6px solid #08a6df;

border-radius:15px;

box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.job-card h3{

color:#08276d;

margin-bottom:15px;

}

.job-card p{

margin:8px 0;

}

.job-card a{

display:inline-block;

margin-top:15px;

text-decoration:none;

background:#08276d;

color:#fff;

padding:12px 25px;

border-radius:30px;

}

/* BENEFITS */

.benefit-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

}

.benefit-grid div{

background:#fff;

padding:25px;

text-align:center;

border-radius:15px;

box-shadow:0 10px 20px rgba(0,0,0,.08);

}

/* APPLY */

.apply form{

max-width:800px;

margin:auto;

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.apply input,
.apply textarea{

width:100%;

padding:15px;

margin-bottom:20px;

border:1px solid #ddd;

border-radius:10px;

font-size:16px;

}

.apply button{

width:100%;

padding:16px;

border:none;

background:#08276d;

color:#fff;

font-size:18px;

border-radius:10px;

cursor:pointer;

transition:.3s;

}

.apply button:hover{

background:#08a6df;

}

/* RESPONSIVE */

@media(max-width:992px){

.why-grid{

grid-template-columns:repeat(2,1fr);

}
.navbar {
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    width: 100%;
  }


.benefit-grid{

grid-template-columns:repeat(2,1fr);

}

.hero-content h1{

font-size:45px;

}

}

@media(max-width:768px){
    header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-direction:row;
    padding:12px 20px;
    background:#fff;
    position:sticky;
    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;
}


section{

padding:70px 20px;

}

.hero-content h1{

font-size:35px;

}

.hero-content p{

font-size:16px;

}

.why-grid{

grid-template-columns:1fr;

}

.benefit-grid{

grid-template-columns:1fr;

}

h2{

font-size:30px;

}

}

@media(max-width:480px){

.hero-content h1{

font-size:30px;

line-height:40px;

}
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;
}



.hero-content p{

font-size:15px;

}

.btn{

display:block;

width:100%;

text-align:center;

}

}