@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
  --primary-color: #1fb5b9;
  --secondary-color: #dc280d;
  --black: #000;
  --white: #fff;
  --light-gray: #eaeaea;
  --primary-bg: linear-gradient(90deg, #f3565e, #ffeaea);
  --theme-dark: #045f62;
  --gradient-bg: linear-gradient(135deg, #dc280d 0%, #1fb5b9 100%);
  --primary-gradient: linear-gradient(181deg, #b1f5f7, #ffffff);

  --contact-page-primary-color: #2C5F6F;
  --contact-page-secondary-color: #4BA89F;
  --contact-page-accent-color: #D94D42;
  --contact-page-text-dark: #2C3E50;
  --contact-page-text-light: #6C757D;
  --contact-page-background: #F8F9FA;
  --contact-page-white: #FFFFFF;
  --contact-page-border-color: #E0E0E0;
}

::selection {
  background-color: var(--secondary-color);
  color: var(--white);
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}




.ban-btn {
  background-color: var(--primary-color);
  color: #fff;
  display: inline-block;
  padding: 10px 25px 12px;
  border-radius: 5px;
  text-decoration: none;
  margin-bottom: 20px;
  box-shadow: 0 0 10px #00000071;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.ban-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  aspect-ratio: 1/1;
  border-radius: 100px;
  background: var(--secondary-color);
  transition: all 0.5s ease;
}

.ban-btn:hover::before {
  width: 110%;
  border-radius: 0;

}

.ban-btn span {
  position: relative;
  z-index: 2;
}

.ban-btn2 {
  background-color: var(--secondary-color);
  color: #fff;
  display: inline-block;
  padding: 10px 25px 12px;
  border-radius: 5px;
  text-decoration: none;
  margin-bottom: 20px;
  box-shadow: 0 0 10px #00000071;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.ban-btn2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  aspect-ratio: 1/1;
  border-radius: 100px;
  background: var(--primary-color);
  transition: all 0.5s ease;
}

.ban-btn2:hover::before {
  width: 110%;

}

.ban-btn2 span {
  position: relative;
  z-index: 2;
}



@media (max-width: 768px) {

  .ban-btn,
  .ban-btn2 {
    padding: 8px 25px 10px !important;
    font-size: 1rem !important;
  }
}



/* top nav */


.top-header {
  background-color: var(--theme-dark);
  padding: 7px 0;
}

@media (max-width: 991px) {
  .top-header {
    display: none;
  }
}

.top-text {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
}

.top-contact {
  align-items: center;
  display: flex;
  gap: 15px;
  align-items: center;
}

.top-text li,
.top-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);

}

.top-text li i {
  color: var(--white);
  font-size: 16px;
}

.top-text li a {
  margin-right: 8px;
  font-weight: 400;
  font-size: 15px;
  color: var(--white);
}

.top-social {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-bottom: 0;
}

.top-social li a {
  transition: color 0.3s ease;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  color: var(--white);
  border: 2px solid var(--white);

}

.top-social li a.fb {
  background: #3b5998;
}

.top-social li a.insta {
  background: #e4405f;
}

.top-social li a.twitter {
  background: #1da1f2;
}

.top-social li a.linkedin {
  background: #0066c8;
}

.top-social li a.youtube {
  background: #ff0000;
}

/* menu  */


.temp-logo {
  display: flex;
  align-items: center;
}

.temp-logo img {
  width: 50px;
  margin-right: 10px;
}

.logo-band h3 {
  font-size: 23px;
  color: var(--primary-color);
  margin: 0;
  font-weight: 600;
}

.logo-band span {
  font-size: 11px;
  color: #444;
  line-height: 14px;
  font-weight: 500;
  display: block;
  margin: 0;
}

.custom-navbar {
  background: var(--primary-gradient);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  /* margin-bottom: -110px; */
}

.custom-navbar .container {
  /* background: var(--white); */
  border-radius: 0 0 20px 20px;
}

