* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    padding-top: 130px;
}

/* Top bar */
.top-bar {
    background: #ffffff;
    padding: 8px 20px;
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

@media (max-width: 768px) {
    body {
        padding-top: 110px;
    }
    
    .top-bar {
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 95px;
    }
}

.phone {
    font-weight: bold;
    color: #000;
}

/* Navbar */
.navbar {
    background: #1fa3b8;
    position: fixed;
    top: 108px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    margin-top: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .navbar {
        top: 54px;
    }
}

body {
    padding-top: 130px;
}
.top-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Doctor name right */
.doctor-name-right {
    color: #000;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 900px) {
    .doctor-name-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .doctor-name {
        display: none;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 6px 10px;
    }
    
    .phone {
        font-size: 12px;
    }
    
    .doctor-name {
        display: none;
    }
}
.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 12px 20px;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-around;
    position: relative;
    height: 50px;
    align-items: center;
}

@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
        padding: 10px 15px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 40px;
        padding: 8px 12px;
        display: contents;
    }
}


.top-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .top-container {
        padding: 8px 10px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .top-container {
        padding: 6px 8px;
    }
}

/* Logo */
.logo img {
    height: 64px;
}

@media (max-width: 768px) {
    .logo img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }
}

/* Menu */
.nav-menu {
    display: flex;
    gap: 22px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    display: block;
}

.nav-menu a:hover {
    text-decoration: underline;
}

/* Treatments Dropdown */
.nav-item {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    z-index: 1000;
    margin-top: 5px;
}

.nav-item:hover .dropdown-menu {
    display: flex;
    flex-direction: column;
}

.dropdown-menu a {
    color: #333 !important;
    text-decoration: none;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 400;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #e8f4f8;
    color: #1fa3b8 !important;
    text-decoration: none;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
    }
    
    .nav-menu a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 8px;
    }
    
    .nav-menu a {
        font-size: 10px;
        padding: 5px 3px;
    }
}

/* Doctor Name */
.doctor-name {
    color: #000;
    font-weight: 600;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 26px;
    color: #1fa3b8;
    cursor: pointer;
    z-index: 1001;
    align-items: center;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        font-size: 24px;
    }
}

/* Slider */
.slider-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    z-index: 50;
}

@media (max-width: 768px) {
    .slider-container {
        z-index: 50;
        margin-top: -61px;
    }
}

