/* Static bridge stylesheet */
.static-form-message {
  margin-top: 10px;
  font-size: 14px;
  color: #1a7f37;
}
body{background: #fff7f4;}
#dle-ajax-comments,#dle-comments-form{display:none !important;}
/*details*/
/*contact*/
.custom-contact-section {
    
    padding: 80px 0;
    font-family: inherit;
}
.custom-contact-icon i {
    font-size: 62px;
    color: #2F589A;
}


.custom-contact-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.custom-contact-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 320px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.custom-contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-contact-content {
    display: flex;
    flex-direction: column;
}
.custom-contact-title {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 10px 0;
}
.custom-contact-desc, .custom-contact-desc a {
    font-size: 18px;
    color: #8C8C8C;
    margin: 0;
    line-height: 1.6;
    text-decoration: none;
}
.custom-contact-desc a:hover {
    color: #2F589A;
}
.custom-contact-title-main {
    text-align: center;
    color: #2F589A;
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 40px 0;
}
@media (max-width: 991px) {
    .custom-contact-card {
        min-width: 100%;
    }
}
/**/
  /* Department Details Content Styling */
        .department-details-section {
            padding: 60px 20px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .department-details-grid {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 50px;
            align-items: flex-start;
        }

        /* Left Content Area */
        .department-info-content {
            font-size: 16px;
            line-height: 1.8;
            color: #1a1a1a;
        }

        .department-info-content p {
            margin-bottom: 25px;
        }

        .department-info-content h2 {
            color: #264796;
            font-size: 26px;
            font-weight: 700;
            margin-top: 40px;
            margin-bottom: 20px;
            line-height: 1.4;
        }

        /* Custom List Styling */
        .department-info-content ul {
            list-style: none;
            padding: 0;
            margin: 0 0 30px 0;
        }

        .department-info-content ul li {
            position: relative;
            padding-left: 35px;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .department-info-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #00A6FF;
    font-size: 18px;
}

        /* Right Sidebar Area */
        .department-sidebar {
            background-color: #FFFFFF;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
            border-radius: 4px;
        }

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

        .sidebar-menu li {
            border-bottom: 1px solid #f0f0f0;
        }

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

        .sidebar-menu li a {
            display: block;
            padding: 20px 25px;
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 15px;
        }

        .sidebar-menu li a:hover,
        .sidebar-menu li.active a {
            color: #264796;
            background-color: #fcfcfc;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .department-details-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .department-sidebar {
                order: -1;
            }
        }
        /**/
        /* Doctor Details Content Styling */
        .doctor-details-section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .doctor-details-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 50px;
        }

        /* Doctor Info Left Side */
        .doctor-info-content {
            font-size: 16px;
            line-height: 1.8;
            color: #1a1a1a;
        }

        .doctor-info-content p {
            margin-bottom: 20px;
        }

        .doctor-info-content h2 {
            color: #264796;
            font-size: 32px;
            font-weight: 700;
            margin-top: 40px;
            margin-bottom: 20px;
        }

        .doctor-info-content h4 {
            color: #264796;
            font-size: 18px;
            font-weight: 700;
            margin-top: 30px;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        /* Doctor Image Right Side */
        .doctor-image-wrapper {
            position: relative;
        }

        .doctor-image-wrapper img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            display: block;
            background-color: #fff;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .doctor-details-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .doctor-image-wrapper {
                order: -1;
                max-width: 400px;
                margin: 0 auto;
            }
        }
/*details end*/
/*cards*/
.tibbi-sobe-card {
            background-color: #264796;
            /* Dark blue background */
            padding: 40px;
            border-radius: 4px;
            /* Slight rounding or sharp? Screenshot looks sharp but might have a tiny radius */
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            max-width: 400px;
            /* Example max-width for the card */
            font-family: Arial, sans-serif;
        }

        .tibbi-sobe-card img {
            width: 60px;
            height: 60px;
            margin-bottom: 25px;
        }

        .tibbi-sobe-card-title {
            min-height:67px;
            color: #ffffff;
            font-size: 28px;
            font-weight: 700;
            margin: 0 0 15px 0;
        }

        .tibbi-sobe-card-desc  {
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            line-height: 1.6;
            min-height:102px;
            margin: 0 0 40px 0;
        }

        .tibbi-sobe-card-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: #00A6FF;
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .tibbi-sobe-card-btn:hover {
            background-color: #ffffff;
            color: #00A6FF;
        }

        .tibbi-sobe-card-btn i {
            font-size: 14px;
        }
/*cards end*/
.row{row-gap:20px;}
/* Variables (if not already defined in global-styles-inline-css) */
:root {
  --e-global-color-primary: #264796;
  --e-global-color-secondary: #FFFFFF;
  --e-global-color-text: #000000;
  --e-global-color-accent: #00A6FF;
  --e-global-color-fd82e9d: #17398B;
  --e-global-typography-primary-font-family: "Roboto", sans-serif;
}

