* {
margin: 0;
padding: 0;
box-sizing: border-box;
caret-color: transparent;
}

body{
font-family: "Google Sans", sans-serif;
line-height:1.6;
border-left:1px solid black;
scroll-behavior: smooth;
}

.logo {
width: 60px;
height: 60px;
border-radius: 100px;
margin-right: 30px;
}

.brand{
display:flex;
align-items:center;
gap:10px;
text-decoration:none;
}

.brand-name{
display:flex;
flex-direction:column; 
line-height:1.1;
}

.brand-name span{
color:white;
font-weight:600;
font-size:clamp(10px,1vw,13px);
letter-spacing:2px;
}
 
.brand-name span:first-child{
font-weight:700;
font-size: 18px;
line-height: 1.6;
}

.navbar {
width: 100%;
height: 100px;
background: rgb(13, 8, 57);
display: flex;
align-items: center;
justify-content: center;
position: sticky;
top: 0;
z-index: 100;
}

.navbar-container {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between; 
}

.bar {
display: block;
width: 20px;
height: 2px;
background: white;
margin: 5px 0;
transition: 0.3s;
}

.navbar-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
}

.navbar-menu {
display: flex;
list-style: none;
flex: 1;        
justify-content: space-evenly; 
align-items: center;
}

.navbar-menu li a {
position: relative;
font-size: 16px;
font-weight: bold;
color: white;
text-decoration: none;
transition: color 0.3s ease;
}

.dropdown {
position: relative;
}

.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
background: rgb(13, 8, 57);
min-width: 150px;
min-height: 50px;
display: none;
flex-direction: column;
z-index: 1000;
}

.dropdown-menu li a {
padding: 10px;
display: block;
white-space: nowrap;
color: white;
font-weight: bold;
}

.dropdown:hover .dropdown-menu {
display: flex;
}

.navbar-menu li a::after {
content: "";
position: absolute;
left: 0;
bottom: -3px;
width: 0%;
height: 1px;
background: lightgreen ;
transition: width 0.3s ease;
}

.navbar-menu li a:hover::after {
width: 100%;
}

#join-hero{
width:100%;
height:50vh;
position:relative;
}

.join-hero-image{
width:100%;
height:100%;
object-fit:cover;
}

h1{
font-size: 40px;
}



.join-hero-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:white;
background:rgba(0,0,0,0.4);
padding:30px 40px;
}

#about-intro{
width:100%;
margin-top: 71px;
background:white;
}

.about-container{
width:85%;
margin:auto;
}

.about-row {
display: flex;
align-items: center;
gap: 40px;
flex-wrap: wrap;
position: relative;
}

.about-left{
flex:1;
text-align:center;
}

.about-logo{
height: 250px;
width:350px;
}

.about-right {
flex: 1;
padding-left: 20px;      

}

.about-right h2{
font-size: 22px;
display: flex;
}

.about-right p{
font-size: 14px;
line-height:1.8;
color:#000;
margin-bottom:25px;
margin-top: 20px;
}

.what-we-do {
  width: 100%;
  border-top: 1px solid #000;
  margin-top: 50px; 
  background: #f5f5f5;
}

.what-we-do .container {
display: flex;
align-items: flex-start;
gap: 40px;
margin-top: 40px;
}

.left, .right {
width: 50%;
}

.left img {
width: 80%;
height: auto;
margin-left: 50px;
margin-bottom: 30px;

}

.right h2 {
font-size: 22px;
margin-bottom: 20px;
margin-top: 30px;
margin-left: 70px;
}

.paragraph-container {
display: flex;
align-items: flex-start;
gap: 15px;
margin-left: 50px;
}

.line {
width: 4px;
background: lightgreen;
height: auto;
}

.paragraph-container p {
margin: 0;
font-size: 14px;
line-height: 1.6;
max-width: 500px;
}

.how-we-do-it {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 60px; 
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  box-sizing: border-box;
  border-top: 1px solid #000;
}

.how-we-do-it .image-container {
  flex: 1;
}

.how-we-do-it img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.how-we-do-it .content {
  flex: 1;
}

.how-we-do-it h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #000;
  margin-left: 40px;
}

.how-we-do-it p {
 font-size: 14px;
  line-height: 1.6;
  color: #000;
  margin-left: 40px;
}

.vision-mission {
  display: flex;
  width: 100%;
  height: 350px; 
  background-color: #f5f5f5;
  overflow: hidden;
}

.vision-mission .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
  background-color: #f5f5f5;
   border-top: 1px solid #000;
    border-left: 1px solid #000; 
     border-right: 1px solid #000;
     
}

.vision-mission .image-container {
  flex: 1;
  margin: 0; 
  padding: 0; 
  overflow: hidden;
}

.vision-mission .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block; 
}

.vision-mission .content h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #000;
  margin-left: 20px;
}

.vision-mission .content p {
 font-size: 14px;
  line-height: 1.8;
  color: #000;
  margin-left: 20px;
}

footer {
background: rgb(13, 8, 57);
padding: 50px 0 30px;
margin-top: 30px;
}

.row {
width: 85%;
margin: auto;
display: flex;
flex-wrap: wrap;
align-items: flex-start;
justify-content: space-between;
}

.col {
flex-basis: 50%;
padding: 10px;
}

.col h3 {
font-size: 14px;
margin-bottom: 10px;
color: white;
}

.underline {
margin-top: 10px;
width: 85px;
height: 1px;
background: lightgreen;
}

