@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


:root{
    --green : #87a64a;
    --dark-green : #163d0e;
    --dark-gray-green : #303e2e;
    --gray-green : #8ead8a;
    --pastel-gray-orange : #e3c694;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
     font-family: "Roboto Slab", serif;
     background: white;
      overflow-x: hidden;
}

/* Header */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 8%;
}

.logo img {
  width: 200px;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links li a {
  text-decoration: none;
  color:var(--dark-green);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var( --green);
}

/* Menu Icon (for mobile) */
.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-icon span {
  width: 25px;
  height: 3px;
  background:  var(--dark-green);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-icon {
    display: flex;
  }

  /* Animate menu icon */
  .menu-icon.toggle span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  .menu-icon.toggle span:nth-child(2) {
    opacity: 0;
  }
  .menu-icon.toggle span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
}

/* Slider Section */
.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Slide container */
.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Each slide */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* Slide images */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}

/* Text content */
.slide-content {
  position: absolute;
  top: 60%;
  left: 40%;
  transform: translate(-50%, -50%);
  text-align: start;
  color: var(--dark-green);
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px; /* 10px spacing between elements */
  animation: fadeUp 1.5s ease;
}

.slide-content h2 {
  font-size: 3rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.slide-content p {
  font-size: 1.5rem;
  color: white;
}

/* Call button */
.call-btn a {
  background: var(--green);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  
}

.call-btn a:hover {
  background: var(--dark-green);
}

/* Navigation arrows */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 50%;
  transition: background 0.3s ease;
  z-index: 10;
}

.prev:hover,
.next:hover {
  background: rgba(255, 255, 255, 0.6);
  color: #0c7b93;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .slide-content h2 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .call-btn a {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .prev,
  .next {
    font-size: 1.5rem;
    padding: 8px 12px;
  }
}

/* About Section */
.about {
  width: 100%;
  background: #f5f5f5;
  overflow: hidden;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 100vh;
}

.about-left, .about-right {
  flex: 1;
}

.about-left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.about-content {
  max-width: 600px;
}

.about-content .welcome {
  font-size: 1.2rem;
  color: #4CAF50;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-right img {
  width: 450px;
  height: 550px;
  /* object-fit: fill; */
}

/* ✅ Responsive Design */
@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
  }

  .about-left, .about-right {
    width: 100%;
    flex: unset;
  }

  .about-right img {
    height: 50vh;
  }

  .about-left {
    padding: 40px 20px;
    text-align: center;
  }

  .about-content h2 {
    font-size: 2.2rem;
  }

  .about-content p {
    font-size: 1rem;
  }
}


/* Product  */
.product {
  width: 100%;
  background: var(--gray-green);
  padding: 80px 40px;
  text-align: center;
}

.product-container {
  max-width: 1300px;
  margin: 0 auto;
}

.product-title p {
  color: var(--pastel-gray-orange);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.product-title h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 50px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
  transition: transform 0.4s ease;
}

.product-card h3 {
  margin: 15px 0;
  font-size: 1.2rem;
  color: #333;
  font-weight: 600;
  text-transform: capitalize;
}

/* .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
} */

.product-card:hover img {
  transform: scale(1.08);
}

/* ✅ Responsive Styling */
@media (max-width: 1024px) {
  .product-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .product {
    padding: 60px 20px;
  }

  .product-card img {
    height: 250px;
  }

  .product-title h2 {
    font-size: 1.8rem;
  }
}