/* -------------------------------------
   HEADER STYLES
--------------------------------------- */
.header-version-2 {
  background-color: var(--e-global-color-primary);
  border-bottom: 1px solid var(--e-global-color-fd82e9d);
  position: relative;
  z-index: 100;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1300px;
  margin: 0 auto;
  min-height: 80px;
}

/* Logo */
.ata-site-logo-img {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
  padding: 10px 0;
}

/* Navigation */
.main-navigation {
  display: flex;
  align-items: center;
}

.menu-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.menu-item a {
  color: var(--e-global-color-secondary);
  text-decoration: none;
  font-size: 16px;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: 500;
  padding: 10px 0;
  transition: color 0.3s;
}

.menu-item a:hover,
.menu-item.active a {
  color: var(--e-global-color-accent);
}

.menu-close,
.menu-toggle {
  display: none;
}

/* Phone / Contact */
.contact-box {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.contact-icon {
  color: var(--e-global-color-secondary);
  background-color: var(--e-global-color-accent);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  transition: background-color 0.3s, color 0.3s;
  text-decoration: none;
}

.contact-icon:hover {
  background-color: var(--e-global-color-accent);
  color: var(--e-global-color-secondary);
}

.contact-number {
  font-size: 20px;
  font-weight: 700;
  color: var(--e-global-color-secondary);
  text-decoration: none;
  font-family: var(--e-global-typography-primary-font-family);
}

/* Mobile Menu */
@media (max-width: 1024px) {
  .header-container {
    flex-wrap: wrap;
    padding: 10px 20px;
  }

  .ata-site-logo-img {
    width: 140px;
  }

  .header-center {
    order: 3;
    display: flex;
    justify-content: flex-end;
  }

  .header-right {
    display: none;
    /* Elementor layout normally hid this on mobile to save space */
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--e-global-color-accent);
    color: var(--e-global-color-secondary);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
  }

  .menu-wrapper {
    position: fixed;
    top: 0;
    right: -300px;
    width: 250px;
    height: 100vh;
    background-color: var(--e-global-color-primary);
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 50px 20px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  }

  .menu-wrapper.open {
    right: 0;
  }

  .menu-list {
    flex-direction: column;
    gap: 15px;
  }

  .menu-close {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--e-global-color-secondary);
    font-size: 18px;
    cursor: pointer;
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
  }

  .menu-overlay.open {
    display: block;
  }
}

/* -------------------------------------
   FOOTER STYLES
--------------------------------------- */
.footer {
  background-color: var(--e-global-color-primary);
  color: var(--e-global-color-secondary);
  padding-top: 60px;
  font-family: var(--e-global-typography-primary-font-family);
}

.footer-top .container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
  margin-bottom: 30px;
}

.footer-col img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.footer-col p {
  line-height: 1.6;
  font-size: 16px;
  color: var(--e-global-color-secondary);
  margin-bottom: 15px;
}

.footer-col h3 {
  font-size: 20px;
  color: var(--e-global-color-accent);
  margin-bottom: 20px;
  font-family: var(--e-global-typography-primary-font-family);
}

