
#background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

body:hover #background-video {
  filter: brightness(0.7);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  height: 100%;
  color: white;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background: transparent;
}


@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



.div1 h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 900;
  background: linear-gradient(270deg, #00ff00, #00cc00, #009900, #006600);
  background-size: 800% 800%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease infinite;
  text-shadow:
    0 0 8px rgba(0, 255, 0, 0.7),
    2px 2px 10px rgba(0, 100, 0, 0.9);
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.div1 p {
  font-size: 1.5rem;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 130, 255, 0.8);
  color: white;
  margin-bottom: 40px;
}


.imgdiv {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin: 30px auto;
  max-width: 900px;
  flex-wrap: wrap;
  padding: 0 15px;
  animation: fadeInUp 1.4s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}



@media (max-width: 768px) {
  .div1 h1 {
    font-size: 2.2rem;
  }
  .div1 p {
    font-size: 1.2rem;
  }
  .imgdiv img {
    height: 30vh;
    max-height: 220px;
  }
}

@media (max-width: 480px) {
  .div1 {
    padding: 25px 15px;
    margin: 20px 10px;
    padding: 20px;
  }
  .imgdiv {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .imgdiv img {
    width: 80vw;
    height: auto;
    max-height: none;
  }
}







.ending-section p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: white;
}




@media (max-width: 768px) {
  .ending-section h2 {
    font-size: 2rem;
  }
  .ending-section p {
    font-size: 1rem;
  }
  .ending-section {
    padding: 20px;
  }
}


.ending-section h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  background: linear-gradient(270deg, #00ff00, #00cc00, #009900, #006600);
  background-size: 800% 800%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease infinite;
  text-shadow:
    0 0 10px rgba(0, 255, 0, 0.7);
}


.cta-btn {
  background: linear-gradient(45deg, #00cc00, #006600);
  border: none;
  padding: 14px 38px;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 110, 0, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  outline: none;
}

.cta-btn:hover {
  background: linear-gradient(45deg, #00ff00, #009900);
  box-shadow: 0 10px 30px rgba(0, 200, 0, 0.9);
  transform: translateY(-4px);
}


.div1:hover {
  background-color: rgba(0, 0, 0, 0.85);
  box-shadow:
    0 0 20px 5px rgba(0, 230, 0, 0.9),
    0 0 35px 10px rgba(255, 255, 255, 0.7);
}

.div1 {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px 20px;
  margin: 40px auto;
  max-width: 900px;
  border-radius: 15px;
  text-align: center;
  box-shadow:
    0 0 10px 2px rgba(0, 180, 0, 0.8),
    0 0 25px 5px rgba(255, 255, 255, 0.4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}


.ending-section {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px 20px;
  margin: 40px auto;
  max-width: 900px;
  border-radius: 15px;
  text-align: center;
  box-shadow:
    0 0 10px 2px rgba(0, 180, 0, 0.8),
    0 0 25px 5px rgba(255, 255, 255, 0.4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}


.ending-section:hover {
  background-color: rgba(0, 0, 0, 0.85);
  box-shadow:
    0 0 20px 5px rgba(0, 230, 0, 0.9),
    0 0 35px 10px rgba(255, 255, 255, 0.7);
}

.imgdiv img {
  height: 50vh;
  max-height: 350px;
  border-radius: 20px;
  cursor: pointer;
  box-shadow:
    0 6px 18px rgba(0, 120, 0, 0.8),
    0 0 8px rgba(255, 255, 255, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.imgdiv img:hover {
  transform: scale(1.07) rotate(3deg);
  box-shadow:
    0 12px 30px rgba(0, 220, 0, 0.9),
    0 0 25px rgba(255, 255, 255, 0.6);
  filter: drop-shadow(0 0 5px rgba(0, 255, 0, 0.9));
}