@charset "UTF-8";
/* =================================
   Custom CSS for Newyou Website
   ================================= */
.before-after-showcase {
  background-color: #ffffff;
  padding: 60px 0;
  display: block !important; /* Force display */
  visibility: visible; /* Ensure visibility */
}
.before-after-showcase .section-badge {
  background: none;
  margin-bottom: 10px;
}
.before-after-showcase .section-title {
  font-size: 3rem;
  font-family: "Marcellus", serif;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.2;
  font-weight: 400;
}
.before-after-showcase .section-description {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  display: block !important; /* Force display */
  visibility: visible; /* Ensure visibility */
}
.before-after-showcase .before-after-carousel {
  position: relative;
  margin: 0;
  display: block !important; /* Force display */
  visibility: visible; /* Ensure visibility */
}
.before-after-showcase .before-after-carousel .ba-carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  display: block !important; /* Force display */
  visibility: visible; /* Ensure visibility */
  width: 100%; /* Ensure container takes full width */
}
.before-after-showcase .before-after-carousel .ba-carousel-track {
  display: flex !important; /* Force display */
  transition: transform 0.5s ease-in-out;
  width: 100%; /* Default width */
  position: relative; /* Ensure proper positioning */
  transform: translateX(0); /* Start at first item */
  visibility: visible; /* Ensure visibility */
}
.before-after-showcase .before-after-carousel .ba-carousel-item {
  width: 50%; /* Each item takes 50% width (2 per slide) */
  padding: 20px;
  display: block !important; /* Force display */
  flex-shrink: 0; /* Prevent shrinking */
  opacity: 1; /* Ensure visibility */
  visibility: visible; /* Ensure visibility */
  height: 100%; /* Ensure full height */
}
.before-after-showcase .before-after-carousel .ba-carousel-item.active {
  display: block !important;
  opacity: 1;
  visibility: visible;
}
.before-after-showcase .before-after-carousel .comparison-wrapper {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex !important; /* Use flexbox for better layout */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  visibility: visible; /* Ensure visibility */
  padding: 20px;
  box-sizing: border-box;
  max-width: 800px; /* Limit width for better appearance */
}
.before-after-showcase .before-after-carousel .comparison-wrapper .treatment-title {
  font-family: "Marcellus", serif;
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  display: block !important;
  visibility: visible;
  flex-shrink: 0; /* Prevent title from shrinking */
}
.before-after-showcase .before-after-carousel .comparison-wrapper img-comparison-slider {
  width: 100%;
  max-height: 600px; /* Fixed height for consistency */
  border-radius: 12px;
  overflow: hidden;
  display: block !important; /* Force display */
  position: relative; /* Ensure proper positioning */
  visibility: visible; /* Ensure visibility */
  flex: 1; /* Take remaining space */
  outline: none !important;
}
.before-after-showcase .before-after-carousel .comparison-wrapper img-comparison-slider img {
  width: 100%;
  min-height: 600px; /* Full height */
  object-fit: cover;
  display: block !important; /* Force display */
  position: relative; /* Ensure proper positioning */
  visibility: visible; /* Ensure visibility */
  max-width: 100%; /* Ensure images don't overflow */
  border-radius: 8px; /* Add subtle border radius */
}
.before-after-showcase .before-after-carousel .ba-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #e9ecef;
  background: #ffffff;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 16px;
}
.before-after-showcase .before-after-carousel .ba-carousel-nav:hover {
  border-color: #4a90e2;
  color: #4a90e2;
  background: rgba(74, 144, 226, 0.1);
  transform: translateY(-50%) translateY(-2px);
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
}
.before-after-showcase .before-after-carousel .ba-carousel-nav:active {
  transform: translateY(-50%) translateY(0);
}
.before-after-showcase .before-after-carousel .ba-carousel-nav.ba-carousel-prev {
  left: -25px;
}
.before-after-showcase .before-after-carousel .ba-carousel-nav.ba-carousel-next {
  right: -25px;
}
.before-after-showcase .before-after-carousel .ba-carousel-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: translateY(-50%);
}
.before-after-showcase .before-after-carousel .ba-carousel-nav:disabled:hover {
  border-color: #e9ecef;
  color: #6c757d;
  background: #ffffff;
  transform: translateY(-50%);
  box-shadow: none;
}
.before-after-showcase .before-after-carousel .ba-carousel-nav i {
  font-size: 16px;
}
.before-after-showcase .before-after-carousel .ba-mobile-navigation {
  display: none;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}
.before-after-showcase .view-portfolio-btn {
  background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
  border: none;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
  display: inline-block !important; /* Force display */
  visibility: visible; /* Ensure visibility */
}
.before-after-showcase .view-portfolio-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
  background: linear-gradient(135deg, #357ABD 0%, #4A90E2 100%);
}