.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slide {
    display: none;
    width: 100%;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slide.active {
    display: block;
}

.fade {
    animation: fade 1s;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}


/* Dots */
.dots-container {
    text-align: center;
    padding: 15px;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active {
    background-color: #1da1b8;
}



/* Responsive */
@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #1fa3b8;
        flex-direction: column;
        align-items: center;
        display: flex;
        padding-top: 100px;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu a {
        padding: 15px 0;
        font-size: 16px;
        display: block;
        width: 100%;
        text-align: center;
    }

    .nav-menu.active {
        left: 0;
    }

    .doctor-name {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        height: auto;
        padding-top: 70px;
    }
    
    .nav-menu a {
        padding: 12px 0;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        padding-top: 60px;
    }
    
    .nav-menu a {
        padding: 10px 0;
        font-size: 12px;
    }
}


/* Award Section */
.award-section {
    background: #f9f9f9;
    padding: 40px 20px;
    text-align: left;
}

@media (max-width: 480px) {
    .award-section {
        padding: 25px 15px;
    }
}

.award-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.award-image {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.award-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.award-text {
    flex: 1;
}

.award-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.award-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.4;
    padding: 0 0px;
}

@media (max-width: 768px) {
    .award-section {
        text-align: center;
    }
    
    .award-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .award-icon {
        text-align: left;
    }
    
    .award-title {
        font-size: 22px;
        margin-bottom: 15px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .award-title {
        font-size: 16px;
    }
}

.play-button {
    position: absolute;
    top: 79%;
    left: 86%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #1fa3b8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 480px) {
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.award-text {
    flex: 1;
    text-align: left;
}

.award-text p {
    font-size: 20px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 48px;
    text-align: justify;
}

@media (max-width: 768px) {
    .award-text p {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .award-text p {
        font-size: 13px;
        margin-bottom: 20px;
        text-align: left;
        line-height: 1.5;
    }
}

.read-more {
    color: #1fa3b8;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0d5a6e;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    width: 90%;
    max-width: 800px;
    height: 450px;
    border-radius: 8px;
}

.close {
    position: absolute;
    right: 30px;
    top: 20px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close:hover {
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .award-title {
        font-size: 18px;
        font-family: 'CenturyGothic';
    }
    
    .award-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .award-image {
        max-width: 100%;
    }
    
    .award-text p {
        text-align: left;
    }
    
    .modal-content {
        height: 300px;
    }
}

/* Statistics Section */
.statistics-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 30px 20px;
    background: #f9f9f9;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
}

.stat-number {
    font-size: 24px;
    color: #ff6b4a;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .statistics-section {
        gap: 25px;
        padding: 45px 15px;
    }
    
    .stat-box {
        min-width: 120px;
    }
    
    .stat-icon {
        font-size: 36px;
    }
    
    .stat-number {
        font-size: 26px;
    }
    
    .stat-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .statistics-section {
        flex-direction: column;
        padding: 25px 15px;
        gap: 15px;
    }
    
    .stat-box {
        min-width: 100%;
        margin-bottom: 10px;
    }
    
    .stat-icon {
        font-size: 32px;
    }
    
    .stat-number {
        font-size: 22px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

/* Doctor Section */
.doctor-section {
    padding: 60px 20px;
    background: #1fa3b8;
    color: #fff;
}

@media (max-width: 480px) {
    .doctor-section {
        padding: 30px 15px;
    }
}

.doctor-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

@media (max-width: 480px) {
    .doctor-content {
        gap: 20px;
    }
}

.doctor-info {
    flex: 1;
}

.doctor-info h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: bold;
}

.credentials {
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.position {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .doctor-info h2 {
        font-size: 32px;
    }
    
    .credentials {
        font-size: 14px;
    }
    
    .position {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .doctor-info h2 {
        font-size: 22px;
    }
    
    .credentials {
        font-size: 11px;
    }
    
    .position {
        font-size: 10px;
    }
}

.divider {
    border: none;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    margin: 15px 0;
    width: 50px;
}

.doctor-bio {
    font-size: 24px;
    font-weight: 300;
    color: #ffffff;
    margin-top: 25px;
}

@media (max-width: 480px) {
    .doctor-bio {
        font-size: 12px;
        text-align: left;
        line-height: 1.5;
    }
}

.doctor-signature {
    font-size: 24px;
    font-style: italic;
    margin-top: 30px;
    font-family: cursive;
}

@media (max-width: 480px) {
    .doctor-signature {
        font-size: 18px;
        margin-top: 15px;
    }
}

.doctor-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.doctor-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.doctor-play-button {
    position: absolute;
    bottom: 20px;
    left: 83%;
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 74, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.doctor-play-button:hover {
    background: rgba(255, 107, 74, 1);
    transform: scale(1.1);
}

@media (max-width: 480px) {
    .doctor-play-button {
        width: 50px;
        height: 50px;
        font-size: 18px;
        bottom: 15px;
        left: 80%;
    }
}

/* Responsive - Doctor Section */
@media (max-width: 768px) {
    .doctor-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .doctor-info h2 {
        font-size: 32px;
    }
    
    .statistics-section {
        flex-direction: column;
        padding: 40px 20px;
    }
    
    .stat-box {
        min-width: 150px;
    }
}
 /* HOVER EFFECT */
.service-card:hover {
  background: #1fa5b5;
  color: #fff;
}

.service-card:hover p {
  color: #eaf9fb;
}

.service-card:hover a {
  background: #fff;
  color: #1fa5b5;
}

/* Smooth animation */
.service-card {
  transition: all 0.3s ease;
}

    .service-banner-section {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
}

/* FULL BANNER IMAGE */
.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

/* OVERLAY AREA */
.overlay-content {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 260px);
  gap: 25px;
}

/* CARD */
.service-card {
  background: #ffffff;
  padding: 28px 25px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.service-card .icon {
  font-size: 38px;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 14px;
}

.service-card a {
  display: inline-block;
  padding: 7px 18px;
  background: #1fa5b5;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-size: 13px;
}




/* RESPONSIVE */
@media (max-width: 900px) {
  .service-banner-section {
    height: auto;
  }

  .banner-img {
    height: 100%;
    display: none;
  }

  .overlay-content {
    position: relative;
    transform: none;
    padding: 40px 20px;
    left: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

.section-title{
    margin-bottom: 30px;
    margin-top: 30px;
    text-align: center;
    font-size: 30px;
}

.comparison-section {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.call-btn-wrapper {
  margin-bottom: 30px;
}

.call-btn {
  background: #e76f2e;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.call-btn:hover {
  background: #d45e22;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #000;
}

.table-wrapper {
  max-width: 1000px;
  margin: auto;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.comparison-table thead th {
  background: #1fa3b8;
  color: #fff;
  padding: 14px;
}

.comparison-table td {
  padding: 14px;
  border: 1px solid #ddd;
}

.comparison-table tbody tr:nth-child(even) {
  background: #f2f2f2;
}

.comparison-table tbody td:first-child {
  font-weight: 600;
}

.hero-section {
  width: 100%;
  height: 500px;
  background-image: url("../img/cosmetology-s.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  padding-right: 8%;
  box-sizing: border-box;
  overflow: hidden; /* 🔥 scroll bar fix */
}

.hero-content {
  max-width: 420px;
  color: #ffffff;
}

.hero-content h2 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.95;
}

.read-more {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
}

.read-more:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .hero-section {
    height: auto;
    padding: 60px 20px;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h2 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .read-more {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 50px 16px;
  }

  .hero-content h2 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 14px;
  }
}


  .patient-video-section {
  padding: 60px 20px;
  text-align: center;
}

.video-slider {
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}

.video-track {
  display: flex;
  gap: 20px;
  animation: infiniteSlide 22s linear infinite;
}

.video-card {
  min-width: 260px;
  position: relative;
  cursor: pointer;
}

.video-card img {
  width: 100%;
  border-radius: 6px;
}

.video-card p {
  margin-top: 10px;
  font-weight: 600;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #f44336;
  /* background: rgba(0,0,0,0.4); */
  border-radius: 6px;
}

@keyframes infiniteSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* VIDEO MODAL */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.video-modal iframe {
  width: 80%;
  height: 450px;
  max-width: 800px;
  border: none;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}


 .awards-section {
  padding: 80px 20px;
  text-align: center;
  background: #ffffff;
}

.awards-section h2 {
  font-size: 34px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.awards-desc {
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

.awards-slider {
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}

.awards-track {
  display: flex;
  gap: 40px;
  animation: awardSlide 22s linear infinite;
}

.award-card {
  min-width: 300px;
}

.award-card img {
  height: 60px;
  margin-bottom: 15px;
}

.award-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}

.award-card span {
  font-size: 14px;
  color: #777;
}

@keyframes awardSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .award-card {
    min-width: 260px;
  }

  .awards-desc {
    font-size: 14px;
  }
}

 .footer {
  background: url("../img/ftrbnrmnvr.jpg") center/cover no-repeat;
  position: relative;
  color: #fff;
  font-family: Arial, sans-serif;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.footer * {
  position: relative;
}

/* Top Strip */
.footer-top {
  background: #1fa4b6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 5%;
  flex-wrap: wrap;
}

.footer-top-right a {
  color: #fff;
  margin-left: 12px;
  text-decoration: none;
}

.appointment-btn {
  background: #fff;
  color: #1fa4b6 !important;
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: bold;
}

/* Footer Content */
.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 50px 5%;
  gap: 30px;
}

.footer-box h4 {
  margin-bottom: 15px;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box ul li a {
  color: #fff;
  text-decoration: none;
}
 .email-field {
    position: relative;
    width: 280px;   /* adjust as needed */
    margin-top: 20px;
}

.email-field input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid #ffffff;
    padding: 8px 0;
    font-size: 15px;
    color: #ffffff;
    outline: none;
}

.email-field label {
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 14px;
    color: #e0e0e0;
    pointer-events: none;
    transition: 0.3s ease;
}

/* Floating effect */
.email-field input:focus + label,
.email-field input:valid + label {
    top: -10px;
    font-size: 12px;
    color: #ffffff;
}

/* Focus underline */
.email-field input:focus {
    border-bottom: 2px solid #ffffff;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 10px;
}

.footer-box input {
  padding: 10px;
  width: 100%;
  border: none;
  outline: none;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding: 15px;
  /* background: rgba(0,0,0,0.6); */
  font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-top {
    text-align: center;
    justify-content: center;
    gap: 10px;
  }
}

/* About page */
  .about-banner {
  position: relative;
  background: url("../img/aboutusbanner.jpg") center/cover no-repeat;
  height: 450px;
  display: flex;
  align-items: center;
  color: #fff;
}

.about-banner .overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(transparent, #000000c7);
  /* background-image: linear-gradient(transparent, #000000c7); */
}

.about-banner .content {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 0 20px;
  margin-top: 16%;
}

.about-banner h1 {
  font-size: 48px;
  margin-bottom: 40px;
}

.stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-box img {
  width: 45px;
  height: 45px;
  filter: invert(1);
}

.stat-box h3 {
  margin: 0;
  font-size: 22px;
}

.stat-box p {
  margin: 0;
  font-size: 20px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .about-banner {
    height: auto;
    padding: 60px 0;
  }

  .about-banner h1 {
    font-size: 34px;
  }

  .stats {
    gap: 25px;
  }
}

.about-section {
  padding: 80px 0;
  background: #f8f9fb;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Image */
.about-image {
  position: relative;
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 6px;
}

/* Orange Icon */
.about-icon {
  position: absolute;
  top: 50%;
  right: -35px;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  background: #1fa3b8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Content */
.about-content {
  flex: 1;
}

.about-tag {
  color: #1fa3b8;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
}

.about-content h2 {
  font-size: 38px;
  color: #0a2c57;
  margin: 10px 0 20px;
}

.about-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 900px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-icon {
    right: 50%;
    top: auto;
    bottom: -35px;
    transform: translateX(50%);
  }

  .about-content h2 {
    font-size: 28px;
  }
}

.LtmnSwnEqumnts {
    width: 100%;
    position: relative;
}
.TtlmnvrSwn {
    width: 55%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 55px;
}
.TtlmnvrSwn h3 {
    font-size: 36px;
    color: #000;
    font-family: "CenturyGothic-Bold";
    margin: 0 auto;
    line-height: 1.1;
    margin-top:20px;
    margin-bottom: 25px;
    width: 85%;
}
.TtlmnvrSwn p {
    font-size: 24px;
    color: #666666;
    font-weight: 500;
    line-height: 28px;
}
.cl12mnSldrmn {
    width: 100%;
    position: relative;
    display: block;
}
.cl12mnSldrmn .cntimgSemvr {
    width: 100%;
    position: relative;
    line-height: 0;
}
.cl12mnSldrmn .cntimgSemvr img {
    width: 100%;
}
.CntvrSwnSwn {
    position: absolute;
    bottom: 70px;
    left: 0px;
    right: 0px;
    padding: 0px 130px;
}

/* Equipment Slider Styles */
.EgumntSlider {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.4);
}

.equipment-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.equipment-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #1fa3b8;
    color: #1fa3b8;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.equipment-item p {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    margin: 0;
    padding-top: 5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cl12mnSldrmn {
        position: relative;
    }
    
    .CntvrSwnSwn {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        padding: 0;
    }
    
    .EgumntSlider {
        flex-direction: column;
        gap: 20px;
        padding: 25px 15px;
        background: rgba(0, 0, 0, 0.3);
    }
    
    .equipment-item {
        max-width: 100%;
        min-width: auto;
    }
    
    .equipment-check {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .equipment-item p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .CntvrSwnSwn {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        padding: 0;
    }
    
    .EgumntSlider {
        padding: 20px 12px;
        gap: 15px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.3);
    }
    
    .equipment-item {
        gap: 12px;
    }
    
    .equipment-check {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .equipment-item p {
        font-size: 12px;
    }
}


 .partners-section {
            padding: 50px 20px;
            background: #f9f9f9;
            text-align: center;
        }

        .partners-section h2 {
            font-size: 32px;
            color: #333;
            margin-bottom: 40px;
            font-weight: 600;
        }

        .logo-slider-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            /* background: white; */
            padding: 30px;
            border-radius: 10px;
            /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
        }

        .logo-slider-wrapper {
            position: relative;
            overflow: hidden;
            min-height: 200px;
        }

        .logo-slider {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 200px;
            position: relative;
        }

        .logo-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            z-index: 1;
        }

        .logo-slide.active {
            opacity: 1;
            z-index: 10;
        }

        .logo-slide img {
                max-width: 300px;
    max-height: 250px;
            object-fit: contain;
            padding: 20px;
        }

        .logo-slide .logo-text {
            text-align: center;
            margin-top: 20px;
            font-size: 18px;
            font-weight: 600;
            color: #1fa3b8;
        }

        /* Arrow buttons */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #1fa3b8;
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: background 0.3s ease;
        }

        .slider-arrow:hover {
            background: #157a94;
        }

        .slider-arrow.prev {
            left: 10px;
        }

        .slider-arrow.next {
            right: 10px;
        }

        /* Dots for indicator */
        .logo-dots {
            text-align: center;
            padding: 20px 0 0 0;
        }

        .logo-dot {
            height: 12px;
            width: 12px;
            margin: 0 6px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .logo-dot.active {
            background-color: #1fa3b8;
        }

        .logo-dot:hover {
            background-color: #999;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .partners-section h2 {
                font-size: 24px;
                margin-bottom: 30px;
            }

            .logo-slider-container {
                padding: 20px;
            }

            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .slider-arrow.prev {
                left: 5px;
            }

            .slider-arrow.next {
                right: 5px;
            }

            .logo-slide img {
                max-width: 250px;
                max-height: 200px;
            }
        }

        @media (max-width: 480px) {
            .logo-slider-container {
                padding: 15px;
            }

            .slider-arrow {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }

            .logo-slide img {
          max-width: 200px;
        max-height: 151px;
            }
        }
         .map-section {
  width: 100%;
  height: 550px;          /* desktop big map */
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* 🔹 Tablet */
@media (max-width: 991px) {
  .map-section {
    height: 420px;
  }
}

/* 🔹 Mobile */
@media (max-width: 576px) {
  .map-section {
    height: 320px;
  }
}

    .contact-info {
  padding: 60px 0;
  background: #fff;
  font-family: Arial, sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 600;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.info-box {
  color: #333;
}

.info-box .icon {
  font-size: 26px;
  color: #1aa6b7;
  margin-bottom: 10px;
}

.info-box h4 {
  color: #1aa6b7;
  font-size: 18px;
  margin-bottom: 12px;
}

.info-box p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.info-box a {
  color: #1aa6b7;
  text-decoration: none;
  font-weight: 500;
}

.info-box a:hover {
  text-decoration: underline;
}

.time {
  margin-top: 12px;
}

/* 🔹 Mobile Responsive */
@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info h2 {
    font-size: 26px;
  }
}

    .contact-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  background-image: url("../img/contactusbanner.jpg"); /* doctor background image */
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  padding: 0 8%;
  box-sizing: border-box;
}

/* dark overlay */
.contact-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* content */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 500px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #fff;
  color: #000;
}

/* 🔹 Mobile Responsive */
@media (max-width: 768px) {
  .contact-hero {
    height: 60vh;
    padding: 0 20px;
    justify-content: center;
    text-align: center;
    background-position: center;
  }

  .hero-content h1 {
    font-size: 32px;
  }
}
.blog-hero-blue {
     background: linear-gradient(90deg, #1976D2, #1E88E5, #00BCD4);
    padding: 90px 20px;
}

.blog-hero-inner {
    max-width: 1200px;
    margin: auto;
}
/* ===== BLOG CONTENT ===== */
.blog-detail {
    background: #f7f9fc;
    /* padding: 70px 20px; */
}

.content-container {
    /* max-width: 950px; */
    margin: auto;
}

.blog-main {
    background: #fff;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Blog Image */
.blog-main img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    margin-bottom: 35px;
}

/* Headings */
.blog-main h2 {
    font-size: 26px;
    margin: 40px 0 15px;
    color: #222;
}

/* Paragraphs */
.blog-main p {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 18px;
}

/* List */
.blog-main ul {
    margin: 25px 0;
    padding-left: 22px;
}

.blog-main li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Quote */
blockquote {
    background: #eef2ff;
    padding: 25px 30px;
    border-left: 6px solid #6f7cf5;
    margin: 40px 0;
    font-style: italic;
    color: #333;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-main {
        padding: 25px;
    }

    .blog-main h2 {
        font-size: 22px;
    }

    .blog-main p,
    .blog-main li {
        font-size: 15px;
    }
}

/* Tag */
.blog-tag {
    display: inline-block;
    background: #f5c26b;
    color: #333;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Title */
.blog-hero-blue h1 {
    color: #fff;
    font-size: 46px;
    line-height: 1.2;
    max-width: 900px;
    margin-bottom: 25px;
}

/* Meta Info */
.blog-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    color: #f1f1f1;
    font-size: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-hero-blue {
        padding: 60px 15px;
    }

    .blog-hero-blue h1 {
        font-size: 28px;
    }

    .blog-meta {
        font-size: 14px;
        gap: 15px;
    }
}

/* ===== HERO SECTION ===== */
.blog-hero {
    height: 300px;
    background: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085")
        center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.6);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hero-overlay h1 {
    font-size: 42px;
}

.hero-overlay p {
    margin-top: 10px;
    font-size: 18px;
}

/* ===== BLOG SECTION ===== */
.blog-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.blog-layout {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 30px;
}

/* ===== BLOG CARDS ===== */
.blog-cards {
    flex: 3;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content .category {
    font-size: 13px;
    color: #1fa3b8;
    font-weight: bold;
}

.blog-content h3 {
    margin: 10px 0;
    font-size: 20px;
}

.blog-content p {
    font-size: 14px;
    color: #555;
}

.blog-content a {
    display: inline-block;
    margin-top: 12px;
    text-decoration: none;
    color: #1fa3b8;
    font-weight: bold;
}

/* ===== CATEGORY SIDEBAR ===== */
.blog-category {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    height: fit-content;
}

.blog-category h3 {
    margin-bottom: 15px;
}

.blog-category ul {
    list-style: none;
}

.blog-category ul li {
    margin-bottom: 10px;
}

.blog-category ul li a {
    text-decoration: none;
    color: #333;
}

.blog-category ul li a:hover {
    color: #1fa3b8;
}

/* ===== STICKY CONTACT BUTTON ===== */
.sticky-contact-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sticky-btn {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.call-btn {
    background-color: #1fa3b8;
}

.call-btn:hover {
    background-color: #178697;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(31, 163, 184, 0.4);
}

/* Color animation for main button */
@keyframes colorPulse {
    0% {
        background-color: #E84C3D;
    }
    50% {
        background-color: #1fa3b8;
    }
    100% {
        background-color: #E84C3D;
    }
}

.call-btn.animated-pulse {
    animation: colorPulse 2s infinite;
}

.call-btn.animated-pulse:hover {
    animation: none;
    background-color: #178697;
}

/* Image styling for button */
.sticky-btn img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .sticky-contact-btn {
        bottom: 15px;
        right: 15px;
        gap: 12px;
    }
    
    .sticky-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .sticky-contact-btn {
        bottom: 10px;
        right: 10px;
        gap: 10px;
    }
    
    .sticky-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .blog-layout {
        flex-direction: column;
    }
}


/* google review */
 .google-reviews {
  background: #f2f2f2;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.review-container {
  max-width: 900px;
  margin: auto;
}

.google-logo {
  width: 120px;
  margin-bottom: 15px;
}

.google-reviews h2 {
  letter-spacing: 3px;
  font-size: 22px;
  margin-bottom: 15px;
}

.rating {
  margin-bottom: 25px;
}

.score {
  font-size: 24px;
  font-weight: 600;
  margin-right: 8px;
}

.stars {
  color: #f4b400;
  font-size: 20px;
}

.review-slider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-content {
  max-width: 600px;
  padding: 0 20px;
}

.avatar {
  width: 45px;
  height: 45px;
  background: #555;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: 600;
}

.review-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}

.review-content h4 {
  font-size: 15px;
  font-weight: 600;
}

.arrow {
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #666;
  padding: 10px;
}

.arrow:hover {
  color: #000;
}


/* gallery */
 .contact-hero-gallery {
  position: relative;
  width: 100%;
  height: 80vh;
  background-image: url("../img/galleybanner.jpg"); /* doctor background image */
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  padding: 0 8%;
  box-sizing: border-box;
}

/* dark overlay */
.contact-hero-gallery .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

@media (max-width: 768px) {
  .contact-hero-gallery {
    height: 60vh;
    padding: 0 20px;
    justify-content: center;
    text-align: center;
    background-position: center;
  }
}

 .gallery-section {
  padding: 60px 0;
  background: #f9f9f9;
  margin: 35px;
}

.gallery-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox-img {
  max-width: 85%;
  max-height: 85%;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.prev, .next {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
}

.prev { left: 20px; }
.next { right: 20px; }

/* Responsive */
@media(max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* faq */
.faq-section {
  padding: 70px 15px;
}

.container {
  max-width: 900px;
  margin: auto;
}

.faq-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
  color: #222;
}

.faq-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.faq-item {
  background: #fff;
  border-radius: 6px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #f1f1f1;
}

.icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}

.faq-answer p {
  padding: 15px 0;
  margin: 0;
  color: #555;
  line-height: 1.7;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 600px) {
  .faq-title {
    font-size: 28px;
  }

  .faq-question {
    font-size: 16px;
  }
}
/* gallery */
 .contact-hero-faq {
  position: relative;
  width: 100%;
  height: 80vh;
  background-image: url("../img/faqbanner.jpg"); /* doctor background image */
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  padding: 0 8%;
  box-sizing: border-box;
}

/* dark overlay */
.contact-hero-faq .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
@media (max-width: 768px) {
  .contact-hero-faq {
    height: 60vh;
    padding: 0 20px;
    justify-content: center;
    text-align: center;
    background-position: center;
  }
}

 .circle-section {
  padding: 80px 0;
  text-align: center;
  background: #fff;
}


.section-title {
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 500;
}

.circle-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.circle-box {
  width: 180px;
}

.circle-box img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  transition: 0.3s ease;
}

.circle-box img:hover {
  transform: scale(1.05);
}

.circle-box p {
  font-size: 15px;
  line-height: 1.5;
}


  .diagnosis-section {
  background: url('../img/backimgswnvr.jpg') no-repeat center center/cover;
  min-height: 550px;
  position: relative;
  display: flex;
  align-items: center;
}

/* Dark gradient overlay (left darker, right light) */
.overlay {
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75) 40%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.diagnosis-content {
  width: 85%;
  max-width: 600px;
  margin-left: 0%;
  color: #fff;
}

.diagnosis-content h2 {
  font-size: 40px;
  margin-bottom: 25px;
  font-weight: 500;
}

.diagnosis-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}


  .laser-benefits {
  padding: 80px 0;
  /* background: #f4f4f4; */
  text-align: center;
}

.section-title {
  font-size: 36px;
  margin-bottom: 60px;
  font-weight: 500;
}

.benefits-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.benefit-box {
  flex: 1;
  min-width: 150px;
  max-width: 200px;
}

.benefit-box img {
  width: 60px;
  margin-bottom: 20px;
}

.benefit-box p {
  font-size: 16px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .benefits-wrapper {
    justify-content: center;
  }

  .benefit-box {
    flex: 0 0 45%;
  }
}

@media (max-width: 576px) {
  .benefit-box {
    flex: 0 0 100%;
  }
}


  .why-centre {
  padding: 80px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 500;
}

.why-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.why-image {
  flex: 1;
}

.why-image img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.why-content {
  flex: 1;
}

.why-content ul {
  list-style: none;
  padding: 0;
}

.why-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-size: 16px;
}

.why-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1c9db0;
  font-size: 22px;
}

/* Responsive */
@media (max-width: 992px) {
  .why-wrapper {
    flex-direction: column;
  }
}


  .irc-section {
  padding: 80px 0;
  background: #f8f8f8;
}

.irc-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 500;
}

.irc-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.irc-box {
  flex: 1;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

/* Background Images */
.irc-left {
  background-image: url('../img/what-is-irc-treatment.jpg');
}

.irc-right {
  background-image: url('../img/irc2.jpg');
}

/* Dark overlay */
.irc-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.irc-content {
  position: relative;
  color: #fff;
  padding: 40px;
  max-width: 500px;
}

.irc-content h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.irc-content p {
  line-height: 1.7;
  margin-bottom: 15px;
}

.irc-content ul {
  list-style: none;
  padding: 0;
}

.irc-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.irc-content ul li::before {
  content: "•";
  color: #1c9db0;
  font-size: 18px;
  position: absolute;
  left: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .irc-wrapper {
    flex-direction: column;
  }
}



  .laser-section {
  background: url('../img/bckmntret.jpg') no-repeat center center/cover;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
}

/* Dark overlay */
.laser-overlay {
  /* background: rgba(0, 0, 0, 0.55); */
  width: 100%;
  padding: 80px 0;
}

.laser-content {
  width: 85%;
  margin: auto;
  max-width: 700px;
  color: #fff;
}

.laser-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 500;
}

.laser-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

  .treatment-section {
  padding: 80px 0;
  
}

.container-piles {
  width: 85%;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 20px;
}

.highlight-text {
  text-align: center;
  font-size: 18px;
  color: #1c9db0;
  font-weight: 600;
  margin-bottom: 60px;
}

.treatment-block {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 70px;
  flex-wrap: wrap;
}

.treatment-img img {
  width: 100%;
  max-width: 450px;
  border-radius: 6px;
}

.treatment-text {
  flex: 1;
  min-width: 300px;
}

.treatment-text h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.treatment-text ul {
  list-style: none;
  padding: 0;
}

.treatment-text ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  line-height: 1.7;
}

