* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* ===== SLIDER ===== */
.slider {
  position: relative;
  width: 100%;
  height: 80vh;
  max-height: 800px;
  overflow: hidden;
}

/* ===== SLIDES ===== */
.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}

/* ===== IMAGE ===== */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 8s ease-in-out infinite alternate;
}

/* Ken Burns Effect */
@keyframes kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

/* ===== CAPTION ===== */
.caption {
  position: absolute;
  bottom: 70px;
  left: 60px;
  max-width: 420px;
  padding: 20px 26px;
  border-radius: 16px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
  color: #fff;
  animation: fadeUp 1.2s ease;
}

.caption h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.caption p {
  font-size: 16px;
  opacity: 0.9;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== NAV BUTTONS ===== */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: 0.3s;
  z-index: 10;
}
.nav-btn:hover {
  background: linear-gradient(135deg, #00e5ff, #2979ff);
  box-shadow: 0 8px 25px rgba(0, 229, 255, 0.6);
}
.nav-btn:hover span {
  transform: scale(1.2);
}
.nav-btn span {
  font-size: 28px;
  color: #fff;
}

.nav-btn:hover {
  background: rgba(0,0,0,0.75);
}

.prev { left: 12px; }
.next { right: 12px; }

/* ===== PLAY / PAUSE ===== */
.control {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .slider {
    height: 220px;
  }

  .caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px;
    
     max-width: 150px;
  }

  .caption h2 {
    font-size: 18px;
  }

  .caption p {
    font-size: 13px;
  }

  .nav-btn {
    width: 38px;
    height: 38px;
  }
}
/* ===== HEADER OVER SLIDER ===== */
.slider-header {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
  pointer-events: none;
}

/* ===== LOGO ===== */
.logo {
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 14px;
  pointer-events: auto;
}

.logo img {
  height: 100px;
  width: auto;
}

/* ===== LANGUAGE SWITCH ===== */
.lang-switch {
  display: flex;
  gap: 6px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  padding: 6px;
  border-radius: 999px;
  pointer-events: auto;
}

.lang-btn {
  border: none;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: #fff;
  transition: all 0.3s ease;
}

/* Active Language */
.lang-btn.active {
  background: linear-gradient(135deg, #00e5ff, #2979ff);
  box-shadow: 0 4px 15px rgba(0,229,255,0.6);
}

/* Hover Effect */
.lang-btn:hover {
  background: rgba(255,255,255,0.2);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .logo img {
    height: 30px;
  }

  .lang-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* ===== COMPANY INFO SECTION ===== */
/* ===== COMPANY INFO SECTION ===== */
.company-info {
  width: 100%;
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #00c853, #ff6f00); /* Green to Orange gradient */
  color: #fff;
  border-radius: 16px 16px 0 0; /* Rounded top corners for premium look */
  box-shadow: 0 -8px 25px rgba(0,0,0,0.25);
}



/* About Description */
/* Company Name */
.company-name {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 1px;
}

.company-desc {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 16px;
  line-height: 1.8;
  color: #222;
}

/* Premium Animated Gradient Underline */


.company-name:hover::after {
  transform: scaleX(1); /* Animate underline on hover */
}

/* Button */
.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: rgba(0,0,0,0.2);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

.btn-primary:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .company-info {
    padding: 40px 16px;
  }

  .company-name {
    font-size: 26px;
  }

  .company-desc {
    font-size: 14px;
    line-height: 1.6;
  }

  .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Company Description */
.company-desc {
  max-width: 860px;
  margin: 28px auto 30px auto;
  font-size: 18px;
  line-height: 1.9;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;

  /* Premium feel */
  background: rgba(255, 255, 255, 0.08);
  padding: 26px 32px;
  border-radius: 18px;
  backdrop-filter: blur(10px);

  /* Subtle highlight */
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .company-desc {
    font-size: 14px;
    line-height: 1.7;
    padding: 18px 16px;
    margin: 20px auto;
  }
}
/* ===== TEA COLLECTION SECTION ===== */
.tea-collection {
  padding: 70px 20px;
  background: #f8fdf9;
  text-align: center;
}

/* Title */
.section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #1b5e20;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 70%;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, #00c853, #ff6f00);
}

/* Subtitle */
.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

/* ===== HORIZONTAL LIST ===== */
.tea-list {
  display: flex;
  gap: 24px;
  padding-bottom: 20px;

  /* CENTER ON DESKTOP */
  justify-content: center;
  flex-wrap: wrap;

  /* Smooth animation */
  transition: all 0.4s ease;
}
.tea-list::-webkit-scrollbar {
  height: 6px;
}
.tea-list::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #00c853, #ff6f00);
  border-radius: 10px;
}

