/*-----------------------------------*\
  #main.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');


:root {

  /**
   * colors
   */

  --rich-black-fogra-29: hsl(222, 44%, 8%);
  --middle-blue-green_40: #8A8B8C;
  --midnight-green: #3D3E3F;
  --midnight-green_a25: hsla(186, 100%, 19%, 0.25);
  --independece: hsl(236, 14%, 39%);
  --verdigris: #606161;
  --ming: #3D3E3F;
  --space-cadet: hsla(226, 45%, 24%);
  --eerie-black: #ED9803;
  --alice-blue: hsl(190, 8%, 85%);
  --gray-web: hsl(0, 0%, 50%);
  --gainsboro: hsl(0, 0%, 87%);
  --white: hsl(0, 0%, 100%);
  --white_a20: hsla(0, 0%, 100%, 0.2);
  --white_a10: hsla(0, 0%, 100%, 0.1);
  --black: hsl(0, 0%, 0%);

  /**
   * typography
   */

  --ff-oswald: 'Oswald', sans-serif;
  --ff-rubik: 'Rubik', sans-serif;

  --headline-lg: 5rem;
  --headline-md: 3rem;
  --headline-sm: 2rem;
  --title-lg: 1.8rem;
  --title-md: 1.5rem;
  --title-sm: 1.4rem;

  --fw-500: 500;
  --fw-700: 700;

  /**
   * spacing
   */

  --section-padding: 120px;

  /**
   * box shadow
   */

  --shadow-1: 0px 2px 20px hsla(209, 36%, 72%, 0.2);
  --shadow-2: 0 4px 16px hsla(0, 0%, 0%, 0.06);

  /**
   * border radius
   */

  --radius-circle: 50%;
  --radius-12: 12px;
  --radius-6: 6px;
  --radius-4: 4px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --transition-3: 1s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a,
img,
span,
time,
input,
button,
ion-icon {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}


/* Hide by default */
.container-slider {
  display: block;
}

.slider-section {
  background-color: white;
  text-align: center;
  padding-top: 20px;
}

#appointment-btn {
  display: none;
}

@media (min-width: 992px) {
  .container-slider {
    display: none;
  }
}

img {
  height: auto;
}

.buttons-doc {
  display: flex;
  gap: 10px;
  align-items: center;
  align-self: end;
  margin-bottom: -10px;
  /* justify-content: space-between; */
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}


input {
  width: 100%;
  outline: none;
}

button {
  cursor: pointer;
}

figure {
  margin: 0px;
}

ion-icon {
  pointer-events: none;
}

address {
  font-style: normal;
}

html {
  font-size: 10px;
  font-family: var(--ff-rubik);
  scroll-behavior: smooth;
}

body {
  /* cursor: none; */
  /* Hides the default cursor */
  background-color: var(--white);
  font-size: 1.6rem;
  color: var(--independece);
  line-height: 1.8;
  overflow: hidden;
}

#cursor {
  position: absolute;
  width: 30px;
  /* Adjust size as needed */
  height: 30px;
  /* Adjust size as needed */
  background-size: cover;
  pointer-events: none;
  /* Don't interfere with clicks */
  z-index: 9999;
  /* Ensure it's above all other elements */
  transition: transform 0.1s ease;
  /* Smooth follow effect */
  display: none;
  /* Hidden by default */
}

#cursor-image {
  position: absolute;
  width: 40px;
  /* Adjust image size */
  height: 40px;
  /* Adjust image size */
  pointer-events: none;
  /* Prevents clicks on the image */
  z-index: 9999;
  /* Ensure it’s above all other content */
  display: none;
  /* Initially hidden */
}

/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.popup-overlay.show {
  visibility: visible;
  opacity: 1;
}

/* Popup Box */
.popup-box {
  display: flex;
  flex-direction: row;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  max-width: 800px;
  align-items: center;
  width: 90%;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: max-width 0.3s ease-in-out;
}

/* Image Side */
.popup-image {
  width: 60%;
  /* 35% of the popup box */
}

.popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content Side */
.popup-content {
  padding: 20px;
  width: 40%;
  /* 65% of the popup box */
  position: relative;
}

.popup-content h2 {
  font-size: 24px;
  color: #3D3E3F;
  margin-bottom: 10px;
  text-align: left;
}

.popup-content p {
  color: #666;
  margin-bottom: 20px;
  font-size: 16px;
  text-align: left;
}

.popup-btn {
  background-color: #ED9803;
  color: white;
  padding: 10px 20px;
  border: none;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
  display: block;
  /* margin: 0 auto; */
}

.popup-btn:hover {
  background-color: #c77800;
}