@media (max-width: 991px) {
  .custom-navbar .container {
    padding: 0;
  }

  .custom-navbar .container {
    border-radius: 0;
  }
}


.nav-toggle {
  display: none;
  text-align: right;

  button {
    font-size: 24px;
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
  }
}

ul.nav-links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  gap: 20px;
  justify-content: end;
}

ul.nav-links li {
  position: relative;
  padding: 20px 5px;
}

ul.nav-links a {
  text-decoration: none;
  color: var(--black);
  font-weight: 400;
  font-size: 16.5px;
  border: 1px solid transparent;
  border-radius: 5px;
  text-transform: capitalize;
  padding: 5px;
  display: block;
}
/* 
ul.nav-links li:first-child a {
  color: var(--primary-color);
  border: 1px solid var(--light-gray);
} */

ul.nav-links a:hover {
  color: var(--primary-color);
  border: 1px solid var(--light-gray);
}

.dropdown-menu {
  position: absolute;
  top: 150%;
  left: 0;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  display: flex;
  padding: 0;
  flex-direction: column;
  min-width: 250px;
  width: max-content;
  z-index: 999;
  transition: all 0.4s ease;
}

.dropdown-menu li {
  padding: 0 !important;
}

.dropdown-menu a {
  padding: 7px 10px !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  color: var(--black) !important;
  border: none !important;
  border-radius: 0 !important;
  border-bottom: 1px solid var(--light-gray) !important;
  position: relative;
}

.dropdown-menu li a::before {
  position: absolute;
  content: "";
  top: 99%;
  left: 0;
  width: 0;
  height: 1px !important;
  background: var(--primary-color);
  transition: width 0.5s ease;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu a:hover::before {
  width: 100%;
}

/* === DESKTOP ONLY: Show dropdown on hover === */
@media (min-width: 992px) {
  .has-dropdown:hover .dropdown-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
    display: flex;
  }
}

/* === MOBILE STYLES === */
@media (max-width: 991px) {
  .nav-toggle {
    display: block;
  }

  ul.nav-links {
    flex-direction: column;
    display: none;
    width: 100%;
    margin-top: 10px;
    gap: 0;
    /* max-height: 100vh; */
    background: var(--white);
    overflow: auto;
  }

  ul.nav-links.show {
    display: flex;
  }

  ul.nav-links li {
    width: 100%;
    padding: 0 !important;
  }

  ul.nav-links a {
    padding: 8px 8px;
    border: none !important;
    border-radius: 0 !important;
    border-bottom: 1px solid #ccc !important;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    visibility: visible;
    opacity: 1;
    border: none;
  }

  .dropdown-menu a {
    padding: 8px 8px 8px 23px !important;
    font-size: 16px !important;
  }

  .has-dropdown .dropdown-menu {
    display: none;
  }

  .has-dropdown.show .dropdown-menu {
    display: flex;
  }
}

/* carousel customs */

.services-slider .item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.owl-carousel .owl-item img {
  width: auto !important;
  margin: auto !important;
}

/* Custom Nav Buttons */

.owl-nav {
  position: absolute;
  top: 50%;
  left: -95px !important;
  width: 116%;
  color: #000;

  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 15px;
  pointer-events: none;
}

.owl-nav button {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  font-size: 20px;
  color: #000;
  width: 45px !important;
  height: 45px !important;
  border-radius: 100px !important;
  border: 2px solid #000 !important;
  border-radius: 50%;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  background: #642a00 !important;
  transform: scale(1.1);

  color: #fff !important;
}

.owl-dots {
  margin-top: 15px;
  text-align: center;
}

@media (max-width: 768px) {
  .owl-nav {
    width: 100%;
    left: 0 !important;
    transform: translateY(-50%);
    /* top: 100%; */
    justify-content: space-between;
  }

  .owl-nav {
    left: 50% !important;
    right: 0 !important;
    top: 110%;
    width: 130px !important;
    transform: translateX(-50%) translateY(-50%);
  }

  .owl-nav button {
    width: 40px !important;
    height: 40px !important;
  }
}