.treatment-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: #1c9db0;
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 992px) {
  .treatment-block {
    flex-direction: column;
  }
}

  .types-section {
  padding: 80px 0;
  background: #f8f8f8;
}

.container-piles {
  width: 85%;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 60px;
  color: #222;
}

.types-wrapper {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.type-box {
  text-align: center;
  max-width: 500px;
}

.type-box h3 {
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 25px;
  font-weight: 600;
}

.type-box img {
  width: 100%;
  max-width: 450px;
  margin-bottom: 20px;
}

.type-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  max-width: 400px;
  margin: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .types-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
}

  .piles-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.container-piles {
  width: 85%;
  margin: auto;
}

.section-title {
font-size: 36px;
    color: #000;
    font-family: "CenturyGothic-Bold";
    font-weight: 400;
    line-height: 1;
    text-align: center;
    margin-bottom: 35px;
}

.second-title {
  margin-top: 80px;
}

.piles-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.piles-image img {
  width: 350px;
  max-width: 100%;
}

.piles-text {
  max-width: 600px;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .piles-content {
    flex-direction: column;
    text-align: center;
  }

  .piles-text {
    max-width: 100%;
  }
}

 .contact-hero-piles {
  position: relative;
  width: 100%;
  height: 80vh;
  background-image: url("../img/piles-banner.jpg"); /* doctor background image */
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  padding: 0 8%;
  box-sizing: border-box;
}

