@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f0f0f0;
}

header {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 40px;
  overflow: hidden;
}

nav {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

ul li a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: color 0.3s ease, transform 0.3s ease;
}

ul li a:hover {
  color: #ffd700;
  transform: scale(1.1);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: transparent;
  border: none;
  color: white;
}

.hamburger i {
  font-size: 40px;
  transition: transform 0.3s ease;
}

.cross {
  display: none;
}

@media screen and (max-width: 800px) {
  .hamburger {
    display: block;
  }

  .cross {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
  }
 

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    width: 100%;
    padding: 20px;
    /* height: 57vh; */
    justify-content: start;
    align-items: start;
  }

  .nav-links.show {
    display: flex;
    animation: slide-in 0.3s ease;
    animation-fill-mode: forwards;
    overflow-y: auto;
  }

  .nav-links li {
    margin-bottom: 20px;
  }

  @keyframes slide-in {
    from {
      transform: translateX(100%);
    }

    to {
      transform: translateX(0);
    }
  }
}

/* Footer Styling */
footer {
  background-color: #2c2c2e;
  padding: 40px 20px;
  color: white;
  text-align: center;
  margin-top: 40px;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
}

.footer-left {
  text-align: center;
}

.footer-left p {
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.footer-right {
  margin-top: 10px;
}

.footer-logo {
  margin-bottom: 10px;
}

.footer-socials {
  display: flex;
  justify-content: center;
}

.social-icon {
  color: #f5ba13;
  font-size: 24px;
  margin: 0 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  color: #fff;
  transform: scale(1.2);
}

/* Responsive Footer */
@media screen and (max-width: 800px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    margin-top: 20px;
  }
}

main {
  min-height: 100vh;
  margin-top: 130px;
}

.videos-section {

  padding: 40px 20px;
  text-align: center;
  background-color: #f0f0f0;
}

.videos-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.video-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.video-item {
  width: 100%;
  max-width: 600px;
}

.video-item p {
  font-size: 1.1rem;
  margin-top: 10px;
}

/* Responsive Design */
@media screen and (max-width: 800px) {
  .video-container {
    flex-direction: column;
    padding: 0 10px;
  }

  .video-item iframe {
    width: 100%;
    height: auto;
  }
}

.video-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 50px 0;
  padding: 20px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease-in-out;
}

.video-section:nth-child(even) {
  flex-direction: row-reverse;
}

.video-container {
  flex: 1;
  margin: 20px;
}

.video-container video {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  animation: slideIn 1s ease-in-out;
}

@media screen and (max-width: 800px) {
  .video-container video {
    width: 77vw;
  }
}

.video-container img {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  animation: slideIn 1s ease-in-out;
}

.video-container .img1 {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  animation: slideIn 1s ease-in-out;
}

@media screen and (max-width: 800px) {
  .video-container .img2 {
    width: 77vw;
  }
}


.text-container {
  flex: 1;
  margin: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease-in-out;
}

.text-container h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
}

.text-container p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  text-align: justify;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 800px) {
  .video-section {
    flex-direction: column;
  }

  .video-section:nth-child(even) {
    flex-direction: column;
  }
}
/* 
.pdf2 {
  display: none;
} */

/* @media screen and (max-width: 800px){
  .pdf1 {
  display:none;
  }
  .pdf2 {
    display: block;
  }
} */

