/* Medical Facility Hero Component Styles */
:root {
  --primary-color: #ff7f00;
  --secondary-color: #1a461d;
  --white: #ffffff;
  --text-dark: #333333;
  --text-light: #999999;
  --border-color: #e8e8e8;
  --input-bg: #f9f9f9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



.facility-bg {
  width: 100%;
  height: 844px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.facility-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.search-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--white);
  border-radius: 6px;
  padding: 0.1rem 0.5rem;
  width: 100%;
}

.search-input {
  background: white !important;
  border: none;
  outline: none;
  color: black !important;
  font-size: 0.9rem;
  width: 100%;
}

/* Remove autofill blue background - more aggressive */
.search-input:-webkit-autofill,
.search-input:-webkit-autofill:hover,
.search-input:-webkit-autofill:focus,
.search-input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
  box-shadow: 0 0 0 1000px white inset !important;
  -webkit-text-fill-color: black !important;
  color: black !important;
  background-color: white !important;
}

/* Firefox */
.search-input:-moz-autofill,
.search-input:-moz-autofill:hover,
.search-input:-moz-autofill:focus {
  background-color: white !important;
  color: black !important;
}


/* Main Content */
.facility-content {
  flex: 1;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 200px;
}

/* CTA Card */
.cta-card {
  background: var(--secondary-color);
  border-radius: 30px;
  padding: 3rem 2.5rem;
  color: white;
  width: 606px;
  height: 250px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideInLeft 0.6s ease-out;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-align: center;
}

.arrow-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
}

/* Social Media Section */
.social-section {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  text-align: center;
}

