/* ==== PUDILU SECTION ==== */
.dr1028specialities2 {
  padding: 50px 20px;
  background: 
    linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)), /* light overlay */
    url('https://images.unsplash.com/photo-1589302168068-964664d93dc0?auto=format&fit=crop&w=1200&q=80'); /* spice background */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* parallax feel */
}

/* Main image */
.dr1028specialities2 .pudilu-main-img {
  text-align: center;
  margin-bottom: 30px;
}

.dr1028specialities2 .pudilu-main-img img {
  max-width: 200px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Grid */
.dr1028specialities2 .specialities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

/* Card */
.dr1028specialities2 .speciality-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dr1028specialities2 .speciality-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

/* Bigger product images */
.dr1028specialities2 .speciality-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.dr1028specialities2 .speciality-card:hover img {
  transform: scale(1.05);
}

/* Titles */
.dr1028specialities2 .speciality-card h4 {
  font-size: 1.2rem;
  color: #333;
  margin-top: 15px;
}

.dr1028specialities2 .english-title {
  display: block;
  font-size: 0.95rem;
  color: #777;
  margin-top: 5px;
}

/* Buttons */
.dr1028specialities2 .card-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.dr1028specialities2 .whatsapp-btn,
.dr1028specialities2 .call-btn {
  flex: 1;
  padding: 10px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

/* WhatsApp Button */
.dr1028specialities2 .whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: white;
}

.dr1028specialities2 .whatsapp-btn:hover {
  transform: scale(1.05);
}

/* Call Button */
.dr1028specialities2 .call-btn {
  background: linear-gradient(135deg, #ff5722, #e64a19);
  color: white;
}

.dr1028specialities2 .call-btn:hover {
  transform: scale(1.05);
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.fade-delay-1 { animation-delay: 0.2s; }
.fade-delay-2 { animation-delay: 0.4s; }
.fade-delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 500px) {
  .dr1028specialities2 .card-buttons {
    flex-direction: column;
  }
  
  .dr1028specialities2 .speciality-card img {
    width: 120px;
    height: 120px;
  }
}