/* dr. profile */

.doctor-profile-section {
  background-image: url(../img/bg/about_bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 30px;
}

.doctor-name {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.doctor-designation {
  font-size: 16px;
  color: #222;
  padding: 8px 12px;
  border-radius: 50px;
  font-weight: 400;
  background: var(--primary-bg);
  margin-bottom: 10px;
  display: inline-block;
}

.doctor-qualifications {
  font-weight: 600;
  color: #333;
  font-size: 16px;
  margin-bottom: 10px;
}

.doctor-description {
  color: #333;
  font-size: 16px;
  margin-bottom: 10px;
}

.specialties .icon-box {
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: #359ca7;
  color: #fff;
  text-align: center;
  line-height: 50px;
  border-radius: 4px;
  font-size: 18px;
  flex-shrink: 0;
}

.specialties span {
  align-self: center;
  font-weight: 400;
}

.image-box {
  padding: 10px;
  position: relative;
  height: 450px;
  width: 450px;
  display: flex;

  align-items: center;
  justify-content: center;
  display: inline-block;
}

.image-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg/about_img_shape01.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 8px;
}

.image-box img {
  width: 410px;
  border: 8px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  position: relative;
  height: auto;
  aspect-ratio: 1 / 1.01;
  object-fit: cover;
}

.doc-exp {
  position: absolute;
  bottom: 50px;
  right: -30px;
  width: 250px;
  background-color: #fff;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

@media (max-width: 767px) {
  .doc-exp {
    width: 300px;
    bottom: 20px;
    right: 50%;
    justify-content: center;
    transform: translateX(50%);
  }
}

.doc-exp h3 {
  font-size: 48px;
  color: var(--primary-color);
  font-weight: 800;
  margin: 0 15px 0 0;
}

.doc-exp p {
  font-size: 22px;
  color: #000;
  font-weight: 500;
  margin: 0;
  text-align: start;
  line-height: 25px;

}

@media (max-width: 767.98px) {
  .doctor-profile-section {
    padding: 30px 0;
  }

  .specialties .d-flex {
    flex-direction: row;
    align-items: center;
  }

  .btn-custom {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }

  .image-box {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: 450px;
    margin: 0 auto;
  }

  .image-box img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

.doctor-about-container {
  line-height: 1.6;
  color: var(--secondary-color);
  background: var(--light-gray);
}

.doctor-section-title {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
}

.doctor-section-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  position: absolute;
  bottom: -10px;
  left: 0;
}

.doctor-info-card {
  background: var(--white);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  border-left: 4px solid var(--secondary-color);
  transition: transform 0.3s ease;
}

.doctor-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.doctor-publication-item {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 3px solid var(--primary-color);
}

.doctor-publication-title {
  color: #373634;
  font-weight: 600;
  margin-bottom: 10px;
}

.doctor-journal-info {
  color: #666;
  font-style: italic;
  margin-bottom: 8px;
}

.doctor-authors {
  color: #2c3e50;
  font-weight: 500;
}

.doctor-text-muted {
  color: #333;
}

@media (max-width: 768px) {
  .doctor-info-card {
    padding: 10px 0;
    box-shadow: none;
    margin: 0;
    border: none;
  }

  .doctor-publication-item {
    padding: 10px 0;
    border: none;
    background-color: #fff;
    border-bottom: 3px solid var(--primary-color);
    border-top: 3px solid var(--primary-color);
  }
}

.doctor-qualification-list {
  li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 25px;
    font-weight: 400;
  }
}

.doctor-info-card strong {
  font-weight: 500;

}

/* services */

.services-grid-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  padding-bottom: 5px;
  margin-bottom: 1rem;
  position: relative;
}

.services-grid-title::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  width: 200px;
  height: 3px;
  background: linear-gradient(135deg, var(--primary-color) 50%, var(--secondary-color) 0%);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .services-grid-title {
    font-size: 1.5rem;
  }

  .services-grid-title::before {
    width: 120px;
    /* height: 2px; */
  }
}

