body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    box-sizing: border-box;
    line-height: 1.6;
  }
  


.nav {
    position: fixed;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid transparent; 
    border-radius: 10px;
    margin-left: 90px;
    margin-top: 10px;
    width: 90%;
    height: 100px;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.1); 
    display: flex;
}

.nav img{
    margin-top: 2px;
    margin-left:30px;
    height: 95%;
}

.nav ul { 
    padding-top: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    margin-left: 450px;
    font-size: 150%;
    gap: 50px; /* Adds space between each item */
   
}


.nav-list a {
    text-decoration: none;
    color: rgb(85, 85, 85);
    font-weight: 500;
    font-family:Georgia, 'Times New Roman', Times, serif;
}

.nav-list a:hover {
    color: black;
}

.nav .login{
    margin-left:450px;
}

@keyframes rotation {
    0%   { transform: rotate(0deg);}
    16%  {transform: rotate(180deg);} 
    50%  {transform: rotate(360deg);}
    100% {transform: rotate(360deg);}
}

.logo{
    filter: blur(0px);
    animation-name: rotation;
    animation-duration: 4s;
}
.logo:hover {
    filter: blur(1px);
}

.hero {
    background: url('../Images/welcome.jpg') no-repeat center center/cover;
    z-index: -10;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Add dark overlay */
    backdrop-filter: blur(2px); /* Blur effect */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
    color: #f39c12;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background-color: #f39c12;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    background-color: #d35400;
    transform: scale(1.05);
}

  
  .hero-content h1 span {
    color: #f39c12;
  }
  
  .cta-button {
    background-color: #f39c12;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #d35400;
  }
  
  /* About Section */
  .about {
    text-align: center;
    padding: 50px 20px;
    background: #f4f4f4;
  }
  
  .about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .about img {
    width: 60%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  /* Features Section */
  .features {
    padding: 50px 20px;
    text-align: center;
    background: white;
  }
  
  .features-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
  }
  
  .feature-item {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 300px;
  }
  
  .feature-item img {
    width: 80px;
    margin-bottom: 15px;
    border-radius: 50%;
    border: 2px solid #f39c12;
  }
  
  /* Testimonials Section */
  .testimonials {
    background: #222;
    color: white;
    padding: 50px 20px;
    text-align: center;
  }
  
  .testimonial-slider {
    display: flex;
    gap: 30px;
    justify-content: center;
  }
  
  .testimonial-item {
    background: #333;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
  }
  
  .testimonial-item img {
    width: 80px;
    margin-bottom: 10px;
    border-radius: 50%;
    border: 2px solid #f39c12;
  }

    /* Gallery Section */
    .gallery {
      padding: 50px;
      text-align: center;
    }
    
    .gallery h1 {
      font-size: 2rem;
      margin-bottom: 10px;
      color: #333;
    }
    
    .gallery p {
      color: #666;
      margin-bottom: 30px;
    }
    
    .category {
      margin-bottom: 30px;
    }
    
    .category h2 {
      font-size: 1.5rem;
      margin-bottom: 10px;
      color: #ff7f50;
    }
    
    .photos {
      display: flex;
      justify-content: center;
      gap: 15px;
    }
    
    .gallery-img {
      width: 400px;
      height: 300px;
      object-fit: cover;
      border-radius: 8px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    
    .gallery-img:hover {
      transform: scale(1.05);
    }
    
    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }
    
    .lightbox img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 8px;
    }
    
    .lightbox .close {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 2rem;
      color: white;
      cursor: pointer;
    }  
  /* galeria */
  

  /* Video Section */
.videos {
  padding: 50px;
  text-align: center;
  background: #fff;
}

.videos h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #333;
}

.videos p {
  color: #666;
  margin-bottom: 30px;
}

.video-category {
  margin-bottom: 40px;
}

.video-category h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #ff7f50;
}

.video-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.video-card {
  width: 500px;
  background: #f4f4f9;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.video-card iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.video-card p {
  padding: 10px;
  font-size: 1rem;
  color: #333;
  text-align: center;
}

.video-card:hover {
  transform: scale(1.05);
}

/* footer */  

/* CSS */
.footer {
  background-color: #000;
  color: #fff;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
}

.footer-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-image {
  width: 160px; /* Adjust size as needed */
  margin-bottom: 10px;
}

.site-name {
  font-size: 28px;
  margin: 5;
}

.footer-links h3,
.footer-contact h3 {
  font-size:170%;
  width:300px;
  font-weight: bolder;
  padding-left:350px;
  margin-bottom: 10px;
}

.footer-links ul {
  padding-left:350px;
  list-style: none;
  padding: 0;
  font-size:150%;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  padding-left:350px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #f90; /* Change to your theme color */
}

.footer-contact p {
  padding-left:350px;
  margin: 5px 0;
}

.footer-text {
  font-weight: bolder;
  padding-left:00px;
  display: block;
  margin-top: 130px;
  width: 100%;
  text-align: center;
  font-style: italic;
}

