/*Global Declarations*/
/* .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.col10 {
  width: calc(8.33% * 10);
  padding: 0 15px;
}
.col7 {
  width: calc(8.33% * 7);
  padding: 0 15px;
}
.col6 {
  width: calc(8.33% * 6);
  padding: 0 15px;
}
.col5 {
  width: calc(8.33% * 5);
  padding: 0 15px;
}
.col3 {
  width: calc(8.33% * 3);
  padding: 0 15px;
}

.col2 {
  width: calc(8.33% * 2);
  padding: 0 15px;
} 
*/
:root {
  --cyan: #14c6d1;
  --cyan-lt: #e0f8fa;
  --navy: #000137;
  --blue: #00194c;
  --text: #3a4a6b;
  --border: #c9e8ed;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(10, 35, 80, 0.09);
}

/* Banner Section Start */

.about-hero {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 20%, #0b4fa8 0%, transparent 45%),
    radial-gradient(circle at 0% 100%, #1b0f6a 0%, transparent 50%),
    linear-gradient(135deg, #06183f 0%, #0b2e6b 55%, #081b4a 100%);
}

.about-hero .container {
  max-width: 1350px;
}

.about-hero-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-hero-left h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
}

.about-hero-right {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.9;
  justify-content: flex-end;
}

.about-hero-right .sep {
  opacity: 0.5;
}

.about-hero-right a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.about-hero-right a:hover {
  color: #00b4d8;
}

.about-hero-right .title {
  color: #00b4d8;
  font-weight: 600;
}

.about-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(20, 198, 209, 0.18),
    transparent 70%
  );
}
/* Banner Section End */

/* About Section Start*/
.about {
  position: relative;
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.about .container {
  max-width: 1200px;
}


.dot-bg {
  position: absolute;
  left: -20px;
  top: 0;
  width: 360px;
  height: 380px;
  background-image: radial-gradient(circle, #9dd8e5 1.3px, transparent 1.3px);
  background-size: 18px 18px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.gallery-col {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.gallery-big {
  flex-shrink: 0;
  width: 310px;
  height: 450px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(0, 30, 80, 0.15);
}

.gallery-big img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 55px;
}

.gallery-small {
  width: 210px;
  height: 200px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(0, 30, 80, 0.13);
}

.gallery-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-col {
  position: relative;
  z-index: 1;
  padding-left: 8px;
}


.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px 6px 12px;
  border: 1.8px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: var(--cyan);
  background: #fff;
  margin-bottom: 20px;
}

.about-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.23;
  color: var(--navy);
  margin-bottom: 16px;
}

.about-desc {
  font-size: 13.5px;
  line-height: 1.78;
  color: var(--text);
  margin-bottom: 0;
  max-width: 420px;
}
.feature-card {
  display: flex;
  align-items: center;
  gap: 22px;
  background: #fff;
  border-radius: 22px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
  margin: 26px 0 30px;
}

.video-thumb {
  flex-shrink: 0;
  position: relative;
  width: 185px;
  height: 118px;
  border-radius: 16px;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.play-inner {
  width: 46px;
  height: 46px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.play-btn:hover .play-inner {
  transform: scale(1.1);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
  padding: 5px 0;
}

.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--cyan-lt);
  border: 1.5px solid var(--cyan);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-4.5' stroke='%2314c6d1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--cyan);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 9px 10px 9px 24px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(20, 198, 209, 0.3);
  /* transition:
    background:0.25s,
    box-shadow 0.25s;
  white-space: nowrap; */
}

.btn-about:hover {
  background: #0fb3be;
  color: #fff;
  box-shadow: 0 16px 36px rgba(20, 198, 209, 0.4);
}