/* Close Button */
.close-popup {
  position: absolute;
  top: 0px;
  right: 15px;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

.hero-content {
  background: linear-gradient(to bottom, rgba(235, 150, 6, 0.6), rgba(235, 150, 6, 0) 110%);

  padding: 1rem;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.about-content {
  /* background: linear-gradient(to bottom, rgba(235, 150, 6, 0.6), rgba(235, 150, 6, 0) 110%); */
  align-items: baseline;
  padding: 2rem;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

/* Optional: Adding smooth transition */
#cursor,
#cursor-image {
  transition: all 0.1s ease;
}

/* 
.hero-content::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  bottom: 0;
  left: 0;
  border-radius: 20px;
  background: linear-gradient(to right, rgba(235, 152, 34, 0.7), rgba(235, 152, 34, 0));
  z-index: 0;
} */



body.loaded {
  overflow-y: visible;
}

body.nav-active {
  overflow: hidden;
}

/* Dropdown Container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Button */
.dropdown>a {
  display: block;
  padding: 10px 5px;
  /* background: #009688; */
  /* color: white; */
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

.swiper-hidden {
  opacity: 0;
  pointer-events: none;
  /* Prevent interaction with hidden swiper */
}

.dropdown>a:hover {
  /* background: #00796B; */
}

.headline-container {
  display: flex;
  justify-content: space-between;
}

.info-footer {
  align-items: end;
}

.headline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  padding: 0px;
  width: 100%;
  background-color: #EB9606;
  position: relative;
  transition: all 0.3s ease;
}

.headline.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: #EB9606;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.headline-left {
  display: flex;
}

.social-list {
  list-style: none;
  display: flex;
  gap: 15px;
}

.social-link {
  text-decoration: none;
  font-size: 20px;
  color: #333;
}

.headline-right {
  display: flex;
  justify-content: flex-end;
}

.headline-info {
  display: flex;
  /* align-items: center; */
  font-size: 14px;
  flex-wrap: wrap;
  justify-content: end;
}

.info-footer {
  align-items: end;
}



.open-hours {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.open-hours i {
  margin-right: 8px;
}

.contact-numbers {
  display: flex;
  gap: 20px;
  margin-left: 20px;
}

.contact-numbers p {
  margin: 0;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.contact-numbers i {
  margin-right: 8px;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  min-width: 250px;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

/* Show Dropdown with Smooth Animation */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown Links */
.dropdown-menu a {
  display: block;
  padding: 8px 12px;
  color: black;
  text-decoration: none;
  font-size: 16px;
  background: rgba(237, 152, 3, 0.1);
  border-radius: 4px;
  text-align: left;
  transition: background 0.3s ease, transform 0.2s ease-in-out;
}

/* Hover Effect on Links */
.dropdown-menu a:hover {
  background: rgba(237, 152, 3, 0.5);
  transform: scale(1.05);
}



/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/



.custom-sec {
  /* background-color: var(--midnight-green); */
  padding-top: 10px;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 30px;
}


.headline-lg {
  font-size: var(--headline-lg);
  color: var(--white);
  font-weight: var(--fw-500);
  line-height: 1.2;
}

.swiper-container .headline-md {
  text-align: center;
  position: relative;
  z-index: 1;
}

.headline-md {
  font-size: var(--headline-md);
  font-weight: var(--fw-700);
  color: white;
}

.about-content .headline-md {
  color: white;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.6);


}

/* .about-content::before {
  content: '';
  height: 60%;
  position: absolute;
  top: 26%;
  right: 0;
  width: 50%;
  bottom: 0;
  left: 17%;
  border-radius: 20px;
  background: linear-gradient(to right, rgba(235, 152, 34, 0.7), rgba(235, 152, 34, 0));
  z-index: 0;
} */

.headline-lg,
.headline-md {
  font-family: var(--ff-oswald);
}

.headline-md,
.headline-sm {
  line-height: 1.3;
}

.headline-md,
.headline-sm {
  color: white;
}



.headline-sm {
  font-size: var(--headline-sm);
}

.title-lg {
  font-size: var(--title-lg);
  color: white;
}

.title-md {
  font-size: var(--title-md);
}

.title-sm {
  font-size: var(--title-sm);
}

.social-list {
  display: flex;
}

.section {
  padding-block: var(--section-padding);
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.btn {
  background-color: var(--verdigris);
  color: var(--white);
  font-weight: var(--fw-700);
  padding: 12px 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-6);
  overflow: hidden;
}

.btn::before {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--eerie-black);
  border-radius: var(--radius-6);
  transition: var(--transition-2);
  z-index: -1;
}

.btn:is(:hover, :focus-visible)::before {
  transform: translateX(100%);
}

.w-100 {
  width: 100%;
}

.grid-list {
  display: grid;
  gap: 40px 28px;
}

.text-center {
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transition: var(--transition-2);
}

[data-reveal].revealed {
  opacity: 1;
}

[data-reveal="bottom"] {
  transform: translateY(50px);
}

[data-reveal="bottom"].revealed {
  transform: translateY(0);
}

[data-reveal="left"] {
  transform: translateX(-50px);
}

[data-reveal="right"] {
  transform: translateX(50px);
}

[data-reveal="left"].revealed,
[data-reveal="right"].revealed {
  transform: translateX(0);
}





/*-----------------------------------*\
  #PRELOADER
\*-----------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--verdigris);
  display: grid;
  place-items: center;
  z-index: 6;
  transition: var(--transition-1);
}

.preloader.loaded {
  visibility: hidden;
  opacity: 0;
}

.preloader .circle {
  width: 50px;
  height: 50px;
  border: 4px solid var(--white);
  border-radius: var(--radius-circle);
  border-block-start-color: transparent;
  animation: rotate360 1s ease infinite;
}

@keyframes rotate360 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(1turn);
  }
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn {
  display: none;
}

.header {
  /* position: absolute; */
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 16px;
  background-color: var(--white);
  z-index: 4;
}

.header.active {
  position: fixed;
  background-color: var(--white);
  color: var(--rich-black-fogra-29);
  margin-top: 40px;
  animation: headerActive 0.5s ease forwards;
}



@keyframes headerActive {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-open-btn {
  color: var(--rich-black-fogra-29);
  font-size: 4rem;
  display: flex;
  border: none;
  position: relative;
  background: none;
}

.navbar,
.overlay {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
}

.navbar {
  right: -300px;
  max-width: 300px;
  background-color: var(--white);
  z-index: 3;
  transition: 0.25s var(--cubic-in);
  visibility: hidden;
}

.navbar.active {
  transform: translateX(-300px);
  visibility: visible;
  transition: 0.5s var(--cubic-out);
}

.navbar-top {
  position: relative;
  padding-inline: 25px;
  padding-block: 55px 100px;
}

/* Modal Background */
.doctor-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-in-out;
}

/* Modal Content */
.modal-content {
  background-color: #fff;
  width: 90%;
  max-width: 700px;
  border-radius: 15px;
  padding: 30px;
  position: relative;
  animation: slideUp 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Doctor Info */
.doctor-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.doctor-img img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #EB9606;
  margin-bottom: 20px;
  /* Add some space below the image */
}

.doctor-details {
  flex: 1;
}

/* Schedule Section */
.doctor-schedule {
  margin-top: 20px;
}

.doctor-schedule h3 {
  font-size: 22px;
  color: #EB9606;
  margin-bottom: 15px;
}

.doctor-schedule ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.doctor-schedule li {
  font-size: 16px;
  margin: 5px 0;
  color: #444;
}

.doctor-schedule li strong {
  color: #333;
}

.close-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 26px;
  color: #333;
  cursor: pointer;
  font-weight: bold;
}