.custom-card {
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

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

.image-overlay {
  position: relative;
  overflow: hidden;
}

.image-overlay img {
  transition: transform 0.3s ease;
  width: 100%;
  aspect-ratio: 5/4;

  object-fit: cover;
}

.image-overlay:hover img {
  transform: scale(1.1);
}

.card-img-overlay-custom {
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

@media (max-width: 576px) {
  .card-img-overlay-custom {
    padding: 1rem;
  }
}

/* Hide all content initially */
.slide-content {
  opacity: 1;
  transform: translateY(85%);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Show all content on hover */
.custom-card:hover .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.hid-text {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom-card:hover .hid-text {
  opacity: 1;
}

.card-title {
  color: white;
  font-weight: 600;
  margin-bottom: 0;
  font-size: 1.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-text {
  color: white;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-custom {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  align-self: flex-start;
}

.btn-custom:hover {
  background: white;
  color: #333;
  transform: translateY(-2px);
}

.section-heading h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.section-heading h2::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  width: 150px;
  height: 4px;
  background: linear-gradient(135deg, #224fa3, #5907bd);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .section-heading h2 {
    font-size: 1.8rem;
    text-transform: capitalize;
  }

  .section-heading h2::before {
    width: 100px;
    height: 3px;
  }
}




/* video  */

.video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
  cursor: pointer;
}

.video-card:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;

  left: 50%;
  font-size: 3rem;
  color: white;
  transform: translate(-50%, -50%);
  /* background: rgba(0, 0, 0, 0.4); */
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s;

  i {
    color: #fff;
    position: relative;
    z-index: 1;
  }
}

/* Modal iframe */
.modal-video iframe {
  width: 100%;
  height: 400px;
}

@media (max-width: 768px) {
  .video-section {
    padding: 40px 0;
  }

  .modal-video iframe {
    height: 250px;
  }
}


/* gallery */

/* Event Glimpses Section */
.event-glimpses {
  padding: 40px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-image {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay i {
  color: white;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.gallery-item:hover .overlay i {
  transform: scale(1.2);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
}

.lightbox-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 90%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.lightbox-image.loaded {
  opacity: 1;
  transform: scale(1);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: 600;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.close-btn:hover {
  color: #ff6b6b;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  padding: 15px 20px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.prev-btn {
  left: 30px;
  z-index: 10;
}

.next-btn {
  right: 30px;
}

.image-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 16px;
  backdrop-filter: blur(10px);
  font-weight: 500;
}

.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-btn {
    padding: 10px 15px;
    font-size: 20px;
    width: 50px;
    height: 50px;
    top: 80%;
  }

  .prev-btn {
    left: 15px;
  }

  .next-btn {
    right: 15px;
  }

  .close-btn {
    font-size: 30px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .lightbox-content {
    padding: 10px;
  }

  .nav-btn {
    padding: 8px 12px;
    font-size: 18px;
    width: 45px;
    height: 45px;
  }
}


/* google map cards  */

.location-section {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  padding: 60px 0;
}


.location-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.3);
  height: 300px;
  position: relative;
}

.map-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #e5e7eb36 0%, #d1d5db 100%);
  background-image: repeating-linear-gradient(45deg,
      rgba(156, 163, 175, 0.1) 0px,
      rgba(156, 163, 175, 0.1) 10px,
      transparent 10px,
      transparent 20px),
    radial-gradient(circle at 30% 40%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%),
    radial-gradient(circle at 70% 60%,
      rgba(16, 185, 129, 0.1) 0%,
      transparent 50%);
}

.map-background iframe {
  /* aspect-ratio: 2/1; */
  height: 300px;
  width: 100%;
}

.location-card::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.location-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* background: linear-gradient(transparent 0, rgba(0, 0, 0, 0.7) 100%); */
  color: white;
  padding: 12px 12px 12px;
  z-index: 2;
}

.location-name {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.location-address {
  font-size: 16px;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  color: #fff;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  line-height: 22px;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .location-section {
    padding: 50px 0;
  }

  .location-overlay {
    padding: 12px;
  }

  .location-pin {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .location-name {
    font-size: 1.1rem;
  }

  .location-address {
    font-size: 0.85rem;
  }
}




/* breadcrumb  */

.breadcrumb-section {
  background: linear-gradient(120deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: center;
}

.breadcrumb-svg-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.breadcrumb-container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 0.5rem;
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-item a:hover {
  color: #ffe6e6;
}

.breadcrumb-item.active {
  color: #fff;
  font-weight: 600;
}

.breadcrumb-title {
  font-size: 2.2rem;
  color: #fff;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}

.breadcrumb-title-icon {
  color: #fff;
  font-size: 2.1rem;
}

.breadcrumb-badge {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 10px rgba(42, 128, 134, 0.08);
}

.breadcrumb-desc {
  color: #f8f8f8 !important;
  font-size: 1.1rem !important;
  max-width: 600px;
  margin-bottom: 0 !important;
}

.breadcrumb-dot-top,
.breadcrumb-dot-bottom {
  position: absolute;
  color: #fff;
  opacity: 0.18;
  z-index: 2;
}

.breadcrumb-dot-top {
  top: 18px;
  right: 40px;
  display: flex;
  gap: 8px;
}

.breadcrumb-dot-bottom {
  bottom: 18px;
  left: 40px;
  display: flex;
  gap: 6px;
}

@media (max-width: 768px) {
  .breadcrumb-section {
    min-height: 150px;
    padding: 30px 0 20px 0;
  }

  .breadcrumb-title {
    font-size: 1.4rem;
  }

  .breadcrumb-title-icon {
    font-size: 1.3rem;
  }

  .breadcrumb-badge {
    font-size: 0.9rem;
    padding: 5px 12px;
  }

  .breadcrumb-desc {
    font-size: 0.98rem;
  }
}



/* service page  */

.service-content {
  padding: 30px 20px;
  background-color: #f4feff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}



.service-top-img img {
  border-radius: 15px;
  overflow: hidden;
  /* aspect-ratio: 16/9;
  object-fit: cover; */
  margin-bottom: 20px;
}


.service-content-text h2,
.service-content-text h3,
.service-content-text h4 {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--secondary-color);
}



.service-content-text p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 23px;
  color: var(--black);
}

.service-content-text ul,
.service-content-text ol {
  padding-left: 25px;
  margin-bottom: 15px;
}

.service-content-text ul li,
.service-content-text ol li {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 23px;
  color: var(--black);
}

.service-content-text strong {
  font-weight: 600;
}

.service-sidebar {
  background: var(--theme-dark);
  padding: 20px 12px;
  border-radius: 15px;
}

.sidebar-doc-details {
  margin: 0 0 20px;
  overflow: hidden;
}

.sidebar-doc-heading {
  background-color: var(--secondary-color);
  border-radius: 15px;

}

.sidebar-doc-heading h2 {
  font-size: 28px;
  color: #fff;
  border-radius: 15px;
  margin: 0 0 10px;
  padding: 8px;
  color: var(--secondary-color);
  font-weight: 600;
  background: var(--white);
  text-align: center;
}

.sidebar-doc-image {
  width: 100%;
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;

  img {

    aspect-ratio: 4/5;
    object-fit: cover;
  }
}

.sidebar-doc-name {
  padding: 10px;
  margin-top: 10px;
  border-radius: 15px;
  background: var(--white);
}

.sidebar-doc-name h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.sidebar-doc-name p {
  font-size: 15px;
  margin: 0;
  font-weight: 400;
  line-height: 1.4;
}

.service-topic-links {
  width: 100%;
  overflow: hidden;
  /* border-radius: 15px; */
  /* background: var(--white); */
  /* border: 2px solid var(--white); */
}

.service-link {
  overflow: hidden;
}



.service-link a {
  display: block;
  color: var(--white);
  background: var(--primary-color);
  border-bottom: 3px solid var(--secondary-color);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  border-radius: 4px;
  padding: 12px 10px;
  line-height: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;

  span {
    position: relative;
  }

}

.service-link a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-radius: 4px;
  background: var(--secondary-color);
  transition: all 0.5s ease;
  border: 2px solid var(--white);
}

.service-link a:hover::before {
  width: 100%;
}

.service-link a:hover {
  position: relative;
  color: #fff;
}

.service-topic-links .service-link:last-child a {
  border-bottom: none;
}

.sidebar-contact-details {
  background-image: url('../img/bg/services-sidebar-img.png');
  position: relative;
  text-align: center;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 13px;
  overflow: hidden;
  border: 2px solid var(--white);
}

.bg-overlay {
  padding: 30px 10px 100px 10px;
  height: 100%;
  width: 100%;
  background: #e2030e92;
  opacity: 0.8;



}

.appointment-btn {
  background-color: var(--primary-color);
  color: #fff !important;
  padding: 8px 15px !important;
  border-radius: 7px;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  display: inline-block;
  position: relative;
  border: none;
}

.appointment-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--secondary-color);
  transition: width 0.5s ease;

  border-right: 2px solid var(--white);
  /* z-index: 1; */
}

.appointment-btn:hover::before {
  width: 100%;
}


.appointment-btn span {
  position: relative;
  /* z-index: 2; */
}

@media (max-width: 992px) {
  .appointment-btn {
    padding: 6px 20px !important;
    margin: 10px 0 10px 12px;
    font-size: 14px;
    display: inline-block !important;

  }
}

.sidebar-contact-icon {
  padding-bottom: 15px;
}

.sidebar-contact-head h3 {
  font-size: 24px;
  color: #fff;
  padding-bottom: 15px;
  position: relative;
  border-bottom: 1px solid #ccc;
}

.sidebar-contact-head p {
  text-align: center;
  margin: 0;
}

.sidebar-contact-head p a {
  color: #fff;
  font-size: 20px;
}

.sidebar-contact-head .mail a {
  font-size: 15px;
}

.sidebar-contact-btn {
  text-align: center;
  padding-top: 30px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

/* .sidebar-contact-form {
  background-color: var(--e2030f);
  padding: 20px 12px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
} */

.sidebar-form {
  padding: 15px;
  background: var(--gradient-bg);
  border-radius: 15px;
  overflow: hidden;
}

.sidebar-form-group {
  margin-bottom: 15px;
}

.form-control {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 5px var(--primary-color);
}


.sidebar-form-btn {
  border: none;
}

.text-white {
  color: #fff;
}


@media (max-width: 768px) {
  .service-content {
    padding: 0;
    background-color: transparent;
    box-shadow: none;
  }

  .service-top-img img {
    aspect-ratio: inherit;
  }

}


/* contact page   */

.contact-page-section {
  padding: 60px 0;
  min-height: 100vh;
}

.contact-page-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-page-section-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--contact-page-primary-color);
  margin-bottom: 12px;
}

