/* Importing Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
}

header {
  position: fixed;
  top: 15px; /* Adjusted to lower the navbar */
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  padding: 15px 40px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .menu-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  transition: 0.2s ease;
}

.navbar a:hover {
  color: #71e916;
  font-weight: bold;
  font-size: 20px;
}

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section .content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5); /* Box effect for text */
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  animation: fadeIn 2s ease-in-out;
}

/* Added styles for the PNG image */
.logo-image {
  width: 250px; /* Adjust as needed */
  height: auto;
  margin-bottom: 10px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

footer {
  position: fixed;
  bottom: 15px; /* Adjusted to move footer up */
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  padding: 15px 40px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.social-links a {
  color: #fff;
  transition: 0.2s ease;
  text-decoration: none;
  margin-left: 10px;
}

.social-links a:hover {
  color: #71e916;
  font-size: 20px;
}

@media (max-width: 768px) {
  .hero-section {
    justify-content: center;
    text-align: center;
  }
  
  .hero-section .content {
    margin-left: 0;
    padding: 15px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
font-size: 13px;
}



}