/* Doctor Info */
.doctor-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.doctor-img {
  display: flex;
  flex-direction: column;
}

.doctor-img img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #EB9606;
}

.copyright {
  color: #333333;
  font-weight: 600;
  font-size: 1.5rem;
}

.doctor-details {
  flex: 1;
}

.doctor-details h2 {
  margin: 0;
  font-size: 28px;
  color: #EB9606;
}

.specialization {
  font-size: 18px;
  margin: 5px 0;
  color: #555;
}

.experience {
  font-weight: bold;
  margin-bottom: 10px;
}

.contact {
  margin: 5px 0;
  color: #444;
  font-size: 14px;
}

.about {
  margin-top: 15px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Animations */
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    background-color: rgba(0, 0, 0, 0);
  }

  to {
    background-color: rgba(0, 0, 0, 0.6);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .doctor-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .popup-box {
    width: 90%;
    max-width: 90%;
  }

  .popup-image img {
    height: 200px;
  }

  .popup-content h2 {
    font-size: 20px;
  }

  .popup-content p {
    font-size: 14px;
  }

  .popup-btn {
    width: 100%;
    padding: 12px 0;
    font-size: 18px;
  }
}

.nav-close-btn {
  position: absolute;
  top: 15px;
  right: 45px;
  color: var(--rich-black-fogra-29);
  font-size: 2.8rem;
  border: none;
  background: none;
}

.navbar-list {
  margin-block-end: 30px;
  border-block-end: 1px solid var(--white_a10);
}

.navbar-item {
  border-block-start: 1px solid var(--white_a10);
}

.navbar-link {
  color: var(--rich-black-fogra-29);
  text-transform: uppercase;
  padding: 10px 24px;
}

.social-list {
  justify-content: center;
  gap: 20px;
  color: var(--white);
  font-size: 1.8rem;
  top: 6px;
  display: flex;
  position: relative;
}

.overlay {
  right: -100%;
  background-color: var(--black);
  opacity: 0.3;
  visibility: hidden;
  transition: var(--transition-2);
  z-index: 2;
}

.overlay.active {
  transform: translateX(-100%);
  visibility: visible;
}





/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero-banner {
  display: none;
}

.hero {
  position: relative;
  width: 100%;
  top: 90px;
  height: 100vh;
  overflow: hidden;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 24px;
  cursor: pointer;
}

.hero-video {
  position: fixed;
  top: 15%;
  left: 0;
  width: 100vw;
  /* opacity: 0.7; */
  background-color: rgba(0, 0, 0, 1.2);
  /* black overlay with 40% opacity */

  height: 100vh;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

.section.hero {
  position: relative;
  overflow: hidden;
}

.hero-subtitle {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  padding-inline-start: 80px;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.6);


}

.hero-subtitle::before {
  top: 50%;
  left: 0;
  width: 60px;
  height: 1px;
  background-color: var(--white);
}

.hero-title {
  margin-block: 20px 30px;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.6);



}

.hero-card {
  background-color: var(--white);
  border-radius: var(--radius-12);
  padding: 20px;
}

.hero-card .card-text {
  color: #3D3E3F;
  border-block-end: 1px solid var(--midnight-green_a25);
  padding-block-end: 12px;
  margin-block-end: 14px;
}

.hero-card .input-wrapper {
  position: relative;
}

