

/* RESPONSIVE */
@media(max-width:768px){
  .about-text h1{
    font-size:32px !important;
  }
  .breadcrumb{
    font-size:16px !important;
  }
}
/* Cataract Section */
.cataract-section {
  background: #f5f7fa;
  padding: 80px 0;
}

/* Small Heading */
.small-title {
  color: green;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

/* Main Title */
.main-title {
  font-size: 42px;
  font-weight: 700;
  margin: 20px 0;
}

/* Description */
.description {
  color: #555;
  line-height: 1.7;
}

/* Checklist */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  margin-bottom: 12px;
  font-weight: 500;
}

.check-list i {
  color: green;
  margin-right: 8px;
}

/* Button */
.service-btn {
  background: green;
  color: #fff !important;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin-top: 25px;
  transition: 0.3s;
}

.service-btn:hover {
  background: #c1121f;
}

/* Image */
.image-box img {
  width: 100%;
  border-radius: 25px !important;
}

/* ===================================== */
/* TABLET RESPONSIVE - 1024px */
/* ===================================== */

@media (max-width: 1024px) {

  .cataract-section {
    padding: 60px 0;
  }

  /* Main Title Size Reduce */
  .main-title {
    font-size: 34px;
    line-height: 1.3;
  }

  /* Description Size */
  .description {
    font-size: 15px;
  }

  /* Checklist Spacing */
  .check-list li {
    font-size: 14px;
    margin-bottom: 10px;
  }

  /* Button Adjust */
  .service-btn {
    padding: 10px 25px;
    font-size: 14px;
  }

  /* Image Adjust */
  .image-box img {
    border-radius: 10px;
  }

} 

/* Mobile Responsive */
@media (max-width: 768px) {
  .main-title {
    font-size: 26px;
  }

  .main-title br {
    display: none;
  }
  .cataract-section{
    padding-top: 10px;
  }
}
/* Section Background */
.cataract-capabilities {
  background: #f8f9fa;
  padding: 80px 0;
}

/* Image */
.cap-img img {
  width: 100%;
  height: 400px;
  border-radius: 25px;
}

/* Small Title */
.cap-small-title {
  color:green;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Main Title */
.cap-main-title {
  font-size: 42px;
  font-weight: 700;
  margin: 15px 0;
}

/* Description */
.cap-desc {
  color: #555;
  line-height: 1.7;
}

/* Feature Box */
.cap-box {
  background: green;
  padding: 18px;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.cap-box i {
  font-size: 22px;
  color: #e63946;
  margin-right: 12px;
}

.cap-box h6 {
  margin: 0;
  font-weight: 600;
  color : white;
}

.cap-box:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
/* ===================================== */
/* TABLET RESPONSIVE - 1024px */
/* ===================================== */

@media (max-width: 1024px) {

  .cataract-capabilities {
    padding: 30px 0;
  }

  /* Heading Size Adjust */
  .cap-main-title {
    font-size: 34px;
    line-height: 1.3;
  }

  /* Description Size */
  .cap-desc {
    font-size: 15px;
  }

  /* Image Adjust */
  .cap-img img {
    height: 380px;
    border-radius: 12px;
  }

  /* Feature Boxes */
  .cap-box {
    padding: 15px;
  }

  .cap-box i {
    font-size: 20px;
  }

  .cap-box h6 {
    font-size: 14px;
  }

}
/* Mobile Responsive */
@media (max-width: 768px) {
  .cap-main-title {
    font-size: 28px;
  }

  .cataract-capabilities {
    padding: 50px 0;
  }
}

/* FAQ Section */
.faq-section {
  background: #f8f9fa;
}

.faq-title {
  font-size: 36px;
  font-weight: 700;
}

.faq-subtitle {
  color: #666;
}

.accordion-button {
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background-color: green;
  color: #fff;
}

.accordion-body {
  color: #555;
}