.contact-page-section-header p {
  font-size: 1.1rem;
  color: var(--contact-page-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.contact-page-info-card {
  background: var(--contact-page-white);
  border-radius: 16px;
  padding: 40px;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--contact-page-border-color);
}

.contact-page-info-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--contact-page-primary-color);
  margin-bottom: 30px;
}

.contact-page-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--contact-page-border-color);
}

.contact-page-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-page-info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--contact-page-secondary-color), var(--contact-page-primary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-page-info-icon i {
  color: var(--contact-page-white);
  font-size: 20px;
}

.contact-page-info-details h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--contact-page-text-dark);
  margin-bottom: 6px;
}

.contact-page-info-details p {
  font-size: 0.95rem;
  color: var(--contact-page-text-light);
  margin: 0;
  line-height: 1.5;
}

.contact-page-info-details a {
  color: var(--contact-page-text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-page-info-details a:hover {
  color: var(--contact-page-secondary-color);
}

.contact-page-social-links {
  margin-top: 35px;
  padding-top: 35px;
  border-top: 1px solid var(--contact-page-border-color);
}

.contact-page-social-links h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--contact-page-text-dark);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-page-social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-page-social-icon {
  width: 40px;
  height: 40px;
  background: var(--contact-page-background);
  border: 1px solid var(--contact-page-border-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-page-social-icon:hover {
  background: var(--contact-page-primary-color);
  border-color: var(--contact-page-secondary-color);
  transform: translateY(-2px);
}

.contact-page-social-icon i {
  color: var(--contact-page-text-light);
  font-size: 16px;
}

.contact-page-social-icon:hover i {
  color: var(--contact-page-white);
}

.contact-page-form-card {
  background: var(--contact-page-white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--contact-page-border-color);
}

.contact-page-form-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--contact-page-primary-color);
  margin-bottom: 30px;
}

.contact-page-form-group {
  margin-bottom: 24px;
}

.contact-page-form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--contact-page-text-dark);
  margin-bottom: 8px;
  display: block;
}