.social-label {
  color: white;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondary-color);
  /* border: 2px solid var(--secondary-color); */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-5px);
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-card {
    padding: 2rem 1.5rem;
    max-width: 100%;
    margin: 0 1rem;
    border-radius: 20px;
  }

  .cta-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .facility-navbar {
    padding: 0.75rem 1rem;
  }

  .search-wrapper {
    max-width: 100%;
    flex: 1;
  }

  .social-section {
    bottom: 1rem;
    right: 1rem;
  }

  .social-icons {
    gap: 0.5rem;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .facility-container {
    height: auto;
    min-height: 100vh;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .facility-navbar {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .search-wrapper {
    order: 3;
    width: 100%;
  }

  .btn-book-now {
    order: 2;
  }

  .social-section {
    bottom: 1rem;
    right: 1rem;

  }

  .explore-link {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: 2rem;
  }

  .explore-link:hover {
    color: var(--secondary-color);
  }

  .explore-link svg {
    transition: transform 0.3s ease;
  }

  .explore-link:hover svg {
    transform: translateX(4px);
  }
}



.explore-link {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: 2rem;
}

.explore-link:hover {
  color: var(--secondary-color);
}

.explore-link svg {
  transition: transform 0.3s ease;
}

.explore-link:hover svg {
  transform: translateX(4px);
}

.health-checks-section {
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
}

.health-checks-title {
  text-align: center;
  font-size: 33px;
  font-weight: 700;
  color: #1a3a3a;
  margin-bottom: 50px;
  text-transform: none;
  letter-spacing: 0.5px;
}

.health-card {
  background: white;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.health-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.health-card-image-wrapper {
  width: 100%;
  height: 315px;
  overflow: hidden;
  background: var(--border-color);
}

.health-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.health-card:hover .health-card-image {
  transform: scale(1.05);
}

.health-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.health-card-title {
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

.health-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #e5e5e5;
}

.health-card-price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1a3a3a;
}

.currency-icon {
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: bold;
}

.price-value {
  color: var(--secondary-color);
}

.learn-more-btn {
  background: var(--secondary-color);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background: var(--primary-color);
  transform: translateX(3px);
  color: white;
  text-decoration: none;
}

.btn-icon {
  width: 18px;
  height: 18px;
  margin-left: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .health-checks-section {
    padding: 40px 15px;
  }

  .health-checks-title {
    font-size: 26px;
    margin-bottom: 35px;
  }

  .health-card-image-wrapper {
    height: 250px;
  }

  .health-card-body {
    padding: 16px;
  }

  .health-card-title {
    font-size: 15px;
    margin-bottom: 16px;
  }
}

@media (max-width: 576px) {
  .health-checks-section {
    padding: 30px 10px;
  }

  .health-checks-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .health-card-image-wrapper {
    height: 220px;
  }

  .health-card-footer {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .learn-more-btn {
    width: 100%;
    justify-content: center;
  }
}

.purpose-para {
  padding-left: 2px;
  font-weight: 400;
  font-size: 15px;
  text-align: justify;
}

/* Corporate Partners Section Styles */
.corporate-partners-section {
  background-color: var(--input-bg);
  padding: 40px 0;
}

/* Partner Icon Box */
.partner-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.partner-icon-box:hover {
  transform: translateY(-5px);
}

/* Pagination Dots */
.pagination-dots {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: var(--input-bg);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot.active {
  background-color: var(--secondary-color);
  transform: scale(1.2);
}

.dot:hover {
  background-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .corporate-partners-title {
    font-size: 1.75rem;
    padding: 10px 20px;
  }

  .corporate-partners-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .corporate-partners-title {
    font-size: 1.5rem;
    padding: 8px 16px;
  }

  .corporate-partners-section {
    padding: 30px 0;
  }
}

.doctor-listing-container {
  background-color: var(--input-bg);
}

/* Search Bar */
.search-bar-wrapper {
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.search-bar {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #1abc9c 0%, #16a085 100%);
  border-radius: 50px;
  padding: 0 20px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 4px 15px rgba(26, 188, 156, 0.2);
}

.search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 0;
  color: white;
  font-size: 16px;
  outline: none;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.search-btn {
  background: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.search-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Filters */
.filters-wrapper {
  padding: 0 20px;
}

/* Doctor Cards */
.doctors-grid {
  padding: 0 20px;
}



.doctor-title {
  font-size: 13px;
  color: black;
  margin: 0;
}

.availability-icon {
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {


  .availability-list li {
    justify-content: center;
  }
}

.image-overlay-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  vl-cta-btns .vl-cta-btn2 {
    margin-bottom: 20px;
  }

}

@media (max-width: 480px) {
  .vl-cta-btns .vl-cta-btn2 {
    margin: auto;
  }

}

/* button */
.vl-cta-btns .vl-cta-btn2 {
  display: inline-block;
  background: #163A33;
  border-radius: 25px;
  color: var(--vkl-text-text-1);
  text-transform: uppercase;
  font-size: var(--vkl-font-size-font-s18);
  line-height: var(--vkl-specing-height18);
  font-weight: var(--vkl-weight-bold);
  transition: 0.3s;
  padding: 6px 8px 6px 16px;
  position: relative;
  z-index: 1;
  margin-top: 60px;


}

.vl-cta-btns .vl-cta-btn2 span {
  background: var(--secondary-color);
  color: #ffff;
  transition: 0.3s;
  height: 36px;
  width: 36px;
  border-radius: 50px;
  line-height: 36px;
  text-align: center;
  display: inline-block;
  transform: rotate(-45deg);
  margin-left: 6px;
}

.vl-cta-btns .vl-cta-btn2::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--vkl-text-text-1);
  transition: 0.3s;
  border-radius: 25px;
  z-index: -1;
}

.vl-cta-btns .vl-cta-btn2:hover {
  color: var(--vkl-text-text-6);
}

.vl-cta-btns .vl-cta-btn2:hover span {
  background: var(--vkl-text-text-6);
  color: var(--vkl-text-text-1);
  transition: 0.3s;
  transform: rotate(0);
}

.vl-cta-btns .vl-cta-btn2:hover::after {
  transition: 0.3s;
  width: 100%;
}

.container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  font-family: var(--bs-body-font-family);

}

.header-divider {
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  opacity: 26%;
  margin-bottom: 1rem;
}

/* Section Styling */
.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  opacity: 70%;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  text-align: justify;
}






/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.25rem;
  }


  .section-description {
    font-size: 21px;
    font-weight: 400;
  }
}

@media (max-width: 576px) {
  .section-description {
    text-align: left;
  }

  .container-fluid {
    padding: 1rem;
  }
}

/* First Aid Care Section Styles */
.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.care-image {
  width: 100%;
  height: 417px;
  object-fit: cover;
  border-radius: 8px;
}

