o 


*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins', sans-serif;
}


/* NAVBAR */
.navbar{
 display:flex;
  justify-content:space-between;
  align-items:center;
  background:white;
  padding:10px 20px;
  border-bottom:4px solid #9cc33b;
  border-radius:10px;
  position:relative; 
}

/* LOGO */
.logo img{
  width:70px;
  animation:outerPulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  border-radius:50%;
/*  margin-left:1px;*/
}

@keyframes outerPulse{
  0%{transform:scale(1);}
  50%{transform:scale(1.05);}
  100%{transform:scale(1);}
}

.logo a{
  display:flex;
  align-items:center;
  gap:5px;
  text-decoration:none;
}

.logo-title{
  font-size:12px;
  font-weight:700;
  color:#1f6fb2;
  width: 220px;
}

/* NAV LINKS */
.nav-links{
  list-style:none;
  display:flex;
  gap:3px;
  align-items:center;
}

.nav-links li{
  position:relative;
}

/*  MAIN FIX conection */
.nav-links li a{
  display:flex;              
  align-items:center;
  gap:6px;
  color:#1f6fb2;
  text-decoration:none;
  font-weight:600;
  padding:10px 12px;
  white-space:nowrap;
  transition:0.3s;
  font-size: 14px;
}  


/* ICON fix */
.nav-links li a i{
  font-size:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
}

/* HOVER */
.nav-links li a:hover{
  color:#9cc33b;
  border-bottom:2px solid #9cc33b;
  border-radius:5px;
}



