/* Modern Enhancements CSS - Subtle improvements to existing design */

/* Hero Section Enhancements */
.site-slider .slide-content img {
  max-width: 100%;
  transition: transform 0.3s ease;
}

.site-slider .slide-content img:hover {
  transform: scale(1.02);
}

.site-slider .slide-content h1 {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.site-slider .slide-content h1 span {
  margin-left: 5px; /* Add space before Lifestyle */
}

.site-slider .slide-content p {
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  line-height: 1.5;
}

.site-slider .btn-mr {
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.site-slider .btn-mr:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Why Choose Us Enhancements */
.health-guide {
  padding: 80px 0;
}

.health-guide .section-title {
  position: relative;
  margin-bottom: 35px;
}

.health-guide .section-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #6dafb2;
}

.single-health-block {
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 30px 20px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

.single-health-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.single-health-block .icon-box {
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.single-health-block:hover .icon-box {
  transform: scale(1.1);
}

/* Expert Section Enhancements */
.our_experts {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.experts-detils h4 {
  margin-top: 25px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.experts-detils h4:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #6dafb2;
}

/* Gallery Enhancements */
.gallery-section .gallery-bg {
  transition: all 0.4s ease;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-section .gallery-bg:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Pricing Section Enhancements */
.ration-price {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.rationSinglePrice {
  transition: all 0.3s ease;
  overflow: hidden;
}

.rationSinglePrice:hover {
  transform: translateY(-10px);
}

/* Global Link Enhancements */
a {
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.9;
}

/* Call to Action Enhancements */
.call-to-action {
  background-image: linear-gradient(to right, #6dafb2, #53999c);
  padding: 60px 0;
}

.call-to-action h3 {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.call-to-action a {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.call-to-action a:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

/* Blog Section Enhancements */
.single-blog {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.single-blog:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Enhancements */
@media (max-width: 991px) {
  .health-guide, .our_experts, .ration-price {
    padding: 60px 0;
  }
  
  .single-health-block {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .site-slider .slide-content h1 {
    font-size: 32px;
  }
  
  .site-slider .slide-content p {
    font-size: 16px;
  }
  
  .health-guide, .our_experts, .ration-price {
    padding: 40px 0;
  }
}