/* ===== CARD ===== */
.tea-card {
  min-width: 260px;
  max-width: 260px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
  overflow: hidden;
  scroll-snap-align: start;
  transition: all 0.4s ease;
  cursor: pointer;
}

.tea-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tea-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 16px 16px 6px;
  color: #2e7d32;
}

.tea-card p {
  font-size: 14px;
  color: #666;
  margin: 0 16px 20px;
  line-height: 1.6;
}

/* ===== HOVER PREMIUM EFFECT ===== */
.tea-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

.tea-card:hover img {
  transform: scale(1.08);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .tea-card {
    min-width: 220px;
  }

  .tea-card img {
    height: 150px;
  }
}
/* ===== DEALER SECTION ===== */
.dealer-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #45a803, #ffea8a);
  color: #fff;
  border-radius: 30px;
  margin: 60px auto;
  max-width: 1200px;
  box-shadow: 0 25px 60px rgba(255, 95, 162, 0.45);
}

/* Title */
.dealer-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 14px;
}

.dealer-subtitle {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 50px;
  opacity: 0.95;
}

/* ===== BENEFITS GRID ===== */
.dealer-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

/* Benefit Card */
.benefit-card {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  padding: 26px 20px;
  border-radius: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  color: #000000;
}

.benefit-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 700;
}

.benefit-card p {
  font-size: 14px;
  opacity: 0.95;
}

/* Hover Effect */
.benefit-card:hover {
  transform: translateY(-12px) scale(1.05);
  background: rgba(255,255,255,0.28);
}

/* CTA Button */
/* ===== DEALER ACTION BUTTONS ===== */
.dealer-actions {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* Base Button */
.action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* Icon pulse */
.action-btn span {
  font-size: 20px;
  animation: pulseIcon 1.8s infinite;
}

/* WhatsApp */
.action-btn.whatsapp {
  background: linear-gradient(135deg, #25D366, #1ebe5d);
}

/* Call */
.action-btn.call {
  background: linear-gradient(135deg, #ff9800, #ff5722);
}

/* Hover */
.action-btn:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

/* Glow animation */
.action-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.25);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.action-btn:hover::after {
  opacity: 1;
}

/* Pulse animation */
@keyframes pulseIcon {
  0% { transform: scale(1); }
  50% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {
  .action-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .dealer-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .dealer-title {
    font-size: 28px;
  }

  .dealer-benefits {
    grid-template-columns: 1fr;
  }

  .dealer-section {
    padding: 50px 16px;
    border-radius: 20px;
  }
}
/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

/* Horizontal list */
.testimonial-list {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 30px 10px;
  scroll-snap-type: x mandatory;
}

/* Hide scrollbar (still scrollable) */
.testimonial-list::-webkit-scrollbar {
  height: 6px;
}
.testimonial-list::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #00c853, #ff6f00);
  border-radius: 10px;
}

/* Testimonial Card */
.testimonial-item {
  min-width: 320px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
  scroll-snap-align: center;
  transition: all 0.4s ease;
}

/* Hover animation */
.testimonial-item:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 22px 45px rgba(0,0,0,0.18);
}

/* Quote text */
.testimonial-item p {
  font-size: 15px;
  line-height: 1.8;
  color: #222;
  margin-bottom: 20px;
  position: relative;
}

/* Client name */
.testimonial-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1b5e20;
}

