/*
=============== 
Fonts
===============
*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans|Roboto:400,700&display=swap');

/*
=============== 
Variables
===============
*/

:root {
  /* dark shades of primary color*/
  --clr-primary-1: hsl(246, 95%, 22%);
  --clr-primary-2: hsl(214, 100%, 23%);
  --clr-primary-3: hsl(217, 81%, 50%);
  --clr-primary-4: rgb(13, 36, 139);
  /* primary/main color */
  /* --clr-primary-5: hsl(42, 78%, 60%); */
  --clr-primary-5: rgba(70, 130, 180); ;
  /* lighter shades of primary color */
  --clr-primary-6: hsl(201, 74%, 75%);
  --clr-primary-7: hsl(218, 54%, 64%);
  --clr-primary-8: hsl(204, 47%, 29%);
  --clr-primary-9: hsl(45, 90%, 88%);
  --clr-primary-10: hsla(206, 69%, 83%, 0.62);
  /* darkest grey - used for headings */
  --clr-grey-1: hsl(209, 61%, 16%);
  --clr-grey-2: hsl(211, 39%, 23%);
  --clr-grey-3: hsl(209, 34%, 30%);
  --clr-grey-4: hsl(209, 28%, 39%);
  /* grey used for paragraphs */
  --clr-grey-5: hsl(210, 22%, 49%);
  --clr-grey-6: hsl(209, 23%, 60%);
  --clr-grey-7: hsl(211, 27%, 70%);
  --clr-grey-8: hsl(210, 31%, 80%);
  --clr-grey-9: hsl(212, 33%, 89%);
  --clr-grey-10: hsl(210, 36%, 96%);
  --clr-white: #fff;
  --ff-primary: 'Roboto', sans-serif;
  --ff-secondary: 'Open Sans', sans-serif;
  --transition: all 0.3s linear;
  --spacing: 0.25rem;
  --radius: 0.5rem;
  --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  --max-width: 1170px;
}
/*
=============== 
Global Styles
===============
*/

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--ff-secondary);
  background: var(--clr-white);
  color: var(--clr-grey-1);
  line-height: 1.5;
  font-size: 0.875rem;
}
ul {
  list-style-type: none;
}
a {
  text-decoration: none;
}
img:not(.nav-logo) {
  width: 100%;
  display: block;
}

h1,
h2,
h3,
h4 {
  letter-spacing: var(--spacing);
  text-transform: capitalize;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  font-family: var(--ff-primary);
}
h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 0.875rem;
}
p {
  margin-bottom: 1.25rem;
  color: var(--clr-grey-5);
}
@media screen and (min-width: 800px) {
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1rem;
  }
  body {
    font-size: 1rem;
  }
  h1,
  h2,
  h3,
  h4 {
    line-height: 1;
  }
}
/*  global classes */

.btn {
  text-transform: uppercase;
  background: var(--clr-primary-5);
  color: var(--clr-primary-1);
  padding: 0.375rem 0.75rem;
  letter-spacing: var(--spacing);
  display: inline-block;
  font-weight: 700;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 0.875rem;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
}
.btn:hover {
  color: var(--clr-primary-1);
  background: var(--clr-primary-7);
}
/* section */
.section {
  padding: 5rem 0;
}