.contact-page-form-label .contact-page-required {
  color: var(--secondary-color);
  margin-left: 2px;
}

.contact-page-form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  border: 1px solid var(--contact-page-border-color);
  border-radius: 10px;
  background: var(--contact-page-white);
  color: var(--contact-page-text-dark);
  transition: all 0.3s ease;
}

.contact-page-form-control:focus {
  outline: none;
  border-color: var(--contact-page-secondary-color);
  box-shadow: 0 0 0 3px rgba(75, 168, 159, 0.1);
}

.contact-page-form-control::placeholder {
  color: #B0B0B0;
}

textarea.contact-page-form-control {
  min-height: 140px;
  resize: vertical;
}

.contact-page-btn-submit {
  background: linear-gradient(135deg, var(--contact-page-primary-color), var(--contact-page-secondary-color));
  color: var(--contact-page-white);
  border: none;
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

.contact-page-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 77, 66, 0.3);
}

.contact-page-btn-submit i {
  font-size: 16px;
}

@media (max-width: 991px) {
  .contact-page-section-header h1 {
    font-size: 2rem;
  }

  .contact-page-info-card,
  .contact-page-form-card {
    padding: 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .contact-page-section {
    padding: 40px 0;
  }

  .contact-page-section-header h1 {
    font-size: 1.75rem;
  }

  .contact-page-section-header p {
    font-size: 1rem;
  }

  .contact-page-info-card,
  .contact-page-form-card {
    padding: 24px;
  }

  .contact-page-info-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
}

/* footer  */

.footer {
  background: var(--theme-dark);
  color: white;
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="0.3" fill="white" opacity="0.08"/><circle cx="50" cy="10" r="0.4" fill="white" opacity="0.06"/><circle cx="10" cy="60" r="0.3" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-section-title {
  font-weight: 600;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.3));
  border-radius: 2px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.9);
  padding: 7px 8px;
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  font-weight: 400;
  line-height: 20px;
  overflow: hidden;
  margin-bottom: 3px;
}

.footer-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.4s ease;
}

.footer-link:hover {
  color: var(--black);
  background: rgba(255, 255, 255, 0.9);
}

.footer-link:hover::before {
  width: 100%;
}

.company-logo {
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 1.5rem;
  display: inline-block;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.company-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: white;
}

.about-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-contact-item i {
  width: 20px;
  margin-right: 8px;
  color: #f8f9fa;
  font-size: 1.1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 1rem;
  line-height: 1.5;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  border: 2px solid #fff;
  background: transparent;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.social-link i {
  font-size: 20px;
  margin: 0;
  color: #fff;
}

.social-link:hover {
  background: var(--secondary-color);

  i {
    color: #fff;
  }
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem 12px 1rem;
  margin-top: 3rem;
  text-align: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  /* background: var(--secondary-color); */
  border-radius: 15px 15px 0 0;
}

.copyright p {
  font-size: 20px;

  .small {
    font-size: 16px;
    color: inherit;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 3rem;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

.fade-in:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}