.content-wrapper {
  padding: 0 30px;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

/* .service-item {
display: flex;
align-items: flex-start;
margin-bottom: 15px;
font-size: 0.95rem;
line-height: 1.6;
color: var(--text-dark);
} */

.service-text {
  color: #555555;
  font-weight: 400;
}

.trust-statement {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--secondary-color);
  margin-top: 20px;
  padding: 20px;
  background-color: var(--input-bg);
  border-left: 4px solid var(--secondary-color);
  border-radius: 4px;
}

.trust-statement strong {
  color: var(--secondary-color);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 991px) {
  .content-wrapper {
    padding: 0;
    margin-top: 30px;
  }

  /* button */
  .vl-cta-btns .vl-cta-btn2 {
    margin: auto;
  }



  .section-title {
    font-size: 1.75rem;
  }

  /* .service-item {
  font-size: 0.9rem;
} */
}

@media (max-width: 576px) {
  .first-aid-section {
    padding: 40px 0;
  }

  .content-wrapper {
    padding: 0 15px;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  /* .service-item {
  margin-bottom: 12px;
  font-size: 0.85rem;
} */

  .trust-statement {
    padding: 15px;
  }
}


.container-fluid {
  max-width: 1400px;
  margin: 0 auto;
}



.card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

.physiotherapy-image-wrapper {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.physiotherapy-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {

  .physiotherapy-subtitle {
    font-size: 0.9rem;
  }

  .list-item {
    font-size: 0.9rem;
    margin-bottom: 0.85rem;
  }
}

@media (max-width: 576px) {

  .container-fluid {
    padding: 1rem;
  }

  .physiotherapy-image-wrapper {
    margin-top: 2rem;
  }
}

/* Mental Health Section Styling */
.mental-health-section {
  background: linear-gradient(135deg, #1a4d3e 0%, #2d6b5e 100%);
  border-radius: 16px;
  padding: 3rem;
  color: #fff;
}

.mental-health-image-wrapper {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.mental-health-image {
  width: 100%;
  height: 398px;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.mental-health-content {
  color: #fff;
}

.mental-health-badge {
  display: inline-block;
  background-color: #fff;
  color: #1a4d3e;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.mental-health-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mental-health-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #f0f0f0;
  line-height: 1.5;
}

.mental-health-list-item:last-child {
  margin-bottom: 0;
}

.mental-health-list-icon {
  color: #20c997;
  flex-shrink: 0;
  margin-top: 2px;
}

.mental-health-bottom-text {
  font-size: 0.95rem;
  color: #f0f0f0;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .healthcare-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .section-description {
    font-size: 0.9rem;
  }


  .physiotherapy-subtitle {
    font-size: 0.9rem;
  }

  .list-item {
    font-size: 0.9rem;
    margin-bottom: 0.85rem;
  }

  /* Responsive Design for Mental Health */
  .mental-health-section {
    padding: 2rem;
  }

  .mental-health-list-item {
    font-size: 0.9rem;
    margin-bottom: 0.65rem;
  }
}

@media (max-width: 576px) {
  .healthcare-title {
    font-size: 1.5rem;
  }

  .section-description {
    text-align: left;
  }

  .container-fluid {
    padding: 1rem;
  }

  .physiotherapy-image-wrapper {
    margin-top: 2rem;
  }

  /* Responsive Design for Mental Health */
  .mental-health-section {
    padding: 1.5rem;
  }

  .mental-health-image-wrapper {
    margin-bottom: 1.5rem;
  }

  .mental-health-badge {
    font-size: 0.9rem;
    padding: 0.4rem 1.2rem;
  }
}


.diagnostic-title {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}


.search-box-wrapper {
  position: relative;
  flex: 1;
  min-width: 200px;
}

.search-input {
  width: 100%;
  padding: 12px 16px 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  color: #666666;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.search-input::placeholder {
  color: #999999;
}

.search-input:focus {
  outline: none;
  border-color: #20c997;
  box-shadow: 0 0 0 3px rgba(32, 201, 151, 0.1);
}

.search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #666666;
  font-size: 16px;
}

.dropdown-wrapper {
  min-width: 200px;
}

.dropdown-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  color: #666666;
  background-color: #ffffff;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/csvg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  padding-right: 36px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dropdown-input:focus {
  outline: none;
  border-color: #20c997;
  box-shadow: 0 0 0 3px rgba(32, 201, 151, 0.1);
}

.dropdown-input:hover {
  border-color: #d0d0d0;
}

/* Diagnostic Grid */
.diagnostic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 10px auto;
}

@media (min-width: 768px) {
  .diagnostic-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .diagnostic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .diagnostic-grid {
    grid-template-columns: 1fr;
  }
}

/* Test Card Styling */
.test-card {
  border: 1.5px solid #37B49C;
  border-radius: 12px;
  padding: 24px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.test-card:hover {
  box-shadow: 0 4px 12px rgba(32, 201, 151, 0.15);
  transform: translateY(-2px);
}

.card-icon {
  color: #ff6b6b;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.card-icon svg {
  width: 32px;
  height: 32px;
}

.test-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.test-button {
  border: 2px solid #EE2E24;
  background-color: transparent;
  color: var(--primary-color);
  padding: 10px 40px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.test-button:hover {
  background-color: #ff6b6b;
  color: #ffffff;
}

.test-button:active {
  transform: scale(0.98);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .diagnostic-container {
    padding: 20px 12px;
  }

  .diagnostic-header {
    margin-bottom: 20px;
  }

  .diagnostic-title {
    font-size: 25px;
    margin-bottom: 8px;
    font-weight: 600;
  }

  .search-box-wrapper,
  .dropdown-wrapper {
    width: 100%;
    min-width: unset;
  }

  .test-card {
    padding: 20px 16px;
  }

  .test-title {
    font-size: 14px;
  }
}

/* service section */


/* Title Styling */
.services-title-wrapper {
  position: relative;
  margin-bottom: 50px;
}

.services-title-wrapper::before,
.services-title-wrapper::after {
  content: "";
  position: relative;
  top: 50%;
  width: 400px;
  height: 2px;
  background-color: #00bcd4;
  transform: translateY(-50%);
}

.services-title-wrapper::before {
  left: 0;
}

.services-title-wrapper::after {
  right: 0;
}

.services-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--primary-color);
  margin: 0;
  display: inline-block;
  letter-spacing: 0.5px;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  justify-items: center;
}

/* Service Card */
.service-card {
  background-color: transparent;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 280px;
  padding: 8px;
}

@media (min-width: 1400px) {
  .service-card {
    width: 340px;
    padding: 20px;
  }
}

.sub-header {
  font-size: 24px;
  color: black;
  font-weight: 350;
  opacity: 85%;
}

/* .service-card:hover {
  transform: translateY(-8px);
} */


/* Service Image */
.service-image-wrapper {
  width: 260px;
  height: 213px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.service-card:hover .service-image {
  transform: scale(1.2);
  transition: transform 1s ease;

}

/* Service Info */
.service-info {
  background-color: #7d9d75;
  padding: 20px 16px;
  text-align: center;
  min-height: 80px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-title-text {
  transition: color 0.3s ease;
}

.service-title-text:hover {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.service-title {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  margin: 0;
}

@media (max-width: 1200px) {
  /* .services-grid {
    gap: 40px;
  } */

  .service-card {
    width: 100%;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-title {
    font-size: 25px;
  }

  .services-title-wrapper::before,
  .services-title-wrapper::after {
    width: 80px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .service-card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {

  .services-title {
    font-size: 1.75rem;
  }

  .services-title-wrapper::before,
  .services-title-wrapper::after {
    width: 40px;
  }

  .services-title-wrapper {
    margin-bottom: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-image-wrapper {
    height: 200px;
  }
}

/* Doctor Profile Container */
.doctor-profile-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Bootstrap-like Grid */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}

.row>* {
  padding-right: 12px;
  padding-left: 12px;
}

.g-4>* {
  gap: 24px;
}

/* Column Sizing */
.col-lg-4 {
  flex: 0 0 33.333%;
}

.col-lg-8 {
  flex: 0 0 66.666%;
}

.col-md-12 {
  flex: 0 0 100%;
}

@media (max-width: 992px) {

  .col-lg-4,
  .col-lg-8 {
    flex: 0 0 100%;
  }
}

.workflow-card {
  padding: 1rem 1rem;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.workflow-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
  transition: transform 0.3s ease;
  border: 2px solid #ff7f00;
}

.workflow-card:hover .icon-wrapper {
  transform: scale(1.1);
  background-color: #ff7f00 !important;
}

.workflow-card:hover .icon-wrapper svg path {
  fill: white;
}

.workflow-content h3 a:hover {
  color: #ff7f00 !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ff7f00 !important;
}