.section-center {
  width: 90vw;
  margin: 0 auto;
  max-width: 100%;
}
@media screen and (min-width: 992px) {
  .section-center {
    width: 95vw;
  }
}
/* added during recording */
.underline {
  width: 5rem;
  height: 0.25rem;
  margin-bottom: 1.25rem;
  background: var(--clr-primary-5);
  margin-left: auto;
  margin-right: auto;
}
.section-title {
  margin-bottom: 4rem;
  text-align: center;
}
.bg-grey {
  background: var(--clr-grey-10);
}
/*
=============== 
Navbar
===============
*/
.nav-links {
  display: none;
}
.nav {
  height: 5rem;
  padding: 1rem;
  display: grid;
  -webkit-box-align: center;
  align-items: center;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.nav-center {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}
.nav-header {
  display: grid;
  grid-template-columns: 2fr 1fr;
  -webkit-box-align: center;
  align-items: center;
}
.nav-header img{
  width: 80px;
  height: 50px;
  
}
.nav-header p{
  font-size: xx-small;
  color: var(--clr-primary-5);
  font-weight: bold;
  justify-content: center;
  align-items: center;
  margin-top: 20px;

}
.nav-descrption{
  font-size: small;
  display: flex;
  flex-direction: row;

  

}
.nav-descrptionS{
  font-size: medium;
  display: flex;
  flex-direction: row;

  

}
.nav-btn {
  background: transparent;
  border-color: transparent;
  color: var(--clr-primary-5);
  font-size: 2rem;
  cursor: pointer;
  justify-self: end;
}
@media screen and (min-width: 768px) {
  .nav-btn {
    display: none;
  }
  .nav-links {
     display: flex; 
    grid-template-columns: repeat(5, 1fr);
    justify-items: center;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    justify-self: end;
  }
  .nav-links a {
    text-transform: capitalize;
    color: var(--clr-grey-1);
    font-weight: bold;
    letter-spacing: var(--spacing);
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .nav-links a:hover {
    color: var(--clr-primary-5);
  }
  .nav-center {
    display: grid;
    grid-template-columns: auto 2fr;
    -webkit-box-align: center;
    align-items: center;
  }
}
/* fixed navbar */
.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--clr-white);
  z-index: 2;
  box-shadow: var(--light-shadow);
}

.doctor-name {
  font-size: 12px; /* Adjust to your preferred size */
}

