*{
    margin: 0;
    padding: 0;
    text-decoration : none; 
    list-style: none;
}
img{
    display: block;
    max-width: 100%;
}
body{
    font-family: Arial, Helvetica, sans-serif;
}
/* HERO AREA */
header{
    position: relative;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
}
.hero-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}
.info{
    position: relative;
    color: white;
    font-size: larger;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    background-color: rgba(108, 108, 108, 0.484);
    
}
.info a{
    color: white;
    padding: 10px 20px;
    border: 2px solid #42D800;
    
}
a:hover{
    color: #268000;
}
a{
    transition: color 0.3s ease, padding 0.3s ease;
}

/* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #000;
  color: #0f0;
  position: relative;
}


#menu-toggle {
  display: none;
}


.hamburger {
  width: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  transition: 0.3s ease;
}


.nav-links {
  display: none;
  position: absolute;
  top: 60px;
  right: 10px;
  background: #111;
  padding: 15px;
  border-radius: 10px;
  list-style: none;
  flex-direction: column;
}


#menu-toggle:checked ~ .nav-links {
  display: flex;
}


#menu-toggle:checked + .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

#menu-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked + .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-links li {
  margin: 10px 0;
}

.nav-links a {
  color: #0f0;
  text-decoration: none;
  font-size: 18px;
}
.about-section {
    background-color: #4a4a4a;
    padding: 60px 0;
    text-align: center;
    color: white;
}

.about-section h2{
    font-size: 28px;
    margin-bottom: 40px;
    color: #9cff4a;
}
.about-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.about-item {
    width: 200px;
    text-align: center;
}

.about-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.about-item p {
    font-size: 13px;
    line-height: 1.4;
    color: #e0e0e0;
}
.gray-block {

    display: flex;
    align-items: center;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .gray-block img {
    max-width: 600px;
    height: auto;
    margin-right: 20px;
    border-radius: 5px;
  }

  .text-content h2 {
    margin: 0 0 10px 0;
  }

  .text-content p {
    margin: 0;
  }

  @media (max-width: 600px) {
    .gray-block {
      flex-direction: column;
      text-align: center;
    }

    .gray-block img {
      margin-right: 0;
      margin-bottom: 15px;
    }
  }
.center-text {
    color: #9cff4a;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin: 50px 0;
    font-family: Arial, sans-serif;
  }
  main{
    background-color: #4a4a4a;
  }
.footer {
  background-color: #000;
  color: #9cff4a; 
  text-align: center; 
  padding: 20px 0; 
  font-family: Arial, sans-serif;
  font-size: 18px;
}