/* dark overlay */
.contact-hero-piles .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

@media (max-width: 768px) {
  .contact-hero-piles {
    height: 60vh;
    padding: 0 20px;
    justify-content: center;
    text-align: center;
    background-position: center;
  }
}

/* anal- piles */
 .contact-hero-anal {
  position: relative;
  width: 100%;
  height: 80vh;
  background-image: url("../img/anal-fissure-banner.jpg"); /* doctor background image */
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  padding: 0 8%;
  box-sizing: border-box;
}

/* dark overlay */
.contact-hero-anal .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

@media (max-width: 768px) {
  .contact-hero-anal {
    height: 60vh;
    padding: 0 20px;
    justify-content: center;
    text-align: center;
    background-position: center;
  }
}

/* ===== ANAL FISSURE PAGE STYLES ===== */

/* Fissure Section */
.fissure-section {
  padding: 60px 20px;
  background: #f7f7f7;
  font-family: Arial, Helvetica, sans-serif;
}

.container-fissure {
  width: 1100px;
  margin: auto;
}

.main-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 40px;
  font-weight: 500;
}

.content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.image-area {
  flex: 1;
  text-align: center;
}

.image-area img {
  max-width: 100%;
  height: auto;
}

.text-area {
  flex: 1.4;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.text-area h3 {
  margin-top: 20px;
  font-size: 22px;
}

.text-area ul {
  margin-top: 10px;
  padding-left: 20px;
}

.text-area li {
  margin-bottom: 8px;
}

@media (max-width: 992px) {
  .container-fissure {
    width: 95%;
  }
  
  .main-title {
    font-size: 28px;
  }
  
  .content-wrapper {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .fissure-section {
    padding: 40px 15px;
  }
  
  .main-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  .content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  
  .image-area {
    width: 100%;
  }
  
  .text-area {
    flex: 1;
    font-size: 15px;
  }
  
  .text-area h3 {
    font-size: 18px;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .fissure-section {
    padding: 30px 10px;
  }
  
  .main-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .text-area {
    font-size: 14px;
  }
  
  .text-area h3 {
    font-size: 16px;
  }
}

/* Symptoms Section */
.symptoms-section {
  background: #2396a6;
  padding: 70px 20px;
  position: relative;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

.symptoms-container {
  width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.symptoms-content {
  color: #fff;
  max-width: 60%;
}

.symptoms-content h2 {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.3;
}

.symptoms-content ul {
  padding-left: 18px;
}

.symptoms-content li {
  margin-bottom: 12px;
  font-size: 16px;
}

.symptoms-image {
  width: 35%;
  text-align: right;
}

.symptoms-image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 992px) {
  .symptoms-container {
    width: 95%;
    gap: 20px;
  }
  
  .symptoms-content {
    max-width: 55%;
  }
  
  .symptoms-content h2 {
    font-size: 28px;
  }
  
  .symptoms-image {
    width: 40%;
  }
}

@media (max-width: 768px) {
  .symptoms-section {
    padding: 50px 20px;
  }
  
  .symptoms-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .symptoms-content {
    max-width: 100%;
  }
  
  .symptoms-content h2 {
    font-size: 24px;
  }
  
  .symptoms-image {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .symptoms-section {
    padding: 40px 15px;
  }
  
  .symptoms-content h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .symptoms-content li {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

/* Diagnosis Section */
.diagnosis-section {
  position: relative;
  padding: 90px 20px;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  background: url("../img/backimgswnvr (1).jpg") center/cover no-repeat;
}

.diagnosis-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.diagnosis-container {
  position: relative;
  width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.diagnosis-content {
  width: 55%;
}

.diagnosis-content h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 20px;
}

.diagnosis-content p {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 16px;
  color: #eaeaea;
}

.diagnosis-image {
  width: 40%;
  text-align: right;
}

.diagnosis-image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 992px) {
  .diagnosis-container {
    width: 95%;
    gap: 30px;
  }
  
  .diagnosis-content {
    width: 60%;
  }
  
  .diagnosis-content h2 {
    font-size: 28px;
  }
  
  .diagnosis-image {
    width: 35%;
  }
}

@media (max-width: 768px) {
  .diagnosis-section {
    padding: 60px 20px;
  }
  
  .diagnosis-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .diagnosis-content {
    width: 100%;
  }
  
  .diagnosis-content h2 {
    font-size: 24px;
  }
  
  .diagnosis-content p {
    font-size: 15px;
  }
  
  .diagnosis-image {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .diagnosis-section {
    padding: 50px 15px;
  }
  
  .diagnosis-content h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .diagnosis-content p {
    font-size: 14px;
  }
}

/* Prevention Section */
.prevention-section {
  padding: 80px 20px;
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  position: relative;
}

.container-prevention {
  width: 1100px;
  margin: auto;
}

.prevention-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.prevention-image {
  width: 45%;
}

.prevention-image img {
  width: 100%;
  height: auto;
  display: block;
}

.prevention-content {
  width: 50%;
}

.prevention-content ul {
  padding-left: 20px;
}

.prevention-content li {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 16px;
}

.prevention-content li::marker {
  color: #2396a6;
}

@media (max-width: 992px) {
  .container-prevention {
    width: 95%;
  }
  
  .prevention-wrapper {
    gap: 40px;
  }
  
  .prevention-image {
    width: 50%;
  }
  
  .prevention-content {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .prevention-section {
    padding: 60px 20px;
  }
  
  .prevention-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  
  .prevention-image {
    width: 100%;
  }
  
  .prevention-content {
    width: 100%;
  }
  
  .prevention-content li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .prevention-section {
    padding: 50px 15px;
  }
  
  .prevention-content li {
    font-size: 14px;
    margin-bottom: 12px;
  }
}

/* Treatment Section */
.treatment-section {
  padding: 80px 20px;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  position: relative;
}

.container-treatment {
  width: 1100px;
  margin: auto;
}

/* Tabs */
.tabs {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.tab {
  background: none;
  border: none;
  margin: 0 10px;
  padding: 10px 5px;
  font-size: 16px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab.active {
  color: #2396a6;
  border-color: #2396a6;
}

.tab:hover {
  color: #2396a6;
}

/* Content */
.tab-content-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.tab-image {
  width: 45%;
}

.tab-image img {
  width: 100%;
  height: auto;
}

.tab-text {
  width: 55%;
}

.tab-text ul {
  padding-left: 20px;
}

.tab-text li {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 16px;
}

.tab-text li::marker {
  color: #2396a6;
}

@media (max-width: 992px) {
  .container-treatment {
    width: 95%;
  }
  
  .tabs {
    gap: 5px;
  }
  
  .tab {
    font-size: 14px;
    margin: 0 5px;
  }
  
  .tab-content-wrapper {
    gap: 30px;
  }
  
  .tab-image {
    width: 50%;
  }
  
  .tab-text {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .treatment-section {
    padding: 60px 20px;
  }
  
  .tabs {
    margin-bottom: 30px;
  }
  
  .tab {
    font-size: 13px;
    padding: 8px 4px;
  }
  
  .tab-content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  
  .tab-image {
    width: 100%;
  }
  
  .tab-text {
    width: 100%;
  }
  
  .tab-text li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .treatment-section {
    padding: 50px 15px;
  }
  
  .tabs {
    gap: 0;
  }
  
  .tab {
    font-size: 11px;
    padding: 8px 2px;
    margin: 0 2px;
  }
  
  .tab-text li {
    font-size: 14px;
    margin-bottom: 12px;
  }
}


.award-section {
    padding: 70px 20px;
    background: #fff;
    text-align: center;
}

.award-section .container {
    max-width: 1200px;
    margin: auto;
}

/* Top Icon */
.award-icon {
    font-size: 45px;
    margin-bottom: 15px;
}

/* Heading */
.award-section h2 {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 400;
    color: #111;
    margin-bottom: 60px;
}

/* Content Area */
.award-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 70px;
    flex-wrap: wrap;
}

/* Image Box */
.award-image {
    width: 520px;
    height: 380px;
    background: #e5e5e5;
    border-radius: 10px;
}

/* Text Area */
.award-text {
    max-width: 500px;
    text-align: left;
}

.award-text p {
font-size: 16px;
    margin-top: -20%;
    margin-bottom: 35px;
}
.award-icon img{
    width: 70px;
}

/* Read More */
.read-more {
    text-decoration: none;
    color: #666;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}

.read-more:hover {
    color: #00a6c7;
}

/* Bottom Stats */
.award-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
}

.stat-icon {
    font-size: 45px;
    margin-bottom: 10px;
}

.stat-box h3 {
    font-size: 28px;
    color: #f26b2c;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 18px;
    color: #555;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .award-section h2 {
        font-size: 28px;
    }

    .award-content {
        flex-direction: column;
    }

    .award-image {
        width: 100%;
        height: 300px;
    }

    .award-text {
        text-align: center;
    }

    .award-text p {
        font-size: 17px;
    }

    .award-stats {
        gap: 40px;
    }
}


.gp-achievement-zone{
    width:100%;
    background:#ffffff;
    padding:80px 20px;
    position:relative;
    overflow:hidden;
}

/* LIGHT BG ICON */
.gp-achievement-zone::after{
    content:"";
    position:absolute;
    right:40px;
    top:20px;
    width:180px;
    height:180px;
    background:url('images/bg-icon.png') no-repeat center;
    background-size:contain;
    opacity:0.05;
    pointer-events:none;
}

/* WRAPPER */
.gp-achievement-wrapper{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
}

/* CARD */
.gp-achievement-card{
    flex:1;
    min-width:250px;
    text-align:center;
    position:relative;
}

/* ICON */
.gp-achievement-icon{
    width:85px;
    height:85px;
    margin:auto auto 22px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
}

/* IMAGE */
.gp-achievement-icon img{
    width:70px;
    height:70px;
    object-fit:contain;
}

/* HEADING */
.gp-achievement-card h3{
    font-size:38px;
    font-weight:700;
    margin-bottom:10px;
    color:#0fa7c3;
    transition:0.4s ease;
    animation:gpColorShift 1s infinite alternate;
}

/* TEXT */
.gp-achievement-card p{
    font-size:28px;
    color:#444;
    line-height:1.4;
    font-weight:400;
}

/* COLOR ANIMATION */
@keyframes gpColorShift{
    0%{
        color:#0fa7c3;
    }
    100%{
        color:#f28c28;
    }
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:991px){

    .gp-achievement-zone{
        padding:60px 20px;
    }

    .gp-achievement-wrapper{
        gap:50px;
    }

    .gp-achievement-card{
        min-width:45%;
    }

    .gp-achievement-card h3{
        font-size:32px;
    }

    .gp-achievement-card p{
        font-size:24px;
    }
}

@media(max-width:767px){

    .gp-achievement-wrapper{
        flex-direction:column;
    }

    .gp-achievement-card{
        width:100%;
    }

    .gp-achievement-icon{
        width:75px;
        height:75px;
    }

    .gp-achievement-icon img{
        width:60px;
        height:60px;
    }

    .gp-achievement-card h3{
        font-size:28px;
    }

    .gp-achievement-card p{
        font-size:21px;
    }

    .gp-achievement-zone::after{
        width:120px;
        height:120px;
        right:10px;
    }
}



.gl-about-banner-sec{
    width:100%;
    height:720px;
    position:relative;
    overflow:hidden;
    font-family:'Poppins', sans-serif;
}

/* BACKGROUND IMAGE */
.gl-about-banner-bg{
    width:100%;
    height:100%;
}

.gl-about-banner-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* DARK OVERLAY */
.gl-about-banner-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.10)
    );
}

/* MAIN CONTENT */
.gl-about-banner-content{
    position:absolute;
    bottom:45px;
    left:50%;
    transform:translateX(-50%);
    width:92%;
    max-width:1450px;

    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:30px;
    z-index:5;
}

/* LEFT SIDE */
.gl-about-left-box{
    display:flex;
    align-items:center;
    gap:18px;
}

/* CALL ICON */
.gl-about-call-icon{
    width:74px;
    height:74px;
    border-radius:50%;
    background:#f47d32;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;
}

.gl-about-call-icon img{
    width:34px;
    height:34px;
    object-fit:contain;
}

/* TITLE */
.gl-about-title-wrap h1{
    color:#fff;
    font-size:40px;
    font-weight:300;
    line-height:1;
    margin:0;
}

/* RIGHT SIDE ACHIEVEMENTS */
.gl-about-achievement-wrap{
    display:flex;
    align-items:center;
    gap:70px;
    flex-wrap:wrap;
}

/* ITEM */
.gl-about-achievement-item{
    display:flex;
    align-items:center;
    gap:18px;
}

/* ICON */
.gl-about-achievement-icon{
    width:60px;
    height:60px;
    flex-shrink:0;
}

.gl-about-achievement-icon img{
    width:100%;
    height:100%;
    object-fit:contain;
}

/* TEXT */
.gl-about-achievement-text h3{
    color:#fff;
    font-size:25px;
    font-weight:600;
    margin:0 0 3px;
    line-height:1.2;
}

.gl-about-achievement-text p{
    color:#fff;
    font-size:22px;
    font-weight:300;
    margin:0;
    line-height:1.3;
}

/* =========================================
        TABLET RESPONSIVE
========================================= */

@media(max-width:1200px){

    .gl-about-banner-sec{
        height:650px;
    }

    .gl-about-banner-content{
        flex-direction:column;
        align-items:flex-start;
        gap:35px;
    }

    .gl-about-achievement-wrap{
        gap:40px;
    }

    .gl-about-title-wrap h1{
        font-size:60px;
    }
}

/* =========================================
        MOBILE RESPONSIVE
========================================= */

@media(max-width:768px){

    .gl-about-banner-sec{
        height:700px;
    }

    .gl-about-banner-content{
        bottom:30px;
        width:90%;
    }

    .gl-about-left-box{
        gap:14px;
    }

    .gl-about-call-icon{
        width:58px;
        height:58px;
    }

    .gl-about-call-icon img{
        width:28px;
        height:28px;
    }

    .gl-about-title-wrap h1{
        font-size:42px;
    }

    .gl-about-achievement-wrap{
        width:100%;
        flex-direction:column;
        align-items:flex-start;
        gap:24px;
    }

    .gl-about-achievement-item{
        gap:14px;
    }

    .gl-about-achievement-icon{
        width:48px;
        height:48px;
    }

    .gl-about-achievement-text h3{
        font-size:20px;
    }

    .gl-about-achievement-text p{
        font-size:17px;
    }
}

/* =========================================
   MORE TREATMENTS SECTION CSS
========================================= */

.mt-treatment-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.mt-treatment-heading {
    text-align: center;
    margin-bottom: 50px;
}

.mt-treatment-heading h2 {
    font-size: 42px;
    color: #333;
    font-weight: 400;
    letter-spacing: 1px;
}

.mt-treatment-slider-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.mt-treatment-container {
    width: 100%;
    max-width: 1360px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.mt-treatment-card {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.mt-treatment-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.mt-treatment-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.52);
    transition: 0.4s ease;
}

.mt-treatment-content {
    position: absolute;
    left: 32px;
    bottom: 34px;
    z-index: 5;
}

.mt-treatment-content h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 10px;
    letter-spacing: 0.2px;
}

.mt-treatment-content p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    opacity: 0.95;
}

.mt-treatment-card:hover img {
    transform: scale(1.05);
}

.mt-treatment-card:hover .mt-treatment-overlay {
    background: rgba(0, 0, 0, 0.62);
}

.mt-slide-btn {
    background: none;
    border: none;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    padding: 10px;
    transition: 0.3s ease;
}

.mt-slide-btn:hover {
    color: #1fa3b8;
    transform: scale(1.2);
}

@media(max-width: 991px) {
    .mt-treatment-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .mt-treatment-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .mt-treatment-content {
        left: 22px;
        bottom: 24px;
    }

    .mt-treatment-content h3 {
        font-size: 24px;
    }

    .mt-treatment-content p {
        font-size: 15px;
    }

    .mt-slide-btn {
        display: none;
    }
}