/* Social Media */
.social-media {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-media a {
  background-color: var(--e-global-color-accent);
  color: var(--e-global-color-secondary);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.social-media a:hover {
  background-color: var(--e-global-color-secondary);
  color: var(--e-global-color-accent);
}

/* Footer Links & Contact */
.footer-links,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.contact-list li {
  margin-bottom: 15px;
}

.footer-links a,
.contact-list a {
  color: var(--e-global-color-secondary);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-links a:hover,
.contact-list a:hover {
  color: var(--e-global-color-accent);
}

.contact-list i {
  color: var(--e-global-color-accent);
  font-size: 18px;
  margin-top: 4px;
  width: 20px;
  text-align: center;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 20px;
  
  margin-top: 20px;
}
.footer-bottom strong {
    color:#00A6FF;
    font-size:20px;
}

.footer-bottom p {
  margin: 0;
  color: var(--e-global-color-secondary);
  font-size: 15px;
}

.footer-bottom a {
  color: var(--e-global-color-secondary);
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: var(--e-global-color-accent);
}

@media (max-width: 767px) {
  .footer-col {
    flex: 100%;
  }
}

/* -------------------------------------
   PARTNERS SECTION
--------------------------------------- */
.partners-section {
  padding: 60px 0;

}

.partners-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.partners-section .section-title {
  text-align: flex-start;
  font-family: var(--e-global-typography-primary-font-family);
  font-size: 48px;
  font-weight: 700;
  color: var(--e-global-color-primary);
  margin-bottom: 40px;
}

.partners-swiper {
  padding: 20px 40px;
}

.partners-swiper .swiper-slide {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}

.partners-swiper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.partners-swiper .swiper-slide:hover img {
  opacity: 1;
}

.partners-swiper .swiper-button-prev,
.partners-swiper .swiper-button-next {
  color: #808080;
}

/* -------------------------------------
   BLOG SECTION
--------------------------------------- */
.blog-section {
  padding: 80px 0;

}

.blog-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-header .section-title {
  margin: 0;
  font-family: var(--e-global-typography-primary-font-family);
  font-size: 48px;
  font-weight: 700;
  color: var(--e-global-color-primary);
}

.blog-header .btn-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: #808080;
  border: none;
  padding: 0;
  text-decoration: none;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s;
}

.blog-header .btn-primary:hover {
  background-color: transparent;
  color: var(--e-global-color-primary);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transition: none;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: none;
}

.blog-card-image {
  position: relative;
  /* overflow: hidden; Removed from here to keep date badge unclipped */
  border-radius: 10px;
  margin-bottom: 20px;
  z-index: 1;
}

.image-hover-wrapper {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
}

.image-hover-wrapper img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover .image-hover-wrapper img,
.doctor-card:hover .image-hover-wrapper img {
  transform: scale(1.05);
}

/* -45deg from center animation overlay */
.image-hover-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 1;
  z-index: 2;
  pointer-events: none;
}

.blog-card:hover .image-hover-wrapper::after,
.doctor-card:hover .image-hover-wrapper::after {
  animation: shine-overlay 0.3s forwards;
}

@keyframes shine-overlay {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }

  90% {
    width: 200%;
    height: 200%;
    opacity: 1;
  }

  100% {
    width: 250%;
    height: 250%;
    opacity: 0;
  }
}

.blog-card-date {
  position: absolute;
  bottom: 12px;
  left: -8px;
  background-color: var(--e-global-color-accent);
  color: var(--e-global-color-secondary);
  padding: 8px 15px;
  text-align: center;
  font-family: var(--e-global-typography-primary-font-family);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-size: 14px;
  z-index: 3;
}

.blog-card-date::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  transform: rotate(90deg);
  border-width: 0 8px 8px 0;
  border-style: solid;
  border-color: transparent var(--e-global-color-accent) transparent transparent;
}

.blog-card-date strong {
  font-size: 18px;
  font-weight: 700;
}

.blog-card-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-title {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--e-global-typography-primary-font-family);
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.3;
}

.blog-card-title a {
  color: var(--e-global-color-text);
  text-decoration: none;
  transition: color 0.3s;
}

.blog-card-title a:hover {
  color: var(--e-global-color-accent);
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--e-global-color-accent);
  text-decoration: none;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s;
  margin-top: auto;
}

.blog-card-link i {
  transition: transform 0.3s;
}

.blog-card-link:hover {
  color: var(--e-global-color-primary);
}

.blog-card-link:hover i {
  transform: translateX(5px);
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------
   SERVICES SECTION
--------------------------------------- */
.services-section {
  position: relative;
  padding: 80px 0;
  background-color: #f8fbfa;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 58%;
  background-color: var(--e-global-color-primary);
  z-index: 0;
}

.services-section .container {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Intro Block */
.services-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 30px 10px;
}

.services-intro .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: var(--e-global-color-accent);
  border: none;
  padding: 0;
  margin-bottom: 20px;
  text-decoration: none;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
}

.services-intro .btn-primary:hover {
  color: var(--e-global-color-secondary);
}

.services-intro .section-title {
  margin: 0;
  font-family: var(--e-global-typography-primary-font-family);
  font-size: 42px;
  font-weight: 700;
  color: var(--e-global-color-secondary);
  line-height: 1.2;
}

/* Cards */
.service-card {
  position: relative;
  background: var(--e-global-color-secondary);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  z-index: 1;
  border: 1px solid black;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--e-global-color-accent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.service-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
  transform: translateY(0);
}

.service-icon {
    filter:invert(0.6);
  padding: 35px 40px 0;
  margin-bottom: 20px;
}

.service-icon img {
  display: block;
  transition: filter 0.3s ease, margin-bottom 0.3s ease;
}

.service-card:hover .service-icon img {
  filter: brightness(0) invert(1);
}

.service-content {
  flex-grow: 1;
  padding: 0 40px 15px;
}

.service-title {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--e-global-typography-primary-font-family);
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.3;
  color: var(--e-global-color-text);
  transition: color 0.3s;
}

.service-card:hover .service-title {
  color: var(--e-global-color-secondary);
}

.service-desc {
  font-family: var(--e-global-typography-primary-font-family);
  font-size: 15px;
  color: #777;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 0;
  transition: color 0.3s;
}

.service-card:hover .service-desc {
  color: rgba(255, 255, 255, 0.9);
}