/* WHY CHOOSE US SECTION */
.whychoose {
  width: 100%;
  background: linear-gradient(to bottom, #ffffff, #f5f9f5);
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.choose-container {
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

.choose-title h2 {
  font-size: 2.8rem;
  color: #1d3b28;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 15px;
}

.underline {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #4caf50;
  border-radius: 2px;
  margin-bottom: 40px;
}

.choose-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  font-size: 1.2rem;
  line-height: 2rem;
  color: #333;
}

.choose-content p {
  margin-bottom: 20px;
  background: #ffffffb5;
  padding: 15px 20px;
  border-left: 4px solid #4caf50;
  border-radius: 8px;
  transition: all 0.4s ease;
}

/* Hover animation */
.choose-content p:hover {
  background: #e9f7ec;
  transform: translateY(-4px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .choose-title h2 {
    font-size: 2.2rem;
  }

  .choose-content {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .whychoose {
    padding: 60px 15px;
  }

  .choose-title h2 {
    font-size: 1.8rem;
  }

  .choose-content p {
    font-size: 1rem;
    padding: 12px 15px;
  }
}

/* SATISFACTION SECTION */
.satisfaction {
  width: 100%;
  height: 90vh; /* Full screen height */
  background: url("assets/images/about/3.jpg") no-repeat center center/cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
}
/* Add a soft overlay for better text visibility */
.satisfaction::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* Soft dark overlay */
  z-index: 1;
}

/* Content styling */
.satisfaction-container {
  position: relative;
  z-index: 2; /* Keep text above the overlay */
  max-width: 1200px;
  width: 100%;
  text-align: center;
  /* color: #fff; */
}

.satisfaction-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.satisfaction-title p {
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: #f1f1f1;
}

/* Responsive Design */
@media (max-width: 992px) {
  .satisfaction {
    height: auto;
    padding: 80px 20px;
  }

  .satisfaction-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .satisfaction {
    padding: 60px 15px;
  }

  .satisfaction-title h2 {
    font-size: 1.6rem;
  }
}
.satisfaction-container {
  max-width: 1200px;
  text-align: center;
}

.satisfaction-title h2 {
  font-size: 2.5rem;
  color: #1d3b28;
  margin-bottom: 10px;
  font-weight: 700;
}

.satisfaction-title p {
  color: var(--pastel-gray-orange);
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.satisfaction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.satisfaction-box {
  /* background: #fff; */
  padding: 40px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.satisfaction-box i {
  font-size: 2.8rem;
  color:var(--gray-green);   
  margin-bottom: 15px;
}

.satisfaction-box h3 {
  font-size: 1.3rem;
  color: var(--pastel-gray-orange);
  margin-bottom: 10px;
  font-weight: 600;
}

.satisfaction-box p {
  color:var(--pastel-gray-orange);
  font-size: 1rem;
  line-height: 1.6rem;
}

.satisfaction-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Responsive Design */
@media (max-width: 992px) {
  .satisfaction-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .satisfaction {
    padding: 60px 15px;
  }

  .satisfaction-title h2 {
    font-size: 1.8rem;
  }

  .satisfaction-box {
    padding: 30px 15px;
  }
}


.gallery {
  text-align: center;
  padding: 50px 0;
  background: #fdfdfd;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.gallery-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
  padding: 20px;
  scrollbar-width: thin;
  scrollbar-color: #aaa transparent;
}

.gallery-scroll::-webkit-scrollbar {
  height: 8px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 4px;
}

.gallery-scroll::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.gallery-container {
  display: inline-flex;
  gap: 10px;
}

.gallery-container img {
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-container img:hover {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .gallery-container img {
    width: 150px;
    height: 100px;
  }
}

/* ===== Footer Section ===== */
.footer {
  background: url("assets/images/about/3.jpg") no-repeat center center/cover;
  color: #fff;
  padding: 60px 0 30px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* dark overlay for readability */
  z-index: 0;
}

.footer .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

/* ===== Footer Columns ===== */
.footer h2,
.footer h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer a {
  color: #d1d1d1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #fff;
}

/* ===== QR Code ===== */
.footer .qlinks img {
  height: 140px;
  width: auto;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* ===== Enquiry Form ===== */
.footer form {
  background: rgba(255, 255, 255, 0.1); /* Transparent effect */
  backdrop-filter: blur(8px);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.footer .form-group {
  margin-bottom: 15px;
}

.footer input[type="text"],
.footer input[type="email"],
.footer input[type="number"] {
  width: 100%;
  padding: 10px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.footer input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer input:focus {
  border-bottom: 1px solid #00ffb3;
}

/* ===== Button ===== */
.footer .btn {
  background: #00ffb3;
  border: none;
  padding: 10px 25px;
  color: #000;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  width: 100%;
  transition: 0.3s;
}

.footer .btn:hover {
  background: #fff;
  color: #000;
}

/* ===== Captcha Section ===== */
.footer .captcha-text {
  font-size: 12px;
  color: #ccc;
}

/* ===== Bottom Bar ===== */
.footer-bottom {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: #ddd;
  font-size: 14px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

/* ===== Responsive Styles ===== */
@media (max-width: 768px) {
  .footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer .qlinks img {
    margin: 0 auto;
  }

  .footer form {
    margin-top: 20px;
  }

  .footer ul li {
    font-size: 14px;
  }
}


.top1 {
  position: fixed;
  z-index: 999;
  bottom: 11%;
  right: 10px;
  width:40px;
  height: auto;
}

.top2 {
  position: fixed;
  z-index: 999;
  bottom: 18%;
  right: 10px;
  width:40px;
  height: auto;
}

.top3 {
  position: fixed;
  z-index: 999;
  bottom: 26%;
  right: 10px;
  width:40px;
  height: auto;
}

.top4 {
  position: fixed;
  z-index: 999;
  bottom: 33%;
  right: 10px;
  width:40px;
  height: auto;
}

.top5 {
  position: fixed;
  z-index: 999;
  bottom: 40%;
  right: 10px;
  width:40px;
  height: auto;
}

.top6 {
  position: fixed;
  z-index: 999;
  bottom: 47%;
  right: 10px;
  width:40px;
  height: auto;
}

.top7 {
  position: fixed;
  z-index: 999;
  bottom: 54%;
  right: 10px;
  width:40px;
  height: auto;
}



.top8 {
  position: fixed;
  z-index: 999;
  bottom: 61%;
  right: 10px;
  width:40px;
  height: auto;
}