.testimonial-item h4 span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #ff6f00;
  margin-top: 4px;
}

/* ===== DESKTOP POLISH ===== */
@media (min-width: 992px) {
  .testimonial-list {
    padding-left: 60px;
    padding-right: 60px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {
  .testimonial-item {
    min-width: 260px;
  }
}
/* ===== PREMIUM FOOTER ===== */
.premium-footer {
  background: linear-gradient(180deg, #0f3d2e, #071f16);
  color: #ffffff;
  padding: 70px 20px 25px;
  text-align: center;
  position: relative;
}

/* Footer Content */
.footer-content {
  max-width: 900px;
  margin: auto;
}

/* Title */
.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

/* Underline */
.footer-title::after {
  content: '';
  width: 70%;
  height: 3px;
  background: linear-gradient(90deg, #00c853, #ff6f00);
  display: block;
  margin: 8px auto 0;
  border-radius: 10px;
}

/* Tagline */
.footer-tagline {
  font-size: 15px;
  margin-bottom: 25px;
  color: #e0e0e0;
}

/* Text */
.premium-footer p {
  font-size: 15px;
  margin: 8px 0;
  color: #f1f1f1;
}

/* Links */
.premium-footer a {
  color: #f1c40f;
  text-decoration: none;
}

.premium-footer a:hover {
  text-decoration: underline;
}

/* ===== SOCIAL ICONS ===== */
.premium-social {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  transition: all 0.4s ease;
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}

/* Icon */
.social img {
  width: 22px;
  filter: brightness(0) invert(1);
  transition: transform 0.4s ease;
}

/* Hover Effects */
.social:hover {
  transform: translateY(-6px) scale(1.12);
}

/* Facebook Glow */
.social.facebook:hover {
  background: #1877f2;
  box-shadow: 0 0 18px rgba(24,119,242,0.7);
}

/* Instagram Gradient */
.social.instagram:hover {
  background: radial-gradient(circle at 30% 30%,
    #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  box-shadow: 0 0 18px rgba(214,41,118,0.7);
}

.social:hover img {
  transform: rotate(12deg) scale(1.15);
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 13px;
  color: #cccccc;
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {
  .footer-title {
    font-size: 26px;
  }
}
/* ===== DEVELOPER CREDIT ===== */
.developer-credit {
  margin-top: 8px;
  font-size: 12.5px;
  color: #bbbbbb;
  letter-spacing: 0.4px;
}

/* Highlight company name */
.developer-credit span {
  color: #f1c40f;
  font-weight: 600;
  position: relative;
}

/* Elegant underline animation */
.developer-credit span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #00c853, #ff6f00);
  transition: width 0.4s ease;
}

/* Hover effect */
.developer-credit span:hover::after {
  width: 100%;
}

 /* Floating button style */

   /* Hover effect */
   .whatsapp-btn:hover {
    transform: scale(1.3);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  }
 .whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #048f37;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  animation: zoomInOut 2s infinite;
  z-index: 1000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-img {
  width: 50px; /* Adjust size */
  height: 50px;
  transition: transform 0.3s ease;
  animation: pulse 1.8s infinite; /* Continuous pulse */
}

/* Keyframes for zoom in/out */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15); /* Zoom in */
  }
  100% {
    transform: scale(1);
  }
}

/* Optional: Hover boost */
.whatsapp-btn:hover .whatsapp-img {
  transform: scale(1.25);
  transition: transform 0.3s ease;
}
 /* Mobile responsiveness */
 @media (max-width: 480px) {
 .whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #048f37;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  animation: zoomInOut 2s infinite;
  z-index: 1000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-img {
  width: 50px; /* Adjust size */
  height: 50px;
  transition: transform 0.3s ease;
  animation: pulse 1.8s infinite; /* Continuous pulse */
}
}
