/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 /* --------------header start----------------------- */

 header {
      position: sticky;
      top: 0;
      width: 100%;
      background: white;
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 15px 20px;
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
@media (max-width: 768px) {
      header {
         justify-content: space-between;
         padding: 10px 20px;
      }

    
    }
    .logo {
      height: 120px;
    }
nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: #ffffff;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  padding: 6px 0;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}
nav ul li a{
  text-decoration: none;
  color: #212121;
}
nav ul li a.active {
    color: #d32f2f; /* Highlight color when clicked */
  }


    /* Hamburger Menu */
    .hamburger {
      display: none;
      width: 30px;
      height: 25px;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
      z-index: 1101;
    }

    .hamburger span {
      height: 3px;
      background: #333;
      width: 100%;
      border-radius: 2px;
      transition: 0.3s ease;
    }

    #menu-toggle {
      display: none;
    }

    /* Overlay for mobile menu */
    .menu-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 100vw;
      /* background: rgba(0, 0, 0, 0.5); */
      z-index: 1000;
    }



    /* --------------------- */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9;
  display: none;
}

/* Show overlay when menu is active */
#menu-toggle:checked ~ .menu-overlay {
  display: block;
}
/* -------------------- */




    /* Mobile nav menu */
    .mobile-nav {
      display: none;
      position: fixed;    
      left: 0;
      width: 40%;
      height: 100%;
      background: white;
      flex-direction: column;
      z-index: 1001;
      box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }

    .mobile-nav li {
      padding: 15px 20px;
      border-top: 1px solid #eee;
      list-style: none;
    }

    .mobile-nav li:hover {
      background: #f2f2f2;
    }

    /* Show mobile nav and overlay when toggled */
    #menu-toggle:checked ~ .menu-overlay {
      display: block;
    }

    #menu-toggle:checked ~ .mobile-nav {
      display: flex;
    }

    /* Animate hamburger to cross */
    #menu-toggle:checked + .hamburger span:nth-child(1) {
      transform: rotate(45deg) translateY(8px);
    }

    #menu-toggle:checked + .hamburger span:nth-child(2) {
      opacity: 0;
    }

    #menu-toggle:checked + .hamburger span:nth-child(3) {
      transform: rotate(-45deg) translateY(-8px);
    }

    /* Responsive */
    @media (max-width: 768px) {
      nav {
        display: none;
      }
.mobile-nav a{
text-decoration: none;
}
.mobile-nav{
  top: 0;
}    
.hamburger {
        display: flex;
         color: #000;
         margin:0 40px;
      }
      .logo{
          margin-left: 20px;
      }
    }
/* -------------------------------header end ----------------------- */
/* Banner Section */
.gallery-banner {
  background: url('media/bnerimg.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-banner::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
}

.banner-content {
  position: relative;
  z-index: 2;
}
.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: bold;
}
.banner-content p {
  font-size: 1.2rem;
}

/* Gallery Grid */
.gallery-section {
  padding: 50px 20px;
  background: #f5f5f5;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 600px) {
  .banner-content h1 {
    font-size: 2rem;
  }
}
 /* -------------------------bottom section start---------------------- */
.footer-section {
  background-color: #111;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
  margin-top: 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left,
.footer-right {
  flex: 1 1 45%;
  min-width: 300px;
}

.footer-left h2,
.footer-right h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.footer-left label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}

.footer-left input[type="email"] {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 16px;
}

.submit-btn {
  background-color: #333;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: #555;
}

.search-box {
  position: relative;
  margin-top: 30px;
}

.search-box input[type="text"] {
  width: 100%;
  padding: 14px 50px 14px 20px;
  border-radius: 6px;
  border: none;
  font-size: 16px;
}

.search-icon {
  position: absolute;
  right: 15px;
  top: 14px;
  font-size: 18px;
  color: #666;
}

.call-btn {
  background-color: #e12e2e;
  color: #000;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 15px;
}

.footer-right p {
  margin: 10px 0;
  line-height: 1.5;
}

.footer-right a {
  color: #fff;
  text-decoration: none;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  color: #fff;
  font-size: 24px;
  margin-right: 20px;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #ccc;
}

/* Media Queries */
@media (max-width: 768px) {
    .footer-section{
        margin: 0 auto;
    }
  .footer-content {
    flex-direction: column;
  }

  .footer-left,
  .footer-right {
    flex: 1 1 100%;
  }

  .footer-left h2,
  .footer-right h2 {
    font-size: 20px;
  }

  .submit-btn,
  .call-btn {
    width: 85%;
    text-align: center;
      margin: 0 auto;
  }

  .search-box input[type="text"] {
    padding: 14px 20px;
  }

  .search-icon {
    top: 13px;
    right: 10px;
  }
}
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #ccc;
  border-top: 1px solid #444;
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: #e12e2e;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    font-size: 13px;
    padding: 15px 10px 0;
    margin-top: 30px;
    gap: 5px;
  }

  .footer-bottom p {
    margin: 5px 0;
    line-height: 1.5;
  }

  .footer-bottom a {
    display: inline;
    word-break: break-word;
  }
}


/* -------------------------bottom section end----------------------- */