/*
=============== 
Sidebar
===============
*/
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--clr-grey-10);
  z-index: 4;
  display: grid;
  /* align-items: center;
  justify-content: center; */
  place-items: center;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  /* add later */
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
/* toggle sidebar */
.show-sidebar {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.sidebar-links {
  text-align: center;
}
.sidebar-links a {
  font-size: 1rem;
  text-transform: capitalize;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: var(--clr-grey-5);
  letter-spacing: var(--spacing);
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.5rem; border-radius: var(--radius);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
.sidebar-links a:hover {
  color: var(--clr-primary-5);
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}


.social-icons {
  display: grid;
  margin-top: 3rem;
  width: 20rem;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
}
.social-icon {
  font-size: 1.5rem;
  color: var(--clr-grey-1);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.social-icon:hover {
  color: var(--clr-primary-5);
}
.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3rem;
  background: transparent;
  border: transparent;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: #bb2525;
  cursor: pointer;
}
.close-btn:hover {
  color: #e66b6b;
}
@media screen and (min-width: 768px) {
  .sidebar {
    display: none;
  }
}
/*
=============== 
Hero
===============
*/
/* underline added to globals */
.hero .underline {
  margin-bottom: 0.5rem;
  margin-left: 0;
}
.hero-img {
  display: none;
}
.hero {
  background: var(--clr-primary-10);
}
.hero-center {
  min-height: calc(100vh - 5rem);
  display: grid;
  place-items: center;
}
.hero-info h4 {
  color: var(--clr-grey-5);
}
.hero-icons {
  justify-items: start;
}
.hero-btn {
  margin-top: 1.25rem;
}
@media screen and (min-width: 992px) {
  .hero-img {
    display: block;
    position: relative;
  }
  .hero-center {
    grid-template-columns: 1fr 1fr;
  }

  /* .hero-img::before,
  .about-img::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0.25rem solid var(--clr-primary-5);
    top: 2rem;
    right: -2rem;
    border-radius: var(--radius);
  } */
}
.hero-photo {
  max-width: 25rem;
  max-height: 30rem;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: var(--radius);
  position: relative;
}
/*
=============== 
About
===============
*/
/* section title added to globals */
.about-title {
  text-align: left;
  margin-bottom: 2rem;
}
.about-title .underline {
  margin-left: 0;
}
.about-center {
  display: grid;
  gap: 3rem 2rem;
}
.about-img {
  justify-self: center;
}
@media screen and (min-width: 992px) {
  .about-center {
    grid-template-columns: 1fr 1fr;
  }
  .about-img {
    position: relative;
  }

  .about-info {
    align-self: center;
  }
}
/*
=============== 
Services
===============
*/
/* bg-grey in globals */
.service {
  background: var(--clr-white);
  padding: 3rem 1.5rem;
  margin-bottom: 2rem;
  border-radius: var(--radius);
  text-align: center;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.service .underline {
  width: 3rem;
  height: 0.12rem;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.service p {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.service:hover {
  background: var(--clr-primary-5);
  color: var(--clr-white);
}
.service:hover p {
  color: var(--clr-white);
}
.service:hover .underline {
  background: var(--clr-white);
}
@media screen and (min-width: 676px) {
  .services-center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
}
@media screen and (min-width: 1000px) {
  .services-center {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
/* talk about small screen 
without grid different setup */
/*
=============== 
Projects
===============
*/
.projects-text {
  width: 85vw;
  max-width: 30rem;
  margin: 0 auto;
}
.project {
  position: relative;
  background: var(--clr-primary-5);
  border-radius: var(--radius);
  margin-bottom: 2rem;
}
.project-info {
  text-align: center;
  color: var(--clr-white);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  opacity: 0;
}
.project-info p {
  text-transform: capitalize;
  color: var(--clr-white);
}
.project:hover .project-info {
  opacity: 1;
}
.project-img {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: var(--radius);
  height: 15rem;
  -o-object-fit: cover;
  object-fit: cover;
}
.project:hover .project-img {
  opacity: 0.1;
}
.project::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0.25rem solid var(--clr-white);
  border-radius: var(--radius);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  opacity: 0;
}
.project:hover::after {
  opacity: 1;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}
@media screen and (min-width: 676px) {
  .projects-center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .projects-center {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1170px) {
  .projects-center {
    grid-template-rows: 200px 200px;
    gap: 1rem;
    grid-template-areas:
      'a b b'
      'a c d';
  }
  .project-img {
    height: 100%;
  }
  .project {
    height: 100%;
  }
  .project-1 {
    grid-area: a;
  }
  .project-2 {
    grid-area: b;
  }
  .project-3 {
    grid-area: c;
  }
  .project-4 {
    grid-area: d;
  }
}
/*
=============== 
Connect
===============
*/
.connect {
  min-height: 40vh;
  position: relative;
  padding: 10rem 0 5rem 0;
  margin: 5rem 0;
}
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -2;
}
.connect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--clr-white);
  /* background: rgba(0, 0, 0, 0.6); */
  opacity: 0.7;
  z-index: -1;
}
.connect {
  display: grid;
  place-items: center;
}
.video-banner .section-title {
  margin-bottom: 2rem;
}
.video-text {
  max-width: 30rem;
}
.video-banner {
  background: var(--clr-primary-10);
  padding: 3rem 5rem 12rem 5rem;
  text-align: center;

  -webkit-clip-path: polygon(
    0% 0%,
    100% 0%,
    100% 75%,
    75% 75%,
    75% 100%,
    50% 75%,
    0% 75%
  );
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% 75%,
    75% 75%,
    75% 100%,
    50% 75%,
    0% 75%
  );
}
.connect {
  -webkit-clip-path: polygon(
    50% 0%,
    100% 10%,
    100% 90%,
    50% 100%,
    0 90%,
    0 10%
  );
  clip-path: polygon(50% 0%, 100% 10%, 100% 90%, 50% 100%, 0 90%, 0 10%);
}
/*
=============== 
Skills
===============
*/
@media screen and (min-width: 768px) {
  .skills-center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
}
.skills {
  background: var(--clr-primary-9);
}
.skills h3 {
  margin: 1.5rem 0;
  color: var(--clr-primary-1);
}
.skill {
  margin-bottom: 1.25rem;
}
.skill p {
  margin-bottom: 0.5rem;
  text-transform: capitalize;
  color: var(--clr-primary-1);
}
.skill-container {
  background: var(--clr-white);
  height: 1rem;
  width: 100%;
  border-radius: var(--radius);
  position: relative;
}
.skill-value {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--clr-primary-5);
  height: 100%;
  width: 50%;
  border-radius: var(--radius);
}
.value-70 {
  width: 70%;
}
.value-80 {
  width: 80%;
}
.skill-text {
  position: absolute;
  top: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.skill-text-70 {
  left: 70%;
}
.skill-text-80 {
  left: 80%;
}
/*
=============== 
Timeline
===============
*/
.timeline-center {
  width: 80vw;
  max-width: 40rem;
}
.timeline-item {
  border-top: 2px dashed var(--clr-primary-5);
  margin: 0;
  padding: 4rem 2rem;
  position: relative;
}
.timeline p {
  margin-bottom: 0;
}
.timeline-item:nth-child(even) {
  border-left: 2px dashed var(--clr-primary-5);
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;

  margin-right: 2rem;
  padding-right: 0;
}
.timeline-item:nth-child(odd) {
  border-right: 2px dashed var(--clr-primary-5);
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  margin-left: 2rem;
  padding-left: 0;
}
.timeline-item:first-child {
  border-top: 0;
  border-top-right-radius: 0;
}
.timeline-item:last-child {
  border-bottom-left-radius: 0;
}
.number {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-bottom: 0;
  background: var(--clr-primary-5);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--clr-primary-1);
  font-weight: bold;
}
.timeline-item:nth-child(even) .number {
  left: 0;
}
.timeline-item:nth-child(odd) .number {
  right: 0;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
/*
=============== 
Blog
===============
*/
.blog {
  background: var(--clr-grey-10);
}
.card {
  height: 27rem;
  position: relative;
  /* talk later */
  -webkit-perspective: 1500px;
  perspective: 1500px;
}
.card-side {
  -webkit-transition: all 2s linear;
  transition: all 2s linear;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  -webkit-transform: translate3d(0, 0, 0);
  visibility: visible;
}
.card-front {
  background: var(--clr-white);
}
.card-back {
  background: var(--clr-primary-10);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  display: grid;
  place-items: center;
}
.card:hover .card-front {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
.card:hover .card-back {
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
}
/* rest of the styles */
.card-info {
  padding: 1rem 1.5rem;
}
.card-front img {
  height: 13rem;
  -o-object-fit: cover;
  object-fit: cover;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}
.card-footer {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  align-items: center;
  
}
.card-footer img {
  width: 2rem;
  height: 2rem;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.card-footer p {
  margin-bottom: 0;
  text-transform: uppercase;
  justify-self: end;
  color: var(--clr-primary-5);
  font-size: 0.85rem;
}
.blog-center {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 3rem 1rem;
}
/*
=============== 
Footer
===============
*/
.footer {
  padding-bottom: 2rem;
  background: #222;
  display: grid;
  place-items: center;
  text-align: center;
}
.footer .social-icons {
  margin-bottom: 2rem;
}
.footer .social-icon {
  color: var(--clr-primary-5);
}
.footer .social-icon:hover {
  color: var(--clr-primary-10);
}
.footer p {
  font-size: 1.25rem;
  text-transform: capitalize;
}
/*
=============== 
Single Page
===============
*/
.single-page {
  background: var(--clr-primary-10);
  min-height: calc(100vh - 5rem - 198px);
}
.page-info {
  max-width: 700px;
}
.page-info a {
  text-transform: uppercase;
  color: var(--clr-primary-5);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.page-info a:hover {
  color: var(--clr-primary-1);
}

/*
=============== 
Products Page
===============
*/
.projects-hero {
  height: 40vh;
  background: var(--clr-primary-10);
  display: grid;
  place-items: center;
}
.projects-hero .section-title {
  margin-bottom: 0;
}
.single-project {
  background: var(--clr-grey-10);
  border-radius: var(--radius);
}
.project-container img {
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}
.project-container {
  position: relative;
}
.project-icon {
  position: absolute;
  font-size: 1.75rem;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  background: var(--clr-primary-5);
  border-radius: 50%;
  color: var(--clr-primary-1);
  border: 0.375rem solid var(--clr-grey-10);
}
.project-details {
  padding: 2rem 1.5rem;
}
.project-header {
  display: flex;
  text-align: center;
  justify-content: center;
  justify-content: center;
}
.project-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--clr-primary-5);
}
.project-footer a,span {
  color: var(--clr-primary-5);
  text-transform: capitalize;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  justify-self: end;
  cursor: pointer;
}
.project-footer a:hover, span:hover {
  color: var(--clr-primary-1);
}
.projects-page-center {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 3rem 1rem;
}
/*
========================================================================================================================== 
Additional
==========================================================================================================================
*/

/*
=============== 
Occupational Health Services
===============
*/

.service a {
  display: block;
  text-decoration: none;
  margin: 4px 0; /* Adjusted margin for more spacing */
}

.service a p {
  border: 2px solid #4b51b1;
  padding: 8px 14px; /* More padding for better click area */
  color: #333;
  font-size: 1em; /* Consistent font size */
  border-radius: 6px; /* Rounded corners */
  transition: all 0.3s ease;
}

.service a p:hover {
  background-color: #4b51b1;
  color: white;
  cursor: pointer;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2); /* Stronger shadow for hover */
}

/* Toggle Button Styling */
#toggleButton {
  margin-top: 12px;
  padding: 12px 24px;
  background-color: #4b51b1;
  color: white;
  border: none;
  border-radius: 8px; /* Softer rounded edges */
  cursor: pointer;
  font-size: 1em;
  font-weight: 500;
  text-align: left; /* Ensures all content inside is left-aligned */
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

#toggleButton:hover {
  background-color: #3f469d; /* Darker blue on hover */
  transform: scale(1.05); /* Slight enlargement */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Shadow effect */
}
/*
=============== 
Dialog Overlay Styling
===============
*/

.dialog-overlay {
  width: 85%; /* Increased width for spaciousness */
  max-width: 650px; /* Larger max width */
  padding: 30px; /* More padding for aesthetic */
  border-radius: 16px; /* Softer rounded corners */
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.4); /* Stronger shadow */
  background-color: white;
  color: #333;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  flex-direction: column;
  animation: fadeIn 0.3s ease; /* Smooth fade-in animation */
}

/* Fade-In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Close Button Styling */
.dialog-close-btn {
  background: none;
  border: none;
  color: #d9534f;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 15px;
  transition: color 0.3s;
}

.dialog-close-btn:hover {
  color: #c9302c; 
}

/* Content Styling */
.dialog-content {
  width: 100%;
  max-height: calc(75vh - 50px);
  overflow-y: auto; 
  padding-right: 10px;
}

/* Header with Home Icon */
.dialog-header {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.home-icon {
  font-size: 26px; 
  color: #4b51b1; 
}

/* Centered Content in Dialog */
.dialog-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0; 
}

/* Toggle Text Styling */
.toggle-text {
  color: #007bff;
  cursor: pointer;
  text-decoration: underline;
  font-weight: 500;
  display: inline-block;
  margin-top: 12px; 
  transition: color 0.3s;
}

.toggle-text:hover {
  color: #0056b3; 
}

/* Description Text */
.dialog-description span {
  display: inline;
  line-height: 1.6;
}

/* Footer Links */
.dialog-footer {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 10px; 
}

/* Background Overlay */
dialog::backdrop {
  background: rgba(0, 0, 0, 0.6); 
}
/* Dialog Overlay Styling */
.dialog-overlay {
  width: 85%; 
  max-width: 650px; 
  padding: 30px; 
  border-radius: 16px; 
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.4);
  background-color: white;
  color: #333;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: fadeIn 0.3s ease; 
}

