* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fdf6ed;
  padding: 20px 40px; /* increased padding */
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
}


.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 80px;
  width: 300px;
  /* border-radius: 50%; */
}

.logo span {
  font-size: 1.8rem;
  font-weight: bold;
  color: #4CAF50;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.nav-links a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #333;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #4CAF50;
}

.nav-links a::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #4CAF50;
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.auth-buttons {
  display: flex;
  gap: 10px;
}

.auth-buttons a {
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.btn-outline {
  border: 1.5px solid #4CAF50;
  color: #4CAF50;
  background: transparent;
}

.btn-outline:hover {
  background: #4CAF50;
  color: #fff;
}

.btn-fill {
  background: #4CAF50;
  color: #fff;
  border: none;
}

.btn-fill:hover {
  background: #388e3c;
}

/* Mobile Responsive */
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-links,
  .auth-buttons {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    display: none;
    margin-top: 10px;
  }

  .navbar {
    align-items: flex-start;
    padding: 10px 20px;
  }

  #menu-toggle:checked ~ .nav-links,
  #menu-toggle:checked ~ .auth-buttons {
    display: flex;
  }

  .hamburger {
    display: block;
    margin-left: auto;
    margin-top: 5px;
  }
}
.hamburger i {
  color: #000; /* sets the icon color to black */
}






/* HERO SECTION */
/* .hero {
  height: 100vh;
  background-image: url('images/bg5.jpg'); 
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 8%;
  animation: shake 8s infinite ease-in-out;
  margin-top: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.5) 40%,
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none; /
}


.hero-content {
  position: relative;
  max-width: 600px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 45px;
  color: #2e7d32;
  margin-bottom: 15px;
  animation: slideIn 1.2s ease forwards;
}

.hero-content p {
  font-size: 18px;
  color: #444;
  margin-bottom: 25px;
  animation: fadeIn 2s ease-in forwards;
}
.hero-content .btn-fill {
  padding: 14px 32px;
  background: linear-gradient(135deg, #6dbb63, #a8e063);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(109, 187, 99, 0.4);
  transition: all 0.3s ease-in-out;
  animation: fadeInUp 2.5s ease-in forwards;
}

.hero-content .btn-fill:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(109, 187, 99, 0.5);
  background: linear-gradient(135deg, #5ca85c, #90d561);
}



@keyframes shake {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(2px, -2px); }
  60% { transform: translate(-2px, 2px); }
  80% { transform: translate(2px, -2px); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 10px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .hero-content .btn-fill {
    padding: 12px 28px;
    font-size: 16px;
  }
} */





/* Apply Fonts */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

.hero-content h1,
.animated-title {
  font-family: 'Montserrat', sans-serif; 
  font-weight: 700; 
}

