* {
margin: 0;
padding: 0;
box-sizing: border-box;
caret-color: transparent;
scroll-behavior: smooth;
}

body{
font-family: "Google Sans", sans-serif;
line-height:1.6;
border-left: 1px solid #000;
}


.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  padding-right: 80px;
  padding-left: 20px;
}

.brand-name{
  display:flex;
  flex-direction:column; 
  line-height:1.1;
}

.brand-name span{
  color:white;
  font-weight:600;
  font-size:16px;
  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%;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px 25px;
}

#hero{
width:100%;
height:50vh;
background: #000;
position:relative;
overflow:hidden;
display:flex;
justify-content:center;
align-items:flex-start;

}

.hero-image{
width:100%;
height:100%;
object-fit:cover;
object-position:center;
display:block;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.hero-text h1 {
 font-size: 40px;
  margin-bottom: 10px;
}

.about-section {
  border-top: 1px solid #000;
  width: 100%;
  padding: 80px 0;
  background: white;
}

.about-container {
  width: 85%;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-left {
  flex: 1;
}

.about-left h2 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
}

.about-right {
  flex: 1;
}

.about-right p {
 font-size: 14px;
  line-height: 1.8;
  color: #000;
}

#join-options{
width:100%;
padding:80px 0;
background:#f5f5f5;
text-align:center;
border-top: 1px solid #000;
}

.options-container{
width:85%;
margin:auto;
}

.options-row{
display:flex;
gap:30px;
flex-wrap:wrap;
justify-content:center;
margin-top:40px;
}

.option-card{
flex:1;
min-width:260px;
max-width:320px;
background: rgb(13, 8, 57);
padding:40px 25px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:0.3s;
border-radius: 20px;
display:flex;
flex-direction:column;
justify-content:space-between;
}

.option-card h3{
font-size:22px;
margin-bottom:15px;
color: white;
}

.option-card p{
font-size: 14px;
line-height:1.6;
color:white;
}

.option-btn{
display:inline-block;
margin-top:20px;
background:lightgreen;
color: #000;;
padding:10px 30px;
text-decoration:none;
font-weight:bold;
border: 1px solid lightgreen;
border-bottom: 2px solid lightgreen;
transition:1s;
}

.option-btn:hover{
background: transparent;
border: 1px solid lightgreen;
border-bottom: 2px solid lightgreen;
color: white;
}

#scholarship{
width:100%;
height:auto;
display:flex;
border-top:1px solid #000;
}

.scholarship-container{
display:flex;
width:100%;
height:100%;
}

.scholarship-image{
flex:1;
}

.scholarship-image {
  flex: 0 0 50%;     
  width: 50%;        
  box-sizing: border-box;  
}

.scholarship-image img {
  width: 100%;        
  height: 100%; 
  border-top: none;
  object-fit: cover;   
  display: block;      
}

.scholarship-content {
  flex: 0 0 50%;          
  width: 50%;            
  box-sizing: border-box; 
  background: white;
  padding: 60px;          
  display: flex;
  flex-direction: column;
  justify-content: center; 
   border-left: 1px solid #000 ; 
   
}

.scholarship-content h2{
font-size: 22px;
margin-bottom:20px;
}

.scholarship-content p{
font-size: 14px;
line-height:1.8;
margin-bottom:20px;
color: #000;
}

.scholarship-btn{
display:inline-block;
background:lightgreen;
color:#000;
padding:10px 30px;
text-decoration:none;
font-weight:bold;
border:1px solid transparent;
border-bottom:4px solid transparent;
transition:0.5s;
width:fit-content;
}

.scholarship-btn:hover{
border:1px solid #000;
border-bottom:4px solid #000;
}



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;
  }
  
.dropdown-menu {
  position: static;     
}

.about-container {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.options-row {
    flex-direction: column;   
    align-items: center;      
  }
 .about-right {
    text-align: center;
  }

    .option-card {
    width: 100%;             
    max-width: 100%;          
  }

      #scholarship {
    height: auto;
  }

   .scholarship-container {
    flex-direction: column;   
  }

  .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;
  }

.hero-text h1 {
 font-size: 40px;
  margin-bottom: 10px;
}

.hero-text h2{
  font-size: 30px;
  margin-top: 10px;
  font-weight: bold;
}

}



@media (min-width: 769px) and (max-width: 1024px) {

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text h2 {
    font-size: 40px;
  }

  .about-container {
    width: 90%;
    gap: 25px;
  }

  .about-left h2 {
    font-size: 22px;
  }

  .about-right p {
    font-size: 14px;
  }

  .options-row {
    gap: 20px;
    justify-content: center;
  }

  .option-card {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    padding: 30px 20px;
  }

  .option-card h3 {
    font-size: 20px;
  }

  .option-card p {
    font-size: 13px;
  }

  .scholarship-content {
    padding: 40px;
  }

  .scholarship-content h2 {
    font-size: 22px;
  }

  .scholarship-content p {
    font-size: 14px;
  }

  .about-container,
  .options-container {
    width: 90%;
  }
  
  .row {
    width: 90%;
  }

  .col {
    flex-basis: 45%;
  }
}