/* Fade-In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Close Button Styling */
.dialog-close-btn {
  background: none;
  border: none;
  color: #d9534f;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 15px;
  transition: color 0.3s;
  float: right; 
}

.dialog-close-btn:hover {
  color: #c9302c; /* Darker red on hover */
}

/* Content Styling */
.dialog-content {
  width: 100%;
  max-height: calc(75vh - 50px); 
  overflow-y: auto; 
  padding-right: 10px; 
}

/* Header with Home Icon */
.dialog-header {
  text-align: center; 
  margin-bottom: 20px;
}

.home-icon {
  font-size: 26px; 
  color: #4b51b1; 
}

/* Left-aligned Content in Dialog */
.dialog-details {
  padding: 10px 0; 
  text-align: left; 
  width: 100%; 
}

/* Toggle Text Styling */
.toggle-text {
  color: #007bff;
  cursor: pointer;
  text-decoration: underline;
  font-weight: 500;
  display: inline-block;
  margin-top: 12px; 
  transition: color 0.3s;
}

.toggle-text:hover {
  color: #0056b3; 
}

/* Description Text */
.dialog-description {
  line-height: 1.6;
  padding-left: 10px;
}

/* Footer Links */
.dialog-footer {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 10px; 
  justify-content: flex-start; 
}