@media (max-width:768px){

/* NAVBAR */
.navbar{
  flex-direction:column;
  align-items:flex-start;
}

/* MENU ICON */
.menu-icon{
  display:block;
  position:absolute;
  right:20px;
  top:15px;
}

/* NAV LINKS */
.nav-links{
  flex-direction:column;
  width:100%;
  background:#f4f7fb;
  text-align:center;
  max-height:0;
  overflow:hidden;
  transition:0.4s ease;  
  padding:0 10px;
}

/* FIXED SHOW MENU */
.nav-links.show{
  max-height:100vh;    
  overflow-y:auto;     
  padding:15px 10px;
}

/* MENU ITEMS */
.nav-links li{
  margin:8px 0;
}

/* MENU LINKS */
.nav-links li a{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  background:white;
  padding:12px;
  border-radius:10px;
  font-size:16px;
  font-weight:600;
  color:#1f6fb2;
  box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

/* ICON FIX */
.nav-links li a i{
  font-size:15px;
}

/* HOVER */
.nav-links li a:hover{
  background:#1f6fb2;
  color:white;
  transform:translateY(-2px);
}

/* SUBMENU MOBILE FIX */
.submenu{
  position:static;
  display:none;
  box-shadow:none;
  
}

.dropdown.active .submenu{
  display:block;
}

/* LOGO TEXT */
.logo-title{
  font-size:10px;
}

}




/* MENU ICON */
.menu-icon{
  display:none;
  font-size:26px;
  color:#1f6fb2;
  cursor:pointer;
}


/* DROPDOWN */
.dropdown{
  position:relative;
}

.dropdown > a{
  display: inline-flex;
  align-items: center;
  gap:1px; 
}

.dropdown > a::after{
  content: "▾";
  font-size: 18px;
  margin-left: 0;
  display: inline-block;              
  transition: transform 0.3s ease;     
}

/* hover pe rotate */
.dropdown:hover > a::after{
  transform: rotate(180deg);
}

/* mobile / click active pe bhi rotate */
.dropdown.active > a::after{
  transform: rotate(180deg);
}

/* MEGA MENU FULL WIDTH FIX */
.mega-menu{
  display:none;
  position:absolute;
  top:100%; 
  left: 0;
width: 52vw;
font-size: 14px;
 background:linear-gradient(
    135deg,
    rgba(13,59,117,0.85),
    rgba(31,111,178,0.85)
  );

  padding:20px 23px;
  justify-content:space-between;
  gap:25px;

  color:white;
  z-index:999;

  border-radius:0;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
/*  line-height: 35px;*/
}

/* HOVER */
.dropdown:hover .mega-menu{
  display:flex;

}

/* CENTER CONTENT */
.mega-menu{
  left:50%;
  transform:translateX(-50%);  
}
.mega-menu h3{
  color: yellow;
}
.mega-col{
  list-style: none;
  
}
.mega-col span{
    text-align:center;
}

@media (max-width: 600px){

  .mega-menu{
    position: static;
    width: 100%;
    transform: none;
    padding: 0;
    background: #f1f1f1;
    box-shadow: none;
    gap: 0;
    display: none; 
    flex-direction: column;
  }

  .dropdown.active .mega-menu{
    display: block;
  }

  .mega-col{
    width: 100%;
    display: block;
    background: #fff;
    border-bottom: 1px solid #ddd;
    overflow: visible;
  }

  .dropdown > a{
    display: block;
    padding: 14px 16px;
    font-weight: 600;
    color: orange;
    background: #f1f1f1;
    border-bottom: 1px solid #ddd;
    position: relative;
  }

  .dropdown > a::after{
    content: "▾";
    position: absolute;
    right: 15px;
    font-size: 14px;
  }

  .mega-col h3{
    margin: 0;
    padding: 14px 16px;
    font-size: 15px;
    color: #1f6fb2; 
    position: relative;
    cursor: pointer;
  }

  .mega-col h3::after{
    content: "▾";
    position: absolute;
    right: 15px;
    font-size: 14px;
  }

  .mega-col ul{
    display: none;
    padding: 0 16px 10px;
    background: #fff;
    position: relative;
    z-index: 1;
  }

  .mega-col ul li{
    padding: 6px 0;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    color: #000;
  }

  .mega-col.active ul{
    display: block;
  }

  .mega-col:hover > ul{
    display: block;
  }

  .mega-col h3:hover + ul{
    display: block;
  }

  /*  hover color change */
  .mega-col h3:hover{
    background: #1f6fb2;
    color: #fff;
  }

  .mega-col h3:hover::after{
    color: #fff;
  }

  /*  active color change */
  .mega-col.active h3{
    background: #1f6fb2;
    color: #fff;
  }

  .mega-col.active h3::after{
    color: #fff;
  }
}


@media (max-width:768px){

/* NAVBAR LAYOUT */
.navbar{
  flex-direction:column;
  align-items:flex-start;
}

/* MENU ICON FIXED TOP RIGHT */
.menu-icon{
  display:block;
  position:absolute;
  right:20px;
  top:15px;
}

/* NAV LINKS */
.nav-links{
  display:flex;
  flex-direction:column;
  width:100%;
  background:#f4f7fb;
  text-align:left;          /* center → left */
  padding:0;                /* side gap remove */

  /* animation */
  max-height:0;
  overflow:hidden;
  transition:0.4s ease;
}

/* WHEN OPEN */
.nav-links.show{
  max-height:500px;
  padding:10px 0;          /* clean spacing */
}

/* Menu Items */
.nav-links li{
  margin:0;                /* remove side margin */
  width:100%;
}

.nav-links li a{
  display:block;
  width:100%;              /* full width */
  background:white;
  padding:14px 16px;
  border-radius:0;         /* card → full bar */
  font-size:16px;
  font-weight:600;
  color:#1f6fb2;
  box-shadow:none;         /* clean look */
  border-bottom:1px solid #ddd;  /* divider */
}

/* Hover Effect */
.nav-links li a:hover{
  background:#1f6fb2;
  color:white;
  transform:none;          /* remove jump */
}

.logo-title{
  font-size:10px;
}

}

/*header section end*/



/* second SECTIONs */
.main-about{
padding:15rem 7%;
width:100%;

/* light theme background */
background:
url(img/backgroung-pattern-1.webp);

background-size:cover;
background-position:center;
background-repeat:no-repeat;

font-size:62.5%;
overflow-x:hidden;
scroll-behavior:smooth;
scroll-padding-top:6rem;
}

/* LAYOUT */

.inner-main-about{
display:flex;
align-items:center;
justify-content:space-between;
flex-wrap:nowrap;
gap:4rem;
}

/* IMAGE */

.about-inner-content-left{
flex:0 0 35%;
min-width:20rem;
}

.about-inner-content-left img{
width:100%;
display:block;

/* modern effect */
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
transition:0.4s;
}

.about-inner-content-left img:hover{
transform:scale(1.03);
}

/* TEXT */

.about-inner-content{
flex:0 0 60%;
min-width:25rem;
}

/* HEADING */

.about-right-content h2{
font-size:2rem;
padding:1.5rem 0;

color:#0f4c81; /* dark blue */

font-weight:bold;
line-height:3rem;
}

/* PARAGRAPH */

.about-right-content p{
font-size:1.5rem;
padding:1rem 0;

color:#444;

font-family:"Inter",sans-serif;
text-align:left;
line-height:2.5rem;
}

/* SECOND TEXT */

.aboutsec-content{
line-height:2.5rem !important;
}

/* OPTIONAL GREEN ACCENT LINE */

.about-right-content h2::after{
content:"";
display:block;
width:80px;
height:4px;
background:#9cc33b;
margin-top:10px;
border-radius:10px;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
.inner-main-about {
flex-wrap: wrap;
gap: 2rem;
}

.about-inner-content-left,
.about-inner-content {
flex: 1 1 100%;
min-width: auto;
}
}
/*second section end*/







/*thrd section start*/
/* STAFF SECTION */
.staff-section{
display:flex;
gap:50px;
padding:70px 8%;

/* blue overlay theme */
/*background-image:
linear-gradient(rgba(15,76,129,0.85), rgba(31,111,178,0.75)),*/
background-image:
linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.4)),
url(img/pic1.webp);