.hero-card .input-field {
  color: #3D3E3F;
  border-block-end: 1px solid var(--gainsboro);
  padding-inline-end: 18px;
}

.hero-card .input-wrapper ion-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--verdigris);
}

.hero-card .btn {
  width: 100%;
  justify-content: center;
  margin-block-start: 16px;
}





/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.service-list {
  padding-block: 60px 30px;
  padding-inline: 25px;
  display: grid;
  gap: 30px;
  border-radius: var(--radius-12);
  margin-block-start: -60px;
  background-color: var(--white);
  box-shadow: var(--shadow-1);
}


.service-card {
  text-align: center;
}

.service-card .card-icon,
.btn-circle {
  max-width: max-content;
  margin-inline: auto;
}

.service-card .card-icon {
  margin-block-end: 25px;
}

.service-card .card-text {
  margin-block: 20px 15px;
}

.service-card .btn-circle {
  color: var(--verdigris);
  font-size: 2rem;
  padding: 18px;
  border-radius: var(--radius-circle);
  box-shadow: var(--shadow-2);
  transition: var(--transition-1);
}

.service-card .btn-circle:is(:hover, :focus-visible) {
  background-color: var(--verdigris);
  color: var(--white);
}

.impact-section {
  position: relative;
  /* padding: 50px 0; */
}

.our-impact {
  position: relative;
  background-image: url('../images/patient.png');
  /* Background image added back */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  overflow: hidden;
}

/* 🔴 Right-to-Left Red Overlay */
.our-impact::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to left, rgba(235, 152, 34, 0.7), rgba(235, 152, 34, 0));
  z-index: 1;
}

/* ✅ Content stays above overlay */
.impact-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  text-align: center;
  color: white;
}

.impact-content {
  /* background: rgba(0, 0, 0, 0.5); */
  /* Shade effect */
  padding: 50px;
  border-radius: 10px;
}

.impact-title {
  font-size: 4.8rem;
  margin-bottom: 30px;
  font-weight: bold;
}

.impact-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.stat {
  margin: 20px;
}

.stat h3 {
  font-size: 2.6rem;
  font-weight: bold;
}

.counter {
  font-size: 40px;
  font-weight: normal;
  margin-top: 10px;
}

@keyframes counterAnimation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}



/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about {
  position: relative;
  padding-block-end: 0;
  overflow: hidden;
  /* Ensure shapes stay inside */
}

.about .container {
  display: grid;
  gap: 20px;
}

.about .section-text {
  margin-block: 20px 35px;
  font-weight: 600;
  color: white;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.6);


}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 15px;
}

.tab-btn {
  background-color: var(--alice-blue);
  color: var(--midnight-green);
  padding: 7px 30px;
  border-radius: var(--radius-6);
  font-weight: var(--fw-700);
}

.tab-btn.active {
  background-color: var(--verdigris);
  color: var(--white);
}

.tab-text {
  color: white;
  margin-block: 35px;
  font-weight: 600;
  /* -webkit-text-stroke: 1px black; */
  /* Outline color and thickness */

  text-shadow: 0 0 2px rgba(0, 0, 0, 0.6);

}

.about-list li {
  color: white;
  font-weight: 600;
  /* -webkit-text-stroke: 1px black; */
  /* Outline color and thickness */

  text-shadow: 0 0 2px rgba(0, 0, 0, 0.6);

}

.about-list .about-item .hydrated {
  font-weight: 600;
  color: white;

  text-shadow: 0 0 2px rgba(0, 0, 0, 0.6);

}

.about-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-block-end: 10px;
}

.about-item ion-icon {
  color: var(--verdigris);
  font-size: 2rem;
  flex-shrink: 0;
}

/* === Fixed Dots (No Movement) === */
.dots-group {
  position: absolute;
  width: 80px;
  /* Dots ka original size */
  height: 80px;
  background-image: radial-gradient(rgba(75, 75, 75, 0.6) 15%, transparent 20%);
  background-size: 10px 10px;
  opacity: 1;
  animation: dotsVanish 4s infinite ease-in-out;
  transform: translate(-50%, -50%);
}

/* === Expanding Circle (Slightly Bigger than Dots) === */
.sucking-circle {
  position: absolute;
  width: 90px;
  /* Start small */
  height: 90px;
  border: 2px solid rgba(237, 152, 3, 0.8);
  border-radius: 50%;
  animation: suckEffect 4s infinite ease-in-out;
  transform: translate(-50%, -50%);
  opacity: 0;
}

/* === Positioning Multiple Effects (Left & Right) === */
.sucking-circle.left-1,
.dots-group.left-1 {
  top: 15%;
  left: 5%;
  animation-delay: 1s;
}

.sucking-circle.left-2,
.dots-group.left-2 {
  top: 35%;
  left: 10%;
  animation-delay: 1.5s;
}

.sucking-circle.left-3,
.dots-group.left-3 {
  bottom: 20%;
  left: 7%;
  animation-delay: 2s;
}

.sucking-circle.right-1,
.dots-group.right-1 {
  top: 10%;
  right: 5%;
  animation-delay: 2.5s;
}


.dots-group.right-2 {
  top: 40%;
  right: 12%;
  animation-delay: 3s;
}

.sucking-circle.right-2 {
  top: 40%;
  right: 11.5%;
  animation-delay: 3s;
}




