/**
* Template Name: Mentor
* Template URL: https://bootstrapmade.com/mentor-free-education-bootstrap-theme/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Poppins";
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37423b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #5fcf80; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #272828; /* The default color of the main navmenu links */
  --nav-hover-color: #5fcf80; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #272828; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #5fcf80; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  overflow-x: hidden;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #ed3237;
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(
    var(--accent-color) 50%,
    color-mix(in srgb, var(--accent-color), transparent 75%) 52%
  );
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 80px;
  margin-right: 8px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.header-top {
  background: #ed3237;
  padding: 10px 0;
}

.header-top .container {
  display: flex;
  justify-content: end;
  align-items: center;
}

/* phone */
.top-left {
  margin-right: 40px;
}

.header-top h6 {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.header-top i {
  margin-right: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  padding: 5px;
  font-size: 14px;
}

/* responsive */

@media (max-width: 768px) {
  .header-top .container {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
  .top-left {
    margin-right: 0px;
  }
}

/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 18px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ed3237;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 17px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: #ed3237;
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    width: 350px;
    height: 600px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ed3237;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
    width: 350px;
    height: 400px;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    font-size: 32px;
    align-items: end;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.doctor-footer {
  /* Path to your background image */
  background-image: url("../img/footer_img.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  padding-top: 50px;
  padding-bottom: 20px;

  font-family: "Poppins", sans-serif;
}

.doctor-footer h5 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: white;
  font-size: 25px;

  position: relative;
}

.doctor-footer .title-underline {
  width: 40px;
  height: 3px;
  background-color: #ed3237; /* Example magenta/pink color from your image */
  margin-bottom: 15px;
}

/* Quick Links styling */
.doctor-footer .quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.doctor-footer .quick-links li {
  margin-bottom: 8px;
}

.doctor-footer .quick-links a {
  color: #fff; /* Lighter grey for links */
  text-decoration: none;
  font-size: 16px;

  transition: color 0.3s ease;
}

.doctor-footer .quick-links a:hover {
  color: #ffffff;
}

/* Get In Touch details */
.doctor-footer .contact-info p {
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff; /* Lighter grey for detail text */
}

.doctor-footer .contact-info a {
  color: #fff;
  font-size: 16px;

  text-decoration: none;
}

.doctor-footer .contact-info a:hover {
  color: #ffffff;
}

/* Social Icons */
.doctor-footer .social-icons .icon-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  margin-right: 10px;
  color: #ffffff;
  background-color: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Control icon size here */
.doctor-footer .social-icons .icon-circle i {
  font-size: 15px;
  line-height: 1;
}

/* Hover effect */

.doctor-footer .social-icons .icon-circle:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Bottom Copyright Bar */
.doctor-footer .copyright-bar {
  background-color: rgba(0, 0, 0, 0.1); /* Slightly darker */
  padding: 15px 0;
  margin-top: 30px;
  font-size: 15px;
  color: #fff;
}

.doctor-footer .copyright-bar p {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .doctor-footer {
    padding-top: 35px;
    padding-bottom: 15px;
  }

  .doctor-footer h5 {
    font-size: 20px;
  }

  .doctor-footer p,
  .doctor-footer .contact-info p,
  .doctor-footer .quick-links a {
    font-size: 14px;
  }

  .doctor-footer .social-icons {
    margin-top: 10px;
  }

  .doctor-footer .social-icons .icon-circle {
    width: 32px;
    height: 32px;
    margin-right: 8px;
  }

  .doctor-footer .social-icons .icon-circle i {
    font-size: 14px;
  }

  .doctor-footer .copyright-bar {
    font-size: 13px;
    padding: 12px 0;
  }
  .doctor-footer .row > div {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 25px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --default-color: var(--contrast-color);
  --background-color: var(--accent-color);
  --heading-color: var(--contrast-color);
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--accent-color) 90%, black 5%);
  padding: 20px 0;
}

.page-title nav a {
  color: var(--default-color);
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li + li {
  padding-left: 10px;
}

.page-title nav ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 900px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: var(--nav-font);
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 85vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  color: var(--default-color);
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.2);
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0;
  font-size: 45px;
  color: #000;
  font-weight: 600;
  line-height: 60px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  transition: 0.4s;
  margin-top: 30px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.hero .btn-get-started:hover {
  background: #00a859;
  border: 2px solid var(--accent-color);
}

@media (max-width: 768px) {
  .hero {
    min-height: 250px;
    padding: 50px 20px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 38px;
  }

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

  .hero .btn-get-started {
    padding: 8px 28px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.doctor-section {
  background: #fff;
  margin-top: 50px;
}

/* IMAGE BOX */
.doctor-img img {
  width: 450px; /* increase/decrease as needed */
  height: auto;

  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* EXPERIENCE BADGE */
.experience-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #2bb673, #1d7fa6);
  color: #fff;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  width: 150px;
  z-index: 2;
}

.experience-badge i {
  font-size: 24px;
  margin-bottom: 8px;
}

.experience-badge p {
  font-size: 14px;
  margin: 0;
  font-weight: 600;
  text-align: justify;
}

/* TEXT */
.about-text {
  color: #28a745;
  font-weight: 600;
  margin-bottom: 10px;
}

.doctor-title {
  font-size: 36px;
  font-weight: 700;
  color: #ed3237;
  line-height: 1.4;
}
.doctor-qualification {
  font-size: 20px;
  font-weight: 600;
  color: #0017c0;
}

.doctor-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.8;
  color: #000;
  margin-bottom: 15px;
  text-align: justify;
}

.doctor-desc a {
  color: #0d6efd;
  text-decoration: underline;
}

/* BUTTON */
.know-btn {
  background: linear-gradient(135deg, #2bb673, #1d7fa6);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .doctor-title {
    font-size: 24px;
  }

  .experience-badge {
    width: 120px;
    padding: 15px;
    margin-top: -50px;
  }
}
/* //////////////////////////////////////////////////////////////////////// */
/* Wrapper */
.why-choose-wrapper {
  position: relative;
}

/* Background Section */
.why-bg {
  height: 400px;
  background: url("../img/about-hospital.png") no-repeat center/cover;
  background-attachment: fixed;
}
.overlay h2 {
  font-size: 25px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  margin-top: 30px;
}

.why-bg .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* Card */
.why-card {
  display: flex;
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  margin-top: -120px; /* 👈 THIS MAKES HALF OVERLAP */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Left Image */
.why-image {
  width: 50%;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Content */
.why-content {
  width: 50%;
  padding: 50px;
}

.why-content h2 {
  font-weight: 600;
  margin-bottom: 22px;
}

/* List Style */
.why-content ul {
  list-style: none;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.why-content ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

/* Check Icon */
.why-content ul li::before {
  content: "\f058"; /* Font Awesome check-circle */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #00a859;
}
/* Top Icons Section */
.top-features {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 40px 0;
  color: #fff;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Each Item */
.feature-item {
  text-align: center;
  width: 16%;
}

/* Icons */
.feature-item i {
  font-size: 40px;
  margin-bottom: 10px;
  display: block;
}

/* Text */
.feature-item p {
  font-size: 15px;
}

@media (max-width: 576px) {
  .why-bg {
    height: 300px;
    background-attachment: scroll;
  }

  .overlay h2 {
    font-size: 18px;
    text-align: center;
    text-align: center;
  }

  .why-card {
    flex-direction: column;
    margin-top: -150px;
    border-radius: 20px;
  }

  .why-image {
    width: 100%;
    height: 200px;
  }

  .why-content {
    width: 100%;
    padding: 20px;
  }

  .why-content h2 {
    font-size: 22px;
  }

  .why-content ul {
    font-size: 14px;
  }

  /* Features icons */
  .top-features {
    justify-content: center;
    gap: 20px;
  }

  .feature-item {
    display: none;
  }

  .feature-item i {
    font-size: 24px;
  }

  .feature-item p {
    font-size: 13px;
  }
}
/* ///////////////////////////////////////////////////////////////////////////// */
.specialities {
  background: #ffffff;
}

.section-title {
  font-weight: 600;
  font-size: 32px;
  color: #ed3237;
}

.section-subtitle {
  color: #212529bf;
  font-size: 16px;
  font-weight: 500;
  margin-top: -50px;
}

.spec-card {
  display: block;
  text-align: center;
  padding: 30px 15px;
  border: 2px solid #ffffff;
  border-radius: 15px;
  border-right: 2px solid #00a859;
  background: white;
  text-decoration: none;
  transition: 0.3s;
  height: 100%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-circle {
  width: 90px;
  height: 90px;
  border: 2px solid #00a859;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 15px;
}

.icon-circle i {
  font-size: 36px;
  color: #178ac2;
}

.spec-card h6 {
  color: #000;
  font-weight: 600;
  font-size: 16px;
}
.spec-img {
  width: 60px;
  height: 60px;
  margin-left: 5px;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 14px;
    margin-top: -15px;
  }

  .icon-circle {
    width: 70px;
    height: 70px;
  }

  .icon-circle i {
    font-size: 26px;
  }

  .spec-card {
    padding: 20px 10px;
  }

  .spec-card h6 {
    font-size: 14px;
  }
  .spec-img {
  width: 40px;
  height: 40px;
  margin-left: 5px;
}
}

/* Section Padding */
.doctor-banner-section {
  padding: 80px 0;
  background-color: #fff;
  overflow: visible;
  margin-top: 60px;
}

/* The Blue Card */
.banner-card {
  background-color: #2394d5; /* The specific blue from your image */
  border-radius: 15px;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 100px;
  color: white;
  width: 100%;

  display: flex;
  align-items: center;
}

.banner-content {
  max-width: 60%; /* Prevents text from going under the doctors */
}

.banner-content h2 {
  font-size: 27px;
  font-weight: 600;
  color: #ffffff;
}

/* The "Meet Our Team" Button */
.btn-meet {
  background-color: #fff;
  color: #a52a2a; /* Dark reddish color from your image */
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
  border: none;
}

.btn-meet:hover {
  background-color: #00a859;
  transform: translateY(-2px);
  color: #ffffff;
}

/* Image Positioning */
.doctor-img-wrapper {
  position: absolute;
  right: 0;
  bottom: 0px; /* Adjust this to make them "pop" out of the bottom */
  z-index: 10;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .banner-content {
    max-width: 100%;
    text-align: center;
  }
  .banner-card {
    padding: 40px 20px;
  }
  .doctor-img-wrapper {
    display: none;
  }
}

/* Section Styles */
.testimonial-section {
  background-color: #ffffff;
  margin-top: 30px;
}

.section-titlee {
  color: #ed3237;
  font-size: 32px;
  font-weight: 600;
}

/* Card Styling */
.testimonial-card {
  background: #f4f4f4; /* Slightly off-white */
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* Avatar Styling */
.avatar {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.google-logo {
  width: 20px;
  height: 20px;
}

.text-warning {
  font-size: 25px;
}

/* Typography */
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

.read-more {
  font-size: 0.85rem;
  color: #888;
  text-decoration: none;
  font-weight: 500;
}

.read-more:hover {
  color: #555;
}

/* Verified Badge Icon (Bootstrap Icons or FontAwesome) */
.bi-check-circle-fill {
  font-size: 0.8rem;
}

.stats-section {
  background:
    linear-gradient(rgba(23, 44, 197, 0.5), rgba(23, 44, 197, 0.5)),
    url("../img/counter.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 0;
  color: white;
}

.stat-card {
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 30px 20px;
  height: 100%;
  transition: transform 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.stat-icon {
  font-size: 3rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.stat-content {
  text-align: left;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-text {
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
  white-space: nowrap;
}
.stat-icon {
  width: 60px; /* Fixed width for the image container */
  height: auto;
  margin-right: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon img {
  max-width: 100%;
  height: auto;
  /* If your images are dark, you can use a filter to make them white */
  /* filter: brightness(0) invert(1); */
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .stat-card {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about-banner {
  position: relative;
  background: url("../img/about-banner.png") center/cover no-repeat;
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
}

/* GREEN OVERLAY */
.about-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.about-banner .container {
  position: relative;
  z-index: 2;
}

.about-banner h2 {
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.about-banner p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 28px;
}
.breadcrumb-nav {
  margin-bottom: 15px;
  font-size: 14px;
  color: #fff;
}

.breadcrumb-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

.breadcrumb-nav span {
  margin: 0 5px;
}

.breadcrumb-nav .active {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .about-banner {
    padding: 70px 20px;
  }

  .about-banner h2 {
    font-size: 32px;
  }

  .about-banner p {
    font-size: 14px;
    line-height: 24px;
  }
}
/* /////////////////////////////////////////////////////////////////////////////////////// */

.service-image img {
  width: 95%;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-content h3 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 15px;
}

.service-content p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  text-align: justify;
}
.green-divider {
  width: 150px;
  height: 4px;
  background: #2ecc71; /* green color */
  margin-top: 15px;
  border-radius: 3px;
  margin-bottom: 20px;
}
/* ////////////////////////////////////////////////////////////////////////////////////// */
.contact-section {
  background: #f5f5f5;
}

/* Section Title */

.sectionn-title {
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}

.sectionn-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #1c4e80;
  position: absolute;
  left: 0;
  bottom: -20px;
}

/* Contact Info */

.contact-box {
  gap: 15px;
}

.contact-box .icon {
  width: 50px;
  height: 50px;
  background: #0017c0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
}

.contact-box h5 {
  font-weight: 600;
  margin-bottom: 3px;
}

.contact-box p {
  margin: 0;
  color: #000;
  margin-bottom: 20px;
  margin-top: 10px;
}

/* Button */

.appointment-btn {
  background: #0017c0;
  color: #fff;
  padding: 10px 25px;
  border-radius: 5px;
}

.appointment-btn:hover {
  background: #0017c0;
  color: #fff;
}

/* Form */

.contact-form {
  background: #fff;
  padding: 35px;
  border-radius: 25px;
  border: 1px solid #ddd;
}

.form-title {
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}

.form-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #0017c0;
  display: block;
  margin: 8px auto;
}

.submit-btn {
  background: #0017c0;
  color: #fff;
  padding: 10px 25px;
}

.submit-btn:hover {
  background: #163c62;
  color: #ffffff;
}


/*--------------------------------------------------------------
# Gallery Section Styles (Redesigned Premium Version)
--------------------------------------------------------------*/
.gallery-section {
  padding: 100px 0;
  background: radial-gradient(circle at 10% 20%, rgba(240, 253, 244, 0.4) 0%, rgba(248, 250, 252, 1) 90%);
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(29, 127, 166, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

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

.gallery-section .section-title {
  color: #1a202c;
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -0.5px;
  margin-bottom: 15px;
}

.gallery-section .section-subtitle {
  color: #475569;
  font-size: 1.15rem;
  font-weight: 400;
  max-width: 650px;
  margin: 0 auto 45px auto;
  line-height: 1.6;
}

/* Glassmorphic Unified Capsule Filter Bar */
.gallery-filter-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.gallery-filter-bar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 6px;
  border-radius: 100px;
  display: inline-flex;
  gap: 4px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.06);
}

.gallery-filter-bar .filter-btn {
  border: none;
  background: transparent;
  color: #475569;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.gallery-filter-bar .filter-btn:hover {
  color: #1d7fa6;
  background-color: rgba(241, 245, 249, 0.8);
}

.gallery-filter-bar .filter-btn.active {
  background: linear-gradient(135deg, #2bb673, #1d7fa6);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(29, 127, 166, 0.25);
}

/* Gallery Grid & Premium Cards */
.gallery-container {
  transition: all 0.5s ease;
}

.gallery-item {
  display: block;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.hidden {
  opacity: 0;
  transform: scale(0.8);
  position: absolute;
  visibility: hidden;
  pointer-events: none;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background-color: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.7);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
  height: 100%;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px -15px rgba(29, 127, 166, 0.16);
  border-color: rgba(29, 127, 166, 0.2);
}

.gallery-img-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: #f8fafc;
}

.gallery-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.15, 1, 0.3, 1);
}

.gallery-card:hover .gallery-img-box img {
  transform: scale(1.12);
}

/* Glassmorphic Dark-Gradient Overlay */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(29, 127, 166, 0.4) 100%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 2;
}

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

.gallery-overlay-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  transform: scale(0.7);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-overlay-icon {
  transform: scale(1);
}

.gallery-overlay-icon:hover {
  background: #ffffff;
  color: #1d7fa6;
  transform: scale(1.15) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-overlay-tag {
  color: #2bb673;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  display: inline-block;
}

.gallery-overlay h4 {
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

/* Mobile Styling */
@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 0;
  }
  
  .gallery-section .section-title {
    font-size: 2rem;
  }

  .gallery-filter-bar {
    width: 100%;
    flex-direction: column;
    border-radius: 20px;
    padding: 8px;
    gap: 4px;
  }

  .gallery-filter-bar .filter-btn {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    font-size: 0.95rem;
  }

  .gallery-overlay {
    padding: 20px;
  }

  .gallery-overlay h4 {
    font-size: 1.15rem;
  }
}