background-position:center;
background-size:cover;
background-repeat:no-repeat;
background-attachment:fixed;
position:relative;
}

/* LEFT SIDE TEXT */

.staff-text{
flex:1;
}

.staff-text h1{
font-size:48px;
font-weight:700;
margin-bottom:20px;
color:#fff;
position:relative;
}

/* green accent line */

.staff-text h1::after{
content:"";
display:block;
width:80px;
height:4px;
background:#9cc33b;
margin-top:10px;
border-radius:10px;
}

.staff-text p{
font-size:16px;
line-height:1.8;
color:#e6e6e6;
margin-bottom:15px;
}

/* RIGHT SIDE SCROLL AREA */

.staff-container{
flex:1;
height:400px;
overflow:hidden;
position:relative;
}

/* SCROLLING GRID */

.staff-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
animation:scrollUp 20s linear infinite;
}

/* CARD */

.staff-card{
background:#ffffff;
border-radius:12px;
padding:20px;
text-align:center;

box-shadow:0 8px 25px rgba(0,0,0,0.15);

transition:0.3s;
}

/* HOVER EFFECT */

.staff-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.25);
}

/* IMAGE */

.staff-card img{
width:80px;
height:80px;
border-radius:50%;
object-fit:cover;
margin-bottom:10px;
border:3px solid #9cc33b;
}
/* NAME */
.staff-card h3{
font-size:16px;
color:#1f6fb2;
}
/* POSITION */
.staff-card span{
font-size:13px;
color:#666;
}
/* SCROLL ANIMATION */
@keyframes scrollUp{
0%{
transform:translateY(0);
}
100%{
transform:translateY(-50%);
}
}
/* PAUSE SCROLL ON HOVER */
.staff-container:hover .staff-grid{
animation-play-state:paused;
}
/* RESPONSIVE */
@media(max-width:900px){
.staff-section{
flex-direction:column;

background-attachment: scroll;
}
.staff-container{
height:300px;
}
}






/*four section start*/
.wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;   
  align-items: center;      
  padding: 20px;
  background: linear-gradient(135deg, #f5f7fa, #e4e7eb);
}
.vision {
  max-width: 900px;
  width: 100%;
  text-align: center;
  background: #ffffff;
  color: #333;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Heading */
.vision h1 {
  color: #0f4c81;
  font-size: 2.5rem;
  margin-bottom: 20px;
}
/* Simple underline */
.vision h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #9cc33b;
  margin: 8px auto 0;
  border-radius: 10px;
}
/* Paragraph */
.vision p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #555;
}
/* Label */
.label {
  font-weight: bold;
  color: #0f4c81;
}
/* Logo */
.second-logo{
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

.second-logo img {
  width: 110px;
  border-radius: 50%;
  border: 2px solid #9cc33b;
}

/* Responsive */
@media (max-width: 768px) {
  .vision {
    padding: 30px 20px;
  }
  .vision h1 {
    font-size: 2rem;
  }
  .vision p {
    font-size: 0.95rem;
  }
  .second-logo img {
    width: 85px;
  }
}

@media (max-width: 480px) {
  .vision h1 {
    font-size: 1.6rem;
  }
 .second-logo img {
    width: 70px;
  }
}

/*four section end*/


/*five section*/
/* SECTION */
.apply-section{
  background: linear-gradient(135deg, #1f6fb2, #0f4c81); /* ðŸ”¥ theme blue */
  padding:60px 5%;
  text-align:left;
}

/* TITLE */
.apply-section h2{
  color:#fff;
  font-size:2rem;
  margin-bottom:5px;
  font-weight:bold;
}

.apply-subtitle{
  color:#dbeafe; /* ðŸ”¥ soft light blue */
  margin-bottom:30px;
}

/* CONTAINER */
.apply-container{
  display:flex;
  gap:30px;
  flex-wrap:wrap;
}

/* CARD */
.apply-card{
  flex:1;
  min-width:280px;

  /* ðŸ”¥ glass effect + theme */
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);

  color:#fff;
  padding:25px;
  border-radius:12px;
  position:relative;

  border:1px solid rgba(255,255,255,0.15);

  box-shadow:0 8px 25px rgba(0,0,0,0.25);
  transition:0.3s;
}

.apply-card:hover{
  transform:translateY(-8px) scale(1.02);
  box-shadow:0 15px 35px rgba(0,0,0,0.3);
}

/* ICON */
.apply-icon{
  position:absolute;
  top:20px;
  right:20px;
  font-size:28px;

  color:#9cc33b; /* ðŸ”¥ theme green */
}

/* HEADINGS */
.apply-card h3{
  margin-bottom:10px;
  font-size:1.3rem;
}

/* TEXT */
.apply-card p{
  font-size:0.95rem;
  line-height:1.6;
  color:#e2e8f0;
}
/*five section end*/





/*footer section start*/

.footerone{
position: relative;
width: 100%;
/*background:  #9cc33b;*/
 background: linear-gradient(135deg, #1f6fb2, #0f4c81); /* ðŸ”¥ theme blue */
/*  padding: 120px 5% 1%;*/
overflow: hidden;
min-height: 100px;
padding-top: 80px;
}

.waves{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:120px;
  overflow:hidden;
}

.wave{
     position: absolute;
      top:0;
      left: 0;
  width:200%;
  height:100%;
   
  background:url("img/wave4.webp") repeat-x;
  background-size:1000px 100px;
}

.wave:nth-child(1){opacity:1; z-index:4; animation:waveMove 6s linear infinite;}
.wave:nth-child(2){opacity:0.5; z-index:3; animation:waveMove 8s linear infinite reverse;}
.wave:nth-child(3){opacity:0.3; z-index:2; animation:waveMove 10s linear infinite;}
.wave:nth-child(4){opacity:0.7; z-index:1; animation:waveMove 12s linear infinite reverse;}



@keyframes waveMove{
  0%{background-position-x:0;}
  100%{background-position-x:1000px;}
}

footer{ 
  padding:30px 30px;
  border-radius:15px;
  position:relative;
  z-index:2;
  background:
/*  linear-gradient(rgba(0,0,0,0.7), rgba(15,76,129,0.85)),*/
  linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.4)),
  url(img/pic1.webp);
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  background-attachment:fixed;
  color:#fff;
  font-family:'Segoe UI', sans-serif;
}