.btn-circle {
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.emergency {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-ring {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.8px solid #dde5f0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.emerg-text small {
  display: block;
  font-size: 11.5px;
  color: #8fa0be;
  font-weight: 500;
}

.emerg-text strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
}

/*About Section End*/

/*Stats Section Start*/
.stats {
  padding: 260px 0 140px;
  color: #fff;
  position: relative;
  overflow: visible;
  background: url("../images/home-img/stats-bg.png") center/cover no-repeat;
  z-index: 1;
}

.stats .container {
  max-width: 1922px;
  margin: auto;
  text-align: center;
}

.stats-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  margin: 0 auto 90px;
  max-width: 900px;
}

.stat-item {
  padding: 0 30px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 120px;
  background: rgba(255, 255, 255, 0.2);
}

.stat-icon {
  width: 44px;
  margin-bottom: 20px;
}

.stat-item h3 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 15px;
  opacity: 0.85;
}
/*Stats Section End*/

/*Choose us Section Start*/
.choose {
  background: #f4f7fa;
  position: relative;
}

.choose-card {
  background: #f2fbfd;
  padding: 100px 80px;
  border-radius: 52px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.05);
}

.choose-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #14c6d1;
  color: #14c6d1;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 30px;
  letter-spacing: 0.6px;
}

.choose-title {
  font-size: 40px;
  font-weight: 700;
  color: #0b1a45;
  line-height: 1.25;
  margin: 26px 0 55px;
}

.choose-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.choose-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.num {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: #14c6d1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
  font-size: 14px;
}

.choose-list h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0b1a45;
}

.choose-list p {
  font-size: 14px;
  color: #6b7b8f;
  line-height: 1.6;
  margin: 0;
}

.choose-img {
  position: relative;
}

.choose-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 52px;
}

.experience {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: -70px;
  padding: 0 15px;
}

.experience h3 {
  font-size: 110px;
  font-weight: 800;
  color: #08143d;
  line-height: 1;
  white-space: nowrap;
}

.exp-text strong {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
  color: #08143d;
}

.exp-text p {
  font-size: 14px;
  color: #6b7b8f;
  max-width: 520px;
  line-height: 1.7;
  margin: 0;
}

/*Choose us Section End*/

/*Our Doctor Section Start*/
.team {
  background: #fff;
  padding: 140px 0;
}


.team .container {
  max-width: 1200px;
  text-align: center;
}

.team-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #14c6d1;
  border: 1.5px solid #14c6d1;
  margin-bottom: 20px;
}

.team-title {
  font-size: 38px;
  font-weight: 700;
  color: #0b1a45;
  margin-bottom: 14px;
}

.team-subtitle {
  max-width: 720px;
  margin: 0 auto 70px;
  font-size: 15px;
  line-height: 1.7;
  color: #6b7b8f;
}

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

/* Carousel overrides */
.team-carousel .carousel-inner {
  padding-bottom: 10px;
}

.team-carousel .carousel-item .row {
  gap: 0; /
}

.team-card {
  position: relative;
  border-radius: 28px;
  overflow: visible;
}

.team-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.team-info {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  background: #fff;
  width: 85%;
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.team-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0b1a45;
  margin-bottom: 4px;
}

.team-info span {
  font-size: 13px;
  color: #6b7b8f;
}

/* Next / Prev buttons */
.team-next,
.team-prev {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #14c6d1;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(20, 198, 209, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: transform 0.2s;
}

.team-next {
  right: -70px;
}
.team-prev {
  left: -70px;
}

.team-next:hover,
.team-prev:hover {
  transform: translateY(-50%) scale(1.08);
}

.team-prev svg {
  transform: rotate(180deg);
}