.dots-group.right-3 {
  bottom: 25%;
  right: 8%;
  animation-delay: 3.5s;
}

.sucking-circle.right-3 {
  bottom: 24.5%;
  right: 7.5%;
  animation-delay: 3.5s;
}

/* === Keyframes Animations === */

/* Dots disappear when circle expands */
@keyframes dotsVanish {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  /* Dots visible */
  60% {
    opacity: 0;
  }

  /* Dots instantly disappear */
  100% {
    opacity: 0;
  }

  /* Stay hidden for 2s before reappearing */
}

/* Expanding Circle Effect (Small to Slightly Bigger than Dots, then Disappear) */
@keyframes suckEffect {
  0% {
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0;
  }

  /* Start small */
  40% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
  }

  /* Appear & Grow */
  55% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }

  /* Slightly bigger than dots */
  60% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }

  /* Instantly disappear */
  100% {
    opacity: 0;
  }

  /* Stay hidden */
}

/*-----------------------------------*\
  #LISTING
\*-----------------------------------*/

.listing {
  /* background-color: var(--alice-blue); */
}

.listing-card {
  padding: 25px 16px;
  display: flex;
  gap: 20px;
  border: 2px solid var(--middle-blue-green_40);
  border-radius: var(--radius-12);
  transition: var(--transition-1);
  /* background-color: #8A8B8C; */
}

.listing-card:is(:hover, :focus-visible) {
  border-color: var(--verdigris);
}

.listing-card .card-title {
  margin-block-end: 5px;
  font-family: var(--ff-oswald);
}

.listing-card .card-text {
  color: white;
}

.section-subtitle.title-lg.revealed {
  color: white;
  font-weight: 600;
  /* -webkit-text-stroke: 1px rgba(0, 0, 0, 0.5); */

  text-shadow: 0 0 2px rgba(0, 0, 0, 0.6);

}


.headline-sm.card-title.speciality {
  color: white;
}

.headline-sm.card-title {
  color: #3D3E3F;
}

/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog {
  /* background-image: linear-gradient(to bottom, var(--alice-blue) 60%, var(--white) 60%); */
  padding-block-start: 0;
}

.blog .section-title {
  margin-block-end: 60px;
}

.blog-card {
  padding: 50px 36px;
  border-radius: var(--radius-12);
  border: 2px solid var(--alice-blue);
  background-image: url('../images/blog-card.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.blog-card::before,
.blog-card::after {
  inset: 0;
  z-index: -1;
  transition: var(--transition-3);
}

.blog-card::before {
  background-color: #ED9803;
  opacity: 0.9;
}

.blog-card::after {
  background-color: var(--white);
}

.blog-card:is(:hover, :focus-within)::after {
  transform: translateY(100%);
}

.blog-card .meta-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
  margin-block-end: 12px;
}

.blog-card .card-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--midnight-green);
}

.blog-card .card-meta ion-icon {
  font-size: 1.8rem;
}

.blog-card .card-meta:first-child .span {
  text-transform: uppercase;
}

.blog-card .date {
  color: var(--space-cadet);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  opacity: 0.5;
  margin-block: 16px;
}

.blog-card .btn-text {
  color: var(--verdigris);
  margin-block-start: 12px;
}

.blog-card :is(.card-meta, .card-title, .date, .card-text, .btn-text) {
  transition: var(--transition-2);
}

.blog-card:is(:hover, :focus-within) :is(.card-meta, .card-title, .date, .card-text, .btn-text) {
  color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}



/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-color: #606161;
  color: var(--white);
  background-size: contain;
  background-position: top right;
  background-repeat: no-repeat;
}

.footer-top {
  display: grid;
  gap: 40px;
  padding-block-end: 8px;
  padding-top: 0px;
}

.footer-brand {
  background: url(../images/lounge-final-changed.jpg) no-repeat center center/cover;
  /* background: white; */
  padding: 32px;
  color: white;
  border-radius: 10px;
}


.footer .logo {
  margin-block-end: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-block-start: 12px;
}

.contact-item .item-icon {
  font-size: 4rem;
}

.contact-link {
  display: inline;
  transition: var(--transition-1);
}

.contact-link:is(:hover, :focus-visible) {
  color: var(--verdigris);
}

.footer-list-title {
  color: var(--white);
  font-weight: var(--fw-700);
  margin-block-end: 20px;
}

.footer .text {
  opacity: 0.7;
}

.footer .address {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-block-start: 20px;
}

.footer .address ion-icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.footer-link {
  margin-block-start: 8px;
  transition: var(--transition-1);
  cursor: pointer;
}

.footer-link:is(:hover, :focus-visible) {
  /* color: var(--verdigris); */
  color: white;
}

.footer-form .input-field {
  color: var(--white);
  border: 1px solid var(--white_a20);
  border-radius: var(--radius-4);
  padding: 8px 20px;
}

.footer-form .input-field::placeholder {
  color: inherit;
}

.footer-form .btn {
  width: 100%;
  justify-content: center;
  margin-block: 12px 28px;
}

.footer-bottom {
  padding-block: 2px;
  background-color: #EB9606;
  border-block-start: 1px solid var(--white_a20);
}