/* Background Overlay */
dialog::backdrop {
  background: rgba(0, 0, 0, 0.6); 
}

/* Water Mark */
.upcoming {
  font-size: 14px;
  color: #fff;
  background-color: #ee635e;  /* Use green to indicate an upcoming event */
  padding: 5px 5px;
  border-radius: 5px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  margin: 5px 0px;
  animation: pulse 1.5s infinite; /* Add pulse animation */
}

@keyframes pulse {
  0%, 100% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.05); /* Slightly enlarge */
  }
}

/* Compact Overall Section */
.working-hours-section {
  max-width: 500px;
  margin: 0 auto;
  padding: 1rem;
  background: #f5fafd;
  border-radius: 10px;
  border: 1px solid #e0e7ff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Title Styling */
.section-title {
  text-align: center;
  font-size: 1.6rem;
  color: #007acc;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

/* Hours Table Layout */
.hours-table {
  display: grid;
  gap: 8px;
}

/* Row Styling */
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.8rem;
  background-color: #fff;
  border-radius: 6px;
  transition: transform 0.2s, background-color 0.2s;
}

.hours-row:hover {
  transform: translateY(-2px);
  background-color: #e6f2ff;
}

/* Day and Time Styling */
.week-day {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: #004d80;
}

.week-day i {
  font-size: 1.1rem;
  margin-right: 5px;
  color: #007acc;
}

.working-time {
  font-size: 1rem;
  font-weight: 500;
  color: #555;
}

/* Highlight Styles */
.current-day {
  border-left: 4px solid #4caf50;
  background: #e8f5e9;
}

.weekend {
  border-left: 4px solid #ff9800;
  background: #fff3e0;
}

.weekend .working-time {
  color: #ff6f00;
}

.closed {
  border-left: 4px solid #f44336;
  background: #ffebee;
}

.closed .week-day,
.closed .working-time {
  color: #e53935;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 480px) {
  .working-hours-section {
    padding: 0.8rem;
  }

  .week-day,
  .working-time {
    font-size: 0.9rem;
  }
}
.bold-name {
  font-weight: bold;
}

/* ------------------------------ */

.read-more-btn {
  all: unset; /* Resets all inherited button styles */
  color: #007bff; /* Blue text */
  cursor: pointer; /* Pointer on hover */
  font-size: 1rem; /* Adjust font size if needed */
  font-weight: bold;
  text-decoration: underline;
}

/* Hover effect for better interactivity */
.read-more-btn:hover {
  text-decoration: none;
  color: #0056b3; /* Darker blue for hover */
}

/* Focus effect for accessibility */
.read-more-btn:focus {
  outline: 2px dashed #0056b3; /* Optional: Visible focus for accessibility */
  outline-offset: 2px;
}


/* Modal container( IV drip dialog) */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dim background */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* Modal content */
.modal-content {
  position: relative;
  background-color: #fff;
  padding: 20px;
  max-width: 500px;
  width: 90%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease-in-out;
  text-align: left; /* Align text to the left */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Close button (top-right corner) */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: #333;
  font-size: 20px;
  cursor: pointer;
  font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
  color: #d9534f;
  outline: none;
}

/* Footer close button */
.close-footer-btn {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s;
  margin-top: 15px;
}

.close-footer-btn:hover,
.close-footer-btn:focus {
  background-color: #0056b3;
  outline: none;
}

/* Animation for modal */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Additional enhancements for better responsiveness */
@media screen and (max-width: 768px) {
  .modal-content {
    padding: 15px;
    font-size: 14px;
  }

  .close-footer-btn {
    font-size: 14px;
    padding: 8px 15px;
  }
}

/* ==================== */
/* ==================== */
/* Modal Container */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Slightly darker dim background */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeInBackground 0.4s ease-in-out; /* Background animation */
}

