* {
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 {
  height: 40vh;
  background: url("Images/Background/hero banner.jpg") center/cover no-repeat;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  background: rgba(0,0,0,0.6);
  padding: 30px;
  width: 100%;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.container {
  display: flex;
  gap: 40px;
  padding: 50px;
}

.info {
  width: 55%;
}

.info h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

.info p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin: 20px 0;
}

.card {
  background: #f5f5f5;
  padding: 15px;
  border-left: 4px solid lightgreen;
  border-radius: 5px;
}

.form-box {
  width: 45%;
 background: rgb(13, 8, 57);
  color: white;
  padding: 30px;
  border-radius: 8px;
}

.form-box h2 {
  margin-bottom: 25px;
  font-size: 22px;
}

form {
  display: flex;
  flex-direction: column;
}

input, select, textarea {
  margin-bottom: 15px;
  padding: 12px;
  border: none;
  outline: none;
  font-size: 14px;
  caret-color: #000 ;
}

textarea {
  min-height: 120px;
  resize: none;
}

button {
  background: lightgreen;
  padding: 12px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  margin-top: 20px;
   border: 1px solid lightgreen;
  border-bottom: 2px solid lightgreen;
  transition: 1s;
}

button:hover {
  background: transparent;
  border: 1px solid lightgreen;
  border-bottom: 2px solid lightgreen;
  color: 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;     
}

  .container {
    flex-direction: column;
    padding: 20px 0;
    width: 100%;
    align-items: center; 
  }

  .info,
  .form-box {
    width: 90%;
    margin: 0 auto;     
  }

   .form-box {
    border-radius: 0;   
  }

  .info h2 {
  font-size: 22px;
  margin-bottom: 15px;
  text-align: center;
}

button:hover {
outline: none;
border: none;
}

}