* {
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;
}


.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  padding-left: 20px;
  padding-right: 70px;
}

.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%;
}



.application-section {
  width: 100%;
  padding: 60px 0;
  background: #f9f9f9;
}

.app-container {
  width: 85%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.app-left {
  flex: 1;
}

.app-left h1 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  line-height: 1.5;
}

.app-right {
  flex: 1;
}

.app-right p {
 font-size: 14px;
  color: #000;
  line-height: 1.8;
}

.start-application-section {
  width: 100%;
  padding: 60px 0;
  background: rgb(13, 8, 57);
}

.start-container {
  width: 95%;
  margin: auto;
}

.application-card {
  width: 600px;
  background: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card-image {
  width: 100%;
  height: 250px;
  background: url('Images/Background/kid.jpg') center/cover no-repeat;
}

.card-content {
  padding: 20px;
}

.card-content p {
   font-size: 14px;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.6;
}


.apply-btn {
 display:inline-block;
background:lightgreen;
color: #000;
padding:9px 30px;
text-decoration:none;
font-weight:bold;
transition: 1s;
border:1px solid transparent;
border-bottom: 4px solid transparent;
}

.apply-btn:hover {
 border:1px solid #000 ;
border-bottom: 4px solid #000;
}




.help-section {
  width: 100%;
  padding: 60px 0;
  background: white;
  text-align: center;
}

.help-container {
  width: 85%;
  margin: auto;
}

.help-section h2 {
  font-size: 22px;
  color: #000;
  margin-bottom: 20px;
}

.help-section p {
   font-size: 14px;
  color: #000;
  line-height: 1.8;
}

.help-section a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}

.help-section a:hover {
  border-bottom: 1px solid white;
}

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;     
}

.application-section {
	display: flex;
  flex-direction: column;
}
button:hover {
outline: none;
border: none;
}


 .app-container {
    flex-direction: column;
    text-align: center;
  }

  .app-left h1 {
    font-size: 22px;
  }

  .app-right p {
    font-size: 14px;
  }
.help-section h2 {
font-family: 22px;
}

.help-section p {
font-size: 14px;
}

.card-content p {
	font-size: 14px;
}

.application-card {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}


  .apply-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

}


@media (min-width: 769px) and (max-width: 1024px) {

  /* NAVBAR spacing */
  .navbar-menu {
    gap: 15px;
    font-size: 14px;
  }

  /* HERO / APPLICATION SECTION */
  .app-container {
    width: 90%;
    gap: 20px;
  }

  .app-left h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .app-right p {
    font-size: 14px;
  }

  /* START SECTION CARD */
  .application-card {
    width: 80%;
    max-width: 550px;
  }

  .card-content p {
    font-size: 14px;
  }

  /* HELP SECTION */
  .help-container {
    width: 90%;
  }

  /* FOOTER */
  .row {
    width: 90%;
  }

  .col {
    flex-basis: 45%;
  }

  /* BUTTON (apply button) */
  .apply-btn {
    display: inline-block;
    padding: 10px 25px;
  }
}