ul li {
list-style: none;
margin-top: 20px;
}

ul li a {
font-size: 14px;
font-weight: bold;
text-decoration: none;
color: white;
}

footer ul li a {
position: relative; 
color: white;
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease; 
}

footer ul li a::after {
content: "";
position: absolute;
left: 0;
bottom: -3px; 
width: 0%;
height: 1px;
background: lightgreen; 
transition: width 0.3s ease;
}

footer ul li a:hover::after {
width: 100%;
}

hr {
margin-top: 20px;
width: 100%;
border: 0;
border-bottom: 1px solid lightgreen;
}

.copyright {
font-size: 12px;
font-family: "Google Sans", sans-serif;
text-align: center;
font-weight: 500;
margin-top: 20px;
color: white;
}



@media (max-width: 768px) {

  .navbar-toggle {
    display: block;
    position: relative;
    z-index: 2001;
  }

  
  .navbar-toggle .bar {
    transition: all 0.3s ease;
  }

  .navbar-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .navbar-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }


  .navbar-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    background: rgb(13, 8, 57);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 1s ease;
    z-index: 2000;
    justify-content: flex-start;   
    align-items: flex-start;       
    padding-top: 120px;           
    padding-left: 30px;            
    gap: 20px;
  }

  .navbar-menu.active {
    transform: translateX(0);
  }

  .navbar-menu li {
    margin: 15px 0;
  }
.separator {
display: none;
}

.about-right h2 {
text-align: center;
} 

.about-row {
  display: flex;
 flex-direction: column;
}

.options-row {
    flex-direction: column;   
    align-items: center;      
  }
 .about-right {
    text-align: center;
  }

    .option-card {
    width: 100%;              /* full width */
    max-width: 100%;          /* remove limit */
  }

    #scholarship {
    height: auto;
  }

   .scholarship-container {
    flex-direction: column;   /* stack items */
  }

  .scholarship-image,
  .scholarship-content {
    width: 100%;            
    flex: 0 0 100%;          
  }

  .scholarship-content {
    padding: 30px 20px;       
    border-left: none;        
    border-top: 1px solid #000; 
  }

    .scholarship-btn {
    display: block;
    margin: 0 auto;
  }
  
.dropdown-menu {
  position: static;     
}


}
@media (max-width: 768px) {

  /* HERO TEXT */
  .join-hero-text {
    width: 90%;
    padding: 20px;
  }

  h1 {
    font-size: 24px;
  }

  /* ABOUT INTRO */
  .about-container {
    width: 90%;
  }

  .about-logo {
    width: 100%;
    max-width: 280px;
    height: auto;
  }

  .about-right h2 {
    font-size: 20px;
    text-align: center;
  }

  .about-right p {
    font-size: 14px;
    text-align: center;
  }

  /* WHAT WE DO SECTION */
  .what-we-do .container {
    flex-direction: column;
    gap: 20px;
  }

  .left,
  .right {
    width: 100%;
  }

  .left img {
    width: 100%;
    margin: 0;
  }

  .right h2 {
    margin-left: 0;
    text-align: center;
  }

  .paragraph-container {
    margin-left: 0;
    flex-direction: column;
    align-items: center;
  }

  .line {
    display: none;
  }

  .paragraph-container p {
    text-align: center;
    max-width: 100%;
  }

  /* HOW WE DO IT */
  .how-we-do-it {
    flex-direction: column;
    padding: 20px;
  }

  .how-we-do-it h2,
  .how-we-do-it p {
    margin-left: 0;
    text-align: center;
  }

  /* VISION & MISSION */
  .vision-mission {
    flex-direction: column;
    height: auto;
  }

  .vision-mission .content {
    padding: 20px;
    text-align: center;
  }

  .vision-mission .content h2,
  .vision-mission .content p {
    margin-left: 0;
  }

  /* FOOTER */
  .row {
    flex-direction: column;
    text-align: center;
  }

  .col {
    flex-basis: 100%;
  }
}


@media (min-width: 769px) and (max-width: 1024px) {

  /* HERO */
  h1 {
    font-size: 32px;
  }

  .join-hero-text {
    padding: 25px 30px;
    width: 80%;
  }

  /* ABOUT SECTION */
  .about-container {
    width: 90%;
  }

  .about-logo {
    width: 300px;
    height: auto;
  }

  .about-right h2 {
    font-size: 22px;
  }

  .about-right p {
    font-size: 14px;
  }

  /* WHAT WE DO */
  .what-we-do .container {
    gap: 20px;
    align-items: center;
  }

  .left img {
    width: 90%;
    margin-left: 20px;
  }

  .right h2 {
    font-size: 22px;
    margin-left: 30px;
  }

  .paragraph-container {
    margin-left: 20px;
  }

  .paragraph-container p {
    font-size: 14px;
  }

  /* HOW WE DO IT */
  .how-we-do-it {
    padding: 30px;
    gap: 20px;
  }

  .how-we-do-it h2 {
    font-size: 22px;
    margin-left: 20px;
  }

  .how-we-do-it p {
    font-size: 14px;
    margin-left: 20px;
  }

  /* VISION & MISSION */
  .vision-mission {
    height: auto;
  }

  .vision-mission .content {
    padding: 30px;
  }

  .vision-mission .content h2 {
    font-size: 22px;
  }

  /* FOOTER */
  .row {
    width: 90%;
  }

  .col {
    flex-basis: 45%;
  }
}