.footer-bottom .social-list {
  justify-content: flex-start;
  gap: 8px;
  margin-block-start: 16px;
}

.footer-bottom .social-link {
  font-size: 1.4rem;
  padding: 12px;
  height: 40px;
  background-color: var(--white_a10);
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
  display: flex;
}

.footer-bottom .social-link:is(:hover, :focus-visible) {
  background-color: var(--verdigris);
}


.sidebar-tabs {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.sidebar-tabs .tab {
  width: 50px;
  height: 50px;
  background: #ED9803;
  color: #606161;
  display: flex;
  align-items: center;
  font-weight: 600;
  justify-content: center;
  font-size: 20px;
  border-radius: 0px 7px 7px 0px;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
}

.sidebar-tabs .tab:hover {
  width: 150px;
  justify-content: start;
  padding-left: 10px;
}

.sidebar-tabs .tab::after {
  content: attr(data-text);
  position: absolute;
  left: 36px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  font-size: 16px;
}

.sidebar-tabs .tab:hover::after {
  opacity: 1;
}




/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/


/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 100px;
  /* Position above the back-to-top button */
  right: 25px;
  background-color: #25D366;
  /* WhatsApp green */
  color: var(--white);
  padding: 10px;
  height: 70px;
  width: 65px;
  font-size: 2rem;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
  z-index: 3;
}

.whatsapp-btn .fa-whatsapp {
  font-size: 50px;
}

.whatsapp-btn:is(:hover, :focus-visible) {
  background-color: #128C7E;
  /* Darker green on hover/focus */
}

/* Back to top Button */
.back-top-btn {
  position: fixed;
  bottom: 30px;
  /* Keep the same bottom value for the original button */
  right: 30px;
  background-color: var(--verdigris);
  color: var(--white);
  padding: 16px;
  font-size: 2rem;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
  opacity: 0;
  z-index: 3;
  height: 50px;
  align-items: center;
  display: flex;
  width: 50px;
}

.back-top-btn:is(:hover, :focus-visible) {
  background-color: var(--eerie-black);
}

.back-top-btn.active {
  transform: translateY(-10px);
  opacity: 1;
}





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --headline-lg: 8rem;
    --headline-md: 4.8rem;

  }



  /**
   * REUSED STYLE
   */


  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

 


  /**
   * HEADER
   */

  .header .btn {
    display: block;
  }

  .nav-open-btn {
    margin-inline-start: auto;
  }

  .header .container {
    gap: 40px;
  }



  /**
   * HERO
   */

  .hero-title {
    line-height: 1.125;
  }

  .hero .wrapper {
    display: flex;
    gap: 16px;
  }

  .hero-card .input-wrapper {
    flex-grow: 1;
  }

  .hero-card .input-field {
    height: 100%;
  }

  .hero-card .btn {
    width: max-content;
    margin-block-start: 0;
  }



  /**
   * SERVICE
   */

  .service-list {
    grid-template-columns: 1fr 1fr;
  }



  /**
   * ABOUT
   */

  .about-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .about-banner {
    max-width: max-content;
    margin-inline: auto;
  }



  /**
   * LISTING
   */

  .listing .grid-list {
    grid-template-columns: 1fr 1fr;
  }

  .listing .grid-list>li:first-child {
    grid-column: 1 / 3;
  }



  /**
   * FOOTER
   */

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .contact-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom .social-list {
    margin-block-start: 0;
  }

}

.contact-list.has-after {
  text-align: left;
}

body.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  display: none;
}


/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 940px;
  }



  /**
   * HERO
   */

  .hero-banner {
    display: block;
    max-width: max-content;
  }

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }



  /**
   * SERVICE
   */

  .service-list {
    grid-template-columns: repeat(4, 1fr);
  }



  /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: 1fr 0.8fr;
    align-items: flex-end;
  }

  .about-content {
    padding-block-end: var(--section-padding);
  }

  .about-banner {
    margin-inline-end: -80px;
  }



  /**
   * BLOG
   */

  .blog .grid-list {
    grid-template-columns: 1fr 1fr;
  }

}





/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1200px;
  }



  /**
   * HEADER
   */

  .header {
    padding-block: 24px;
  }

  .nav-open-btn,
  .overlay,
  .navbar-top,
  .navbar .social-list {
    display: none;
  }

  .navbar,
  .navbar.active,
  .navbar-list {
    all: unset;
    display: block;
  }

  .navbar {
    margin-inline-start: auto;
  }

  .navbar-list {
    display: flex;
    gap: 8px;
  }

  .navbar-item {
    border-block-start: none;
  }

  .navbar-link {
    --title-md: 1.8rem;
    font-weight: var(--fw-500);
    padding-inline: 16px;
    text-transform: capitalize;
  }



  /**
   * HERO
   */

  .hero .container {
    grid-template-columns: 0.8fr 1fr;
    gap: 96px;
  }



  /**
   * LISTING
   */

  .listing .grid-list {
    grid-template-columns: repeat(4, 1fr);
  }



  /**
   * BLOG
   */

  .blog .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }



  /**
   * FOOTER
   */

  .footer {
    background-size: auto;
  }

  .footer-top {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-brand {
    grid-column: 1 / 5;
    padding: 28px 56px;
    /* display: grid; */
    grid-template-columns: 0.3fr 1fr;
    align-items: center;
  }

  .footer .logo {
    margin-block-end: 0;
  }

  .contact-list {
    justify-content: space-between;
  }

  .contact-list::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--white_a20);
  }

  .contact-item {
    margin-block-start: 0;
  }

}