img-comparison-slider {
  --divider-width: 4px;
  --divider-color: #ffffff;
  --handle-size: 50px;
  --handle-color: #ffffff;
  --handle-border: 2px solid #000000;
  display: block !important; /* Force display */
  visibility: visible; /* Ensure visibility */
  position: relative; /* Ensure proper positioning */
}
img-comparison-slider::part(divider) {
  background-color: var(--divider-color);
  width: var(--divider-width);
  display: block !important; /* Force display */
  visibility: visible; /* Ensure visibility */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Add shadow for visibility */
}
img-comparison-slider::part(handle) {
  width: var(--handle-size);
  height: var(--handle-size);
  background-color: var(--handle-color);
  border: var(--handle-border);
  border-radius: 50%;
  display: flex !important; /* Force display */
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: grab;
  visibility: visible; /* Ensure visibility */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Add shadow for visibility */
}
img-comparison-slider::part(handle):active {
  cursor: grabbing;
}
img-comparison-slider::part(handle)::before {
  content: "DRAG";
  font-size: 10px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .before-after-showcase {
    padding: 50px 0;
  }
  .before-after-showcase .section-title {
    font-size: 36px;
  }
  .before-after-showcase .section-description {
    font-size: 16px;
    padding: 0 20px;
  }
  .before-after-showcase .before-after-carousel .ba-carousel-item {
    width: 100%; /* Each item takes full width on mobile */
    flex-shrink: 0; /* Prevent shrinking */
  }
  .before-after-showcase .before-after-carousel .ba-carousel-nav {
    display: none !important;
  }
  .before-after-showcase .before-after-carousel .ba-mobile-navigation {
    display: flex;
  }
  .before-after-showcase .before-after-carousel .ba-mobile-navigation .ba-carousel-nav {
    display: flex !important;
    position: static;
    width: 45px;
    height: 45px;
    margin: 0;
    transform: none;
    font-size: 14px;
  }
  .before-after-showcase .before-after-carousel .ba-mobile-navigation .ba-carousel-nav:hover {
    transform: translateY(-2px);
  }
  .before-after-showcase .before-after-carousel .ba-mobile-navigation .ba-carousel-nav:active {
    transform: translateY(0);
  }
  .before-after-showcase .before-after-carousel .ba-mobile-navigation .ba-carousel-nav i {
    font-size: 14px;
  }
  .before-after-showcase .before-after-carousel .comparison-wrapper .treatment-title {
    font-size: 20px;
  }
  .before-after-showcase .view-portfolio-btn {
    padding: 12px 30px;
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .before-after-showcase .section-title {
    font-size: 28px;
  }
  .before-after-showcase .section-description {
    font-size: 14px;
  }
  .before-after-showcase .before-after-carousel .ba-carousel-item {
    padding: 15px;
  }
  .before-after-showcase .before-after-carousel .comparison-wrapper {
    padding-top: 0px;
  }
  .before-after-showcase .before-after-carousel .comparison-wrapper img-comparison-slider img {
    min-height: 400px;
  }
  .before-after-showcase .before-after-carousel .comparison-wrapper .treatment-title {
    font-size: 18px;
  }
  .before-after-showcase .before-after-carousel .ba-mobile-navigation {
    margin-top: 5px;
  }
  .before-after-showcase .before-after-carousel .ba-mobile-navigation .ba-carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }
  .before-after-showcase .before-after-carousel .ba-mobile-navigation .ba-carousel-nav i {
    font-size: 12px;
  }
}
/* Animation Classes */
.before-after-showcase [data-animate=fade-up] {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.before-after-showcase [data-animate=fade-up].animate {
  opacity: 1;
  transform: translateY(0);
}

.before-after-showcase [data-animate=slide-from-bottom] {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.before-after-showcase [data-animate=slide-from-bottom].animate {
  opacity: 1;
  transform: translateY(0);
}

/* =================================
   Reviews Section Styles - 3 Cards Layout with Centered Images
   ================================= */
.reviews-section {
  padding: 60px 0;
  background: #ffffff;
  position: relative;
}

.reviews-section .section-badge {
  background: none;
  margin-bottom: 10px;
}

.reviews-section .section-badge:hover {
  background: rgba(137, 205, 223, 0.15);
  transform: translateY(-2px);
}

.reviews-section .section-title {
  font-family: "Marcellus", serif;
  font-size: clamp(2rem, 1.7115rem + 1.2821vw, 3.25rem);
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.2;
  position: relative;
}

.reviews-section .section-description {
  font-size: 18px;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Reviews Carousel Wrapper */
.reviews-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Reviews Carousel */
.reviews-carousel {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

/* Reviews Track */
.reviews-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* Review Cards */
.review-card {
  flex: 0 0 31%;
  background: var(--primary-color);
  border-radius: 20px;
  padding: 40px 30px 30px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  min-height: auto;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Client Image - Centered at top */
.client-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 0 auto 20px;
  position: relative;
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Star Rating - Below image */
.star-rating {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 25px;
}

.star-rating i {
  color: #ffc107;
  font-size: 18px;
}

.star-rating .far {
  color: #ddd;
}

/* Review Content */
.review-content {
  flex-grow: 1;
  margin-bottom: 25px;
}

.testimonial {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 0;
  font-style: italic;
  text-align: center;
}

/* Review Footer */
.review-footer {
  margin-top: 30px;
  text-align: center;
}

.client-name {
  font-family: "Marcellus", serif;
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 5px;
  font-weight: 400;
}

.service-type {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 0;
  font-weight: 500;
}

/* Reviews Navigation */
.reviews-navigation {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.reviews-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #e9ecef;
  background: #ffffff;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 16px;
}

.reviews-nav-btn:hover {
  border-color: #4a90e2;
  color: #4a90e2;
  background: rgba(74, 144, 226, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
}

.reviews-nav-btn:active {
  transform: translateY(0);
}

.reviews-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.reviews-nav-btn:disabled:hover {
  border-color: #e9ecef;
  color: #6c757d;
  background: #ffffff;
  transform: none;
  box-shadow: none;
}

/* Animation Classes */
.slide-from-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-from-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-from-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-from-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .reviews-section {
    padding: 80px 0;
  }
  .review-card {
    min-height: 400px;
  }
  .reviews-track {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .reviews-section {
    padding: 50px 0;
  }
  .review-card {
    min-height: 380px;
  }
  .reviews-track {
    gap: 15px;
    justify-content: flex-start;
  }
  .client-image {
    width: 70px;
    height: 70px;
  }
  .testimonial {
    font-size: 15px;
  }
  .client-name {
    font-size: 1.2rem;
  }
}
@media (max-width: 576px) {
  .review-card {
    flex: 0 0 100%;
    padding: 30px 25px 25px;
    min-height: 350px;
  }
  .reviews-navigation {
    margin-top: 30px;
  }
  .reviews-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 14px;
  }
}
/* Enhanced Animations */
.reviews-section [data-animate=slide-from-left] {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reviews-section [data-animate=slide-from-left].animate {
  opacity: 1;
  transform: translateX(0);
}

.reviews-section [data-animate=slide-from-right] {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reviews-section [data-animate=slide-from-right].animate {
  opacity: 1;
  transform: translateX(0);
}

.reviews-section [data-animate=fade-up] {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reviews-section [data-animate=fade-up].animate {
  opacity: 1;
  transform: translateY(0);
}

/* =================================
   Consultation Section Styles
   ================================= */
.consultation-section {
  padding: 60px 0;
  background: #f8f6f2;
  position: relative;
}

.consultation-section .section-badge {
  display: inline-block;
  background: rgba(74, 144, 226, 0.1);
  border: 1px solid rgba(74, 144, 226, 0.2);
  color: var(--primary-badge-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: normal;
}

.consultation-section .section-badge:hover {
  background: rgba(137, 205, 223, 0.15);
  transform: translateY(-2px);
}

.consultation-section .section-title {
  font-family: "Marcellus", serif;
  font-size: clamp(2rem, 1.7115rem + 1.2821vw, 3.25rem);
  font-weight: 400;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.consultation-section .section-description {
  font-size: 18px;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Content Section */
.consultation-content {
  padding-right: 30px;
}

/* Function Section */
.function-section {
  margin-bottom: 40px;
}

.function-title {
  font-family: "Marcellus", serif;
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 25px;
  font-weight: 400;
}

.function-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.function-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #327488, #2e8fa9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon i {
  color: white;
  font-size: 12px;
}

.function-item span {
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.5;
}

/* Support Box */
.support-box {
  background: linear-gradient(135deg, #327488, #2e8fa9);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

.support-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20px;
  width: 100px;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(15deg);
}

.support-icon {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0.9;
}
.support-icon i {
  font-size: 24px;
}

.support-content {
  flex: 1;
}

.support-label {
  font-size: 14px;
  margin-bottom: 5px;
  opacity: 0.9;
}

.support-title {
  font-family: "Marcellus", serif;
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-weight: 400;
}

.support-phone {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}
.support-phone a {
  text-decoration: none;
  color: #ffffff;
}

/* Form Section */
.consultation-form-wrapper {
  position: relative;
}

.consultation-form {
  background: linear-gradient(135deg, #327488, #2e8fa9);
  border-radius: 25px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.consultation-form::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50px;
  width: 150px;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(15deg);
}

.form-title {
  font-family: "Marcellus", serif;
  font-size: 2rem;
  color: white;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 400;
}

.form {
  position: relative;
  z-index: 2;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 50px;
  background: white;
  font-size: 16px;
  color: #5a5a5a;
  transition: all 0.3s ease;
  box-shadow: none;
  outline: none;
}

.form-control:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.form-control::placeholder {
  color: #999;
}

/* Select Styling */
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 50px;
}

.select-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
  font-size: 14px;
}

/* Date Input */
input[type=date].form-control {
  padding-right: 50px;
}

.date-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
  font-size: 14px;
}

/* Checkbox */
.checkbox-group {
  margin: 25px 0;
}

.checkbox-container {
  display: flex;
  align-items: center;
  color: white;
  font-size: 14px;
  cursor: pointer;
  gap: 12px;
  line-height: 1.4;
}

.checkbox-container input[type=checkbox] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-container input[type=checkbox]:checked + .checkmark {
  background: white;
  border-color: white;
}

.checkbox-container input[type=checkbox]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #89cddf;
  font-size: 12px;
  font-weight: bold;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  padding: 15px 30px;
  background: white;
  color: #89cddf;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-submit:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-submit:active {
  transform: translateY(0);
}

/* Animation Classes */
.consultation-section [data-animate=slide-from-left] {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.consultation-section [data-animate=slide-from-left].animate {
  opacity: 1;
  transform: translateX(0);
}

.consultation-section [data-animate=slide-from-right] {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.consultation-section [data-animate=slide-from-right].animate {
  opacity: 1;
  transform: translateX(0);
}

.consultation-section [data-animate=fade-up] {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.consultation-section [data-animate=fade-up].animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .consultation-section {
    padding: 80px 0;
  }
  .consultation-content {
    padding-right: 0;
    margin-bottom: 50px;
  }
  .support-box {
    margin-bottom: 40px;
  }
  .consultation-form {
    padding: 35px;
  }
  .form-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .consultation-section {
    padding: 60px 0;
  }
  .consultation-form {
    padding: 30px 25px;
  }
  .form-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
  .form-control {
    padding: 12px 18px;
    font-size: 15px;
  }
  .support-box {
    padding: 25px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .support-icon {
    flex-direction: row;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .consultation-form {
    padding: 25px 20px;
  }
  .form-title {
    font-size: 1.4rem;
  }
  .function-item {
    gap: 12px;
  }
  .function-item span {
    font-size: 15px;
  }
  .support-title {
    font-size: 1.2rem;
  }
}
/* =================================
   App Download Section Styles - Compact Design
   ================================= */
.app-section {
  padding: 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.app-wrapper {
  display: flex;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  margin: 50px auto;
  max-width: 1200px;
}

/* Image Side */
.app-image-side {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  max-width: 500px;
}

.doctor-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content Side */
.app-content-side {
  flex: 1;
  background: linear-gradient(135deg, #327488, #27a3c4);
  position: relative;
  display: flex;
  align-items: center;
  padding: 50px;
}

.app-content {
  width: 100%;
  color: white;
  position: relative;
  z-index: 2;
}

.app-section .section-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: normal;
}

.app-section .section-badge:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.app-section .section-title {
  font-family: "Marcellus", serif;
  font-size: clamp(1.8rem, 1.5rem + 1vw, 2.5rem);
  font-weight: 400;
  color: white;
  margin-bottom: 30px;
  line-height: 1.3;
}

/* App Download Buttons */
.app-download-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.app-store-btn {
  display: block;
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.app-store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.app-store-btn img {
  width: auto;
  height: 45px;
  display: block;
  transition: all 0.3s ease;
}

/* Decorative Elements */
.app-decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.floating-icon.icon-1 {
  top: 5%;
  right: 20%;
  animation: float 2s ease-in-out infinite;
}

.floating-icon.icon-2 {
  bottom: 5%;
  right: 10%;
  animation: float 2.5s ease-in-out infinite reverse;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
/* Animation Classes */
.app-section [data-animate=slide-from-left] {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.app-section [data-animate=slide-from-left].animate {
  opacity: 1;
  transform: translateX(0);
}

.app-section [data-animate=slide-from-right] {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.app-section [data-animate=slide-from-right].animate {
  opacity: 1;
  transform: translateX(0);
}

.app-section [data-animate=fade-up] {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.app-section [data-animate=fade-up].animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .app-wrapper {
    flex-direction: column;
    min-height: auto;
  }
  .app-image-side {
    flex: none;
    height: 300px;
  }
  .app-content-side {
    padding: 40px;
  }
  .floating-icon {
    display: none;
  }
}
@media (max-width: 768px) {
  .app-wrapper {
    margin: 30px 20px;
    border-radius: 20px;
  }
  .app-content-side {
    padding: 30px;
  }
  .app-section .section-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
  .app-download-buttons {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .app-wrapper {
    margin: 20px 15px;
  }
  .app-content-side {
    padding: 25px 20px;
  }
  .app-section .section-title {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .app-download-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
/* =================================
   Footer Section Styles
   ================================= */
.footer-section {
  background: #f8f6f2;
  padding: 80px 0 0;
  border-top: 1px solid #e5e5e5;
  position: relative;
}

.footer-content {
  margin-bottom: 60px;
}

/* Footer Widget */
.footer-widget {
  margin-bottom: 30px;
  padding-right: 30px;
  position: relative;
}

/* Column Separators */
.footer-widget::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #e5e5e5;
}

/* Remove separator from last column */
.col-lg-3:last-child .footer-widget::after,
.col-lg-2:last-child .footer-widget::after {
  display: none;
}

/* Ensure separators show between all columns */
@media (min-width: 992px) {
  .footer-widget::after {
    display: block;
  }
}
/* Logo Section */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 160px;
  height: auto;
}

.logo-text {
  font-family: "Marcellus", serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #2c3e50;
}

.footer-description {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Social Section */
.footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-label {
  font-size: 16px;
  color: #2c3e50;
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-link {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.social-link:hover {
  background: #89cddf;
  color: white;
  transform: translateY(-2px);
}

/* Widget Titles */
.widget-title {
  font-family: "Marcellus", serif;
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 25px;
  font-weight: 400;
  position: relative;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #6c757d;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  display: block;
  line-height: 1.5;
}

.footer-links a:hover {
  color: #89cddf;
  padding-left: 5px;
}

/* Office Info */
.office-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.office-address,
.office-phone {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #6c757d;
  line-height: 1.5;
}

.office-address i,
.office-phone i {
  color: #89cddf;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Phone Link Styling - Fix Blue Color */
.phone-link {
  color: #6c757d !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #89cddf !important;
  text-decoration: none;
}

.view-map-link {
  color: #2c3e50;
  text-decoration: underline;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.view-map-link:hover {
  color: #89cddf;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #e5e5e5;
  padding: 30px 0;
  background: transparent;
}

.footer-bottom .row {
  align-items: center;
}

.copyright {
  display: flex;
  align-items: center;
  height: 100%;
}

.copyright p {
  margin: 0;
  color: #6c757d;
  font-size: 16px;
  line-height: 1.5;
}

/* Legal Links */
.footer-legal {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.legal-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.legal-links a {
  color: #6c757d;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.legal-links a:hover {
  color: #89cddf;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-section {
    padding: 60px 0 0;
  }
  .footer-content {
    margin-bottom: 40px;
  }
  .footer-widget {
    padding-right: 15px;
  }
  .footer-widget::after {
    display: none;
  }
  .footer-legal {
    justify-content: flex-start;
    margin-top: 20px;
  }
  .legal-links {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .footer-section {
    padding: 50px 0 0;
  }
  .footer-social {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .widget-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  .footer-links a,
  .office-address,
  .office-phone,
  .copyright p,
  .legal-links a {
    font-size: 15px;
  }
  .office-info {
    gap: 15px;
  }
  .legal-links {
    gap: 15px;
    flex-direction: column;
  }
  .footer-bottom {
    text-align: center;
  }
  .footer-bottom .row > div {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .legal-links {
    align-items: flex-start;
  }
  .footer-section {
    padding: 40px 20px;
  }
  .footer-widget {
    padding-left: 15px;
    padding-right: 15px;
  }
  .footer-logo {
    justify-content: flex-start;
    margin-bottom: 15px;
  }
  .footer-description {
    text-align: left;
    margin-bottom: 20px;
  }
  .footer-social {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .widget-title {
    text-align: left;
    font-size: 1.1rem;
  }
  .footer-links {
    text-align: left;
  }
  .office-info {
    text-align: left;
  }
  .office-address,
  .office-phone {
    justify-content: flex-start;
    text-align: left;
  }
  .view-map-link {
    text-align: left;
    display: block;
  }
  .legal-links {
    justify-content: flex-start;
    gap: 10px;
  }
  .footer-bottom {
    padding: 25px 0;
  }
  .copyright {
    justify-content: flex-start;
  }
  .footer-legal {
    justify-content: flex-start;
    margin-top: 15px;
  }
}
/* Branch Name Styling */
.branch-name {
  font-family: "Marcellus", serif;
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 500;
}

/* Payment Methods Styling */
.payment-methods {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}

.payment-title {
  font-family: "Marcellus", serif;
  font-size: 1rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 500;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.payment-logo {
  background: #ffffff;
  padding: 10px 15px;
  border-radius: 10px;
  border: 2px solid #e5e5e5;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  filter: brightness(1) contrast(1.1);
  max-width: 80px;
  height: auto;
}

.payment-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  border-color: #89cddf;
  filter: brightness(1.05) contrast(1.2);
}

/* Specific styling for payment logos to ensure visibility */
.payment-logo[alt*=Tasheel],
.payment-logo[alt*=Tamara],
.payment-logo[alt*=Tabby] {
  background: linear-gradient(135deg, #2d8ba5 0%, #28a0c0 100%);
  border: 2px solid #dee2e6;
}

/* Animation on scroll */
.footer-widget {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.footer-widget.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Hover effects for better interactivity */
.footer-widget:hover .widget-title {
  color: #89cddf;
  transition: color 0.3s ease;
}

.office-address:hover i,
.office-phone:hover i {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #89cddf, #7cc3d8);
  color: white;
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(137, 205, 223, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, #7cc3d8, #6bb8d1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(137, 205, 223, 0.4);
}

.back-to-top:hover i {
  transform: translateY(-2px);
  animation: arrowBounce 0.6s ease-in-out infinite alternate;
}

.back-to-top:active {
  transform: translateY(-1px);
}

/* Arrow Bounce Animation */
@keyframes arrowBounce {
  0% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(-5px);
  }
}
@media (max-width: 768px) {
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 16px;
  }
}
html {
  overflow: auto;
}

/* Root Variables */
:root {
  --primary-color: #327488;
  --primary-badge-color: #4a90e2;
  --secondary-color: #e4b74a;
  --primary-dark: #0ea5e9;
  --accent-color: #06b6d4;
  --btn-primary-color: #327488;
  --text-dark: #1e293b;
  --text-black: #000000;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --separator-color: #b5ad8f;
  --white: #ffffff;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --btn-hover-bg: #2a6377;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  /* color: var(--text-light); */
}

@-webkit-keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@-webkit-keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
/* Buttons */
.btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  padding: 10px 30px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* RTL Button adjustments */
html[dir=rtl] .btn {
  font-family: var(--arabic-font-primary, "Montserrat", sans-serif);
}

.btn-primary {
  /* background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
     */
  background: var(--btn-primary-color);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--btn-hover-bg);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  transform: translateY(-2px);
}

/* Header Styles */
.header-area {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
}

.top-bar {
  font-size: 14px;
  border: none;
  position: relative;
  /* backdrop-filter: blur(10px); */
  padding: 8px 0;
  border-style: solid;
  border-width: 0px 0px 1px;
  border-color: var(--separator-color);
}

.top-bar .container-fluid {
  max-width: 1400px;
  margin: 0 auto;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.top-bar-item {
  color: #ffffff;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  padding: 0 15px;
}

.separator {
  color: var(--separator-color);
  opacity: 1;
  margin: 0;
  font-weight: 300;
}

.navbar {
  padding: 1rem 0;
  transition: var(--transition);
  /* backdrop-filter: blur(10px); */
}

.navbar .container-fluid {
  max-width: 1400px;
  margin: 0 auto;
}

.navbar-brand .logo-img {
  height: 60px;
  transition: var(--transition);
}

.navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin: 10px 0.2rem;
  padding: 5px 22px !important;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #000000;
  /* color: var(--primary-dark);
    background: rgba(125, 211, 252, 0.1); */
  display: inline-block;
  padding: 6px 28px;
  overflow: hidden;
  border-radius: 2em;
  /* will-change: transform; */
}

.navbar-nav .nav-link::after {
  content: "";
  border: 0px;
  /* position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%); */
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active {
  background-color: #e4b74a;
}

.navbar-nav .nav-link:hover::before {
  /* width: 80%; */
  position: absolute;
  top: 50%;
  content: "";
  border-radius: 50%;
  z-index: -1;
  animation: criss-cross-left 0.8s both;
  animation-direction: alternate;
  transform: translate(-50%, -50%);
}

.navbar-nav .nav-link:hover::after {
  /* width: 80%; */
  content: "";
  animation: criss-cross-right 0.8s both;
  animation-direction: alternate;
  transform: translate(50%, -50%);
  position: absolute;
  top: 50%;
  border-radius: 50%;
  z-index: -1;
}

.appointment-btn {
  font-size: 18px;
  padding: 12px 29px;
}

.appointment-btn i {
  font-size: 17px;
}

/* Icon font sizes */
i,
.fas,
.far,
.fab {
  font-size: 17px;
}

/* Dropdown Menu */
.nav-item.dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 12px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

/* .nav-item.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
} */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 6px 6px 0px 0px rgba(137, 205, 223, 0.5), 0 0 0px 1px rgb(137, 205, 223); /* solid outline-like shadow */
  border-radius: 16px;
  padding: 20px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1000;
  display: block;
  overflow: hidden;
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-item {
  padding: 8px 22px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-dark);
  text-decoration: none;
  display: block;
  border-left: 3px solid transparent;
  position: relative;
}

.dropdown-item:hover {
  background: linear-gradient(90deg, rgba(137, 205, 223, 0.08) 0%, rgba(137, 205, 223, 0.02) 100%);
  color: var(--primary-dark);
  border-left-color: var(--primary-color);
  padding-left: 32px;
  transform: translateX(2px);
}

.dropdown-item:first-child {
  margin-top: 0;
}

.dropdown-item:last-child {
  margin-bottom: 0;
}

/* Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.page-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Utility Classes */
.section-padding {
  padding: 100px 0;
}

.bg-light-custom {
  background-color: #f8fafc;
}

.text-primary-custom {
  color: var(--primary-dark) !important;
}

.border-primary-custom {
  border-color: var(--primary-color) !important;
}

/* General Badge Component */
.section-badge {
  display: inline-block;
  background: rgba(74, 144, 226, 0.1);
  border: 1px solid rgba(74, 144, 226, 0.2);
  color: var(--primary-badge-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: normal;
}

.section-badge:hover {
  background: rgba(137, 205, 223, 0.15);
  transform: translateY(-2px);
}

/* Hover Effects */
.hover-scale {
  transition: var(--transition);
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-shadow {
  transition: var(--transition);
}

.hover-shadow:hover {
  box-shadow: var(--shadow-lg);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

.book-now-btn {
  padding: 12px 24px;
}
.book-now-btn i {
  margin-right: 8px;
  font-size: 16px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher-item {
  text-decoration: none;
}
.language-switcher-item span {
  border: 1px solid var(--primary-color);
  background-color: rgba(50, 116, 136, 0.4);
  padding: 4px 10px;
  line-height: 1;
  color: #ffffff;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
}
.language-switcher-item:hover span {
  background-color: var(--primary-color);
}

.alert[data-notify] {
  min-width: 300px;
  padding: 1rem 1.5rem;
}

.alert[data-notify] .close {
  right: 1rem !important;
  padding: 0.25rem 0 0 2rem;
  font-weight: 300;
}

.alert[data-notify] .close:before {
  font-size: 0.75rem;
  color: #fff;
  opacity: 0.7;
  transition: all 0.15s ease;
  font-family: Ki;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  content: "\f130";
}

.alert[data-notify] .close:hover:before {
  opacity: 1;
  transition: all 0.15s ease;
}

@media (max-width: 991.98px) {
  .alert[data-notify] {
    max-width: 70%;
  }
}
@media (max-width: 991.98px) {
  .alert[data-notify] {
    max-width: 90%;
  }
}
.alert[data-notify][data-notify-position=top-center], .alert[data-notify][data-notify-position=bottom-center] {
  width: 30%;
}

@media (max-width: 991.98px) {
  .alert[data-notify][data-notify-position=top-center], .alert[data-notify][data-notify-position=bottom-center] {
    width: 70%;
  }
}
@media (max-width: 991.98px) {
  .alert[data-notify][data-notify-position=top-center], .alert[data-notify][data-notify-position=bottom-center] {
    width: 90%;
  }
}
.alert[data-notify] .icon {
  position: absolute;
}

.alert[data-notify] [data-notify=title] {
  display: block;
  font-weight: 500;
}

.alert[data-notify] .icon ~ [data-notify=title] {
  padding-left: 2.85rem;
}

.alert[data-notify] .icon ~ [data-notify=message] {
  display: inline-block;
  padding-left: 2.85rem;
}

.alert[data-notify] [data-notify=title]:not(:empty) ~ [data-notify=message] {
  margin-top: 0.2rem;
}

.alert[data-notify] .progress {
  margin-top: 0.5rem;
  line-height: 0.5rem;
  height: 0.5rem;
}

@media (max-width: 767px) {
  .btn {
    font-size: 16px;
  }
}
.main-title-wrapper {
  position: relative;
  padding-top: 160px;
  padding-bottom: 70px;
  text-align: center;
  overflow: hidden;
}
.main-title-wrapper .main-title-wrapper-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-image: url("../patterns/header-bg.png");
  background-attachment: inherit;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.main-title-wrapper .main-title-wrapper-bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(90deg, transparent 20%, #3584a0 40%);
  background-color: rgba(42, 99, 119, 0.5);
  z-index: 1;
}
.main-title-wrapper .container {
  position: relative;
  z-index: 2;
}
.main-title-wrapper h1 {
  font-size: clamp(2rem, 1.5962rem + 1.7949vw, 3.75rem);
  margin-bottom: 20px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.main-title-wrapper .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}
.main-title-wrapper .breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}
.main-title-wrapper .breadcrumb a:hover {
  color: white;
}
.main-title-wrapper .breadcrumb span {
  color: rgba(255, 255, 255, 0.8);
}

/* Hero Slider */
.hero-slider-wrapper {
  position: relative;
}

/* Carousel Touch/Drag Support */
.carousel {
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.carousel-inner {
  overflow: hidden;
}

.carousel-item {
  transition: transform 0.3s ease-in-out;
}

.carousel {
  height: 100vh;
  min-height: 700px;
}

.carousel-item:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.75;
  top: 0px;
  left: 0px;
  background: linear-gradient(103.76deg, rgba(50, 116, 136, 0) 23.5%, #327488 91%);
  transform: rotate(-180deg);
}

.carousel-item {
  height: 100vh;
  min-height: 700px;
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-slide {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding-top: 160px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
}

.hero-bg-base {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  z-index: -3;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-bg-img:before {
  background: linear-gradient(103.76deg, rgb(255, 255, 255) 23.5%, #b5ad8f 91%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(103.76deg, rgb(255, 255, 255) 23.5%, #b5ad8f 91%);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
}
.hero-content .btn-primary {
  background: #e4b74a;
  color: var(--text-black);
  box-shadow: var(--shadow);
}

.container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.hero-title {
  font-size: 46px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.title-image-wrapper {
  display: inline-block;
  margin: 0 0.5rem;
  position: relative;
  top: -0.2rem;
}

.title-inline-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: var(--shadow);
}

.hero-description {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 3rem;
  /* max-width: 500px; */
  line-height: 1.7;
}

.hero-stats {
  margin-bottom: 3rem;
  margin: 0px 0px 30px 0px;
  padding: 10px 0px 10px 0px;
  border-style: solid;
  border-width: 1px 0px 1px 0px;
  border-color: var(--separator-color);
}

.stat-item {
  text-align: left;
  padding: 1rem 0;
}

.stat-number {
  font-size: 46px;
  font-weight: 400;
  color: var(--text-black);
  margin-bottom: 0.1rem;
  font-family: "Marcellus", serif;
}

.stat-label {
  margin: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

/* Hexagon Pattern Overlay */
.hexagon-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  pointer-events: none;
  background-image: radial-gradient(circle at 25% 25%, var(--primary-color) 2px, transparent 2px), radial-gradient(circle at 75% 75%, var(--primary-color) 2px, transparent 2px);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
}

.scroll-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  position: relative;
  animation: pulse 2s infinite;
}

/* Carousel Indicators */
.carousel-indicators {
  bottom: 30px;
  right: 30px;
  margin-right: 5%;
  left: auto;
  margin-bottom: 0;
  justify-content: flex-end;
  width: auto;
  gap: 5px;
}

.carousel-indicators [data-bs-target] {
  background-color: #c1c1c1;
}

.carousel-indicators button {
  width: 15px !important;
  height: 12px !important;
  padding: 0 !important; /* remove Bootstrap’s default padding */
  margin: 0 4px !important; /* spacing between indicators */
  border: none !important; /* remove extra border */
  border-radius: 4px !important; /* optional, shape */
  transition: var(--transition);
  margin: 0 0 8px 0;
  opacity: 0.7;
  text-indent: 0;
}

.carousel-indicators button.active {
  background: #000000;
  opacity: 1;
}

.carousel-indicators button:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
}

/* Animations */
@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}
@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideFromBottom {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Animation Classes */
.slide-from-left {
  animation: slideFromLeft 0.8s ease-out forwards;
  opacity: 0;
}

.slide-from-left.delay-1 {
  animation-delay: 0.3s;
}

.slide-from-left.delay-2 {
  animation-delay: 0.6s;
}

.slide-from-left.delay-3 {
  animation-delay: 0.9s;
}

.slide-from-right {
  animation: slideFromRight 0.8s ease-out forwards;
  opacity: 0;
}

.slide-from-right.delay-1 {
  animation-delay: 0.3s;
}

.slide-from-right.delay-2 {
  animation-delay: 0.6s;
}

.slide-from-right.delay-3 {
  animation-delay: 0.9s;
}

.slide-from-bottom {
  animation: slideFromBottom 0.8s ease-out forwards;
  opacity: 0;
}

.slide-from-bottom.delay-1 {
  animation-delay: 0.3s;
}

.slide-from-bottom.delay-2 {
  animation-delay: 0.6s;
}

.slide-from-bottom.delay-3 {
  animation-delay: 0.9s;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 3.5rem;
  }
}
@media (max-width: 991px) {
  .hero-slide {
    text-align: center;
    padding-top: 140px;
  }
  .hero-title {
    font-size: 3rem;
  }
  .title-inline-img {
    width: 50px;
    height: 50px;
  }
  .hero-stats .row {
    justify-content: center;
  }
  .stat-item {
    margin-bottom: 1rem;
  }
}
/*  Mobile */
@media (max-width: 767px) {
  /* .carousel-item:before{
      background-color: #f0ebd8;
  } */
  .hero-content {
    text-align: left;
  }
  .top-bar {
    display: none;
  }
  .hero-slide {
    padding-top: 100px;
    min-height: 500px;
  }
  .carousel,
  .carousel-item {
    min-height: 500px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .title-inline-img {
    width: 40px;
    height: 40px;
  }
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .hero-stats {
    margin-bottom: 2rem;
  }
  .stat-number {
    font-size: 2rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .btn {
    width: fit-content;
    /* max-width: 250px; */
  }
  .navbar-nav {
    text-align: center;
    margin-top: 1rem;
  }
  .appointment-btn {
    margin-top: 1rem;
    width: 100%;
    max-width: 200px;
  }
}
@media (max-width: 575px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  .title-inline-img {
    width: 35px;
    height: 35px;
    top: -0.1rem;
  }
  .stat-number {
    font-size: 1.75rem;
  }
  .stat-label {
    font-size: 0.8rem;
  }
}
/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  z-index: 9999;
  transition: background-color 0.3s ease;
  pointer-events: none;
}

.mobile-menu-overlay.show {
  background: rgba(0, 0, 0, 0.4);
  pointer-events: all;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: -85%;
  width: 85%;
  max-width: 400px;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 80px 30px 40px;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay.show .mobile-menu-content {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-dark);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: rotate(90deg);
}

.mobile-nav {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 40px;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.mobile-nav-item {
  margin-bottom: 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  margin: 0 -20px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary-color);
  background: rgba(137, 205, 223, 0.05);
}

.mobile-nav-link.active {
  background: rgba(137, 205, 223, 0.1);
  border-bottom: 1px solid rgba(137, 205, 223, 0.2);
}

.mobile-nav-text {
  flex: 1;
}

.mobile-nav-arrow {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover .mobile-nav-arrow,
.mobile-nav-link.active .mobile-nav-arrow {
  color: var(--primary-color);
  transform: translateX(5px);
}

/* Mobile Dropdown Specific Styles */
.mobile-nav-dropdown .mobile-nav-arrow {
  transform: rotate(0deg);
}

.mobile-nav-dropdown.expanded .mobile-nav-arrow {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.mobile-nav-toggle:hover .mobile-nav-arrow {
  transform: rotate(0deg) !important;
}

.mobile-nav-dropdown.expanded .mobile-nav-toggle:hover .mobile-nav-arrow {
  transform: rotate(180deg) !important;
}

/* Mobile Submenu Styles */
.mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: rgba(245, 248, 250, 0.8);
  margin: 0 -20px;
}

.mobile-nav-dropdown.expanded .mobile-submenu {
  max-height: 100%;
}

.mobile-submenu-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-submenu-item:last-child {
  border-bottom: none;
}

.mobile-submenu-link {
  display: block;
  padding: 15px 50px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-submenu-link::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 50%;
  width: 4px;
  height: 4px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.mobile-submenu-link:hover {
  background: rgba(137, 205, 223, 0.1);
  color: var(--primary-color);
  padding-left: 55px;
}

.mobile-submenu-link:hover::before {
  background: var(--primary-color);
  transform: translateY(-50%) scale(1.5);
}

/* Hide mobile menu on desktop */
@media (min-width: 992px) {
  .mobile-menu-overlay {
    display: none;
  }
  .navbar-toggler {
    display: none;
  }
}
/* Mobile Dropdown Behavior */
@media (max-width: 991px) {
  .dropdown-menu {
    position: static;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: none;
    border-radius: 8px;
    margin: 10px 0;
    backdrop-filter: blur(10px);
  }
  .nav-item.dropdown:hover .dropdown-menu {
    transform: none;
  }
  .dropdown-arrow {
    display: none;
  }
}
/* =================================
   Services Section Styles
   ================================= */
.services-section {
  padding: 90px 0 20px 0;
  background: #ffffff;
  position: relative;
}

.services-section .section-badge {
  display: inline-block;
  background: rgba(135, 206, 235, 0.1);
  border: 1px solid rgba(135, 206, 235, 0.3);
  color: #4a90e2;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  /* text-transform: uppercase; */
  /* letter-spacing: 1px; */
  transition: all 0.3s ease;
}

.services-section .section-badge:hover {
  background: rgba(135, 206, 235, 0.15);
  transform: translateY(-2px);
}

.services-section .section-title {
  font-family: "Marcellus", serif;
  /* font-size: clamp(2.5rem, 4vw, 3.5rem); */
  font-size: clamp(2rem, 1.6115rem + 1.2821vw, 3.25rem);
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 0;
  line-height: 1.2;
  position: relative;
}

.services-section .section-content {
  padding-left: 2rem;
}

.services-section .section-description {
  font-size: 18px;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: left;
}

.services-section .browse-link {
  color: #4a90e2;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  display: inline-block;
}

.services-section .browse-link:hover {
  color: #357abd;
  border-bottom-color: #357abd;
  transform: translateY(-2px);
}

/* Services Indicators */
.services-indicators {
  margin-bottom: 50px;
}

.services-indicators .indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 8px;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  transition: all 0.4s ease;
  cursor: pointer;
}

.services-indicators .indicator-dot.active {
  background-color: #4a90e2;
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(74, 144, 226, 0.4);
}

.services-indicators .indicator-dot:hover {
  background-color: #4a90e2;
  transform: scale(1.2);
}

/* Services Carousel Wrapper */
.services-carousel-wrapper {
  position: relative;
  overflow: visible;
  padding: 0;
}

/* Services Grid */
.services-grid {
  display: flex;
  /* flex-direction: column; */
  gap: 20px;
  transition: transform 0.5s ease;
  overflow: visible;
}

/* Service Cards */
.service-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  width: 420px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
  position: relative;
}

.service-card.tall .service-image {
  height: 100%;
}

.service-card.short {
  margin-top: clamp(1.25rem, -2rem + 4.0625vw, 2.875rem);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-card:hover .service-overlay {
  opacity: 1;
  visibility: visible;
}

.service-card:hover .service-content {
  transform: translateY(0);
}

.service-card .service-image {
  position: relative;
  overflow: hidden;
}

.service-card .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card .service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(137, 205, 223, 0) 0%, #89cddf 90%);
  /* background: linear-gradient(135deg, rgba(74, 144, 226, 0.95) 0%, rgba(255, 103, 112, 0.95) 100%); */
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.service-card .service-content {
  text-align: center;
  color: #226e84;
  transform: translateY(30px);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card .service-content .service-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
}

.service-card .service-content .service-title {
  font-family: "Marcellus", serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.2;
}

.service-card .service-content .service-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}

.service-card .service-content .service-meta .duration {
  opacity: 0.9;
}

.service-card .service-content .service-meta .price {
  font-size: 20px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.service-card .service-content .service-description {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
  opacity: 0.95;
}

.service-card .service-content .service-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-size: 14px;
}

.service-card .service-content .service-btn:hover {
  background: rgb(255, 255, 255);
  color: #4a90e2;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-card .service-info {
  padding: 20px;
  text-align: center;
}

.service-card .service-info h4 {
  font-family: "Marcellus", serif;
  font-size: 1.3rem;
  color: #2c3e50;
  margin: 0;
  font-weight: 400;
}

/* Animation Classes */
.services-section [data-animate=slide-from-left] {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services-section [data-animate=slide-from-left].animate {
  opacity: 1;
  transform: translateX(0);
}

.services-section [data-animate=slide-from-right] {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services-section [data-animate=slide-from-right].animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-from-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-from-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-from-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-from-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .service-card {
    width: 300px;
  }
}
@media (max-width: 992px) {
  .services-section {
    padding: 80px 0;
  }
  .services-section .section-content {
    padding-left: 1rem;
    margin-top: 20px;
  }
  .service-card {
    width: 280px;
  }
  /* .service-card.tall .service-image {
    height: 380px;
  }

  .service-card.short .service-image {
    height: 300px;
  } */
  /* .service-card.short {
    margin-top: 80px;
  } */
}
@media (max-width: 768px) {
  .services-section {
    padding: 60px 0 0 0;
  }
  .services-section .section-content {
    padding-left: 0;
  }
  .service-card {
    width: 260px;
  }
  .service-card .service-content .service-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .section-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-top: 15px !important;
  }
  .section-content .section-description {
    text-align: right;
    margin-bottom: 0px;
  }
  .services-grid {
    gap: 0;
  }
  .service-card {
    width: 100%;
  }
  .service-card .service-overlay {
    opacity: 1;
    visibility: visible;
  }
  .service-card .service-content {
    transform: none;
  }
  .services-carousel-wrapper {
    overflow: hidden;
  }
  /* .service-card.short .service-image {
    height: 240px;
  }

  .service-card.short {
    margin-top: 80px;
  } */
}
@media (min-width: 768px) {
  .service-card .service-image img {
    min-height: clamp(21.875rem, 18.8462rem + 13.4615vw, 35rem);
  }
}
/* =================================
   Team Section Styles - Carousel with Vertical Social Links
   ================================= */
.team-section {
  padding: 60px 0;
  background: var(--primary-color);
  position: relative;
}

.team-section .section-badge {
  display: inline-block;
  background: rgba(135, 206, 235, 0.1);
  border: 1px solid rgba(135, 206, 235, 0.3);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.team-section .section-badge:hover {
  background: rgba(135, 206, 235, 0.15);
  transform: translateY(-2px);
}

.team-section .section-title {
  font-family: "Marcellus", serif;
  font-size: clamp(2rem, 1.7115rem + 1.2821vw, 3.25rem);
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1.2;
  position: relative;
}

.team-section .section-content {
  padding-left: 2rem;
}

.team-section .section-description {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: left;
}

.team-section .browse-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  display: inline-block;
}

.team-section .browse-link:hover {
  color: #357abd;
  border-bottom-color: #357abd;
  transform: translateY(-2px);
}

/* Team Carousel Wrapper */
.team-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Team Carousel */
.team-carousel {
  position: relative;
  overflow: hidden;
  padding: 20px;
}

/* Team Track */
.team-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* Doctor Cards */
.doctor-card {
  flex: 0 0 24%;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
}

.doctor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.doctor-card .doctor-image {
  position: relative;
  overflow: hidden;
}

.doctor-card .doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.doctor-card:hover .doctor-image img {
  transform: scale(1.05);
}

/* Specialty Badge */
.doctor-card .specialty-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--secondary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.3s ease;
  z-index: 3;
}

.doctor-card .specialty-badge.allergy {
  background: var(--secondary-color);
}

/* Vertical Social Links */
.doctor-card .social-links-vertical {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 4;
}

.doctor-card:hover .social-links-vertical {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.doctor-card .social-links-vertical .social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
  background: rgba(135, 206, 235, 0.9);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.doctor-card .social-links-vertical .social-link:hover {
  transform: scale(1.1);
  background: rgb(255, 255, 255);
  color: #4a90e2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Doctor Name Overlay */
.doctor-card .doctor-name-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 3;
}

.doctor-card:hover .doctor-name-overlay {
  opacity: 1;
  visibility: visible;
}

/* Doctor Info */
.doctor-card .doctor-info {
  padding: 25px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.doctor-card .doctor-info h4 {
  font-family: "Marcellus", serif;
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 400;
}

.doctor-card .doctor-info h4 a {
  color: #2c3e50;
  text-decoration: none;
}

.doctor-card .doctor-info .schedule {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 15px;
  line-height: 1.4;
}

.doctor-card .doctor-info .appointment-contact {
  color: #999;
  font-size: 14px;
  font-weight: 500;
}

.doctor-card .doctor-info .appointment-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: #999;
}

.doctor-card .doctor-info .appointment-contact i {
  color: var(--secondary-color);
}

/* Team Indicators */
.team-indicators {
  margin-top: 30px;
  padding: 5px;
  display: flex !important;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 10;
  visibility: visible !important;
  opacity: 1 !important;
}

.team-indicators .indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d1d5db !important; /* More visible default color */
  border: none;
  transition: all 0.4s ease;
  cursor: pointer;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative;
  z-index: 11;
}

.team-indicators .indicator-dot.active {
  background-color: #4a90e2 !important;
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(74, 144, 226, 0.4);
}

.team-indicators .indicator-dot:hover {
  background-color: #4a90e2 !important;
  transform: scale(1.2);
}

/* Ensure indicators are not affected by parent animations */
.team-carousel-wrapper .team-indicators {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.team-carousel-wrapper[data-animate] .team-indicators {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* Animation Classes */
.team-section [data-animate=slide-from-left] {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-section [data-animate=slide-from-left].animate {
  opacity: 1;
  transform: translateX(0);
}

.team-section [data-animate=slide-from-right] {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-section [data-animate=slide-from-right].animate {
  opacity: 1;
  transform: translateX(0);
}

.team-section [data-animate=fade-up] {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-section [data-animate=fade-up].animate {
  opacity: 1;
  transform: translateY(0);
}

.slide-from-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-from-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-from-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-from-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .team-section {
    padding: 80px 0;
  }
  .team-section .section-content {
    padding-left: 1rem;
    margin-top: 20px;
  }
  .doctor-card {
    width: 260px;
  }
}
@media (max-width: 768px) {
  .team-section {
    padding: 50px 0;
  }
  .team-section .section-content {
    padding-left: 0;
    margin-top: 30px;
    text-align: center;
  }
  .doctor-card .social-links-vertical {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 576px) {
  .doctor-card {
    flex: 0 0 100%;
  }
  .doctor-card .social-links-vertical {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%);
  }
}
/* =================================
   Doctor List Page Styles
   ================================= */
.doctor-list-section {
  padding: 60px 0;
  position: relative;
}

.doctor-list-section .section-badge {
  display: inline-block;
  background: rgba(135, 206, 235, 0.1);
  border: 1px solid rgba(135, 206, 235, 0.3);
  color: #4a90e2;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.doctor-list-section .section-badge:hover {
  background: rgba(135, 206, 235, 0.15);
  transform: translateY(-2px);
}

.doctor-list-section .section-title {
  font-family: "Marcellus", serif;
  font-size: clamp(2rem, 1.7115rem + 1.2821vw, 3.25rem);
  font-weight: 400;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1.2;
  position: relative;
}

.doctor-list-section .section-description {
  font-size: 18px;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: center;
}

/* Doctors Grid */
.doctors-grid {
  margin-top: 60px;
}

/* Doctor Card Grid Variant */
.doctor-card-grid {
  flex: none;
  width: 100%;
  margin-bottom: 0;
}

/* Doctor Card Link */
.doctor-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

.doctor-card-link:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-5px);
}

/* Grid responsive adjustments */
@media (max-width: 992px) {
  .doctor-list-section {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .doctor-list-section {
    padding: 60px 0;
  }
  .doctor-card-grid .social-links-vertical {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 576px) {
  .doctors-grid .row {
    margin: 0 -10px;
  }
  .doctors-grid .col-sm-6 {
    padding: 0 10px;
    margin-bottom: 20px;
  }
  .doctor-card-grid .social-links-vertical {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%);
  }
}
/* Animation Classes */
.slide-from-bottom {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-from-bottom.animate {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.animate {
  opacity: 1;
  transform: translateY(0);
}

/* =================================
   Doctor Details Page Styles
   ================================= */
.doctor-details-section {
  padding: 120px 0;
  background: #fff;
  position: relative;
}

/* Doctor Profile Card */
.doctor-profile-card {
  background: #f8f6f3;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.doctor-main-image {
  position: relative;
  overflow: hidden;
}

.doctor-main-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.doctor-main-image .specialty-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(135, 206, 235, 0.9);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
  z-index: 3;
}

.doctor-main-image .specialty-badge.allergy {
  background: rgb(135, 206, 235);
}

/* Skills Section */
.skills-section {
  padding: 30px;
}

.skill-item {
  margin-bottom: 25px;
}

.skill-name {
  font-weight: 600;
  color: #2c3e50;
  font-size: 14px;
}

.skill-percentage {
  font-weight: 600;
  color: #4a90e2;
  font-size: 14px;
}

.skill-progress {
  height: 8px;
  background-color: rgba(135, 206, 235, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.skill-progress .progress-bar {
  background: linear-gradient(90deg, #4a90e2 0%, #87ceeb 100%);
  border-radius: 10px;
  transition: width 0.6s ease;
}

/* Doctor Details Content */
.doctor-details-content {
  padding-left: 40px;
}

.doctor-header {
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 30px;
}

.doctor-name {
  font-family: "Marcellus", serif;
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 400;
  color: #2c3e50;
  margin-bottom: 30px;
  line-height: 1.2;
}

/* Doctor Info Grid */
.doctor-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.info-item label {
  font-weight: 600;
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0;
}

.info-item span {
  color: #2c3e50;
  font-weight: 500;
}

/* Content Sections */
.doctor-description h3,
.doctor-awards h3,
.doctor-social h3,
.doctor-certification h3,
.doctor-expertise h3 {
  font-family: "Marcellus", serif;
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 400;
}

.doctor-description p,
.doctor-certification p,
.doctor-expertise p {
  color: #6c757d;
  line-height: 1.7;
  font-size: 16px;
}

/* Awards */
.awards-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.award-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(135, 206, 235, 0.1);
  border: 1px solid rgba(135, 206, 235, 0.3);
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 500;
  color: #4a90e2;
  font-size: 14px;
}

.award-icon {
  width: 24px;
  height: 24px;
}

/* Social Links Horizontal */
.social-links-horizontal {
  display: flex;
  gap: 15px;
}

.social-links-horizontal .social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
  background: rgba(135, 206, 235, 0.9);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-links-horizontal .social-link:hover {
  transform: scale(1.1);
  background: rgb(255, 255, 255);
  color: #4a90e2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Customer Reviews Section */
.customer-reviews-section {
  padding: 80px 0;
  background: #f8f6f3;
}

.customer-reviews-section .section-badge {
  display: inline-block;
  background: rgba(135, 206, 235, 0.1);
  border: 1px solid rgba(135, 206, 235, 0.3);
  color: #4a90e2;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.customer-reviews-section .section-title {
  font-family: "Marcellus", serif;
  font-size: clamp(2rem, 1.7115rem + 1.2821vw, 3.25rem);
  font-weight: 400;
  color: #2c3e50;
  margin-bottom: 30px;
  line-height: 1.2;
}

.customer-reviews-section .section-description {
  font-size: 18px;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 50px;
  text-align: center;
}

/* Enhanced Animation Classes with Longer Duration */
.slide-from-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-from-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-from-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-from-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-from-bottom {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-from-bottom.animate {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.scale-up {
  opacity: 0;
  transform: scale(0.8);
  transition: all 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-up.animate {
  opacity: 1;
  transform: scale(1);
}

.bounce-in {
  opacity: 0;
  transform: scale(0.3);
  transition: all 2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bounce-in.animate {
  opacity: 1;
  transform: scale(1);
}

/* Enhanced Progress Bar Animation */
.skill-progress .progress-bar {
  background: linear-gradient(90deg, #4a90e2 0%, #87ceeb 100%);
  border-radius: 10px;
  transition: width 2s ease-in-out;
  transform-origin: left;
}

/* Stagger Animation Delays */
[data-animate=slide-from-bottom]:nth-child(1) {
  transition-delay: 0.2s;
}

[data-animate=slide-from-bottom]:nth-child(2) {
  transition-delay: 0.4s;
}

[data-animate=slide-from-bottom]:nth-child(3) {
  transition-delay: 0.6s;
}

[data-animate=slide-from-bottom]:nth-child(4) {
  transition-delay: 0.8s;
}

[data-animate=bounce-in]:nth-child(1) {
  transition-delay: 0.3s;
}

[data-animate=bounce-in]:nth-child(2) {
  transition-delay: 0.5s;
}

[data-animate=bounce-in]:nth-child(3) {
  transition-delay: 0.7s;
}

[data-animate=bounce-in]:nth-child(4) {
  transition-delay: 0.9s;
}

/* Award badges animation enhancement */
.award-badge {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.award-badge:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(74, 144, 226, 0.3);
}

/* Social links enhanced animation */
.social-links-horizontal .social-link {
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-links-horizontal .social-link:hover {
  transform: scale(1.2) rotate(5deg);
  background: rgb(255, 255, 255);
  color: #4a90e2;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Text reveal animation */
.doctor-description p,
.doctor-certification p,
.doctor-expertise p {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.doctor-description p.animate,
.doctor-certification p.animate,
.doctor-expertise p.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Heading animations */
.doctor-description h3,
.doctor-awards h3,
.doctor-social h3,
.doctor-certification h3,
.doctor-expertise h3 {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.doctor-description h3.animate,
.doctor-awards h3.animate,
.doctor-social h3.animate,
.doctor-certification h3.animate,
.doctor-expertise h3.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Doctor name special animation */
.doctor-name {
  opacity: 0;
  transform: translateX(100px) scale(0.9);
  transition: all 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.doctor-name.animate {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .doctor-details-section {
    padding: 80px 0;
  }
  .doctor-details-content {
    padding-left: 0;
    margin-top: 40px;
  }
  .doctor-info-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .doctor-details-section {
    padding: 60px 0;
  }
  .doctor-name {
    font-size: 2rem;
  }
  .skills-section {
    padding: 20px;
  }
  .awards-list {
    flex-direction: column;
  }
  .award-badge {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .doctor-profile-card {
    margin-bottom: 30px;
  }
  .social-links-horizontal {
    justify-content: center;
  }
  .customer-reviews-section {
    padding: 60px 0;
  }
}
/* =================================
   Video Process Section Styles
   ================================= */
:root {
  --primary-color: #327488;
  --primary-dark: #6bb8cc;
  --text-dark: #1a202c;
  --text-light: #4a5568;
  --white: #ffffff;
}

.video-process-section {
  padding: 60px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}
.video-process-section .container {
  max-width: 1400px;
}

/* Video Container */
.video-container {
  position: relative;
}
.video-container .video-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: #000;
}
.video-container .process-thumbnail {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

/* Video Overlay */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border-radius: 24px;
  pointer-events: none;
}
.video-overlay:hover {
  background: rgba(0, 0, 0, 0.3);
}

.play-btn-container {
  position: absolute;
  top: 20px;
  right: -60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: all;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 15px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.play-btn-container:hover {
  background: rgb(255, 255, 255);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}
.play-btn-container:hover .play-btn {
  transform: scale(1.05);
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.play-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.play-btn i {
  margin-left: 2px;
}

.process-label {
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(137, 205, 223, 0.1);
  padding: 4px 12px;
  border-radius: 12px;
  white-space: nowrap;
  border: 1px solid rgba(137, 205, 223, 0.2);
}

/* Content Wrapper */
.content-wrapper {
  padding-left: 60px;
}
.content-wrapper .section-title {
  font-size: 3rem;
  font-family: "Marcellus", serif;
  color: var(--primary-color);
  margin-bottom: 40px;
  line-height: 1.2;
}

/* Content Blocks */
.content-block {
  margin-bottom: 40px;
}
.content-block .subsection-title {
  font-size: 1.5rem;
  font-family: "Marcellus", serif;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.content-block .content-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Mission List */
.mission-list .mission-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}
.mission-list .mission-item .mission-bullet {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 400;
  margin-top: 2px;
  margin-right: 16px;
  flex-shrink: 0;
  line-height: 1;
}
.mission-list .mission-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
}

/* Specialist Info */
.specialist-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}
.specialist-info .specialist-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.specialist-info .specialist-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.specialist-info .specialist-details {
  flex-grow: 1;
}
.specialist-info .specialist-details .specialist-name {
  font-size: 1.25rem;
  font-family: "Marcellus", serif;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.specialist-info .specialist-details .specialist-title {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 0;
}
.specialist-info .book-now-wrapper .book-now-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
}
.specialist-info .book-now-wrapper .book-now-btn i {
  margin-right: 8px;
  font-size: 16px;
}

/* Video Modal */
.modal .modal-dialog {
  max-width: 900px;
}
.modal .modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.modal .modal-body {
  background: #000;
  padding: 0;
  position: relative;
}

.btn-close-custom {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: var(--primary-color, #89cddf);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1050;
  transition: all 0.3s ease;
}
.btn-close-custom:hover {
  background: var(--primary-dark, #6bb8cc);
  transform: rotate(90deg) scale(1.1);
}
.btn-close-custom:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(137, 205, 223, 0.3);
}
.btn-close-custom:active {
  transform: rotate(90deg) scale(0.95);
}
.btn-close-custom i {
  transition: transform 0.3s ease;
}

.video-modal-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.video-modal-wrapper .modal-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

/* Animation Classes */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}
[data-animate].animate {
  opacity: 1;
  transform: translateY(0);
}

/* Specific animation for play button container */
[data-animate=slide-from-top] {
  transform: translateY(-100px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
[data-animate=slide-from-top].animate {
  transform: translateY(0);
  opacity: 1;
}

[data-animate=slide-from-right] {
  transform: translateX(80px);
}
[data-animate=slide-from-right].animate {
  transform: translateX(0);
}

[data-animate=slide-from-top] {
  transform: translateY(-50px);
}
[data-animate=slide-from-top].animate {
  transform: translateY(0);
}

[data-animate=fade-up] {
  transform: translateY(30px);
}
[data-animate=fade-up].animate {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .content-wrapper {
    padding-left: 0;
    margin-top: 60px;
  }
  .content-wrapper .section-title {
    font-size: 2.5rem;
  }
  .video-container .process-video {
    height: 400px;
  }
  .modal .modal-dialog {
    max-width: 95vw;
    margin: 20px auto;
  }
  .modal .btn-close-custom {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .video-process-section {
    padding: 60px 0;
  }
  .content-wrapper {
    margin-top: 40px;
  }
  .content-wrapper .section-title {
    font-size: 2rem;
  }
  .video-container .process-video {
    height: 300px;
  }
  .video-container .video-wrapper {
    border-radius: 16px;
  }
  .play-btn {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
  .specialist-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .specialist-info .book-now-wrapper {
    width: 100%;
  }
  .specialist-info .book-now-wrapper .book-now-btn {
    width: 100%;
    justify-content: center;
  }
  .modal .modal-dialog {
    max-width: 98vw;
    margin: 10px auto;
  }
  .modal .btn-close-custom {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .play-btn-container {
    top: 20px;
    right: 0px;
    padding: 5px;
  }
  .play-btn {
    width: 40px;
    height: 40px;
    font-size: 10px;
  }
  .process-label {
    font-size: 10px;
  }
}
@media (max-width: 575.98px) {
  .content-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .content-wrapper .section-title {
    font-size: 1.75rem;
  }
  .video-container .process-thumbnail {
    height: 400px;
  }
  .video-container .process-video {
    height: 250px;
  }
  .modal .modal-dialog {
    margin: 5px auto;
  }
  .modal .btn-close-custom {
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}
/* =================================
   Contact Section Styles
   ================================= */
:root {
  --primary-color: #327488;
  --primary-dark: #6bb8cc;
  --text-dark: #1a202c;
  --text-light: #4a5568;
  --white: #ffffff;
}

.contact-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.contact-section .container {
  max-width: 1400px;
}

.contact-banner {
  background: linear-gradient(135deg, #89cddf 0%, #6bb8cc 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  padding: 60px 60px;
  position: relative;
  overflow: hidden;
}
.contact-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(50, 116, 136);
  z-index: 1;
}
.contact-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  z-index: 2;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 3;
}
.cta-content .cta-label {
  margin-bottom: 24px;
}
.cta-content .cta-label span {
  display: inline-block;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #ffffff;
  backdrop-filter: blur(10px);
}
.cta-content .cta-heading {
  font-size: 3rem;
  font-family: "Marcellus", serif;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
  font-weight: 400;
}
.cta-content .cta-description {
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 0;
  max-width: 480px;
}

.contact-info-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 520px;
  margin-left: auto;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item .contact-icon {
  width: 48px;
  height: 48px;
  background: none;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
  margin: 0;
}
.contact-item .contact-icon i {
  width: auto;
  color: var(--white);
  font-size: 18px;
}
.contact-item .contact-details {
  flex-grow: 1;
  text-align: left;
}
.contact-item .contact-details h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: "Montserrat", sans-serif;
}
.contact-item .contact-details p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 4px;
}
.contact-item .contact-details p a {
  color: #ffffff;
}
.contact-item .contact-details p.holiday {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}
.contact-item .contact-details .contact-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.contact-item .contact-details .contact-link:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Animation Classes */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}
[data-animate].animate {
  opacity: 1;
  transform: translateY(0);
}
[data-animate][data-animate=slide-from-left] {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-animate][data-animate=slide-from-left].animate {
  opacity: 1;
  transform: translateX(0);
}
[data-animate][data-animate=slide-from-right] {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-animate][data-animate=slide-from-right].animate {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .contact-banner {
    padding: 60px 40px;
  }
  .cta-content .cta-heading {
    font-size: 2.5rem;
  }
  .contact-info-grid {
    gap: 24px;
  }
}
@media (max-width: 991.98px) {
  .contact-section {
    padding: 80px 0;
  }
  .contact-banner {
    padding: 50px 30px;
    text-align: center;
  }
  .cta-content {
    margin-bottom: 50px;
  }
  .cta-content .cta-heading {
    font-size: 2.25rem;
  }
  .cta-content .cta-description {
    margin: 0 auto;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 0 auto;
    max-width: 400px;
  }
  .contact-item {
    justify-content: center;
    text-align: center;
  }
  .contact-item .contact-icon {
    width: 56px;
    height: 56px;
  }
  .contact-item .contact-icon i {
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .contact-section {
    padding: 60px 0;
  }
  .contact-banner {
    padding: 40px 20px;
    border-radius: 16px;
  }
  .cta-content .cta-heading {
    font-size: 2rem;
  }
  .cta-content .cta-description {
    font-size: 15px;
  }
  .contact-info-grid {
    gap: 20px;
  }
  .contact-item .contact-icon {
    width: 48px;
    height: 48px;
  }
  .contact-item .contact-icon i {
    font-size: 18px;
  }
  .contact-item .contact-details h4 {
    font-size: 15px;
  }
  .contact-item .contact-details p {
    font-size: 13px;
  }
}
@media (max-width: 575.98px) {
  .contact-banner {
    padding: 30px 15px;
  }
  .cta-content .cta-heading {
    font-size: 1.75rem;
  }
  .cta-content .cta-label span {
    font-size: 11px;
    padding: 6px 12px;
  }
  .contact-info-grid {
    gap: 16px;
  }
  .contact-item .contact-icon {
    width: 44px;
    height: 44px;
  }
  .contact-item .contact-icon i {
    font-size: 16px;
  }
}
/* =================================
   Treatments Section Styles
   ================================= */
.treatments-section {
  padding: 60px 0;
  background: var(--secondary-color);
  position: relative;
}
.treatments-section .container {
  max-width: 1400px;
}

.treatments-header {
  margin-bottom: 30px;
}
.treatments-header .section-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: normal;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.treatments-header .section-badge:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}
.treatments-header .section-title {
  font-size: 3rem;
  font-family: "Marcellus", serif;
  color: var(--text-black);
  margin-bottom: 10px;
  line-height: 1.2;
  font-weight: 400;
}
.treatments-header .section-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-black);
  margin-bottom: 0;
  max-width: 600px;
  margin: 0 auto;
}

.treatments-grid .row {
  margin: 0 -15px;
}
.treatments-grid .col-lg-6, .treatments-grid .col-md-6 {
  padding: 0 15px;
}

.treatment-card {
  padding: 54px 54px 54px 54px;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--primary-color);
}
.treatment-card:hover .treatment-image img {
  transform: scale(1.05);
}
.treatment-card:hover .treatment-link {
  color: var(--primary-dark);
}
.treatment-card:hover .treatment-link i {
  transform: translateX(4px);
}

.treatment-image {
  position: relative;
  overflow: hidden;
}
.treatment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.treatment-content {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--text-black);
}
.treatment-content .treatment-title {
  font-size: 1.25rem;
  font-family: "Montserrat", sans-serif;
  color: var(--text-dark);
  margin-bottom: 0;
  font-weight: 600;
}
.treatment-content .treatment-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.treatment-content .treatment-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.treatment-content .treatment-link:hover::after {
  transform: scaleX(1);
}
.treatment-content .treatment-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Featured Services Specific Styles */
.featured-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(238, 90, 36, 0.3);
  transition: transform 0.3s ease;
}

.treatment-brief {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.treatment-card:hover .featured-badge {
  transform: scale(1.05);
}

/* Animation Classes */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}
[data-animate].animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .treatments-section {
    padding: 80px 0;
  }
  .treatments-header {
    margin-bottom: 60px;
  }
  .treatments-header .section-title {
    font-size: 2.5rem;
  }
  .treatment-image {
    height: 250px;
  }
}
@media (max-width: 991.98px) {
  .treatments-section {
    padding: 70px 0;
  }
  .treatments-header {
    margin-bottom: 50px;
  }
  .treatments-header .section-title {
    font-size: 2.25rem;
  }
  .treatments-header .section-description {
    font-size: 15px;
  }
  .treatment-image {
    height: 220px;
  }
  .treatment-content {
    padding: 20px;
  }
  .treatment-content .treatment-title {
    font-size: 1.125rem;
  }
}
@media (max-width: 767.98px) {
  .treatments-section {
    padding: 60px 0;
  }
  .treatments-header {
    margin-bottom: 40px;
  }
  .treatments-header .section-title {
    font-size: 2rem;
  }
  .treatments-header .section-description {
    font-size: 14px;
  }
  .treatment-image {
    height: 200px;
  }
  .treatment-content {
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .treatment-content .treatment-title {
    font-size: 1.125rem;
  }
  .treatment-content .treatment-link {
    font-size: 13px;
  }
}
@media (max-width: 575.98px) {
  .treatment-card {
    padding: 25px;
  }
  .treatments-section {
    padding: 50px 0;
  }
  .treatments-header .section-title {
    font-size: 1.75rem;
  }
  .treatments-header .section-badge {
    font-size: 12px;
    padding: 6px 16px;
  }
  .treatment-image {
    height: 180px;
  }
  .treatment-content {
    padding: 16px;
  }
  .treatment-content .treatment-title {
    font-size: 1rem;
  }
  .treatment-content .treatment-link {
    font-size: 12px;
  }
}
.services-pages {
  /* Services List Hero Section */
  /* Services List */
  /* Services Hero Image */
  /* Animation Classes */
  /* Responsive Design */
  /* Services Carousel Section */
  /* Responsive Design for Carousel */
  /* Services Detail Section */
  /* Animation Classes for Detail Page */
  /* Responsive Design for Detail Page */
  /* Services Sidebar */
  /* Services Grid Section */
  /* Service Videos Section */
  /* Service Testimonials Section */
  /* Related Articles Section */
  /* Responsive Design for Sidebar */
}
.services-pages .consultation-section {
  background-color: #fff;
}
.services-pages .services-section {
  padding: 60px 0;
}
.services-pages .services-list-hero {
  padding: 60px 0;
  background: #f8f6f3;
  position: relative;
}
.services-pages .services-list-hero .container {
  max-width: 1400px;
}
.services-pages .services-list-hero .services-hero-content {
  padding-right: 2rem;
}
.services-pages .services-list-hero .section-badge {
  display: inline-block;
  background: rgba(135, 206, 235, 0.1);
  border: 1px solid rgba(135, 206, 235, 0.3);
  color: #4a90e2;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.services-pages .services-list-hero .section-badge:hover {
  background: rgba(135, 206, 235, 0.15);
  transform: translateY(-2px);
}
.services-pages .services-list-hero .hero-title {
  font-family: "Marcellus", serif;
  font-size: clamp(2rem, 1.7115rem + 1.2821vw, 3.25rem);
  font-weight: 400;
  color: #2c3e50;
  margin-bottom: 24px;
  line-height: 1.2;
}
.services-pages .services-list-hero .hero-description {
  font-size: 18px;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 40px;
}
.services-pages .services-list {
  /* Expanded service item state */
}
.services-pages .services-list .service-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  user-select: none;
}
.services-pages .services-list .service-item:hover {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding-left: 12px;
  padding-right: 12px;
}
.services-pages .services-list .service-item:hover .service-number {
  background: #4a90e2;
  color: white;
  transform: scale(1.05);
}
.services-pages .services-list .service-item:hover .service-toggle i {
  color: #4a90e2;
  transform: scale(1.2);
}
.services-pages .services-list .service-item:last-child {
  border-bottom: none;
}
.services-pages .services-list .service-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(181, 173, 143, 0.3);
  color: #2c3e50;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.services-pages .services-list .service-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.services-pages .services-list .service-content .service-name {
  font-family: "Marcellus", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #2c3e50;
  margin: 0;
  line-height: 1.3;
}
.services-pages .services-list .service-content .service-description {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
  margin: 8px 0 0 0;
  max-width: 400px;
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.services-pages .services-list .service-content .service-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.services-pages .services-list .service-content .service-toggle i {
  font-size: 14px;
  color: #6c757d;
  transition: all 0.3s ease;
}
.services-pages .services-list .service-item.expanded .service-content {
  flex-direction: column;
  align-items: flex-start;
}
.services-pages .services-list .service-item.expanded .service-toggle {
  align-self: flex-end;
  margin-top: -40px;
}
.services-pages .services-list .service-item.expanded .service-description {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
  margin-top: 12px;
  margin-bottom: 0;
}
.services-pages .services-hero-image {
  position: relative;
  height: 100%;
  min-height: 600px;
}
.services-pages .services-hero-image .image-container {
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.services-pages .services-hero-image .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.services-pages .services-hero-image .image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  padding: 40px;
  color: white;
}
.services-pages .services-hero-image .overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.services-pages .services-hero-image .discount-badge {
  background: rgba(255, 255, 255, 0.9);
  color: #2c3e50;
  padding: 20px 30px;
  border-radius: 15px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}
.services-pages .services-hero-image .discount-badge h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}
.services-pages .services-hero-image .book-now-btn {
  display: inline-block;
  background: #4a90e2;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}
.services-pages .services-hero-image .book-now-btn:hover {
  background: #357abd;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
  color: white;
}
.services-pages [data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.services-pages [data-animate].animate {
  opacity: 1;
  transform: translateY(0);
}
.services-pages .slide-from-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.services-pages .slide-from-left.animate {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 1199.98px) {
  .services-pages .services-list-hero {
    padding: 100px 0;
  }
  .services-pages .services-list-hero .services-hero-content {
    padding-right: 1rem;
  }
  .services-pages .services-list-hero .services-hero-image {
    min-height: 500px;
    margin-top: 40px;
  }
}
@media (max-width: 991.98px) {
  .services-pages .services-list-hero {
    padding: 80px 0;
  }
  .services-pages .services-list-hero .services-hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .services-pages .services-list-hero .hero-title {
    font-size: 2.5rem;
  }
  .services-pages .services-list-hero .services-hero-image {
    min-height: 450px;
  }
  .services-pages .services-list-hero .services-list .service-item {
    gap: 20px;
  }
  .services-pages .services-list-hero .services-list .service-item .service-number {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }
  .services-pages .services-list-hero .services-list .service-item .service-content .service-name {
    font-size: 1.25rem;
  }
}
@media (max-width: 767.98px) {
  .services-pages .services-list-hero {
    padding: 60px 0;
    text-align: center;
  }
  .services-pages .services-list-hero .hero-title {
    font-size: 2rem;
  }
  .services-pages .services-list-hero .hero-description {
    font-size: 16px;
  }
  .services-pages .services-list-hero .services-hero-image {
    min-height: 400px;
    margin-top: 30px;
  }
  .services-pages .services-list-hero .services-list {
    text-align: left;
    margin-top: 30px;
  }
  .services-pages .services-list-hero .services-list .service-item {
    gap: 16px;
    padding: 20px 0;
  }
  .services-pages .services-list-hero .services-list .service-item .service-number {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }
  .services-pages .services-list-hero .services-list .service-item .service-content .service-name {
    font-size: 1.125rem;
  }
  .services-pages .services-list-hero .services-list .service-item .service-description {
    font-size: 14px;
    max-width: none;
  }
  .services-pages .services-list-hero .image-overlay {
    padding: 30px;
  }
  .services-pages .services-list-hero .image-overlay .discount-badge {
    padding: 15px 20px;
  }
  .services-pages .services-list-hero .image-overlay .discount-badge h4 {
    font-size: 1.125rem;
  }
  .services-pages .services-list-hero .image-overlay .book-now-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .services-pages .services-list-hero {
    padding: 50px 0;
  }
  .services-pages .services-list-hero .hero-title {
    font-size: 1.75rem;
  }
  .services-pages .services-list-hero .section-badge {
    font-size: 12px;
    padding: 6px 16px;
  }
  .services-pages .services-list-hero .services-hero-image {
    min-height: 350px;
  }
  .services-pages .services-list-hero .services-list .service-item .service-number {
    width: 35px;
    height: 35px;
    font-size: 11px;
  }
  .services-pages .services-list-hero .services-list .service-item .service-content .service-name {
    font-size: 1rem;
  }
  .services-pages .services-list-hero .services-list .service-item .service-content .service-toggle {
    width: 35px;
    height: 35px;
  }
  .services-pages .services-list-hero .image-overlay {
    padding: 20px;
  }
  .services-pages .services-list-hero .image-overlay .discount-badge {
    padding: 12px 16px;
  }
  .services-pages .services-list-hero .image-overlay .discount-badge h4 {
    font-size: 1rem;
  }
}
.services-pages .services-carousel-section {
  padding: 40px 0;
  background: #ffffff;
  overflow: hidden;
}
.services-pages .services-carousel-section .container {
  max-width: 1400px;
}
.services-pages .services-carousel-wrapper {
  position: relative;
  width: 100%;
}
.services-pages .services-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.3s ease-out;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  margin: 20px 0;
}
.services-pages .service-carousel-card {
  flex: 0 0 auto;
  width: 320px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-right: 20px;
}
.services-pages .service-carousel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.services-pages .service-carousel-card:hover .service-card-image img {
  transform: scale(1.05);
}
.services-pages .service-carousel-card:last-child {
  margin-right: 0;
}
.services-pages .service-card-header {
  padding: 20px 20px 0;
}
.services-pages .service-card-image {
  position: relative;
  overflow: hidden;
  margin: 15px 20px;
  border-radius: 15px;
}
.services-pages .service-card-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  object-fit: cover;
}
.services-pages .service-card-content {
  padding: 0 20px 25px;
}
.services-pages .service-card-content .service-card-label {
  font-size: 14px;
  color: #6c757d;
  margin: 0 0 8px 0;
  font-weight: 500;
}
.services-pages .service-card-content .service-card-title {
  font-family: "Marcellus", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #2c3e50;
  margin: 0;
  line-height: 1.3;
}
@media (max-width: 1199.98px) {
  .services-pages .services-carousel-section {
    padding: 60px 0;
  }
  .services-pages .service-carousel-card {
    width: 280px;
  }
}
@media (max-width: 991.98px) {
  .services-pages .services-carousel-section {
    padding: 50px 0;
  }
  .services-pages .service-carousel-card {
    width: 260px;
  }
  .services-pages .service-carousel-card .service-card-content .service-card-title {
    font-size: 1.25rem;
  }
}
@media (max-width: 767.98px) {
  .services-pages .services-carousel-section {
    padding: 40px 0;
  }
  .services-pages .services-carousel-track {
    gap: 15px;
  }
  .services-pages .service-carousel-card {
    width: 240px;
    margin-right: 15px;
  }
  .services-pages .service-carousel-card .service-card-header {
    padding: 15px 15px 0;
  }
  .services-pages .service-carousel-card .service-card-image {
    margin: 12px 15px;
  }
  .services-pages .service-carousel-card .service-card-content {
    padding: 0 15px 20px;
  }
  .services-pages .service-carousel-card .service-card-content .service-card-label {
    font-size: 13px;
  }
  .services-pages .service-carousel-card .service-card-content .service-card-title {
    font-size: 1.125rem;
  }
}
@media (max-width: 575.98px) {
  .services-pages .services-carousel-section {
    padding: 30px 0;
  }
  .services-pages .services-carousel-track {
    gap: 12px;
  }
  .services-pages .service-carousel-card {
    width: 220px;
    margin-right: 12px;
  }
  .services-pages .service-carousel-card .service-card-content .service-card-title {
    font-size: 1rem;
  }
}
.services-pages .services-detail-section {
  padding: 120px 20px 80px 20px;
}
.services-pages .services-detail-section .container {
  max-width: 1400px;
}
.services-pages .services-detail-section .service-detail-image {
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
  max-height: 400px;
}
.services-pages .services-detail-section .service-detail-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.services-pages .services-detail-section .service-detail-content-left {
  padding-right: 3rem;
}
.services-pages .services-detail-section .service-detail-content-left .section-badge {
  display: inline-block;
  background: rgba(135, 206, 235, 0.1);
  border: 1px solid rgba(135, 206, 235, 0.3);
  color: #4a90e2;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
.services-pages .services-detail-section .service-detail-content-left .section-badge:hover {
  background: rgba(135, 206, 235, 0.15);
  transform: translateY(-2px);
}
.services-pages .services-detail-section .service-detail-content-left .service-detail-title {
  color: #2c3e50;
  margin-bottom: 30px;
  line-height: 1.2;
}
.services-pages .services-detail-section .service-detail-content-left .service-description-text {
  margin-bottom: 40px;
}
.services-pages .services-detail-section .service-detail-content-left .service-description-text .service-description {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}
.services-pages .services-detail-section .service-detail-content-left .service-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.services-pages .services-detail-section .service-detail-content-right {
  padding-left: 2rem;
}
.services-pages .services-detail-section .service-detail-content-right .service-bullet-points .service-description.bullet-point {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  padding-left: 0;
}
.services-pages .services-detail-section .service-detail-content-right .service-bullet-points .service-description.bullet-point:last-child {
  margin-bottom: 0;
}
.services-pages [data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.services-pages [data-animate].animate {
  opacity: 1;
  transform: translateY(0);
}
.services-pages [data-animate][data-animate=slide-from-left] {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.services-pages [data-animate][data-animate=slide-from-left].animate {
  opacity: 1;
  transform: translateX(0);
}
.services-pages [data-animate][data-animate=slide-from-right] {
  opacity: 0;
  transform: translateX(80px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.services-pages [data-animate][data-animate=slide-from-right].animate {
  opacity: 1;
  transform: translateX(0);
}
.services-pages .slide-from-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.services-pages .slide-from-left.animate {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 1199.98px) {
  .services-pages .services-detail-section {
    padding: 100px 0;
  }
  .services-pages .services-detail-section .service-detail-image {
    margin-bottom: 50px;
    border-radius: 25px;
  }
  .services-pages .services-detail-section .service-detail-content-left {
    padding-right: 2rem;
  }
  .services-pages .services-detail-section .service-detail-content-left .service-detail-title {
    margin-bottom: 25px;
  }
  .services-pages .services-detail-section .service-detail-content-right {
    padding-left: 2rem;
  }
}
@media (max-width: 991.98px) {
  .services-pages .services-detail-section {
    padding: 80px 0;
  }
  .services-pages .services-detail-section .service-detail-image {
    margin-bottom: 40px;
    border-radius: 20px;
  }
  .services-pages .services-detail-section .service-detail-content-left {
    padding-right: 1.5rem;
    margin-bottom: 30px;
  }
  .services-pages .services-detail-section .service-detail-content-left .service-detail-title {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  .services-pages .services-detail-section .service-detail-content-left .service-description-text {
    margin-bottom: 30px;
  }
  .services-pages .services-detail-section .service-detail-content-right {
    padding-left: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .services-pages .services-detail-section {
    padding: 60px 0;
  }
  .services-pages .services-detail-section .service-detail-image {
    margin-bottom: 30px;
    border-radius: 15px;
  }
  .services-pages .services-detail-section .service-detail-content-left {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .services-pages .services-detail-section .service-detail-content-left .section-badge {
    font-size: 12px;
    padding: 6px 16px;
    margin-bottom: 20px;
  }
  .services-pages .services-detail-section .service-detail-content-left .service-detail-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  .services-pages .services-detail-section .service-detail-content-left .service-description-text {
    margin-bottom: 25px;
  }
  .services-pages .services-detail-section .service-detail-content-left .service-description-text .service-description {
    font-size: 15px;
  }
  .services-pages .services-detail-section .service-detail-content-right {
    padding-left: 0;
  }
  .services-pages .services-detail-section .service-detail-content-right .service-bullet-points .service-description.bullet-point {
    font-size: 15px;
    margin-bottom: 12px;
  }
}
@media (max-width: 575.98px) {
  .services-pages .services-detail-section {
    padding: 50px 0;
  }
  .services-pages .services-detail-section .service-detail-image {
    margin-bottom: 25px;
    border-radius: 12px;
  }
  .services-pages .services-detail-section .service-detail-content-left .service-detail-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .services-pages .services-detail-section .service-detail-content-left .service-description-text {
    margin-bottom: 20px;
  }
  .services-pages .services-detail-section .service-detail-content-left .service-description-text .service-description {
    font-size: 14px;
  }
  .services-pages .services-detail-section .service-detail-content-right .service-bullet-points .service-description.bullet-point {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.services-pages .services-sidebar {
  /* Compact Subservices Grid */
  /* Compact Doctors List */
  /* Compact Related Articles */
  /* Enhanced Contact Widget */
}
.services-pages .services-sidebar .sidebar-widget {
  background: #fff;
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.services-pages .services-sidebar .sidebar-widget:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}
.services-pages .services-sidebar .sidebar-widget:last-child {
  margin-bottom: 0;
}
.services-pages .services-sidebar .widget-title {
  font-family: "Marcellus", serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #2c3e50;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f8f9fa;
  display: flex;
  align-items: center;
}
.services-pages .services-sidebar .widget-title i {
  color: #4a90e2;
  font-size: 1rem;
}
.services-pages .services-sidebar .widget-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.services-pages .services-sidebar .subservices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.services-pages .services-sidebar .subservices-grid .subservice-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.services-pages .services-sidebar .subservices-grid .subservice-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: #4a90e2;
}
.services-pages .services-sidebar .subservices-grid .subservice-card.active {
  border-color: #4a90e2;
  box-shadow: 0 6px 18px rgba(74, 144, 226, 0.15);
}
.services-pages .services-sidebar .subservices-grid .subservice-card.active .subservice-overlay {
  background: rgba(74, 144, 226, 0.9);
}
.services-pages .services-sidebar .subservices-grid .subservice-card .subservice-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.services-pages .services-sidebar .subservices-grid .subservice-card .subservice-image {
  position: relative;
  height: 80px;
  overflow: hidden;
}
.services-pages .services-sidebar .subservices-grid .subservice-card .subservice-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.services-pages .services-sidebar .subservices-grid .subservice-card .subservice-image .subservice-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-pages .services-sidebar .subservices-grid .subservice-card .subservice-image .subservice-placeholder i {
  font-size: 1.5rem;
  color: #6c757d;
}
.services-pages .services-sidebar .subservices-grid .subservice-card .subservice-image .subservice-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}
.services-pages .services-sidebar .subservices-grid .subservice-card .subservice-image .subservice-overlay i {
  color: white;
  font-size: 1.2rem;
}
.services-pages .services-sidebar .subservices-grid .subservice-card:hover .subservice-image img {
  transform: scale(1.05);
}
.services-pages .services-sidebar .subservices-grid .subservice-card:hover .subservice-image .subservice-overlay {
  opacity: 1;
}
.services-pages .services-sidebar .subservices-grid .subservice-card .subservice-content {
  padding: 0.75rem;
}
.services-pages .services-sidebar .subservices-grid .subservice-card .subservice-content .subservice-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.services-pages .services-sidebar .subservices-grid .subservice-card .subservice-content .subservice-brief {
  font-size: 0.75rem;
  color: #6c757d;
  line-height: 1.3;
  margin: 0;
  display: none;
}
.services-pages .services-sidebar .subservices-grid .no-subservices {
  text-align: center;
  padding: 2rem 1rem;
  color: #6c757d;
}
.services-pages .services-sidebar .subservices-grid .no-subservices i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #dee2e6;
}
.services-pages .services-sidebar .subservices-grid .no-subservices p {
  margin: 0;
  font-style: italic;
}
.services-pages .services-sidebar .doctors-list .doctor-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f8f9fa;
  transition: all 0.3s ease;
}
.services-pages .services-sidebar .doctors-list .doctor-item:hover {
  background: rgba(74, 144, 226, 0.05);
  border-radius: 8px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.services-pages .services-sidebar .doctors-list .doctor-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.services-pages .services-sidebar .doctors-list .doctor-item:first-child {
  padding-top: 0;
}
.services-pages .services-sidebar .doctors-list .doctor-image {
  position: relative;
  flex-shrink: 0;
  width: auto;
  height: auto;
}
.services-pages .services-sidebar .doctors-list .doctor-image img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}
.services-pages .services-sidebar .doctors-list .doctor-image .doctor-status {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}
.services-pages .services-sidebar .doctors-list .doctor-image .doctor-status i {
  color: white;
  font-size: 0.6rem;
}
.services-pages .services-sidebar .doctors-list .doctor-content {
  flex: 1;
  min-width: 0;
}
.services-pages .services-sidebar .doctors-list .doctor-content h6 {
  margin: 0 0 0.25rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.services-pages .services-sidebar .doctors-list .doctor-content h6 a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}
.services-pages .services-sidebar .doctors-list .doctor-content h6 a:hover {
  color: #4a90e2;
}
.services-pages .services-sidebar .doctors-list .doctor-content .doctor-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.services-pages .services-sidebar .doctors-list .doctor-content .doctor-meta .specialty {
  color: #6c757d;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.services-pages .services-sidebar .doctors-list .doctor-content .doctor-meta .doctor-rating {
  display: flex;
  gap: 1px;
}
.services-pages .services-sidebar .doctors-list .doctor-content .doctor-meta .doctor-rating i {
  color: #ffc107;
  font-size: 0.7rem;
}
.services-pages .services-sidebar .related-articles .article-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f8f9fa;
  transition: all 0.3s ease;
}
.services-pages .services-sidebar .related-articles .article-item:hover {
  background: rgba(74, 144, 226, 0.05);
  border-radius: 8px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.services-pages .services-sidebar .related-articles .article-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.services-pages .services-sidebar .related-articles .article-item:first-child {
  padding-top: 0;
}
.services-pages .services-sidebar .related-articles .article-image {
  position: relative;
  flex-shrink: 0;
}
.services-pages .services-sidebar .related-articles .article-image img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}
.services-pages .services-sidebar .related-articles .article-image .article-category {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 16px;
  height: 16px;
  background: #4a90e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}
.services-pages .services-sidebar .related-articles .article-image .article-category i {
  color: white;
  font-size: 0.6rem;
}
.services-pages .services-sidebar .related-articles .article-content {
  flex: 1;
  min-width: 0;
}
.services-pages .services-sidebar .related-articles .article-content h6 {
  margin: 0 0 0.25rem 0;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.services-pages .services-sidebar .related-articles .article-content h6 a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}
.services-pages .services-sidebar .related-articles .article-content h6 a:hover {
  color: #4a90e2;
}
.services-pages .services-sidebar .related-articles .article-content .article-meta .date {
  color: #6c757d;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.services-pages .services-sidebar .related-articles .article-content .article-meta .date i {
  color: #4a90e2;
  font-size: 0.7rem;
}
.services-pages .services-sidebar .contact-widget {
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
  color: white;
  border: none;
}
.services-pages .services-sidebar .contact-widget .widget-title {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.services-pages .services-sidebar .contact-widget .widget-title i {
  color: white;
}
.services-pages .services-sidebar .contact-widget .widget-description {
  color: rgba(255, 255, 255, 0.9);
}
.services-pages .services-sidebar .contact-widget .contact-header {
  margin-bottom: 1.5rem;
}
.services-pages .services-sidebar .contact-widget .contact-actions {
  margin-bottom: 1.5rem;
}
.services-pages .services-sidebar .contact-widget .contact-actions .btn {
  border-radius: 25px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.services-pages .services-sidebar .contact-widget .contact-actions .btn.btn-primary {
  background: white;
  color: #4a90e2;
  border-color: white;
}
.services-pages .services-sidebar .contact-widget .contact-actions .btn.btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.services-pages .services-sidebar .contact-widget .contact-actions .btn.btn-outline-primary {
  background: transparent;
  color: white;
  border-color: white;
}
.services-pages .services-sidebar .contact-widget .contact-actions .btn.btn-outline-primary:hover {
  background: white;
  color: #4a90e2;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.services-pages .services-sidebar .contact-widget .contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}
.services-pages .services-sidebar .contact-widget .contact-info .contact-item:last-child {
  margin-bottom: 0;
}
.services-pages .services-sidebar .contact-widget .contact-info .contact-item i {
  color: white;
  font-size: 1rem;
  width: 16px;
  text-align: center;
}
.services-pages .services-grid-section {
  padding: 80px 0;
  background: #f8f9fa;
}
.services-pages .services-grid-section .section-header {
  margin-bottom: 4rem;
}
.services-pages .services-grid-section .service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}
.services-pages .services-grid-section .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.services-pages .services-grid-section .service-card:hover .service-card-image img {
  transform: scale(1.05);
}
.services-pages .services-grid-section .service-card:hover .service-card-overlay {
  opacity: 1;
}
.services-pages .services-grid-section .service-card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.services-pages .services-grid-section .service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.services-pages .services-grid-section .service-card-image .service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.services-pages .services-grid-section .service-card-image .service-card-overlay .service-card-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #4a90e2;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}
.services-pages .services-grid-section .service-card-image .service-card-overlay .service-card-btn:hover {
  background: #357abd;
  transform: scale(1.1);
  color: white;
}
.services-pages .services-grid-section .service-card-content {
  padding: 2rem;
}
.services-pages .services-grid-section .service-card-content .service-card-title {
  font-family: "Marcellus", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.services-pages .services-grid-section .service-card-content .service-card-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.services-pages .services-grid-section .service-card-content .service-card-link {
  color: #4a90e2;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.services-pages .services-grid-section .service-card-content .service-card-link:hover {
  color: #357abd;
  transform: translateX(5px);
}
.services-pages .service-videos-section {
  padding: 40px 0;
  background: #fff;
}
.services-pages .service-videos-section .section-header {
  margin-bottom: 4rem;
}
.services-pages .service-videos-section .video-container {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.services-pages .service-videos-section .video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.services-pages .service-testimonials-section {
  padding: 80px 0;
  background: #f8f9fa;
}
.services-pages .service-testimonials-section .section-header {
  margin-bottom: 4rem;
}
.services-pages .service-testimonials-section .testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 1rem;
  text-align: center;
  height: 100%;
}
.services-pages .service-testimonials-section .testimonial-card .testimonial-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.services-pages .service-testimonials-section .testimonial-card .testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2rem;
  font-style: italic;
  flex: 1;
}
.services-pages .service-testimonials-section .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.services-pages .service-testimonials-section .testimonial-card .testimonial-author .author-image img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}
.services-pages .service-testimonials-section .testimonial-card .testimonial-author .author-info .author-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.25rem;
}
.services-pages .service-testimonials-section .testimonial-card .testimonial-author .author-info .author-title {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.services-pages .service-testimonials-section .testimonial-card .testimonial-author .author-info .rating i {
  color: #ffc107;
  font-size: 1rem;
  margin: 0 0.1rem;
}
.services-pages .related-articles-section {
  padding: 80px 0;
  background: #fff;
}
.services-pages .related-articles-section .section-header {
  margin-bottom: 4rem;
}
.services-pages .related-articles-section .article-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}
.services-pages .related-articles-section .article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.services-pages .related-articles-section .article-card:hover .article-image img {
  transform: scale(1.05);
}
.services-pages .related-articles-section .article-card:hover .article-overlay {
  opacity: 1;
}
.services-pages .related-articles-section .article-card .article-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.services-pages .related-articles-section .article-card .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.services-pages .related-articles-section .article-card .article-image .article-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.services-pages .related-articles-section .article-card .article-image .article-overlay .article-link {
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
}
.services-pages .related-articles-section .article-card .article-content {
  padding: 1.5rem;
}
.services-pages .related-articles-section .article-card .article-content .article-meta {
  margin-bottom: 1rem;
}
.services-pages .related-articles-section .article-card .article-content .article-meta .article-date {
  color: #666;
  font-size: 0.9rem;
}
.services-pages .related-articles-section .article-card .article-content .article-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.services-pages .related-articles-section .article-card .article-content .article-title a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}
.services-pages .related-articles-section .article-card .article-content .article-title a:hover {
  color: #4a90e2;
}
.services-pages .related-articles-section .article-card .article-content .article-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.services-pages .related-articles-section .article-card .article-content .article-read-more {
  color: #4a90e2;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.services-pages .related-articles-section .article-card .article-content .article-read-more:hover {
  color: #357abd;
  transform: translateX(5px);
}
@media (max-width: 991.98px) {
  .services-pages .service-detail-sidebar {
    position: static;
    margin-top: 2rem;
  }
  .services-pages .services-sidebar .sidebar-widget {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .services-pages .services-sidebar .widget-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767.98px) {
  .services-pages .services-sidebar .sidebar-widget {
    padding: 1.25rem;
  }
  .services-pages .services-sidebar .subservices-list .subservice-link {
    padding: 0.75rem;
  }
  .services-pages .services-sidebar .doctors-list .doctor-item {
    gap: 0.75rem;
  }
  .services-pages .services-sidebar .doctors-list .doctor-item .doctor-image img {
    width: 40px;
    height: 40px;
  }
  .services-pages .services-sidebar .related-articles .article-item {
    gap: 0.75rem;
  }
  .services-pages .services-sidebar .related-articles .article-item .article-image img {
    width: 50px;
    height: 50px;
  }
}

/* =================================
   Offers Section Styles
   ================================= */
.offers-section {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
}

.offers-section .section-badge {
  display: inline-block;
  background: rgba(135, 206, 235, 0.1);
  border: 1px solid rgba(135, 206, 235, 0.3);
  color: #4a90e2;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.offers-section .section-badge:hover {
  background: rgba(135, 206, 235, 0.15);
  transform: translateY(-2px);
}

.offers-section .section-title {
  font-family: "Marcellus", serif;
  font-size: clamp(2rem, 1.7115rem + 1.2821vw, 3.25rem);
  font-weight: 400;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
}
.offers-section .section-title a {
  color: #2c3e50;
  text-decoration: none;
}

.offers-section .section-description {
  font-size: 18px;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: center;
}

/* Filters Sidebar */
.filters-sidebar {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.search-box {
  position: relative;
  margin-bottom: 30px;
}

.search-box .form-control {
  padding: 12px 20px;
  border-radius: 25px;
  border: 1px solid #e9ecef;
  font-size: 14px;
  padding-right: 50px;
}

.search-box .search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  cursor: pointer;
}

.filter-section {
  margin-bottom: 35px;
}

.filter-section h5 {
  font-family: "Marcellus", serif;
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 400;
}

.price-range .range-slider {
  margin-bottom: 15px;
}

.price-range input[type=range] {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #e9ecef;
  outline: none;
  -webkit-appearance: none;
}

.price-range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #4a90e2;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.price-display {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 15px;
}

.btn-filter {
  background: #89cddf;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-filter:hover {
  background: #4a90e2;
  transform: translateY(-2px);
}

.rating-filters .rating-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rating-filters .rating-item:hover {
  background: rgba(137, 205, 223, 0.1);
  border-radius: 8px;
  padding-left: 10px;
  padding-right: 10px;
}

.rating-filters .stars {
  display: flex;
  gap: 2px;
}

.rating-filters .stars i {
  font-size: 14px;
  color: #ffc107;
}

.rating-filters .count {
  font-size: 12px;
  color: #6c757d;
}

.category-filters .category-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.category-filters input[type=checkbox] {
  margin-right: 10px;
  accent-color: #4a90e2;
}

.category-filters label {
  font-size: 14px;
  color: #2c3e50;
  cursor: pointer;
  margin: 0;
}

/* Category Filter Tabs */
.category-filters-section {
  margin-bottom: 40px;
}

.category-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.filter-tab {
  display: inline-block;
  padding: 12px 24px;
  background: #ffffff;
  color: #6c757d;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  font-size: 14px;
  border: 2px solid #e9ecef;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.filter-tab:hover {
  color: #4a90e2;
  border-color: #89cddf;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(137, 205, 223, 0.3);
}

.filter-tab.active {
  background: linear-gradient(135deg, #89cddf, #4a90e2);
  color: white;
  border-color: #4a90e2;
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
  transform: translateY(-2px);
}

.filter-tab.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.filter-tab.active:hover::before {
  left: 100%;
}

/* Results Header */
.results-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  padding: 15px 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.results-info {
  font-size: 14px;
  color: #6c757d;
}

/* Offers Grid */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* Offer Cards */
.offer-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.offer-card:hover .offer-image img {
  transform: scale(1.05);
}

.offer-card:hover .offer-overlay {
  opacity: 1;
  visibility: visible;
}

.offer-card:hover .offer-content {
  transform: translateY(0);
}

.offer-card .offer-image {
  position: relative;
  overflow: hidden;
  min-height: clamp(18rem, 16rem + 12vw, 30rem);
}

.offer-card .offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.offer-card .offer-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
}

.offer-card .offer-badge .discount {
  background: #e74c3c;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.offer-card .offer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(137, 205, 223, 0) 0%, #89cddf 90%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.offer-card .offer-content {
  text-align: center;
  color: white;
  transform: translateY(30px);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.offer-card .offer-content .offer-category {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
}

.offer-card .offer-content .offer-title {
  font-family: "Marcellus", serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.2;
}

.offer-card .offer-content .offer-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.offer-card .offer-content .offer-rating .stars {
  display: flex;
  gap: 3px;
}

.offer-card .offer-content .offer-rating .stars i {
  font-size: 14px;
  color: #ffc107;
}

.offer-card .offer-content .offer-rating .rating-count {
  font-size: 12px;
  opacity: 0.9;
}

.offer-card .offer-content .offer-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.offer-card .offer-content .offer-pricing .original-price {
  font-size: 16px;
  text-decoration: line-through;
  opacity: 0.7;
}

.offer-card .offer-content .offer-pricing .sale-price {
  font-size: 22px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.offer-card .offer-content .offer-description {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  opacity: 0.95;
}

.offer-card .offer-content .offer-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-size: 14px;
}

.offer-card .offer-content .offer-btn:hover {
  background: rgb(255, 255, 255);
  color: #4a90e2;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.offer-card .offer-info {
  padding: 20px;
  text-align: center;
}

.offer-card .offer-info h4 {
  font-family: "Marcellus", serif;
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 400;
}
.offer-card .offer-info h4 a {
  color: #2c3e50;
  text-decoration: none;
}

.offer-card .offer-info .price-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.offer-card .offer-info .price-display .original-price {
  font-size: 14px;
  color: #6c757d;
  text-decoration: line-through;
}

.offer-card .offer-info .price-display .sale-price {
  font-size: 18px;
  font-weight: 600;
  color: #e74c3c;
}

/* Pagination */
.pagination-wrapper {
  display: flex;
  justify-content: center;
}

.pagination {
  gap: 5px;
}

.pagination .page-link {
  border: none;
  color: #6c757d;
  background: transparent;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.pagination .page-link:hover {
  background: #89cddf;
  color: white;
  transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
  background: #4a90e2;
  color: white;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

/* Animation Classes */
.slide-from-bottom {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-from-bottom.animate {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .offers-section {
    padding: 60px 0;
  }
  .category-filter-tabs {
    padding: 15px;
    gap: 10px;
  }
  .filter-tab {
    padding: 10px 18px;
    font-size: 13px;
  }
  .results-header {
    padding: 12px 15px;
  }
  .offers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .offer-card .offer-overlay {
    opacity: 1;
    visibility: visible;
  }
  .offer-card .offer-content {
    transform: none;
  }
  .offer-card .offer-content .offer-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .category-filter-tabs {
    padding: 12px;
    gap: 8px;
  }
  .filter-tab {
    padding: 8px 16px;
    font-size: 12px;
  }
  .results-header {
    padding: 10px 12px;
  }
}
/* =================================
   Blog Section Styles
   ================================= */
.blog-section {
  padding: 60px 0;
  background: #ffffff;
  position: relative;
}

.blog-section .section-badge {
  display: inline-block;
  background: rgba(135, 206, 235, 0.1);
  border: 1px solid rgba(135, 206, 235, 0.3);
  color: #4a90e2;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.blog-section .section-badge:hover {
  background: rgba(135, 206, 235, 0.15);
  transform: translateY(-2px);
}

.blog-section .section-title {
  font-family: "Marcellus", serif;
  font-size: clamp(2rem, 1.7115rem + 1.2821vw, 3.25rem);
  font-weight: 400;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
}

.blog-section .section-description {
  font-size: 18px;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: center;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* Blog Cards */
.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-card:hover .blog-overlay {
  opacity: 1;
  visibility: visible;
}

.blog-card:hover .blog-content {
  transform: translateY(0);
}

.blog-card .blog-image {
  position: relative;
  overflow: hidden;
  min-height: clamp(18rem, 16rem + 12vw, 25rem);
}

.blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card .blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(137, 205, 223, 0) 0%, #89cddf 90%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.blog-card .blog-content {
  text-align: center;
  color: white;
  transform: translateY(30px);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card .blog-content .blog-category {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
}

.blog-card .blog-content .blog-title {
  font-family: "Marcellus", serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.2;
}

.blog-card .blog-content .blog-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}

.blog-card .blog-content .blog-meta span {
  opacity: 0.9;
}

.blog-card .blog-content .blog-meta i {
  margin-right: 6px;
  font-size: 12px;
}

.blog-card .blog-content .blog-excerpt {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  opacity: 0.95;
}

.blog-card .blog-content .blog-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-size: 14px;
}

.blog-card .blog-content .blog-btn:hover {
  background: rgb(255, 255, 255);
  color: #4a90e2;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.blog-card .blog-info {
  padding: 25px;
  text-align: left;
}

.blog-card .blog-info .blog-category-tag {
  display: inline-block;
  background: rgba(74, 144, 226, 0.1);
  color: #4a90e2;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-card .blog-info h4 {
  font-family: "Marcellus", serif;
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 1.3;
}
.blog-card .blog-info h4 a {
  color: #2c3e50;
  text-decoration: none;
}

.blog-card .blog-info .blog-meta-simple {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #6c757d;
}

.blog-card .blog-info .blog-excerpt-short {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.5;
  margin: 0;
}

/* Blog Sidebar */
.blog-sidebar {
  padding-left: 30px;
}

.sidebar-widget {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-widget .widget-title {
  font-family: "Marcellus", serif;
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 400;
  position: relative;
  padding-bottom: 10px;
}

.blog-pages .sidebar-widget .widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #89cddf;
  border-radius: 2px;
}

/* Search Box */
.search-box {
  position: relative;
}

.search-box .form-control {
  padding: 12px 20px;
  border-radius: 25px;
  border: 1px solid #e9ecef;
  font-size: 14px;
  padding-right: 50px;
  transition: all 0.3s ease;
}

.search-box .form-control:focus {
  border-color: #89cddf;
  box-shadow: 0 0 0 0.2rem rgba(137, 205, 223, 0.25);
}

.search-box .search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.search-box .search-icon:hover {
  color: #4a90e2;
}

/* Category List */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-item {
  margin-bottom: 15px;
}

.category-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  border-radius: 10px;
  text-decoration: none;
  color: #2c3e50;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.category-item a:hover {
  background: linear-gradient(90deg, rgba(137, 205, 223, 0.08) 0%, rgba(137, 205, 223, 0.02) 100%);
  border-left-color: #89cddf;
  transform: translateX(5px);
  color: #4a90e2;
}

.category-item .category-name {
  font-weight: 500;
  font-size: 14px;
}

.category-item .post-count {
  font-size: 12px;
  color: #6c757d;
  background: rgba(108, 117, 125, 0.1);
  padding: 2px 8px;
  border-radius: 10px;
}

/* Latest Posts */
.latest-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.latest-post {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.latest-post:hover {
  background: rgba(137, 205, 223, 0.05);
  transform: translateX(5px);
}

.latest-post-image {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
}

.latest-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.latest-post:hover .latest-post-image img {
  transform: scale(1.05);
}

.latest-post-content {
  flex: 1;
}

.latest-post-content h6 {
  margin-bottom: 8px;
  line-height: 1.3;
}

.latest-post-content h6 a {
  color: #2c3e50;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.latest-post-content h6 a:hover {
  color: #4a90e2;
}

.latest-post-meta .date {
  font-size: 12px;
  color: #6c757d;
}

/* Tag Cloud */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-item {
  display: inline-block;
  background: rgba(137, 205, 223, 0.1);
  color: #4a90e2;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(137, 205, 223, 0.2);
}

.tag-item:hover {
  background: #89cddf;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(137, 205, 223, 0.3);
}

/* Pagination */
.pagination-wrapper {
  display: flex;
  justify-content: center;
}

.pagination {
  gap: 5px;
}

.pagination .page-link {
  border: none;
  color: #6c757d;
  background: transparent;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.pagination .page-link:hover {
  background: #89cddf;
  color: white;
  transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
  background: #4a90e2;
  color: white;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

/* Animation Classes */
.slide-from-bottom {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-from-bottom.animate {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .blog-sidebar {
    padding-left: 20px;
  }
}
@media (max-width: 992px) {
  .blog-section {
    padding: 80px 0;
  }
  .blog-sidebar {
    padding-left: 0;
    margin-top: 50px;
  }
  .sidebar-widget {
    padding: 25px;
  }
}
@media (max-width: 768px) {
  .blog-section {
    padding: 60px 0;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .blog-card .blog-overlay {
    opacity: 1;
    visibility: visible;
  }
  .blog-card .blog-content {
    transform: none;
  }
  .blog-card .blog-content .blog-title {
    font-size: 1.5rem;
  }
  .sidebar-widget {
    padding: 20px;
  }
  .latest-post {
    padding: 10px;
  }
  .latest-post-image {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 576px) {
  .blog-card .blog-info {
    padding: 20px;
  }
  .sidebar-widget {
    padding: 15px;
  }
  .tag-cloud {
    gap: 6px;
  }
  .tag-item {
    font-size: 11px;
    padding: 5px 10px;
  }
}
/* =================================
   Blog Detail Page Styles
   ================================= */
.blog-detail-section {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
}

/* Breadcrumb */
.blog-breadcrumb {
  margin-bottom: 40px;
}

.blog-breadcrumb .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.blog-breadcrumb .breadcrumb-item {
  font-size: 14px;
}

.blog-breadcrumb .breadcrumb-item a {
  color: #4a90e2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-breadcrumb .breadcrumb-item a:hover {
  color: #2c3e50;
}

.blog-breadcrumb .breadcrumb-item.active {
  color: #6c757d;
}

/* Blog Detail Content */
.blog-detail-content {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-featured-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-detail-content:hover .blog-featured-image img {
  transform: scale(1.02);
}

/* Blog Header */
.blog-header {
  padding: 40px;
  border-bottom: 1px solid #e9ecef;
}

.blog-meta-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.blog-meta-details {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.blog-meta-details span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #6c757d;
}

.blog-meta-details i {
  font-size: 12px;
}

.blog-meta-details a {
  color: #4a90e2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-meta-details a:hover {
  color: #2c3e50;
}

.blog-title {
  font-family: "Marcellus", serif;
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 400;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.blog-excerpt {
  font-size: 18px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Social Share */
.blog-social-share {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.share-label {
  font-weight: 600;
  color: #2c3e50;
  font-size: 14px;
}

.social-buttons {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-btn.facebook {
  background: #3b5998;
}

.social-btn.twitter {
  background: #1da1f2;
}

.social-btn.linkedin {
  background: #0077b5;
}

.social-btn.pinterest {
  background: #bd081c;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Blog Content */
.blog-content {
  padding: 5px 10px;
  font-size: 16px;
  line-height: 1.8;
  color: #2c3e50;
}

.blog-content h2 {
  font-family: "Marcellus", serif;
  font-size: 1.8rem;
  color: #2c3e50;
  margin: 40px 0 20px 0;
  font-weight: 400;
}

.blog-content h3 {
  font-family: "Marcellus", serif;
  font-size: 1.5rem;
  color: #2c3e50;
  margin: 15px 0;
  font-weight: 400;
}

.blog-content h4 {
  font-family: "Marcellus", serif;
  font-size: 1.3rem;
  color: #2c3e50;
  margin: 25px 0 12px 0;
  font-weight: 400;
}

.blog-content p {
  margin-bottom: 20px;
}

.blog-content ul,
.blog-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.blog-content li {
  margin-bottom: 8px;
}

.blog-quote {
  background: linear-gradient(135deg, rgba(137, 205, 223, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
  border-left: 4px solid #89cddf;
  padding: 25px 30px;
  margin: 30px 0;
  font-style: italic;
  font-size: 18px;
  border-radius: 0 10px 10px 0;
  position: relative;
}

.blog-quote::before {
  content: '"';
  font-size: 60px;
  color: #89cddf;
  position: absolute;
  top: -10px;
  left: 15px;
  font-family: Georgia, serif;
}

.blog-image-with-caption {
  margin: 40px 0;
  text-align: center;
}

.blog-image-with-caption img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-image-with-caption img:hover {
  transform: translateY(-5px);
}

.image-caption {
  font-size: 14px;
  color: #6c757d;
  font-style: italic;
  margin-top: 15px;
}

/* Product Recommendations */
.product-recommendations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.product-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #e9ecef;
}

.product-item h4 {
  color: #4a90e2;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.product-item ul {
  margin: 0;
  padding-left: 20px;
}

/* Author Bio */
.author-bio {
  display: flex;
  gap: 20px;
  padding: 30px 40px;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  align-items: center;
}

.author-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-family: "Marcellus", serif;
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 5px;
  font-weight: 400;
}
.author-info h4 a {
  color: #2c3e50;
  text-decoration: none;
}

.author-title {
  color: #4a90e2;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

.author-description {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 15px;
}

.author-social {
  display: flex;
  gap: 10px;
}

.author-social-link {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #89cddf;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.author-social-link:hover {
  background: #4a90e2;
  transform: translateY(-2px);
}

/* Related Posts */
.related-posts {
  padding: 40px;
  border-top: 1px solid #e9ecef;
}

.related-posts h3 {
  font-family: "Marcellus", serif;
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 30px;
  font-weight: 400;
}

.related-post-card {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.related-post-image {
  height: 150px;
  overflow: hidden;
}

.related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-image img {
  transform: scale(1.05);
}

.related-post-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.related-post-category {
  display: inline-block;
  background: rgba(74, 144, 226, 0.1);
  color: #4a90e2;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  width: fit-content;
}

.related-post-content h5 {
  margin-bottom: 10px;
  flex: 1;
}

.related-post-content h5 a {
  color: #2c3e50;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.related-post-content h5 a:hover {
  color: #4a90e2;
}

.related-post-excerpt {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 15px;
}

.related-post-date {
  font-size: 12px;
  color: #6c757d;
  margin-top: auto;
}

/* Comments Section */
.comments-section {
  padding: 40px;
  border-top: 1px solid #e9ecef;
}

.comments-section h3 {
  font-family: "Marcellus", serif;
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 30px;
  font-weight: 400;
}

.comment-form .form-group label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.comment-form .form-control {
  border-radius: 10px;
  border: 1px solid #e9ecef;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.comment-form .form-control:focus {
  border-color: #89cddf;
  box-shadow: 0 0 0 0.2rem rgba(137, 205, 223, 0.25);
}

.comment-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Newsletter Widget Styles */
.sidebar-widget .newsletter-form .form-control {
  border-radius: 10px;
  border: 1px solid #e9ecef;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.sidebar-widget .newsletter-form .form-control:focus {
  border-color: #89cddf;
  box-shadow: 0 0 0 0.2rem rgba(137, 205, 223, 0.25);
}

.widget-description {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Responsive Design for Blog Detail */
@media (max-width: 992px) {
  .blog-detail-section {
    padding: 80px 0;
  }
  .blog-header {
    padding: 30px;
  }
  .blog-content {
    padding: 30px;
  }
  .author-bio {
    padding: 25px 30px;
    flex-direction: column;
    text-align: center;
  }
  .related-posts {
    padding: 30px;
  }
  .comments-section {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .blog-detail-section {
    padding: 60px 0;
  }
  .blog-featured-image {
    height: 250px;
  }
  .blog-header {
    padding: 25px;
  }
  .blog-content {
    padding: 25px;
    font-size: 15px;
  }
  .blog-meta-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .blog-meta-details {
    gap: 15px;
  }
  .blog-social-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .author-bio {
    padding: 20px 25px;
  }
  .related-posts {
    padding: 25px;
  }
  .comments-section {
    padding: 25px;
  }
  .product-recommendations {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .blog-header {
    padding: 20px;
  }
  .blog-content {
    padding: 20px;
  }
  .blog-content h2 {
    font-size: 1.5rem;
  }
  .blog-content h3 {
    font-size: 1.3rem;
  }
  .author-bio {
    padding: 15px 20px;
  }
  .related-posts {
    padding: 20px;
  }
  .comments-section {
    padding: 20px;
  }
  .blog-quote {
    padding: 20px 25px;
    font-size: 16px;
  }
}
/* =================================
   Appointment Section Styles
   ================================= */
.appointment-section {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
}

.appointment-section .section-badge {
  display: inline-block;
  background: rgba(135, 206, 235, 0.1);
  border: 1px solid rgba(135, 206, 235, 0.3);
  color: #4a90e2;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.appointment-section .section-badge:hover {
  background: rgba(135, 206, 235, 0.15);
  transform: translateY(-2px);
}

.appointment-section .section-title {
  font-family: "Marcellus", serif;
  font-size: clamp(2rem, 1.7115rem + 1.2821vw, 3.25rem);
  font-weight: 400;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
}

.appointment-section .section-description {
  font-size: 18px;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: center;
}

/* Appointment Form Container */
.appointment-form-container {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 30px;
}

/* Form */
.appointment-form {
  padding: 40px;
}

.form-heading {
  font-family: "Marcellus", serif;
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 30px;
  font-weight: 400;
  text-align: center;
}

/* Service Cards */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.service-card-option {
  display: flex;
  align-items: center;
  padding: 20px;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
}

.service-card-option:hover {
  border-color: #89cddf;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(137, 205, 223, 0.2);
}

.service-card-option.selected {
  border-color: #4a90e2;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(137, 205, 223, 0.05) 100%);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #89cddf 0%, #4a90e2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.service-icon i {
  font-size: 24px;
  color: white;
}

.service-info {
  flex: 1;
}

.service-info h5 {
  font-family: "Marcellus", serif;
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 5px;
  font-weight: 400;
}

.service-info p {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 8px;
  line-height: 1.4;
}

.service-price {
  font-size: 18px;
  font-weight: 700;
  color: #4a90e2;
}

/* Form Controls */
.form-label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-control,
.form-select {
  border-radius: 10px;
  border: 1px solid #e9ecef;
  padding: 12px 15px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #89cddf;
  box-shadow: 0 0 0 0.2rem rgba(137, 205, 223, 0.25);
}

/* Form Check Styles */
.form-check-label {
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(137, 205, 223, 0.25);
}

/* Form Submit */
.form-submit {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}

.form-submit .btn {
  min-width: 200px;
  padding: 15px 40px;
  font-weight: 600;
  border-radius: 25px;
  font-size: 16px;
}

.form-submit .btn i {
  margin-right: 10px;
}

/* Sidebar */
.appointment-sidebar {
  padding-left: 30px;
}

.sidebar-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
}

.sidebar-card h4 {
  font-family: "Marcellus", serif;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-card h4 i {
  color: #4a90e2;
  font-size: 18px;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-item i {
  width: 20px;
  color: #4a90e2;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item div {
  display: flex;
  flex-direction: column;
}

.contact-item strong {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 14px;
}

.contact-item span {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.4;
}

/* Location Info */
.location-info p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 15px;
}

.location-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6c757d;
  font-size: 14px;
}

.feature i {
  color: #4a90e2;
  width: 16px;
}

/* Insurance Info */
.insurance-info p {
  color: #6c757d;
  margin-bottom: 15px;
}

.insurance-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

.insurance-item {
  background: #f8f9fa;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #2c3e50;
  border: 1px solid #e9ecef;
}

.insurance-note {
  margin: 0;
}

.insurance-note small {
  color: #6c757d;
  font-style: italic;
}

/* Policy Info */
.policy-info p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 10px;
}

.policy-info p:last-child {
  margin-bottom: 0;
}

/* Animation Classes */
.slide-from-bottom {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-from-bottom.animate {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .appointment-sidebar {
    padding-left: 20px;
  }
}
@media (max-width: 992px) {
  .appointment-section {
    padding: 80px 0;
  }
  .appointment-sidebar {
    padding-left: 0;
    margin-top: 40px;
  }
  .appointment-form {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .appointment-section {
    padding: 60px 0;
  }
  .appointment-form {
    padding: 25px;
  }
  .service-cards {
    grid-template-columns: 1fr;
  }
  .service-card-option {
    padding: 15px;
  }
  .service-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  .service-icon i {
    font-size: 20px;
  }
  .form-submit .btn {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .appointment-form {
    padding: 20px;
  }
  .sidebar-card {
    padding: 20px;
  }
  .form-heading {
    font-size: 1.5rem;
  }
  .service-card-option {
    flex-direction: column;
    text-align: center;
  }
  .service-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .contact-info {
    gap: 20px;
  }
  .insurance-logos {
    grid-template-columns: 1fr;
  }
}
/* =================================
   Contact Page Styles
   ================================= */
.contact-section-page {
  padding: 60px 0;
  background: #ffffff;
  position: relative;
}

.contact-section-page .section-badge {
  display: inline-block;
  background: rgba(135, 206, 235, 0.1);
  border: 1px solid rgba(135, 206, 235, 0.3);
  color: #4a90e2;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.contact-section-page .section-badge:hover {
  background: rgba(135, 206, 235, 0.15);
  transform: translateY(-2px);
}

.contact-section-page .section-title {
  font-family: "Marcellus", serif;
  font-size: clamp(2rem, 1.7115rem + 1.2821vw, 3.25rem);
  font-weight: 400;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
}

.contact-section-page .section-description {
  font-size: 18px;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: center;
}

/* Contact Form */
.contact-form-container {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin-bottom: 60px;
}

.form-heading {
  font-family: "Marcellus", serif;
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 30px;
  font-weight: 400;
  text-align: center;
}

.form-label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-control,
.form-select {
  border-radius: 10px;
  border: 1px solid #e9ecef;
  padding: 12px 15px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #89cddf;
  box-shadow: 0 0 0 0.2rem rgba(137, 205, 223, 0.25);
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.form-submit .btn {
  min-width: 200px;
  padding: 15px 40px;
  font-weight: 600;
  border-radius: 25px;
  font-size: 16px;
}

.form-submit .btn i {
  margin-right: 10px;
}

/* Address Section */
.address-section {
  margin-top: 80px;
}

.branch-info-card {
  padding: 20px 0;
}

.branch-title {
  font-family: "Marcellus", serif;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 400;
}

.branch-description {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Contact Info Grid */
.contact-page-info-grid {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
}

.contact-icon i {
  font-size: 20px;
  color: #6c757d;
}

.contact-content {
  flex: 1;
}

.contact-content h4 {
  font-family: "Marcellus", serif;
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 8px;
  font-weight: 400;
}

.contact-content p {
  color: #6c757d;
  margin-bottom: 3px;
  line-height: 1.4;
  font-size: 15px;
}

.contact-link {
  color: #4a90e2;
  text-decoration: underline;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #2c3e50;
}

/* Map Container */
.map-container {
  height: 450px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Quick Contact Cards */
.quick-contact-section {
  margin-top: 80px;
}

.quick-contact-card {
  text-align: center;
  padding: 40px 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.quick-contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-icon i {
  font-size: 24px;
}

.quick-contact-card h4 {
  font-family: "Marcellus", serif;
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 400;
}

.quick-contact-card p {
  color: #6c757d;
  margin-bottom: 20px;
  font-size: 14px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-details a {
  color: #4a90e2;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #2c3e50;
}

.contact-details small {
  color: #6c757d;
  font-size: 12px;
}

/* FAQ Section */
.faq-section {
  margin-top: 80px;
}

.accordion {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #e9ecef;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-button {
  background: #fff;
  border: none;
  padding: 20px 25px;
  font-family: "Marcellus", serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #2c3e50;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: rgba(137, 205, 223, 0.1);
  color: #4a90e2;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234a90e2'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 0 25px 25px;
  color: #6c757d;
  line-height: 1.6;
}

/* Animation Classes */
.slide-from-bottom {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-from-bottom.animate {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-section-page {
    padding: 80px 0;
  }
  .contact-form-container {
    padding: 30px;
  }
  .branch-info-card {
    margin-bottom: 40px;
  }
  .map-container {
    height: 350px;
  }
  .quick-contact-card {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .contact-section-page {
    padding: 60px 0;
  }
  .contact-form-container {
    padding: 25px;
  }
  .form-heading {
    font-size: 1.5rem;
  }
  .branch-title {
    font-size: 2rem;
    text-align: center;
  }
  .branch-description {
    text-align: center;
  }
  .contact-page-info-grid {
    gap: 25px;
  }
  .contact-info-item {
    gap: 15px;
  }
  .contact-icon {
    width: 45px;
    height: 45px;
  }
  .contact-icon i {
    font-size: 18px;
  }
  .map-container {
    height: 300px;
    margin-top: 30px;
  }
  .quick-contact-card .contact-icon {
    width: 60px;
    height: 60px;
  }
  .quick-contact-card .contact-icon i {
    font-size: 24px;
  }
  .quick-contact-card {
    padding: 25px 15px;
  }
  .accordion-button {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .accordion-body {
    padding: 0 20px 20px;
  }
}
@media (max-width: 576px) {
  .contact-form-container {
    padding: 20px;
  }
  .branch-header {
    padding: 15px 15px 0 15px;
  }
  .branch-info {
    padding: 15px;
  }
  .info-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .info-grid {
    gap: 20px;
  }
  .form-submit .btn {
    width: 100%;
  }
  .accordion-button {
    padding: 12px 15px;
  }
  .accordion-body {
    padding: 0 15px 15px;
  }
}

/*# sourceMappingURL=index.css.map */
