/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Fullscreen Sections */
.section {
  position: relative;
  height: 100vh; /* Fullscreen height */
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.section-1 {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

/* Slideshow Container */
.slideshow-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0; /* Initially hide all images */
  transition: opacity 1.5s ease-in-out; /* Smooth fade transition */
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomEffect 15s ease-in-out infinite; /* Add zoom effect */
  transition: transform 1.5s ease-in-out; /* Smooth zoom */
}
.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: 2.2px solid rgba(255, 255, 255, 0.8); /* Thin white outline */
  outline-offset: -22px; /* Moves the outline inward */
  /* Static white border */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Optional shadow for depth */
  z-index: 1;
  pointer-events: none; /* Prevent interaction with the border */
}
/* Keyframes for Zoom Effect */
@keyframes zoomEffect {
  0%, 100% {
    transform: scale(1); /* No zoom at the start and end */
  }
  50% {
    transform: scale(1.1); /* Slight zoom-in at the midpoint */
  }
}

/* Section 2 and 3 */
.section-2 {
  background-color: rgb(255, 255, 255);
  color: black;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.section-3 {
  background-image: url('public/images/wed/w31.webp'); /* Random image 2 */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 80vh;
}
.section-4 {
  
  background: rgb(255, 255, 255);
  color: black;
  height: 70vh;
  padding: 20px;
  
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(3 ,1fr); /* Three columns */
  gap: 10px; /* Spacing between images */
  max-width: 1200px; /* Adjust width as needed */
  margin: 0 auto;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.image-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.3s;
  border-radius: 8px; /* Adds rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds shadow for depth */
}
.image-grid img:hover {
  transform: scale(1.1); /* Slight zoom-in on hover */
  opacity: 0.8; /* Slight fade effect */
}
@media (max-width: 768px) {
  .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    grid-template-rows: repeat(3, 1fr); 
    gap: 19px;
    
  }
  
}

.section-5 {
  background-image: url('https://i.imgur.com/rxrZ276.jpeg'); /* Random image 2 */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 80vh;
  
}
.section-6 {
  
  background: rgb(255, 255, 255);
  color: black;
  height: 70vh;
  
}
.section-7 {
  background-image: url('https://images.unsplash.com/photo-1708744613488-aab8b34a5451?q=80&w=1935&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); /* Random image 2 */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 80vh;
  
}
.section-8 {
  
  background: rgb(255, 255, 255);
  color: black;
  height: 70vh;
}
.section-9 {
  background-image: url('https://plus.unsplash.com/premium_photo-1671356046862-5248ac72c708?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); /* Random image 2 */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 80vh;
  
}
.section-10 {
  
  background: rgb(255, 255, 255);
  color: black;
  height: 70vh;
}  

/* Navbar Styling */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: none;
  box-shadow: none;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 30px;
}

.desktop-menu a {
  margin: 0 25px;
  text-decoration: none;
  color: #ffffff;
  font-size: 20px;
  transition: color 0.3s;
}

.desktop-menu a:hover {
  color: #b3e821;
}

.mobile-menu {
  display: none;
}

.hamburger {
  width: 47px;
  height: 36px;
  border: none;
  background: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative; 
  margin-top: 20px;
  margin-left: 15px;
}

.hamburger span {
  width: 100%;
  display: block;
  height: 3px;
  background: rgb(255, 255, 255);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

/* Hamburger to X transition */

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) 
  translate(13px, 10px);

}

.hamburger.active span:nth-child(2) {
  opacity: 0; /* Hide the middle line */
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) 
  
  translate(13px, -10px);
}

/* Mobile Menu Items */
.mobile-menu-items {
  display: none;
  list-style: none;
  padding: 10px 20px;
  background:none;
  position: absolute;
  top: 100%;
  left: 10;
  right: 5;
  z-index: 1000;
  animation: slideDown 0.5s ease-in-out forwards; /* Animation for slide down */
}

.mobile-menu-items li {
  margin: 20px 0;
}

.mobile-menu-items a {
  text-decoration: none;
  color: #ffffff;
  font-size: 20px;
  display: block;
  text-align: center;
}

.mobile-menu-items a:hover {
  color: #d9ff00;
}

/* Responsive Design */
@media (max-width: 768px) {
  .desktop-menu {
      display: none;
  }

  .mobile-menu {
      display: flex;
      align-items: center;
  }

  .mobile-menu-items.active {
      display: block;
  }
}