.animated-text {
  font-family: 'Poppins', sans-serif; 
  font-weight: 400;
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 8%;
  background: linear-gradient(to right, #eafdea, #fff7e6);
  min-height: 100vh;
  overflow: hidden;
  flex-wrap: wrap; /* mobile me text aur basket niche chala jaye */
}

.hero-content {
  max-width: 50%;
  z-index: 2;
}

.animated-title {
  font-size: 3.5rem;
  font-weight: 400;
  color: #0f5132;
  margin-bottom: 15px;
  opacity: 0;
  animation: slideFadeIn 1.5s ease forwards;
  line-height: 1.2;
}

.highlight-orange { color: orange; }
.highlight-green { 
  color: green;
  animation: colorPulse 2s infinite alternate;
}

.animated-text {
  font-size: 1.3rem;
  font-weight: 400;
  color: #444;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 2s ease forwards 0.5s;
  line-height: 1.6;
}

/* Basket */
.basket {
  position: relative;
  z-index: 5;
  animation: basketBounce 3s ease-in-out infinite;
}

.basket img {
  width: 500px;
  max-width: 100%;
}

/* Animations */
@keyframes slideFadeIn {
  0% { opacity: 0; transform: translateX(-50px); letter-spacing: 5px; }
  100% { opacity: 1; transform: translateX(0); letter-spacing: normal; }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes basketBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes colorPulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

/* 🍓 Common strawberry style */
.strawberry {
  position: absolute;
  width: 90px;
  opacity: 0;
  z-index: 1; 
  bottom: 12%; 
  right: 20%;  
}

/* Smooth fly animation */
@keyframes flyToCorner {
  0% { opacity: 0; transform: translate(0,0) scale(0.5) rotate(0deg); z-index: 1; }
  20% { opacity: 1; transform: translate(5vw,-5vh) scale(0.7) rotate(8deg); z-index: 2; }
  100% { opacity: 1; transform: translate(var(--x), var(--y)) scale(1) rotate(0deg); z-index: 3; }
}

/* 🍓 Final positions (Desktop Default) */
.strawberry-top-right {
  --x: 20vw; --y: -59vh;
  animation: flyToCorner 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.strawberry-top-left {
  --x: -68vw; --y: -70vh;
  animation: flyToCorner 2.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.strawberry-bottom-left {
  --x: -40vw; --y: 10vh;
  animation: flyToCorner 2.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* 📱 Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; }
  .hero-content { max-width: 90%; }
  .animated-title { font-size: 2.8rem; }
  .animated-text { font-size: 1.1rem; }
  .basket img { width: 380px; }

  .strawberry { width: 70px; bottom: 10%; right: 18%; }
  .strawberry-top-right { --x: 15vw; --y: -22vh; }
  .strawberry-top-left { --x: -35vw; --y: -28vh; }
  .strawberry-bottom-left { --x: -28vw; --y: 8vh; }
}

/* 📱 Mobile (max-width: 600px) */
@media (max-width: 600px) {
  .animated-title { font-size: 2rem; }
  .animated-text { font-size: 1rem; }
  .basket img { width: 280px; }

  .strawberry { width: 55px; bottom: 8%; right: 15%; }
  .strawberry-top-right { --x: 12vw; --y: -18vh; }
  .strawberry-top-left { --x: -28vw; --y: -22vh; }
  .strawberry-bottom-left { --x: -22vw; --y: 6vh; }
}


.main-fruits {
  text-align: center;
  padding: 3rem 1rem;
  background: #fff7e6;
}

.fruit-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1e3932;
  font-weight: 700;
}

.fruit-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.fruit-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
  animation: float 4s ease-in-out infinite;
}

.fruit-card img {
  width: 150px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.fruit-card:hover {
  transform: translateY(-10px);
}

.fruit-card:hover img {
  transform: scale(1.1) rotate(3deg);
}

.fruit-card h3 {
  color: #6dbb63;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.fruit-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.fruit-btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #6dbb63;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.fruit-btn:hover {
  background: #9be753;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (max-width: 768px) {
  .main-fruits {
    padding: 2rem 1rem;
  }

  .fruit-title {
    font-size: 1.5rem;
  }

  .fruit-card {
    max-width: 100%;
    padding: 1rem;
  }

  .fruit-card img {
    width: 120px;
  }

  .fruit-card h3 {
    font-size: 1.1rem;
  }

  .fruit-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .fruit-title {
    font-size: 1.3rem;
  }

  .fruit-card img {
    width: 100px;
  }

  .fruit-card h3 {
    font-size: 1rem;
  }
}






/* About us */

.about-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 4rem 2rem;
  background: linear-gradient(to right, #e1f7e7, #f3ffe9);
}
.about-hero .content {
  flex: 1;
  padding-right: 2rem;
}
.about-hero h1 {
  font-size: 3rem;
  color: #2e7d32;
  margin-bottom: 1rem;
}
.about-hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.about-hero .explore-btn {
  padding: 12px 28px;
  background: linear-gradient(135deg, #4CAF50, #66bb6a);
  color: #fff;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
  letter-spacing: 1px;
}

.about-hero .explore-btn:hover {
  background: linear-gradient(135deg, #388e3c, #43a047);
  box-shadow: 0 6px 20px rgba(56, 142, 60, 0.4);
  transform: scale(1.05);
}

.image-container {
  flex: 1;
  text-align: center;
}
.image-container img {
  max-width: 100%;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Features */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 3rem 2rem;
  background: #ffffff;
}
.feature {
  flex: 1 1 30%;
  background: #e8f5e9;
  margin: 1rem;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.feature:hover {
  transform: translateY(-5px);
}
.feature h2 {
  margin-bottom: 0.5rem;
  color: #388e3c;
}



/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    flex-direction: column;
    text-align: center;
  }
  .about-hero .content {
    padding-right: 0;
  }
  .features {
    flex-direction: column;
    align-items: center;
  }
}
.about-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 2rem;
  background: #f9fff9;
}

.highlight {
  flex: 1 1 250px;
  background: #ffffff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeSlideUp 1s ease forwards;
  opacity: 0;
}

.highlight:nth-child(1) { animation-delay: 0.2s; }
.highlight:nth-child(2) { animation-delay: 0.4s; }
.highlight:nth-child(3) { animation-delay: 0.6s; }
.highlight:nth-child(4) { animation-delay: 0.8s; }
.highlight:nth-child(5) { animation-delay: 1s; }

.highlight:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.highlight .icon {
  font-size: 2.5rem;
  color: #4CAF50;
  margin-bottom: 1rem;
}

.highlight h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #2e7d32;
}

.highlight p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* Animation */
@keyframes fadeSlideUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-highlights {
    flex-direction: column;
    align-items: center;
  }
}