@media (max-width: 768px) {
  .custom-cursor {
    display: none !important;
  }

  body {
    cursor: default !important;
    /* fallback to system default cursor */
  }

  .sidebar-tabs {
    display: none;
  }

  .popup-box {
    flex-direction: column;
    /* Stack the image and content on top of each other */
  }
   #appointment-btn {
    display: block;
  }

  .popup-image {
    width: 100%;
    height: 200px;
    /* Adjust image height on mobile */
  }

  .popup-content {
    width: 100%;
    padding: 15px;
  }

  .popup-content h2 {
    font-size: 20px;
  }

  .popup-content p {
    font-size: 14px;
  }

  .popup-btn {
    width: 100%;
    padding: 12px 0;
    font-size: 18px;
  }

  .custom-sec {
    /* background-color: var(--midnight-green); */
    padding-top: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 80px;
    margin-bottom: 51px;
    /* height: 100vh; */
  }


}


section.popup-section {
  background-size: cover !important;
  overflow: hidden;
  background-attachment: fixed !important;
  background-position: center center !important;
  padding-top: 20px;
  padding-bottom: 20px;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

section.popup-section.hide-popup {
  animation: fadeOut 1s ease-out forwards;
}

/* Define the fade-out keyframes */
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    display: none;
  }
}

section.popup-section:before {
  content: '';
  overflow: hidden;
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 1;
  opacity: .8;
  background: #383632;
  -webkit-transition: opacity .3s ease-out;
  transition: opacity .3s ease-out;
  height: 100%;
  top: 0;
}

section.popup-section .inner-container {
  max-width: 1220px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  height: 100%;
}

section.popup-section .inner-container .row {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  height: 100%;
}