/* Slide Down Animation */
@keyframes slideDown {
  from {
      transform: translateY(-50%);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}
/* Top-Right Logo Styling */
.top-right-logo {
  position: fixed;
  top: 36px;
  right: 35px;
  width: 60px;
  height: auto;
  z-index: 999; /* Ensures it stays on top of all slides */
}

@media (max-width: 768px) {
  .top-right-logo {
    width: 50px; /* Adjust size for smaller screens */
  }
}

@media (max-width: 480px) {

  .top-right-logo {
    width: 40px; /* Further adjust for very small screens */
  }
}

/* About Us Section */
.about-us {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  /* background-image: url('https://i.imgur.com/6mZItD8.jpeg'); height: 500px; width: 100%; background-size: cover; background-position: center; */
  /* background-color: #e80909; */
  outline: 2.2px solid rgba(255, 255, 255, 0.8); /* Thin white outline */
  outline-offset: -22px; /* Moves the outline inward */
  padding: 50px 20px;
}

.container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
  margin-right: 40px;
}

.about-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #faf8f8;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 20px;
}

.about-image {
  flex: 1;


}
.home a{
  position: fixed;
  top: 0;
  width: 100%;
  background: none;
  box-shadow: none;
  z-index: 1000;
  color: #fff;
  margin-top: 60px;
  margin-left: 45px;



}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .about-text h1 {
    font-size: 2rem;
    color: #fff;
  }

  .about-text p {
    font-size: 0.95rem;
    color: #fff;
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
    
    
  }

  .about-text {
    margin-right: 0;
    text-align: center;
    color: #fff;
  }

  .about-image {
    margin-top: 20px;
  }

  .about-text h1 {
    font-size: 1.8rem;
    color: #fff;
  }

  .about-text p {
    font-size: 1rem;
    color: #fff;
  }
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: #000000;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px;
  border-radius: 10px;
  /* background-image: ; */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /* background-color: #000000; */
  /* opacity: 10%; */
  /* backface-visibility: visible; */
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #fcfafa;
}
h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #000000;
}
p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ffffff;
  text-align: center;
  margin: 20px 0;
}

.about-img {
  display: block;
  margin: 20px auto;
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
}

footer {
  background-color: #313131;
  color: white;
  padding: 20px 10px;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  /* text-align: left; */
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 10px;
  /* text-align: left; */
}

h3 {
  font-size: 1.5rem;
}

p {
  font-size: 1rem;
  text-align: center;
}

.social-icons a img {
  width: 30px;
  height: 30px;
  margin: 5px;
  transition: transform 0.3s;
}

.social-icons a img:hover {
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      text-align: center;
  }
}
* { margin: 0; padding: 0; box-sizing: border-box; }
    
        .loading-container {
            position: fixed;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            width: 100%;
            background: #000000;
            z-index: 999;
            flex-direction: column;
        }
        .camera-body {
            width: 180px;
            height: 120px;
            background: #222;
            border-radius: 15px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
        }
        .camera-lens {
            width: 70px;
            height: 70px;
            background: radial-gradient(circle, #3498db, #111);
            border-radius: 50%;
            box-shadow: 0 0 15px rgba(0, 119, 255, 0.8);
            animation: zoom 1.5s infinite ease-in-out;
        }
        .flash {
            width: 15px;
            height: 15px;
            background: #ff0;
            border-radius: 50%;
            position: absolute;
            top: 10px;
            right: 15px;
            box-shadow: 0 0 5px rgba(255, 255, 0, 0.8);
        }
        .grip {
            width: 40px;
            height: 60px;
            background: #333;
            position: absolute;
            left: -10px;
            border-radius: 10px;
        }
        .loading-text {
            color: white;
            font-family: Arial, sans-serif;
            margin-top: 20px;
            font-size: 18px;
            letter-spacing: 2px;
            opacity: 0.7;
            animation: fadeInOut 1.5s infinite;
        }
        @keyframes zoom {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }
        @keyframes fadeInOut {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }
        .hidden {
            display: none;
        }
        .section-3 {
          font-family: 'Poppins', sans-serif;
          font-size: 3.5rem;
          font-weight: 300;
          color: #fff;
          text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
        }
        .section-5 {
          font-family: 'Poppins', sans-serif;
          font-size: 3.5rem;
          font-weight: 300;
          color: #fff;
          text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
        }
        .section-7 {
          font-family: 'Poppins', sans-serif;
          font-size: 3.5rem;
          font-weight: 300;
          color: #fff;
          text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
        }
        .section-9 {
          font-family: 'Poppins', sans-serif;
          font-size: 3.5rem;
          font-weight: 300;
          color: #fff;
          text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
        }
        