/* product */
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;600&family=Poppins:wght@500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Playfair+Display:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500&display=swap');

/* Hero Section */
.product-hero {
  text-align: center;
  padding: 4rem 2rem 2rem;
  background: linear-gradient(135deg, #d0f5c3, #eaffdf);
}
.product-hero h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}
.product-hero p {
  font-size: 1.25rem;
  color: #4caf50;
  font-family: 'Merriweather', serif;
}

/* Grid Layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem 2rem;
  background: linear-gradient(to bottom right, #f1f8e9, #ffffff);
  border-radius: 20px;
}

.product-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.15);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.product-card:hover {
  transform: scale(1.06);
  box-shadow: 0 15px 40px rgba(76, 175, 80, 0.25), 0 8px 15px rgba(0, 0, 0, 0.05);
}

/* Product Image */
.product-card img {
  width: 200px;
  height: 200px;
  margin-bottom: 1.2rem;
  animation: gentleSwing 3s ease-in-out infinite;
}
.product-card:hover img {
  transform: scale(1.1) rotate(3deg);
  animation: none;
}

/* Keyframes for continuous swinging motion */
@keyframes gentleSwing {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(2deg); }
  50%  { transform: rotate(0deg); }
  75%  { transform: rotate(-2deg); }
  100% { transform: rotate(0deg); }
}

