body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f9f7f3;
  color: #333;
  scroll-behavior: smooth;
}

#intro-video {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
}

/* Shared video styling */
#intro-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

#introVidDesktop,
#introVidMobile {
  display: none;
}

@media (min-width: 769px) {
  #introVidDesktop {
    display: block;
  }
}

@media (max-width: 768px) {
  #introVidMobile {
    display: block;
  }
}


#skipBtn {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgba(255, 255, 255, 0.8);
  color: #000;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
}

#skipBtn:hover {
  background: #7ebc59;
  color: #fff;
}



.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #0078ff; /* Blue color */
  color: white;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 120, 255, 0.4);
  z-index: 100;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #005fcc; /* darker blue */
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 120, 255, 0.5);
}

.whatsapp-float i {
  font-size: 32px;
  color: white;
}

header {
  background: linear-gradient(135deg, #e8f5e9, #81c784); 
  color: #2f4f1c;
  padding: 50px 30px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.header-text h1 {
  font-size: 3rem;
  margin: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.15);
}

.header-text p {
  font-size: 1.2rem;
  margin-top: 10px;
  font-style: italic;
  color: #33691e;
}


.header-icon {
  width: 150px; /* larger icons */
  height: 150px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.header-icon:hover {
  transform: scale(1.1) rotate(5deg);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.header-icon {
  animation: float 4s ease-in-out infinite;
}


@media (max-width: 768px) {
  header {
    padding: 35px 15px;
  }

  .header-content {
    gap: 15px;
  }

  .header-text h1 {
    font-size: 2rem;
  }

  .header-text p {
    font-size: 1rem;
  }

  .header-icon {
    width: 100px;
    height: 100px;
  }
}


#social-media {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f0fff4, #d4fc79, #96e6a1);
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

#social-media h2 {
  font-size: 2rem;
  color: #2f4f1c;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

#social-media p {
  color: #4a7525;
  font-size: 1.1rem;
  margin-bottom: 30px;
  font-style: italic;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: white;
  font-size: 28px;
  transition: all 0.4s ease;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.social-icons a.facebook {
  background: #1877f2;
}

.social-icons a.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.social-icons a.youtube {
  background: #ff0000;
}

.social-icons a:hover {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

@keyframes glow {
  0% { box-shadow: 0 0 0 0 rgba(0,255,100,0.4); }
  70% { box-shadow: 0 0 0 15px rgba(0,255,100,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,255,100,0); }
}

.social-icons a {
  animation: glow 3s infinite;
}

@media (max-width: 768px) {
  #social-media h2 {
    font-size: 1.6rem;
  }

  .social-icons a {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
}

#about {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f9fff4, #e6f9d5);
  display: flex;
  justify-content: center;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  background: white;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* VIDEO SLIDER AREA */
.about-video {
  flex: 1 1 400px;
  position: relative;
  overflow: hidden;
}

.about-video-slider video {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.about-video-slider video.active {
  display: block;
  opacity: 1;
}

/* BUTTONS */
.about-video button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  font-size: 2rem;
  color: #2e4822;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  transition: background 0.3s, transform 0.2s;
  z-index: 10;
}

.about-video button:hover {
  background: #7ac142;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.prev-about { left: 10px; }
.next-about { right: 10px; }

/* TEXT AREA */
.about-text {
  flex: 1 1 500px;
  padding: 40px;
  text-align: left;
}

.about-text h2 {
  font-size: 2rem;
  color: #2f4f1c;
  margin-bottom: 20px;
  position: relative;
}

.about-text h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #81c784;
  position: absolute;
  left: 0;
  bottom: -10px;
  border-radius: 2px;
}

.about-text p {
  font-size: 1.1rem;
  color: #3e4e27;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-text {
    text-align: center;
    padding: 30px 20px;
  }

  .about-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}


#gallery {
  text-align: center;
  padding: 70px 20px;
  background: linear-gradient(135deg, #f0fff4, #e1f7d5);
  position: relative;
}

#gallery h2 {
  font-size: 2.2rem;
  color: #2e4822;
  margin-bottom: 40px;
  position: relative;
}

#gallery h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #7ac142;
  margin: 10px auto 0;
  border-radius: 2px;
}

.video-gallery {
  position: relative;
  max-width: 90%;
  margin: auto;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.video-container {
  position: relative;
}

.video-container video {
  display: none;
  width: 100%;
  height: 70vh; 
  object-fit: contain;
  background: white; 
  border-radius: 25px;
  transition: opacity 0.6s ease;
}

.video-container video.active {
  display: block;
  opacity: 1;
}

.video-gallery button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  font-size: 2rem;
  color: #2e4822;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  transition: background 0.3s, transform 0.2s;
  z-index: 10;
}

.video-gallery button:hover {
  background: #7ac142;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.prev { left: 20px; }
.next { right: 20px; }

@media (max-width: 768px) {
  .video-container video {
    height: 300px;
    object-fit: cover; 
  }
  .video-gallery button {
    font-size: 1.5rem;
  }
}


#contact {
  padding: 70px 20px;
  text-align: center;
  background: linear-gradient(135deg, #e8f8e0, #b7e28f);
  color: #2e4822;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

#contact h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  position: relative;
}

#contact h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #7ac142;
  margin: 10px auto 0;
  border-radius: 2px;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

.map {
  margin-bottom: 25px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  border-radius: 20px;
  overflow: hidden;
}

.contact-info p {
  font-size: 1.1rem;
  margin: 10px 0;
}

.contact-info a {
  color: #1b4d2f;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #0078ff;
}

footer {
  text-align: center;
  background: #333;
  color: #fff;
  padding: 15px;
}