/* Hidden modal (default state) */
.hidden {
  display: none;
}

/* Modal Content */
.modal-content {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #f9f9f9);
  padding: 25px;
  max-width: 500px;
  width: 90%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  animation: zoomIn 0.5s ease-in-out;
  text-align: center;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Close Button (X) */
.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  border: none;
  color: #555;
  font-size: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.3s, color 0.3s;
}

.close-btn:hover,
.close-btn:focus {
  color: #d9534f;
  transform: scale(1.2);
  outline: none;
}

/* Footer Buttons */
.close-footer-btn {
  display: inline-block;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
  margin: 10px;
}

.close-footer-btn:hover,
.close-footer-btn:focus {
  background: linear-gradient(135deg, #0056b3, #003d80);
  transform: translateY(-3px);
  outline: none;
}

/* Animation for Modal Background */
@keyframes fadeInBackground {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Animation for Modal Content */
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive Enhancements */
@media screen and (max-width: 768px) {
  .modal-content {
    padding: 20px;
    font-size: 14px;
  }

  .close-footer-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* Enhanced Book Appointment Button */
.appointment-btn-container {
  margin-top: 1.5rem;
  display: inline-block;
}

.appointment-btn {
  text-transform: uppercase;
  background: var(--clr-primary-5);
  color: #c4c3c3; 
  padding: 0.75rem 1.5rem;
  letter-spacing: var(--spacing);
  font-weight: 700;
  transition: all 0.3s ease;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.2rem;
  position: relative;
  overflow: hidden;
}

.appointment-btn:hover {
  background: var(--clr-primary-7);
  color: #333; /* Darker gray on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.appointment-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: #444; /* Slightly darker when clicked */
}

.appointment-btn i {
  transition: transform 0.3s ease;
  color: #555; /* Match icon color to text */
}

.appointment-btn:hover i {
  transform: scale(1.1);
  color: #333; /* Darker icon on hover */
}

/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(70, 130, 180, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(70, 130, 180, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(70, 130, 180, 0);
  }
}

/* Add pulse animation on page load */
.appointment-btn {
  animation: pulse 2s infinite 3s;
}

/* Ripple effect */
.appointment-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.appointment-btn:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .appointment-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .appointment-btn i {
    font-size: 0.9rem;
  }
}

/* Enhanced Mobile Menu Styles ------------------------*/




.sidebar-appointment {
  margin: 1.5rem 0;
}

.sidebar-appointment-btn {
  background: skyblue;
  color: var(--clr-white);
  padding: 1rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
}

.sidebar-appointment-btn:hover {
  background: var(--clr-primary-7);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(150, 149, 149, 0.2);
}

.sidebar-contact-info {
  padding: 0.5rem;
  margin: 1rem 0;
  background:rgba(144,238,144, 0.2);
  border-radius: var(--radius);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0.8rem 0;
  color: var(--clr-black);
  font-size: 0.9rem;
}
.contact-item.open {
  color: #04702d;
  font-weight: 600;
}

.contact-item.closed {
  color: #dc2626;
  font-weight: 600;
}

/* Desktop Nav Appointment Button */
.appointment-nav-item {
  display: none; /* Hidden by default */
}

.appointment-nav-link {
  background: var(--clr-primary-5);
  color: var(--clr-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.appointment-nav-link:hover {
  background: var(--clr-primary-7);
}

@media screen and (min-width: 768px) {
  .appointment-nav-item {
    display: block; /* Show on desktop */
  }
  
  .sidebar-appointment {
    display: none; /* Hide on desktop */
  }
}



.close-btn:hover {
  transform: rotate(90deg);
}

/* Smooth transitions */
.sidebar {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  text-transform: uppercase;
  background: #0d9488;
  color: #f9f9f9;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0.05rem;
  transition: all 0.35s ease;
  box-shadow: 0 4px 8px rgba(13, 148, 136, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.booking-btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.booking-btn:hover {
  background: #0f766e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(13, 148, 136, 0.4);
}

.booking-btn:hover i {
  transform: scale(1.1);
}

/* Ripple effect */
.booking-btn::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: scale(1) translate(-50%, -50%);
  transform-origin: center;
}

.booking-btn:focus:not(:active)::after {
  animation: ripple 0.8s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20);
    opacity: 0;
  }
}

/* Mobile size adjustment */
@media (max-width: 768px) {
  .booking-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}

/* Testimonials Section */
/* General layout for the Testimonials section */
.testimonials-section {
    margin: 40px auto;
    padding: 40px 30px;
    max-width: 1200px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

/* Section Title */
.section-title h1 {
    font-size: 2.5rem;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}



/* Average Rating Container */
.average-rating {
    text-align: center;
    margin-bottom: 40px;
}

.average-rating h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1c85ee;
    margin-bottom: 10px;
}

.average-rating p {
    font-size: 1.2rem;
    color: #666;
}

/* Reviews Wrapper (Grid Layout) */
.reviews-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 2rem; 
  margin-top: 2rem;
  overflow-y: auto;
}

/* Individual Review Styling */
.review {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Review Header (Name + Rating) */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
}

.stars {
    font-size: 1.2rem;
    color: #f39c12; /* Gold for filled stars */
}

/* Review Comment */
.review-comment {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.5;
    margin: 10px 0;
}

.review-date {
    font-size: 0.9rem;
    color: #888;
}

/* Helpfulness Buttons */
.helpfulness {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.helpful-btn,
.not-helpful-btn {
    padding: 10px 15px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.helpful-btn {
    background-color: #fefefe;
    color: #000000;
}

.not-helpful-btn {
    background-color: #ffffff;
    color: #000000;
}


/* Responsive Design: For smaller screen sizes */
@media (max-width: 768px) {
    .reviews-wrapper {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 480px) {
    .reviews-wrapper {
        grid-template-columns: 1fr; 
    }
}
/* WhatsApp Floating Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: Arial, sans-serif;
}

.chat-box {
  background-color: white;
  color: #333;
  border-radius: 10px;
  padding: 16px;
  width: 260px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

/* Show chat box on hover (desktop) */
.whatsapp-widget:hover .chat-box {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Chat Button */
.chat-button {
  background-color: #25D366;
  color: white;
  text-align: center;
  display: block;
  margin-top: 12px;
  padding: 10px;
  width: 100%;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.chat-button:hover {
  background-color: #1ebc59;
}

/* WhatsApp Button (Floating Circle) */
.whatsapp-button {
  background-color: #25D366;
  color: white;
  font-size: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.whatsapp-button:hover {
  background-color: #1ebc59;
}

/* Mobile Support: Show chat box when the button is clicked */
@media (max-width: 768px) {
  /* Show chat box on button click (on mobile) */
  .whatsapp-widget .whatsapp-button:active + .chat-box {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}


/* IV Treatment Button Styling */
.pulse-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #1d12ec;
  color: white;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 10px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(83, 39, 241, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(255, 71, 87, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
  }
}

/* Dialog Learn More Button */
.learn-more-btn {
  display: inline-block;
  background-color: #5f88f0;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background-color: #5f88f0;
}
.buttons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

/* Button Styling - using the same style as .btn.hero-btn */
.hero-btn,
.appointment-btn,
.iv-treatment-btn {
  text-transform: uppercase;
  background: var(--clr-primary-5);
  color: var(--clr-primary-1);
  padding: 0.375rem 0.75rem;
  letter-spacing: var(--spacing);
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  transition: var(--transition);
  font-size: 0.875rem;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
  text-decoration: none;
}

.hero-btn:hover,
.appointment-btn:hover,
.iv-treatment-btn:hover {
  color: var(--clr-primary-1);
  background: var(--clr-primary-7);
}

/* Style for the text inside buttons */
.btn-text {
  margin: 0;
  margin-right: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: var(--ff-primary);
}

/* Icon styling */
.appointment-btn i,
.iv-treatment-btn i {
  font-size: 1rem;
}

/* Position for the pulse badge */
.iv-treatment-btn {
  position: relative;
}

.pulse-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--clr-primary-5);
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 10px;
  animation: pulse 1.5s infinite;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .buttons-container {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn,
  .appointment-btn,
  .iv-treatment-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }
}
/* Booking Modal Styles */
.booking-modal {
  max-width: 500px;
  width: 90%;
}

.booking-modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.booking-icon {
  font-size: 3rem;
  color: var(--clr-primary-5);
  margin-bottom: 15px;
}

.booking-modal-header h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 10px;
}

.booking-modal-header p {
  color: #666;
  font-size: 1rem;
}

.booking-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booking-option {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  position: relative;
}

.booking-option:hover {
  background: var(--clr-primary-5);
  color: white;
  border-color: var(--clr-primary-5);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(70, 130, 180, 0.3);
}

.option-icon {
  font-size: 2rem;
  margin-right: 20px;
  color: var(--clr-primary-5);
  transition: color 0.3s ease;
}

.booking-option:hover .option-icon {
  color: white;
}

.option-content {
  flex: 1;
}

.option-content h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: bold;
}

.option-content p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.8;
}

.option-badge {
  background: #28a745;
  color: white;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 10px;
  position: absolute;
  top: 10px;
  right: 40px;
  font-weight: bold;
}

.option-arrow {
  font-size: 1.2rem;
  color: var(--clr-primary-5);
  transition: all 0.3s ease;
}

.booking-option:hover .option-arrow {
  color: white;
  transform: translateX(5px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .booking-option {
    padding: 15px;
  }
  
  .option-icon {
    font-size: 1.5rem;
    margin-right: 15px;
  }
  
  .option-content h4 {
    font-size: 1.1rem;
  }
  
  .option-content p {
    font-size: 0.8rem;
  }
}

