/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
}

/* LOGO HEADER */
.custom-logo-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1050;
  padding: 10px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.custom-logo-img {
  height: 50px;
  border-radius: 8px;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-left: 10px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  letter-spacing: 1px;
}

/* SLIDER */
.slider {
  position: relative;
  overflow: hidden;
  height: 100vh;
  width: 100%;
}

.slides {
  display: flex;
  width: 300%; /* 3 slides ke liye */
  transition: transform 1s ease-in-out;
}

.slide {
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
}

.content {
  color: #1d1d1d;
  max-width: 500px;
}

.content h2 {
  font-size: 2.5rem;
  color: #2f6248;
}

.content h2 span {
  color: #000;
  font-weight: normal;
}

.content p {
  margin-top: 20px;
  font-size: 1rem;
  color: #444;
}

.content button {
  margin-top: 30px;
  background-color: #2f6248;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.content button:hover {
  background-color: #244d39;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.6);
  border: none;
  padding: 10px;
  cursor: pointer;
}

.arrow.right {
  right: 10px;
}

.arrow.left {
  left: 10px;
}



/* this is box css  */
    .section-heading {
      text-align: center;
      font-weight: bold;
      font-size: 2rem;
      margin: 40px 0 20px;
    }
    .service-box {
      background-color: #f9f9f9;
      border-radius: 10px;
      padding: 25px 15px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s;
      height: 100%;
    }
    .service-box:hover {
      transform: translateY(-5px);
    }
    .service-box img {
      width: 70px;
      margin-bottom: 15px;
    }
    .service-box h5 {
      font-weight: 600;
      margin-bottom: 10px;
    }
    .service-box p {
      font-size: 0.9rem;
      color: #555;
    }

/* this is gallery css */
  .gallery {
  padding: 60px 20px;
  text-align: center;
}
.gallery h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #2f6248;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Modal Slider */
.slider-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  text-align: center;
}
.slider-image {
  max-width: 90%;
  max-height: 80%;
  margin-top: 5%;
}
.close-btn {
  position: absolute;
  top: 20px; right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}
.slider-arrow.left {
  left: 20px;
}
.slider-arrow.right {
  right: 20px;
}

    /* this is pop css  */
        #popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: flex-start;
      justify-content: center;
      z-index: 9999;
      padding-top: 60px;
      animation: slideDown 0.5s ease-out;
    }

    /* Popup Box */
    #popup-box {
      background-color: #fff;
      border-radius: 20px;
      padding: 30px;
      max-width: 500px;
      width: 90%;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      position: relative;
    }

    /* Close Button */
    #popup-close {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 1.5rem;
      color: #333;
      cursor: pointer;
      border: none;
      background: none;
    }

    /* Slide Animation */
    @keyframes slideDown {
      0% {
        opacity: 0;
        transform: translateY(-100px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }




        /* WhatsApp Floating Button */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25D366;
      color: white;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      cursor: pointer;
      z-index: 1000;
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .whatsapp-float:hover {
      background-color: #1ebd5a;
      transform: scale(1.1);
    }

    .whatsapp-icon {
      width: 32px;
      height: 32px;
    }