.popup-inner {
  background: #fff;
  z-index: 9;
  padding: 0px;
  width: 100%;
  max-width: 80%;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
  animation: slideUp 1s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.popup-inner--row {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.popup-inner-column {
  flex: 0 0 auto;
  width: 50%;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  position: relative;
  background-repeat: no-repeat !important;
  overflow: hidden;
  height: 469px;
}

form.popup-form {
  padding: 15% 8%;
}

.select-g {
  display: flex;
  flex-direction: column;
}

.form-header p.form-subheading {
  margin: 0;
  color: #d51f0f;
  font-weight: 600;
  text-transform: uppercase;
  line-height: normal;
  font-style: normal;
  font-size: 15px;
  margin-bottom: 15px;
}

.form-header h2.form-heading {
  text-transform: uppercase;
  color: #383632;
  margin-top: 0px;
  margin-bottom: 20px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.438rem;
  line-height: 3.2rem;
}

.form-fields .form-field {
  width: 100%;
  color: #8d8987;
  max-width: 100%;
  resize: none;
  outline: 0;
  font-size: 16px;
  border: 1px solid #e4e4e4;
  padding: 20px 28px;
  margin-bottom: 15px;
  border-radius: 4px;
}

.form-fields .submit-btn {
  width: 100%;
  background-color: #282725;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  padding: 20px 32px 20px;
  border-radius: 4px;
  font-family: "Bebas Neue", sans-serif;
  display: block;
  column-gap: 10px;
  overflow: hidden;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-align: center;
  cursor: pointer;
}

.form-fields .submit-btn:hover {
  -webkit-box-shadow: 0 8px 30px 0 rgba(0, 0, 0, .15);
  box-shadow: 0 8px 30px 0 rgba(0, 0, 0, .15);
  -webkit-transform: translate3d(0, -2px, 0);
  transform: translate3d(0, -2px, 0);
}

.search-doc {
  font-size: 15px;
  border: none;
  height: 30px;

}

.doc-heading {
  color: var(--black);
  font-size: 3rem;
  margin-bottom: 20px;
}

.search-doc::before {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--eerie-black);
  border-radius: var(--radius-6);
  transition: var(--transition-2);
  z-index: -1;
}

.consultants-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

/* CARD */
.consultant-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 350px;
  /* ✅ Fixed width for all cards */
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.consultant-card:hover {
  transform: scale(1.02);
}

/* NAME */
.consultant-name {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

/* SPECIALITY */
.consultant-speciality {
  font-size: 18px;
  font-weight: 600;
  color: #ED9803;
  margin-bottom: 10px;
}

/* TEXT INFO */
.consultant-qualification,
.consultant-schedule {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

/* TAG BADGE */
.consultant-mode {
  display: inline-block;
  background-color: #3D3E3F;
  color: white;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 20px;
  margin-top: 8px;
}

.search-doc:is(:hover, :focus-visible)::before {
  transform: translateX(100%);
}


.btn:is(:hover, :focus-visible)::before {
  transform: translateX(100%);
}

span.close-popup--btn {
  height: 40px;
  width: 40px;
  position: absolute;
  right: 20px;
  top: 20px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
}

/* ======== Sticky Footer ========= */
.sticky-footer {
  position: fixed;
  width: 100%;
  background: #333;
  z-index: 99;
  bottom: 0;
}

.sticky-footer .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  padding-right: 15px;
}

.creditd a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.social ul {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  column-gap: 10px;
  align-items: center;
}

.social ul li a {
  display: flex;
  background: #fff;
  height: 30px;
  width: 30px;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.social ul li a:hover {
  background: #ddd;
  /* Light gray background on hover */
  transform: scale(1.1);
  /* Slight scale effect */
}

.social ul li a i {
  font-size: 16px;
  color: #000;
  /* Default icon color */
}

.social ul li a:hover i {
  color: #007bff;
  /* Change color on hover */
}

.social ul li a img {
  max-width: 20px;
}

/* RESPONSIVE IPAD  */
@media only screen and (max-width: 981px) {
  .footer-brand {
    background: url(../images/lounge-final-changed.jpg) no-repeat center center / cover;
    /* background: white; */
    padding: 0px;
    color: white;
    border-radius: 10px;
  }

  #cursor-image {
    display: none;
  }

  .hero {
    position: relative;
    width: 100%;
    /* top: 90px; */
    /* height: 0vh; */
    overflow: hidden;
  }

  .section.hero {
    position: relative;
    overflow: hidden;
    padding: 0;
  }

  .popup-inner-column {
    flex: 0 0 auto;
    width: 100%;
  }

  .bg-cover {
    height: 400px;
  }

  form.popup-form {
    padding: 8% 5%;
  }

  span.close-popup--btn {
    right: 10px;
    top: 10px;
  }

  .slider-section {
    background: white;
    text-align: center;
    padding-top: 20px;
  }

  .container-slider {
    display: block;
  }

  .swiper-container {
    background-color: white;
    width: 100vw;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    right: 0;
    top: 0px;
  }

  .navbar {
    width: 100%;
    background-color: white;
    padding: 20px;
  }

  .navbar-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* 👈 Left align items */
    gap: 12px;
  }

  .navbar-item {
    width: 100%;
  }

  .navbar-link {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 1.2rem;
    text-align: left;
    /* 👈 Ensure text also aligns left */
  }

  .navbar-top {
    position: relative;
    padding-inline: 25px;
    padding-block: 55px 20px;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    display: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: transparent;
    grid-template-columns: 1fr;
    min-width: 100%;
    padding: 0;
    margin-top: 8px;
  }

  .dropdown.active .dropdown-menu {
    display: grid;
    background: white;
  }

  .dropdown-menu a {
    background: rgba(237, 152, 3, 0.1);
    margin-bottom: 5px;
    padding: 10px 15px;
    border-radius: 4px;
  }
}

/* *, *:before, *:after {
  box-sizing: border-box;
} */
/* 
.content {
  position: relative;
  animation: animatop 0.9s cubic-bezier(0.425, 1.140, 0.470, 1.125) forwards;
} */

.card {
  width: 315px;
  min-height: 100px;
  height: 100%;
  /* padding: 20px; */
  border-radius: 3px;
  background-color: white;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.card:hover {
  transform: scale(1.05);
  /* Slight zoom effect */
  box-shadow: 0px 0px 25px 8px rgba(237, 152, 3, 0.9);
}



/* .card:after {
  content: '';
  display: block;
  width: 190px;
  height: 300px;
  background: #ED9803;
  position: absolute;
  animation: rotatemagic 0.75s cubic-bezier(0.425, 1.040, 0.470, 1.105) 1s both;
} */

.btn-sec {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 5px;
}

.custom-btn {
  background-color: #5D5D5F;
  padding: 0px 10px;
  color: white;
  font-weight: 600;
  border-radius: 5px;
  text-align: center;
  z-index: 9999;
  cursor: pointer;
}

.badgescard span {
  font-size: 1.6em;
  margin: 0px 6px;
  opacity: 0.6;
}

.firstinfo {
  display: flex;
  background: url(../images/Dr-Unza.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 180px;
  /* justify-content: center; */
  /* align-items: center; */
  /* flex-direction: row; */
  z-index: 2;
  /* position: relative; */
}

.firstinfo img {
  border-radius: 50%;
  width: 120px;
  /* height: 120px; */
}

.firstinfo .profileinfo {
  display: flex;
  align-items: flex-end;
  margin-bottom: 16px;
  padding: 0px 20px;
}

.firstinfo .profileinfo h1 {
  font-size: 1.6em;
}

.firstinfo .profileinfo h3 {
  font-size: 1.2em;
  color: #5A5A5A;
  font-style: italic;
}

.firstinfo .profileinfo p.bio {
  padding: 10px 0px;
  color: #5A5A5A;
  line-height: 1.2;
  font-style: initial;
}

/* Animations */
@keyframes animatop {
  0% {
    opacity: 0;
    bottom: -500px;
  }

  100% {
    opacity: 1;
    bottom: 0px;
  }
}

@keyframes animainfos {
  0% {
    bottom: 10px;
  }

  100% {
    bottom: -42px;
  }
}

@keyframes rotatemagic {
  0% {
    opacity: 0;
    transform: rotate(0deg);
    top: -24px;
    left: -253px;
  }

  100% {
    transform: rotate(-30deg);
    top: -24px;
    left: -78px;
  }
}