/* Text Styling */
.product-card h2 {
  font-family: 'Pacifico', cursive;
  font-size: 1.8rem;
  color: #ff6f00;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
  margin-bottom: 0.6rem;
  background: linear-gradient(90deg, #417a1b, #04d326);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.product-card p {
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
  color: #3e2723;
  line-height: 1.7;
  letter-spacing: 0.3px;
  font-style: italic;
  background: linear-gradient(90deg, #6d4c41, #3e2723);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(50px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.fade-in { animation: fadeInUp 0.9s ease forwards; }
.fade-in:nth-child(1) { animation-delay: 0.2s; }
.fade-in:nth-child(2) { animation-delay: 0.4s; }
.fade-in:nth-child(3) { animation-delay: 0.6s; }
.fade-in:nth-child(4) { animation-delay: 0.8s; }
.fade-in:nth-child(5) { animation-delay: 1s; }
.fade-in:nth-child(6) { animation-delay: 1.2s; }
.fade-in:nth-child(7) { animation-delay: 1.4s; }
.fade-in:nth-child(8) { animation-delay: 1.6s; }

/* Hidden Health Info Hover Box */
.product-card.simple-hover::after {
  content: attr(data-health);
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom right, #ffffff, #f1f8e9);
  color: #2e7d32;
  font-size: 1rem;
  font-family: 'Merriweather', serif;
  font-weight: 600;
  padding: 20px;
  line-height: 1.7;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px #c8e6c9;
}
.product-card.simple-hover:hover::after {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Advanced hover */
.product-card.advanced-hover .health-card {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom right, #ffffff, #f1f8e9);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px #c8e6c9;
}
.product-card.advanced-hover:hover .health-card {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Health item alternating left-right images */
.health-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.health-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background-color: #fff;
  border-radius: 12px;
  padding: 3px;
}
.health-item span {
  font-family: 'Merriweather', serif;
  font-weight: 600;
  font-size: 1rem;
  color: #2e7d32;
}
.health-item.right { flex-direction: row-reverse; }
.health-item.right span { text-align: right; }

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 992px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-card { padding: 1.5rem; overflow: visible; }
  .product-card img {
    width: 120px;
    height: auto;
    object-fit: contain;
    margin: 0 auto 1rem;
    display: block;
  }
  .product-card h2 { font-size: 1.4rem; }
  .product-card p { font-size: 0.95rem; }
  .health-item {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .health-item.right, .health-item.left { flex-direction: column; }
}

/* Smallest mobiles */
@media (max-width: 360px) {
  .product-hero h1 { font-size: 2.2rem; }
  .product-hero p { font-size: 1rem; }
  .product-card { padding: 1rem; }
  .product-card h2 { font-size: 1.2rem; }
  .product-card p { font-size: 0.9rem; }
}

/* Ultra-small devices */
@media (max-width: 300px) {
  .product-card img { width: 80px; height: 80px; }
  .product-card h2 { font-size: 1rem; }
  .product-card p { font-size: 0.85rem; }
}
/* Ultra-small devices */
@media (max-width: 300px) {
  .product-card img {
    width: min(80px, 100%);
    height: auto;
  }

  .product-card h2 { font-size: 1rem; }
  .product-card p { font-size: 0.85rem; }

  /* Keep hover info inside card */
  .product-card.simple-hover::after,
  .product-card.advanced-hover .health-card {
    font-size: 0.85rem;
    padding: 10px;
    overflow-y: auto; /* allows scrolling if content overflows */
    max-height: 100%; /* never go outside card */
    box-sizing: border-box;
  }

  .health-item img {
    width: 60px;
    height: auto;
  }
}



.extra-section {
  padding: 4rem 2rem;
  text-align: center;
  background: #f9f9f9;
  animation: fadeInUp 1s ease forwards;
}

.extra-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.benefits-list {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.benefits-list li {
  background: #dfe6e9;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  color: #34495e;
}

.seasonal-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.seasonal-item {
  width: 200px;
  text-align: center;
}

.seasonal-item img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.choose-us .features-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  width: 200px;
}

.feature-card img {
  width: 60px;
  margin-bottom: 1rem;
}

.cta-banner {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-button {
  padding: 0.8rem 2rem;
  background: white;
  color: #27ae60;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.cta-button:hover {
  background: #2ecc71;
  color: white;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}



/* slideshow */
.carousel-slider-section {
  margin: 60px auto;
  padding: 30px 0;
  background: #f7f7f7;
  text-align: center;
}

.carousel-title {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #222;
}

.carousel-container {
  width: 90%;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 30px;
  animation: scrollCarousel 30s linear infinite;
}

.carousel-slide {
  flex: 0 0 auto;
  width: 100%;
  max-width: 250px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease;
}

.carousel-slide:hover {
  transform: scale(1.05);
}

.carousel-slide img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 8px;
}

.carousel-slide p {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
}

@keyframes scrollCarousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}


/* ✅ Responsive Design */
@media (max-width: 768px) {
  .carousel-track {
    gap: 20px;
  }

  .carousel-slide {
    max-width: 200px;
    padding: 15px;
  }

  .carousel-slide img {
    height: 150px;
  }

  .carousel-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .carousel-track {
    gap: 15px;
  }

  .carousel-slide {
    max-width: 160px;
    padding: 10px;
  }

  .carousel-slide img {
    height: 120px;
  }

  .carousel-title {
    font-size: 1.6rem;
  }
}





/* contact us */
header {
      background: #6ab04c;
      color: white;
      padding: 2rem 1rem;
      text-align: center;
      font-family: 'Playfair Display', serif;
    }

    header h1 {
      font-size: 2.8rem;
      animation: slideIn 1s ease-in-out;
    }

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      padding: 3rem 2rem;
      justify-content: center;
      gap: 2rem;
      background: #f9f9f9;
    }

    .contact-info, .contact-form {
      flex: 1 1 300px;
      padding: 2rem;
      border-radius: 12px;
      background: white;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      animation: fadeInUp 1s ease forwards;
    }

    .contact-info h2 {
      font-size: 2rem;
      color: #27ae60;
      margin-bottom: 1.5rem;
    }

    .info-item {
      margin-bottom: 1.2rem;
      font-size: 1rem;
      display: flex;
      align-items: center;
    }

    .info-item i {
      margin-right: 10px;
      color: #27ae60;
      font-size: 1.2rem;
    }

    .contact-form h2 {
      font-size: 2rem;
      color: #27ae60;
      margin-bottom: 1.5rem;
    }

    .contact-form form input,
    .contact-form form textarea {
      width: 100%;
      padding: 1rem;
      margin-bottom: 1.2rem;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 1rem;
      transition: border 0.3s ease;
    }

    .contact-form form input:focus,
    .contact-form form textarea:focus {
      outline: none;
      border: 1px solid #27ae60;
    }

    .contact-form button {
      background: #27ae60;
      color: white;
      padding: 1rem 2rem;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .contact-form button:hover {
      background: #219150;
    }


    @keyframes slideIn {
      from { transform: translateY(-50px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    @keyframes fadeInUp {
      from { transform: translateY(40px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    @media (max-width: 768px) {
      header h1 {
        font-size: 2.2rem;
      }

      .contact-info h2,
      .contact-form h2 {
        font-size: 1.5rem;
      }
    }
  .map-section {
  padding: 3rem 2rem;
  text-align: center;
  background: #f0fdf4;
  font-family: 'Poppins', sans-serif;
}

.map-section h2 {
  font-size: 2.2rem;
  color: #27ae60;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.map-section p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.map-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
}

.map-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.4rem;
  background: #2ecc71;
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.map-link:hover {
  background: #27ae60;
}




/* modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999; /* Increase this */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: #fff;
  margin: 5vh auto; /* instead of 10% */
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
  text-align: center;
  position: relative;
  z-index: 10000;
}

.modal-content input {
  width: 90%;
  padding: 0.6rem;
  margin: 0.5rem 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.modal-content button {
  background-color: #1e3932;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.modal-content .close {
  float: right;
  font-size: 24px;
  cursor: pointer;
}
.username-text {
  color: #000; /* Dark black */
  font-size: 1.1rem; /* Slightly larger */
  font-weight: 600;
}
@media (max-width: 350px) {
  .modal-content {
    width: 95%;
    padding: 1rem;
  }

  .modal-content input,
  .modal-content button {
    width: 100%;
    font-size: 0.9rem;
  }

  .modal-content .close {
    font-size: 20px;
  }
}



/* Loader */
/* Loader Wrapper with transparent + blur */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px); /* For blur */
  background-color: rgba(255, 255, 255, 0.5); /* Transparent white */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Spinner Container */
.spinner {
  position: relative;
  width: 130px;
  height: 130px;
}

/* Colorful rotating circle */
.circle {
  width: 100%;
  height: 100%;
  border: 5px solid transparent;
  border-top: 5px solid #0a5027;
  border-right: 5px solid #036821;
  border-bottom: 5px solid #068016;
  border-left: 5px solid #1a9909;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

/* Center logo, larger now */
.logo-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;  /* Bigger size */
  height: auto;
  border-radius: 50%;
}

/* Spin animation keyframes */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



/* go to top */
/* Go to Top Button */
#goTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  font-size: 20px;
  border: none;
  outline: none;
  background-color: #2ecc71;
  color: white;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 50%;
  display: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease;
}

#goTopBtn:hover {
  background-color: #27ae60;
}
@media (max-width: 350px) {
  .logo-img {
    width: 90px; /* slightly smaller on very narrow devices */
  }

  #goTopBtn {
    font-size: 16px;
    padding: 10px 14px;
    bottom: 20px;
    right: 20px;
  }
}




/* footer */