.team-dots {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-dots span {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #cfd8e3;
  cursor: pointer;
  transition: all 0.3s;
}

.team-dots .active {
  width: 40px;
  border-radius: 20px;
  background: #0b1a45;
}
/*Our Doctor Section End*/

/*Testimonial Section Start*/
.testimonial {
      background: #f4f7fa;
      padding: 120px 0;
      font-family: "Poppins", sans-serif;
    }

    .testimonial-tag {
      border: 1.5px solid #14c6d1;
      color: #14c6d1;
      padding: 6px 18px;
      border-radius: 30px;
      font-size: 12px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
    }
    .testimonial-title {
      font-size: 38px;
      font-weight: 700;
      color: #0b1a45;
      line-height: 1.25;
    }
    .testimonial-desc {
      color: #6b7b8f;
      font-size: 14px;
      line-height: 1.7;
    }

    .rating-box {
      width: 236px;
      background: #14c6d1;
      color: #fff;
      padding: 22px 22px 20px;
      border-radius: 22px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      flex-shrink: 0;
    }
    .rating-label {
      font-size: 14px;
      font-weight: 500;
      opacity: 0.95;
    }
    .rating-row {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .rating-row h3 {
      font-size: 42px;
      font-weight: 700;
      line-height: 1;
      margin: 0;
    }
    .stars-yellow {
      display: flex;
      gap: 4px;
    }
    .stars-yellow svg { 
      width: 20px; height: 20px;
    }

    .testimonial-image {
      position: relative;
    }
    .testimonial-image img {
      width: 100%;
      border-radius: 30px;
      object-fit: cover;
    }
    .quote-icon {
      position: absolute;
      left: -20px;
      bottom: 30px;
      width: 150px;
      height: 150px;
      background: #14c6d1;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .testimonial-content .stars-blue {
      display: flex;
      gap: 6px;
    }
    .testimonial-text {
      font-size: 16px;
      color: #686877;
      line-height: 1.8;
      margin: 18px 0 26px;
    }
    .author {
      font-size: 24px;
      font-weight: 600;
      color: #000137;
      margin-bottom: 4px;
    }
    .location {
      font-size: 16px;
      color: #00b4d8;
    }

/*Testimonial Section End*/

/*Media Queries*/

@media (max-width: 1200px) {
  /*Banner Section*/

  .about-hero {
    height: 260px;
  }

  .about-hero-left h1 {
    font-size: 48px;
  }

  .about-hero-right {
    font-size: 14px;
  }
  /*About Section*/
  .about .container {
    padding: 0 24px;
  }
  .about-title {
    font-size: 32px;
  }
  .gallery-big {
    width: 268px;
    height: 400px;
  }
  .gallery-small {
    width: 188px;
    height: 178px;
  }
  .dot-bg {
    width: 280px;
  }
  /*Stats Section*/
  .stats {
    padding: 200px 0 100px;
  }

  .stats-title {
    font-size: 36px;
    margin: 0 auto 70px;
    max-width: 750px;
  }

  .stat-item {
    padding: 0 20px;
  }

  .stat-item h3 {
    font-size: 48px;
  }

  .stat-item p {
    font-size: 14px;
  }

  .stat-icon {
    width: 40px;
    margin-bottom: 16px;
  }
  /*Choose us Section*/
  .choose-card {
    padding: 80px 60px;
  }

  .choose-title {
    font-size: 34px;
  }

  .choose-img img {
    height: 520px;
  }

  .experience h3 {
    font-size: 90px;
  }

  .experience {
    gap: 36px;
  }
  /*Our Doctor Section*/
  .team {
    padding: 100px 0;
    }
  .team-next { 
    right: -50px; 
    }
  .team-prev { 
    left: -50px; 
  }
  .team-card img { 
    height: 400px; 
  }
  /*Testimonial Section*/
   .testimonial-container { 
    max-width: 1350px; 
  }
  .testimonial { 
    padding: 90px 0; 
  }
  .testimonial-title { 
    font-size: 32px; 
  }
  .testimonial-text { 
    font-size: 15px; 
  }
    
}

@media (max-width: 992px) {
  /*Banner Section*/
  .about-hero {
    height: 240px;
  }

  .about-hero-left h1 {
    font-size: 42px;
  }

  .about-hero-right {
    font-size: 14px;
    gap: 10px;
  }
  /*About Section*/
  .about {
    padding: 60px 0;
  }

  .gallery-col {
    justify-content: center;
    margin-bottom: 44px;
  }

  .gallery-big {
    width: 248px;
    height: 370px;
  }
  .gallery-small {
    width: 174px;
    height: 162px;
  }
  .gallery-stack {
    padding-top: 42px;
    gap: 16px;
  }

  .content-col {
    padding-left: 0;
  }
  .about-title {
    font-size: 28px;
  }
  .dot-bg {
    width: 230px;
    height: 230px;
  }

  /*Stats Section*/
  .stats {
    padding: 160px 0 80px;
  }

  .stats-title {
    font-size: 30px;
    margin: 0 auto 60px;
    max-width: 620px;
  }

  .stat-item {
    padding: 0 15px;
  }

  .stat-item::after {
    height: 90px;
  }

  .stat-item h3 {
    font-size: 40px;
  }

  .stat-item p {
    font-size: 13px;
  }

  .stat-icon {
    width: 36px;
    margin-bottom: 14px;
  }

  /*Choose us Section*/
  .choose-card {
    padding: 60px 40px;
    border-radius: 36px;
  }

  .choose-title {
    font-size: 28px;
    margin: 20px 0 40px;
  }

  .choose-list {
    gap: 32px;
  }

  .choose-img img {
    height: 420px;
    border-radius: 36px;
  }

  .experience {
    margin-top: 32px; /* remove negative overlap on stacked layout */
    gap: 28px;
  }

  .experience h3 {
    font-size: 72px;
  }
  /*Our Doctor Section*/
  .team {
    padding: 60px 0;
      }
      .team-title { 
        font-size: 28px; 
      }
      .team-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
      }
      .team-card img { 
        height: 320px; 
      }
      .team-next { 
        right: -10px; 
      }
      .team-prev { 
        left: -10px; 
      }
      .team-next,
      .team-prev {
        width: 40px;
        height: 40px;
      }
      .team-dots { 
        margin-top: 40px; 
      }

      /*Testimonial Section*/
      .testimonial { 
        padding: 70px 0; }
        
      .head-row {
        grid-template-columns: 1fr 1fr !important;
      }
      .rating-box { 
        width: 100%; 
      }
      .testimonial-title { 
        font-size: 28px; 
      }
      .testimonial-image-col { 
        max-width: 340px; 
      }
}

@media (max-width: 768px) {
  /*Banner Section*/
  .about-hero {
    height: 220px;
  }

  .about-hero-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .about-hero-left h1 {
    font-size: 36px;
  }

  .about-hero-right {
    font-size: 13px;
    justify-content: flex-start;
    gap: 8px;
  }

  .about-hero::after {
    width: 320px;
    height: 320px;
    right: -80px;
    bottom: -80px;
  }

  /* About Section */
  .about {
    padding: 50px 0;
  }

  .gallery-col {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .gallery-big {
    width: 100%;
    max-width: 420px;
    height: 258px;
  }

  .gallery-stack {
    flex-direction: row;
    padding-top: 0;
    gap: 14px;
    width: 100%;
    max-width: 420px;
  }

  .gallery-small {
    flex: 1;
    width: auto;
    height: 148px;
  }

  .about-title {
    font-size: 24px;
  }

  .feature-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .video-thumb {
    width: 100%;
    height: 168px;
  }

  .dot-bg {
    width: 180px;
    height: 180px;
    opacity: 0.3;
  }
  /*Stats Section*/
  .stats {
    padding: 120px 0 70px;
  }

  .stats-title {
    font-size: 26px;
    margin: 0 auto 50px;
    max-width: 100%;
    padding: 0 15px;
  }
  .col-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .stat-item {
    padding: 30px 25px;
    margin-bottom: 10px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-item:nth-child(odd)::after {
    display: block;
    height: 100px;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 40px;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    padding-top: 40px;
  }

  .stat-item h3 {
    font-size: 44px;
  }

  .stat-item p {
    font-size: 14px;
  }

  .stat-icon {
    width: 40px;
    margin-bottom: 16px;
  }

  /*Choose us Section*/
  .choose-card {
    padding: 50px 32px;
    border-radius: 28px;
  }

  .choose-title {
    font-size: 24px;
    margin: 16px 0 32px;
  }

  .choose-img img {
    height: 320px;
    border-radius: 28px;
    margin-top: 28px;
  }

  .experience {
    margin-top: 28px;
    gap: 22px;
  }

  .experience h3 {
    font-size: 60px;
  }

  .exp-text strong {
    font-size: 14px;
  }

  .exp-text p {
    font-size: 13px;
  }
  /*Our Doctor Section*/
  .team {
        padding: 60px 0;
      }
      .team-title { font-size: 28px; }
      .team-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
      }
      .team-card img { height: 320px; }
      .team-next { right: -10px; }
      .team-prev { left: -10px; }
      .team-next,
      .team-prev {
        width: 40px;
        height: 40px;
      }
      .team-dots { 
        margin-top: 40px; 
      }

      /*Testimonial Section*/
      .testimonial { padding: 60px 0; }
      .testimonial-title { font-size: 26px; }
      .head-grid { display: flex !important; flex-direction: column; gap: 24px; }
      .rating-box { width: 100%; }
      .testimonial-body-row { flex-direction: column; }
      .testimonial-image-col { max-width: 100%; }
      .quote-icon { width: 110px; height: 110px; left: -10px; bottom: 20px; }
      .quote-icon svg { width: 50px; height: 50px; }
      .testimonial-text { font-size: 14px; }
      .author { font-size: 20px; }
    }
  

@media (max-width: 576px) {
  /*Banner Section*/
  .about-hero {
    height: 200px;
  }

  .about-hero-left h1 {
    font-size: 32px;
  }

  .about-hero-right {
    font-size: 12px;
    gap: 6px;
  }

  .about-hero-right .sep svg {
    width: 20px;
    height: 20px;
  }

  .about-hero::after {
    width: 250px;
    height: 250px;
    right: -60px;
    bottom: -60px;
  }

  /* About Section */
  .about {
    padding: 40px 0;
  }
  .about .container {
    padding: 0 16px;
  }

  .gallery-big {
    height: 220px;
  }
  .gallery-small {
    height: 118px;
  }
  .gallery-stack {
    gap: 10px;
  }

  .about-title {
    font-size: 20px;
  }
  .about-tag {
    font-size: 10.5px;
    padding: 5px 12px 5px 10px;
  }

  .feature-card {
    padding: 14px;
    border-radius: 18px;
    gap: 14px;
  }
  .video-thumb {
    height: 150px;
  }

  .btn-about {
    font-size: 13px;
    padding: 8px 8px 8px 18px;
    gap: 10px;
  }
  .btn-circle {
    width: 34px;
    height: 34px;
  }

  .about-actions {
    gap: 16px;
  }
  .emerg-text strong {
    font-size: 14.5px;
  }
  .dot-bg {
    display: none;
  }
  /*Stats Section*/
  .stats {
    padding: 90px 0 60px;
  }

  .stats-title {
    font-size: 22px;
    margin: 0 auto 40px;
    line-height: 1.4;
    padding: 0 20px;
  }

  .col-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .stat-item {
    padding: 25px 30px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

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

  .stat-item:not(:last-child)::after,
  .stat-item:nth-child(odd)::after {
    display: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 25px;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    padding-top: 25px;
  }

  .stat-item h3 {
    font-size: 40px;
  }

  .stat-item p {
    font-size: 14px;
  }

  .stat-icon {
    width: 38px;
    margin-bottom: 14px;
  }

  /*Choose us Section*/
  .choose-card {
    padding: 36px 20px;
    border-radius: 20px;
  }

  .choose-title {
    font-size: 22px;
  }

  .choose-tag {
    font-size: 11px;
    padding: 5px 14px;
  }

  .choose-img img {
    height: 260px;
    border-radius: 20px;
  }

  .experience {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 24px;
  }

  .experience h3 {
    font-size: 72px;
    line-height: 0.9;
  }

  .exp-text p {
    max-width: 100%;
  }
  /*Our Doctor Section*/
  .team {
        padding: 50px 0;
      }
      .team-title { 
        font-size: 24px; 
      }
      .team-card img {
         height: 380px; 
        }
      .team-next { 
        right: 0px; 
      }
      .team-prev {
         left: 0px; 
        }
      .team-info { 
        width: 80%; 
        padding: 14px 16px; 
      }
      /*Testimonial Section*/

      testimonial { padding: 48px 0; }
      .testimonial-title { font-size: 22px; }
      .rating-row h3 { font-size: 32px; }
      .quote-icon { width: 80px; height: 80px; left: -8px; bottom: 16px; }
      .quote-icon svg { width: 36px; height: 36px; }
      .testimonial-text { font-size: 13px; }
      .author { font-size: 18px; }
      .location { font-size: 14px; }
}

@media (max-width: 320px) {
  /*Banner Section*/
  .about-hero {
    height: 180px;
  }

  .about-hero-left h1 {
    font-size: 28px;
  }

  .about-hero-right {
    font-size: 11px;
    gap: 5px;
  }

  .about-hero-right .sep svg {
    width: 18px;
    height: 18px;
  }

  .about-hero::after {
    width: 200px;
    height: 200px;
    right: -50px;
    bottom: -50px;
  }

  .about-hero-left h1 {
    font-size: 28px;
  }

  .choose-title {
    font-size: 24px;
  }

  .stat-item h3 {
    font-size: 38px;
  }

  .team-title,
  .testimonial-title {
    font-size: 24px;
  }

  .btn-primary {
    width: 100%;
    justify-content: space-between;
  }
  /* About Section */
  .about {
    padding: 28px 0;
  }
  .about .container {
    padding: 0 12px;
  }

  .gallery-big {
    height: 185px;
  }
  .gallery-small {
    height: 98px;
  }

  .about-title {
    font-size: 17px;
  }
  .about-desc {
    font-size: 12px;
  }

  .feature-card {
    padding: 12px;
  }
  .video-thumb {
    height: 130px;
  }
  .check-list li {
    font-size: 12px;
  }

  .about-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .btn-about {
    font-size: 12px;
  }
  .emerg-text strong {
    font-size: 13px;
  }
  .phone-ring {
    width: 38px;
    height: 38px;
  }

  /*Stats Section*/
  .stats {
    padding: 70px 0 50px;
  }

  .stats-title {
    font-size: 18px;
    margin: 0 auto 30px;
    line-height: 1.5;
    padding: 0 15px;
  }

  .col-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .stat-item {
    padding: 20px 15px;
  }

  .stat-item h3 {
    font-size: 34px;
    margin-bottom: 5px;
  }

  .stat-item p {
    font-size: 13px;
  }

  .stat-icon {
    width: 32px;
    margin-bottom: 10px;
  }

  /*Choose us Section*/
  .choose-card {
    padding: 28px 16px;
    border-radius: 16px;
  }

  .choose-title {
    font-size: 18px;
  }

  .num {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 12px;
  }

  .choose-list h4 {
    font-size: 14px;
  }

  .choose-img img {
    height: 200px;
    border-radius: 16px;
  }

  .experience h3 {
    font-size: 56px;
  }
  /*Our Doctor Section*/
  .team {
        padding: 40px 0;
      }
      .team-title { 
        font-size: 20px; 
      }
      .team-tag { 
        font-size: 10px;
       }
      .team-card img { 
        height: 300px; 
      }
      .team-next { 
        right: -5px; 
      }
      .team-prev { 
        left: -5px; 
      }
      .team-next,
      .team-prev {
        width: 34px;
        height: 34px;
      }
      .team-info h4 { 
        font-size: 14px; 
      }
      .team-info span { 
        font-size: 12px; 
      }
      .team-dots { 
        margin-top: 30px; 
      }
      /*Testimonial Section*/
      .testimonial { 
        padding: 36px 0; 
      }
      .testimonial-title { 
        font-size: 18px; 
      }
      .quote-icon { 
        display: none; 
      }
      .testimonial-text { 
        font-size: 12px; 
      }

}