.service-card:hover .service-link {
  color: #264796 !important;
}

.service-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  background-color: var(--e-global-color-accent);
  color: #fff;
  padding: 20px 40px;
  text-decoration: none;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: 600;
  font-size: 16px;
  margin-top: auto;
  transition: color 0.3s;
}

.service-link i {
  transition: transform 0.3s;
}

.service-card:hover .service-link {
  color: var(--e-global-color-secondary);
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------
   DOCTORS SECTION
--------------------------------------- */
.doctors-section {
  padding: 80px 0;
  background-color: #fffaf7;
  /* very soft pinkish-cream based on image */
}

.doctors-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.doctors-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.doctors-header .section-title {
  margin: 0;
  font-family: var(--e-global-typography-primary-font-family);
  font-size: 42px;
  font-weight: 700;
  color: var(--e-global-color-primary);
  line-height: 1.1;
}

.doctors-header .btn-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: #808080;
  border: none;
  padding: 0;
  text-decoration: none;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}

.doctors-header .btn-primary i {
  transition: transform 0.3s;
}

.doctors-header .btn-primary:hover {
  background-color: transparent;
  color: var(--e-global-color-text);
}

.doctors-header .btn-primary:hover i {
  transform: translateX(5px);
}

.doctors-swiper {
  position: relative;
  padding-bottom: 20px;
}

/* Nav Arrows setup similar to swiper buttons */
.doctors-button-prev,
.doctors-button-next {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: #808080;
  cursor: pointer;
  transition: all 0.3s;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
}


.doctors-button-prev:hover,
.doctors-button-next:hover {
  background: var(--e-global-color-accent);
  color: #fff;
}

.doctors-button-prev::after,
.doctors-button-next::after {
  content: none;
}

.doctor-card {
  display: flex;
  flex-direction: column;
}

.doctor-card .image-hover-wrapper img {
  aspect-ratio: 1/1;
  /* Doctors use square aspect ratio by default in design */
}

.doctor-card-image {
  margin-bottom: 20px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.doctor-card-content {
  display: flex;
  flex-direction: column;
  padding: 0 5px;
}

.doctor-profession {
  color: var(--e-global-color-accent);
  font-family: var(--e-global-typography-primary-font-family);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.doctor-name,
.doctor-name a {
  margin: 0;
  color: var(--e-global-color-text);
  font-family: var(--e-global-typography-primary-font-family);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.3s;
}

.doctor-name a:hover {
  color: var(--e-global-color-accent);
}

@media(max-width: 1350px) {
  .doctors-button-prev {
    left: 10px;
  }

  .doctors-button-next {
    right: 10px;
  }
}

@media (max-width: 767px) {
  .doctors-header .section-title {
    font-size: 32px;
  }
}

/* -------------------------------------
   HERO BANNER (5d468d3 replacement)
--------------------------------------- */
.hero-banner {
  position: relative;
  background-image: url('../img/iStock-1408798973-2-178c534cb14d.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0;
  min-height: 557px;
  display: flex;
  align-items: center;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Dark blue gradient overlay for readability */
  background: linear-gradient(
        90deg,
        rgba(38, 71, 150, 0.95) 0%,
        
        rgba(0, 0, 0, 0.6) 100%
    );
  z-index: 1;
}

.hero-banner .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 65%;
}

.hero-title {
  color: #ffffff;
  font-family: var(--e-global-typography-primary-font-family);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 12px 30px;
  background-color: var(--e-global-color-accent);
  color: #ffffff;
  font-family: var(--e-global-typography-primary-font-family);
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s;
  text-decoration: none;
}

.hero-btn i {
  font-size: 14px;
}

.hero-btn:hover {
  background-color: #ffffff;
  color: var(--e-global-color-accent);
}

@media (max-width: 1024px) {
  .hero-banner {
    padding: 80px 0;
  }

  .hero-content {
    max-width: 85%;
  }

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

@media (max-width: 767px) {
  .hero-banner {
    padding: 60px 0;
  }

  .hero-banner::before {
    background: linear-gradient(90deg, rgba(38, 71, 150, 0.95) 0%, rgba(38, 71, 150, 0.85) 75%, rgba(38, 71, 150, 0.6) 100%);
  }

  .hero-content {
    max-width: 100%;
  }

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

/* -------------------------------------
   BREADCRUMB SECTION
--------------------------------------- */
.breadcrumb-section {
  height:272px;
  background-color: var(--e-global-color-accent);
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.breadcrumb-section .container {
  width: 100%;
}

.breadcrumb-title {
  color: #ffffff;
  font-family: var(--e-global-typography-primary-font-family);
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .breadcrumb-section {
    padding: 60px 0;
  }

  .breadcrumb-title {
    font-size: 32px;
  }
}