.footer-container{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
  justify-content:space-between;
  gap:130px;
   max-width: 1200px;
  margin: auto;
    padding: 20px;
    border-bottom: 2px solid #9cc33b;
    border-radius:15px;
}


.footer-logo{
  flex:1;
  min-width:220px;
  text-align:left;
  margin-bottom:80px;
  margin-top: 10px;
}

.footer-logo img{
  width:85px;
  border-radius:50%;
  border:3px solid #9cc33b;
  box-shadow:0 0 15px rgba(156,195,59,0.6);

  margin-bottom:10px;
}

.footer-logo h2{
  color:#fff;
  font-size:1.4rem;
}

.footer-tagline{
  font-size:0.9rem;
  color:#cfd8e3;
}

.footer-section{
  flex:1;
  min-width:180px;
  transition:0.3s;
}

.footer-section:hover{
  transform:translateY(-5px);
}

.footer-section h3{
color:#fff;
border-bottom:2px solid #9cc33b;
display:inline-block;
padding-bottom:5px;
margin-bottom:10px;
font-size:1rem;
}

.footer-section p,
.footer-email a,
.footer-section a{
  color:#e6eef7; 
  font-size:0.9rem;
  margin:6px 0;
  text-decoration:none;
}

.footer-section a:hover{
  color:#9cc33b;
  padding-left:5px;
}

.footer-section i{
  margin-right:8px;
  color:#9cc33b;
}


.footer-email{
  display:flex;
  align-items:center;
  gap:8px;
}

.footer-icons{
  margin-top:10px;
}

.footer-icon{
  margin-right:10px;
  color:#ddd;
  font-size:1.2rem;
  transition:0.3s;
}

.footer-icon:hover{
  color:#9cc33b;
  transform:scale(1.2);
  text-shadow:0 0 10px rgba(156,195,59,0.7);
}

.footer-bottom{
  margin-top:30px;
  padding-top:15px;
  border-top:1px solid rgba(255,255,255,0.2);
  color:#cfd8e3;
  text-align:center;
}

.footer-copy{
  text-align:center;
  margin-top:15px;
  color:#fff;
  font-size:0.85rem;
}

@media (max-width:768px){

.footer-container{
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.footer-logo{
  text-align:center;
}

.footer-email{
  justify-content:center;
}

}


/*footer end*/


/* POPUP BACKGROUND */
.popup{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* POPUP BOX */
.popup-content{
  position: relative;
  max-width: 500px;
  width: 90%;
}

/* IMAGE */
.popup-content img{
  width: 100%;
  border-radius: 10px;
  background-size: cover;
  height: 550px;
}

/* CLOSE BUTTON */
.close-btn{
  position: absolute;
  top: -10px;
  right: -10px;
  background: white;
  color: black;
  font-size: 22px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  cursor: pointer;
}