@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root{
    --primary-color:#044F94;
    --heading-color:#044094;
    --subheading-color:#7FB63F;
    --text-color:#333333;
    --white:#ffff;


}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
      font-family: "Roboto", sans-serif;
}

.btn{
    padding: 1rem 2rem;
    outline: none;
    border: none;
    font-size: 1rem;
    color:var(--white) ;
    background-color: var(--heading-color);
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}
.btn:hover{
    background-color:var(--subheading-color);
}

/* Navbar */
.container{
    max-width: 1200px;
    margin: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
nav{
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
}
.nav__logo{
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--heading-color);
}
.nav_logo_img{
    width: 100%;
    height: 20vh;
}
.nav__logo:hover{
    color: var(--subheading-color);
}
.nav__links{
    list-style: none;
    display: flex;
    align-items: center;
    gap:2.5rem;
}
.links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight:600;
    cursor: pointer;
    transition: 0.3s;
}
.links a:hover{
    color: var(--subheading-color);
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
    transition: 0.3s;
}

.menu-toggle:hover {
    color: var(--subheading-color);
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.sidebar.active {
    right: 0;
}

/* Hide menu toggle when sidebar is open */
body.sidebar-open nav .menu-toggle {
    display: none;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header .nav__logo {
    font-size: 1.2rem;
}

.sidebar-header .nav_logo_img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0;
    transition: 0.3s;
}

.sidebar-close:hover {
    color: var(--subheading-color);
    transform: rotate(90deg);
}

.sidebar-links {
    list-style: none;
    padding: 1rem 0;
}

.sidebar-links li {
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-links li a {
    display: block;
    padding: 1.2rem 1.5rem;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: 0.3s;
}

.sidebar-links li a:hover {
    background: var(--primary-color);
    color: var(--white);
    padding-left: 2rem;
}

.sidebar-btn {
    margin: 1.5rem;
    width: calc(100% - 3rem);
}
/* header style */
.header{
    padding: 0 1rem;
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 2rem;
    align-items: center;
}
.content h1 {
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
}
.content h1 span {
   font-weight: 400;
}
.content p {
    margin-bottom: 2rem;
    color: var(--text-color);
    line-height: 1.75rem;
}
/* image style */
.image{
    position: relative;
    text-align: center;
    isolation: isolate;
}
.image_bg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    height: 450px;
    width: 450px;
    background-color: var(--primary-color);
    border-radius: 100%;
    z-index: -1;
}
.image img{
    width: 100%;
    max-width: 475px;
    border-radius:5%;
}
.image-content {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    background-color: var(--primary-color);
    border-radius: 5px;
    box-shadow:5px 5px 20px rgba(0, 0, 0, 0.2);
}
.image_content_1{
    transform: translate(calc(-50% - 12rem) , calc(-50% - 8rem));
}
.image_content_1 span {
    padding: 10px 12px;
    font-size: 1.5rem;
    color:var(--primary-color);
    background-color: #defcf4;
    border-radius: 100%;
}
.image_content_1 h4
{
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}
.image_content_1 p {
    color: var(--white);
}
 .image_content_2{
    transform: translate(calc(-50% + 8rem) , calc(-50% + 10rem));
}
.image_content_2 ul {
    list-style: none;
    display: grid;
    gap: 1rem;
}
.image_content_2 li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--white);
}
.image_content_2 span {
    font-size: 1.5rem;
    color: var(--white);

}

/* services section */
.service-header .service_title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 22px;
    color: var(--heading-color);
    letter-spacing: 1.5px;
    padding: 50px 0px;
}
.service-header .service_title h2::before{
    content: "";
    height: 6px;
    width:100%;
    background-color: var(--primary-color);
    border-radius: 6px;
    position: relative;
    display: block;
    margin: auto;
}
 .service_container{
    position: relative;
    display: flex;
    padding: 80px 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
 }
 .card {
    position: relative;
    width: 350px;
    height: 180px;
    background-color: var(--heading-color);
    transition: 0.5s;
    border-radius:40px;
 }
 .card:hover{
    height: 450px;
 }
 .lines {
    position: absolute;
    inset: 0;
    background: var(--white);
    overflow: hidden;
    border-radius: 40px;
 }
 .lines::before{
    content: '';
    position: absolute;
    top: 50%;
    left:50%;
    width: 600px;
    height:150px;
    background: linear-gradient(transparent , #044F94 , #044F94 ,#044F94 , transparent);
    animation: animate1 4s linear infinite ;
    animation-play-state: paused;
 }
 .card:hover .lines::before {
    animation-play-state: running;
 }
 @keyframes animate1 {
    0% {
        transform: translate(-50%,-50%) rotate(0deg);
    }
        100% {
        transform: translate(-50%,-50%) rotate(360deg);
    }
 }
 .lines::after{
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--white);
    border-radius: 40px;
 }
 .imgbox{
    position: absolute;
    top:-50px;
    left: 50%;
    width: 150px;
    height: 150px;
    border-radius: 30px;
    transform: translateX(-50%);
    background: var(--heading-color);
    transition: 0.5s;
    z-index: 10;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
 }
 .card:hover .imgbox {
    top: 25px;
    width: 200px;
    height: 200px;
 }
 .card:hover .imgbox img{
    opacity: 1;
 }
 .imgbox::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 125px;
    transform: translate(-50%,-50%);
    background: linear-gradient(transparent , #defcf4 , #defcf4 ,#defcf4 , transparent);
    animation: animate2 6s linear infinite ;
    animation-play-state: paused;
 }
  .card:hover .imgbox::before {
    animation-play-state: running;
 }
  @keyframes animate2 {
    0% {
        transform: translate(-50%,-50%) rotate(360deg);
    }
        100% {
        transform: translate(-50%,-50%) rotate(0deg);
    }
 }
 .imgbox::after{
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 30px;
    background:var(--primary-color);
 }
 .imgbox img {
    position: absolute;
    width: 100px;
    z-index:1;
    filter: invert(1);
    opacity: .5;
    transition: 0.5s;
 }
 /* Details */
 .service_content{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items:flex-end;
    overflow: hidden;
 }
 .service_content .service_detail{
    padding: 20px 10px;
    text-align: center;
    width: 100%;
    transition: 0.5s;
    transform: translateY(145px);
 }
 .card:hover .service_content .service_detail{
     transform: translateY(0px);
 }
 .service_content .service_detail h2 {
    font-size: 1.9em;
    padding-bottom:45px;
    font-weight:700;
    color: var(--heading-color);
    line-height: 1.9em;
 }
 .service_content .service_detail p {
    color: var(--primary-color);
    opacity:0;
    transition:.5s;
    text-align:center;
 }
 /*.service_content .service_detail a {*/
 /*   display: inline-block;*/
 /*   padding: 8px 15px;*/
 /*   background: var(--heading-color);*/
 /*   color: var(--white);*/
 /*   margin-top: 10px;*/
 /*   font-weight:500;*/
 /*   border-radius: 10px;*/
 /*   text-decoration: none;*/
 /*   opacity:0;*/
 /*   transition:.5s;*/
 /*}*/
.card:hover .service_content .service_detail p,
.card:hover .service_content .service_detail a {
   opacity: 1;
}
@media (max-width:768px){
.imgbox{
    position: absolute;
    top:-40px;
    left: 50%;
    width: 120px;
    height: 120px;
    border-radius: 30px;
    transform: translateX(-50%);
    background: var(--heading-color);
    transition: 0.5s;
    z-index: 10;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
 }
  .service_container{
    position: relative;
    display: flex;
    padding: 60px 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
 }
 .card {
    position: relative;
    width: 350px;
    height: 180px;
    background-color: var(--heading-color);
    transition: 0.5s;
    border-radius:40px;
 }
 .card:hover{
    height: 450px;
 }
  .service_content{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items:flex-end;
    overflow: hidden;
 }
 .service_content .service_detail{
    padding: 20px 10px;
    text-align: center;
    width: 100%;
    transition: 0.5s;
    transform: translateY(145px);
 }
}

/* key performance */
.kpi-section {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 6%;
  background: linear-gradient(165deg, var(--primary-color) 0%, #023a6b 45%, #012d52 100%);
  color: #fff;
  overflow: hidden;
}

.kpi-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(127, 182, 63, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(4, 64, 148, 0.35) 0%, transparent 50%);
  pointer-events: none;
}

.kpi-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.kpi-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.kpi-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200, 230, 255, 0.85);
  margin-bottom: 0.75rem;
}

.kpi-section h2 {
  font-family: "Montserrat", "Roboto", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.kpi-sub {
  color: rgba(230, 242, 255, 0.82);
  font-size: 1.05rem;
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.55;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1100px) {
  .kpi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .kpi-grid {
    grid-template-columns: 1fr;
  }
}

.kpi-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 1.5rem 1.35rem 1.6rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.kpi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  border-color: rgba(127, 182, 63, 0.45);
}

.kpi-card--featured {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(127, 182, 63, 0.28);
}

.kpi-card__accent {
  position: absolute;
  top: 0;
  left: 1.35rem;
  right: 1.35rem;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--subheading-color), #9fd456);
  opacity: 0.95;
}

.kpi-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: rgba(127, 182, 63, 0.2);
  color: #c8e89a;
  font-size: 1.35rem;
}

.kpi-card__title {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(220, 235, 255, 0.88);
  line-height: 1.35;
  margin-bottom: 0.65rem;
  min-height: 2.6em;
}

.kpi-card__value {
  font-family: "Montserrat", "Roboto", sans-serif;
  font-size: clamp(1.65rem, 3.2vw, 2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.kpi-card__value--range {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
}

.kpi-range {
  font-variant-numeric: tabular-nums;
}

.kpi-unit {
  font-size: 0.85em;
  font-weight: 600;
  text-transform: lowercase;
  color: rgba(200, 230, 255, 0.75);
}

/* FAQ */
.faq {
    padding: 10px 12%;
    text-align: center;
    font-size: 18px;
}
.faq h2 {
    font-weight: 500;
    font-size: 50px;
    color: var(--heading-color);

}
.accordian{
    margin: 60px auto;
    width: 100%;
    padding: 5px;
}
.accordian li {
    list-style: none;
}
.accordian li label {
    display: flex;
    align-items: center;
    padding: 20px;
    padding-right: 60px;
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    background: var(--primary-color);
    margin-bottom: 2px;
    cursor: pointer;
    position: relative;
    user-select: none;
}
.accordian li label::after {
    content: '+';
    font-size: 34px;
    position: absolute;
    right: 20px;
    transition: transform .5s;
    pointer-events: none;
}
.accordian input[type="radio"]{
    display: none;
}
.accordian .content {
   text-align: left;
   padding: 0px 20px;
   max-height: 0;
   overflow: hidden;
   transition: max-height .5s , padding .5s;
}
.accordian input[type="radio"]:checked+label+.content{
    max-height: 600px;
    padding: 30px 30px;
}
.accordian input[type="radio"]:checked+label::after{
    content: '×';
    transform: rotate(0deg);
    font-size: 40px;
    font-weight: 300;
}
.accordian input[type="radio"]:checked+label .close-btn {
    display: flex;
}
/* contact */
.contact {
    position: relative;
    min-height: 100vh;
    padding: 80px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-content {
    max-width: 800px;
    text-align: center;
}

.contact-content h2 {
    font-size: 36px;
    font-weight: 500;
}

.contact-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.contact-container .contactInfo {
    width: 50%;
    display: flex;
    flex-direction: column;

}

.contact-container .contactInfo .box {
    position: relative;
    padding: 20px 0;
    display: flex;
}

.contact-container .contactInfo .box .icon {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--heading-color) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
}

.contact-container .contactInfo .box .text {
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    flex-direction: column;
    font-weight: 600;
}

.contact-container .contactInfo .box .text h3 {
    font-weight: 500;
    color: var(--primary-color);
}

.contact-form {
    width: 40%;
    padding: 40px;
    background: #fff;
}

.contact-form h2 {
    font-size: 30px;
    color: #1f242d;
    font-weight: 500;
    text-align: center;

}
.contact-form .input-box span {
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #0a0e2e;
}

.contact-form .input-box input:focus ~ span,
.contact-form .input-box input:valid ~ span,
.contact-form .input-box textarea:focus ~ span,
.contact-form .input-box textarea:valid ~ span{
    color:var(--primary-color);
    font-size: 12px;
    transform: translateY(-20px);

}

.contact-form .input-box {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.contact-form .input-box input,
.contact-form .input-box textarea {
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid var(--primary-color);
    outline: none;
}

.contact-form .input-box input[type="submit"] {
    width: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--heading-color) 100%);
    color: var(--white);
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-form .input-box input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}
@media (max-width:768px) {
    .contact-form{
        width: 100%;
    }
    .contact {
        padding: 50px;
    }
    .contact-container {
        flex-direction: column;
    }
    .contact-container .contactInfo {
        margin-bottom: 40px;
    }
    .contact-container .contactInfo {
        width: 100%;
    }
    
}
/* footer */
.footer {
  background: var(--heading-color);
  color: #cfd8dc;
  box-sizing: border-box;
  padding: 60px clamp(1.25rem, 5vw, 10%) 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-items: center;
  text-align: center;
}

.footer-grid > div {
  width: 100%;
  max-width: 280px;
}

.footer-grid .social-links {
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0;
}

@media (min-width: 576px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-items: start;
    text-align: left;
    gap: 2rem 1.5rem;
  }

  .footer-grid > div {
    max-width: none;
  }

  .footer-grid .social-links {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) minmax(200px, 1fr) auto;
    align-items: start;
  }

  .footer-grid .social-links {
    grid-column: auto;
    justify-content: flex-end;
    align-self: start;
  }
}

.footer h4 {
  color: var(--subheading-color);
  margin-bottom: 15px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer a {
  color: #cfd8dc;
  text-decoration: none;
}

.footer a:hover {
  color: #00e5ff;
}
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--subheading-color);
}
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid var(--heading-color);
  padding-top: 20px;
  font-size: 14px;
}
/* Page Header (Common for all pages) */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--heading-color) 100%);
    padding: 100px 2rem 80px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.1;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-header h1 span {
    color: var(--subheading-color);
    font-weight: 400;
}

.page-header p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Specialist Doctors Page */
.specialists-section {
    padding: 80px 2rem;
    background: #f8f9fa;
}
.specialists-section h2 {
    font-size: 2.5rem;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 1.5rem;
}
.specialists-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.doctor-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.6s ease-out backwards;
}

.doctor-card:nth-child(1) { animation-delay: 0.1s; }
.doctor-card:nth-child(2) { animation-delay: 0.2s; }
.doctor-card:nth-child(3) { animation-delay: 0.3s; }
.doctor-card:nth-child(4) { animation-delay: 0.4s; }
.doctor-card:nth-child(5) { animation-delay: 0.5s; }
.doctor-card:nth-child(6) { animation-delay: 0.6s; }

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(4, 79, 148, 0.2);
}

.doctor-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--heading-color));
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.1);
}

.doctor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 79, 148, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.doctor-card:hover .doctor-overlay {
    opacity: 1;
}

.doctor-social {
    display: flex;
    gap: 1rem;
}

.doctor-social a {
    width: 50px;
    height: 50px;
    background: var(--subheading-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.doctor-social a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.1) rotate(360deg);
}

.doctor-info {
    padding: 2rem;
}

.doctor-info h3 {
    font-size: 1.8rem;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.doctor-specialty {
    color: var(--subheading-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.doctor-experience {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.doctor-services {
    margin-bottom: 1.5rem;
}

.doctor-services h4 {
    color: var(--heading-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.doctor-services ul {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.doctor-services li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-size: 0.95rem;
}

.doctor-services li i {
    color: var(--subheading-color);
    font-size: 1.2rem;
}

.doctor-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Gallery Page */
.gallery-section {
    padding: 80px 2rem;
    background: #f8f9fa;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }
.gallery-item:nth-child(9) { animation-delay: 0.9s; }

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(4, 79, 148, 0.3);
}

.gallery-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(4, 79, 148, 0.95), rgba(4, 64, 148, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    color: var(--white);
}

.gallery-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.gallery-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: var(--subheading-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.gallery-link:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Facilities Summary */
.facilities-summary {
    padding: 80px 2rem;
    background: var(--primary-color);
    color: var(--white);
}

.facilities-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.facilities-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--white);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.facility-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.facility-box:nth-child(1) { animation-delay: 0.1s; }
.facility-box:nth-child(2) { animation-delay: 0.2s; }
.facility-box:nth-child(3) { animation-delay: 0.3s; }
.facility-box:nth-child(4) { animation-delay: 0.4s; }

.facility-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.facility-box i {
    font-size: 3rem;
    color: var(--subheading-color);
    margin-bottom: 1rem;
    display: block;
}

.facility-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.facility-box p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Pricing Page */
.pricing-section {
    padding: 80px 2rem;
    background: #f8f9fa;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease-out backwards;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(4, 79, 148, 0.2);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--heading-color));
    color: var(--white);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--subheading-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(127, 182, 63, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(4, 79, 148, 0.1);
}

.pricing-card.featured .pricing-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.pricing-card.featured .pricing-header h3 {
    color: var(--white);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 1.5rem 0;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--heading-color);
}

.pricing-card.featured .pricing-price .currency {
    color: var(--white);
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1;
}

.pricing-card.featured .pricing-price .amount {
    color: var(--white);
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-color);
    margin-left: 0.5rem;
}

.pricing-card.featured .pricing-price .period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-description {
    color: var(--text-color);
    font-size: 1rem;
}

.pricing-card.featured .pricing-description {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
    flex: 1;
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    font-size: 1rem;
}

.pricing-card.featured .pricing-features li {
    color: var(--white);
}

.pricing-features li i {
    font-size: 1.3rem;
    color: var(--subheading-color);
}

.pricing-card.featured .pricing-features li i {
    color: var(--subheading-color);
}

.pricing-features li i.ri-close-line {
    color: #ccc;
}

.pricing-btn {
    width: 100%;
    margin-top: auto;
}

.pricing-card.featured .pricing-btn {
    background: var(--subheading-color);
}

.pricing-card.featured .pricing-btn:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Pricing Page - Individual Services & Bundles */
.pricing-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.individual-rate-card {
    background: linear-gradient(135deg, rgba(4, 79, 148, 0.04), rgba(4, 64, 148, 0.08));
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.09);
    border: 1px solid rgba(4, 79, 148, 0.15);
    backdrop-filter: blur(6px);
}

.individual-rate-header {
    text-align: center;
    margin-bottom: 2rem;
}

.individual-rate-header h2 {
    font-size: 2.2rem;
    color: var(--heading-color);
    margin-bottom: 0.75rem;
}

.individual-rate-header p {
    color: var(--text-color);
    font-size: 1rem;
}

/* Individual services - summary cards */
.service-summary-grid {
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.service-summary-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(4, 79, 148, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.service-summary-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(4, 79, 148, 0.18);
    border-color: var(--primary-color);
}

.service-summary-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--heading-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
}

.service-summary-card h3 {
    font-size: 1.1rem;
    color: var(--heading-color);
}

.service-summary-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-color);
}

.pricing-table-wrapper {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.25rem;
    scrollbar-gutter: stable;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pricing-table-wrapper:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--heading-color));
    color: var(--white);
}

.pricing-table th,
.pricing-table td {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    text-align: left;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-table th:last-child,
.pricing-table td:last-child {
    border-right: none;
}

.pricing-table th {
    font-weight: 600;
    letter-spacing: 0.03em;
}

.pricing-table tbody tr:nth-child(even) {
    background: #f5f8fb;
}

.pricing-table tbody tr:nth-child(odd) {
    background: #ffffff;
}

.pricing-table tbody tr:hover {
    background: #e9f2ff;
}

.pricing-table td:first-child {
    font-weight: 600;
    color: var(--heading-color);
    width: 18%;
}

.pricing-table td {
    color: var(--text-color);
    vertical-align: top;
}

.pricing-table td br {
    line-height: 1.6;
}

@media (max-width: 768px) {
    .pricing-table {
       width: 70%;
    }

    .pricing-table th,
    .pricing-table td {
        /*padding: 0.75rem 0.55rem;*/
        font-size: 0.8rem;
        line-height: 1.45;
    }

    .pricing-table th {
        font-size: 0.52rem;
        letter-spacing: 0.02em;
    }
}

@media (max-width: 400px) {
    .pricing-table {
       width: 50%;
    }

    .pricing-table th,
    .pricing-table td {
        /*padding: 0.45rem 0.55rem;*/
        font-size: 0.74rem;
    }
}

.pricing-footnote {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-color);
    text-align: center;
}

.bundles-section {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(4, 79, 148, 0.1);
}

.bundles-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.bundles-header h2 {
    font-size: 2.1rem;
    color: var(--heading-color);
    margin-bottom: 0.75rem;
}

.bundles-header p {
    color: var(--text-color);
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.75rem;
}

.bundle-card {
    background: #f8fbff;
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bundle-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 79, 148, 0.08), rgba(127, 182, 63, 0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.bundle-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(4, 79, 148, 0.18);
}

.bundle-card:hover::before {
    opacity: 1;
}

.bundle-card h3 {
    font-size: 1.25rem;
    color: var(--heading-color);
    margin-bottom: 0.75rem;
}

.bundle-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.bundle-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-color);
}

.bundle-text {
    font-size: 0.98rem;
    color: var(--text-color);
    line-height: 1.7;
}

.bundle-note {
    font-size: 0.85rem;
    margin-top: 0.75rem;
    color: var(--text-color);
    font-style: italic;
}

.bundles-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.bundles-cta p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.bundles-btn {
    padding-inline: 2.5rem;
}

/* Company vision and mission */
.company_target {
    margin-top: 6.5rem;
}

.company_target h2 {
    text-transform: uppercase;
    font-size:40px;
    color: var(--heading-color);
    letter-spacing: 1.5px;
    margin-bottom: 5rem;
    text-align: center;
}
.company_target  h2::after {
    content: "";
    height: 6px;
    width: 180px;
    background-color:var(--primary-color);
    border-radius: 6px;
    position: relative;
    display: block;
    margin: auto;
}

.company_target_container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.company_target_container .company_target-box {
    flex: 1 1 22rem;
    max-width: 350px;
    background: linear-gradient(135deg, var(--white) 0%, var(--heading-color) 100%);
    padding: 1.5rem 1rem 2rem;
    border-radius: 2rem;
    text-align: center;
    border: .2rem solid var(--primary-color);
    transition: .5s ease;
    position: relative;
    overflow: hidden;
}

.company_target_container .company_target-box:hover {
    border-color: var(--heading-color);
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(236, 238, 239, 0.3);
}

.company_target-box .icons {
    font-size: 6rem;
    color: var(--heading-color);
}

.company_target-short {
    margin: 1rem 0;
    min-height: 60px;
    text-align:center;
}

.company_target-details {
    margin-top: 1.5rem;
    text-align: left;
    animation: slideDown 0.3s ease;
}

.company_target-details p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* company background */

.company_target-box h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.company_target-box p {
    font-size: 1rem;
    margin: 1rem 0 3rem;
}

.company_target-box .company_target-short {
    transition: opacity 0.3s ease;
}

.company__container {
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    overflow-x: hidden;
}

.company__container .company_title {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 22px;
    color: var(--heading-color);
    letter-spacing: 1.5px;
    padding: 50px clamp(1rem, 4vw, 2rem);
}

.company__container .company_title h1 {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: center;
    line-height: 1.25;
    font-size: clamp(1.05rem, 4.2vw, 1.6rem);
    letter-spacing: 0.04em;
    word-wrap: break-word;
    box-sizing: border-box;
}

.company__container .company_title h1::after {
    content: "";
    height: 6px;
    width: 10rem;
    max-width: min(85%, 12rem);
    background-color: var(--primary-color);
    border-radius: 6px;
    position: relative;
    display: block;
    margin: 0.75rem auto 0;
}

.company__container .company_content {
    width: 85%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    margin: 30px auto;
}

.company__container .company_content .article {
    box-shadow: 0px 0px 2px 0px var(--primary-color);
    padding: 25px 25px;
}
.company__container .company_content .article p {
    margin-top: 30px;
    font-size: 19px;
    line-height: 1.5;
}
.company_image{
    width: 100%;
    margin: auto;
}
.company_image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
@media (max-width:768px){
   .company__container .company_title {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 5px;
    color: var(--heading-color);
    letter-spacing: 1.5px;
    padding: 50px clamp(1rem, 4vw, 2rem);
}

.company__container .company_title h1 {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: center;
    line-height: 1.25;
    font-size: clamp(1.05rem, 4.2vw, 1.6rem);
    letter-spacing: 0.04em;
    word-wrap: break-word;
    box-sizing: border-box;
}
    .company__container .company_content {
        width: 95%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        column-gap: 40px;
        margin: 35px auto;
    }

    .company__container .company_content .article {
        box-shadow: 0px 0px 2px 0px var(--primary-color);
        padding: 22px 22px;
        border-top-left-radius: 5%;
        border-bottom-right-radius: 5%;
    }

    .company__container .company_content .article p {
        margin-top: 30px;
        font-size: 15px;
        line-height: 1.5;
    }
}
/* Service-Based Pricing */
.service-pricing-section {
    padding: 80px 2rem;
    background: var(--white);
}

.service-pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.service-pricing-container h2 {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.service-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-pricing-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.service-pricing-card:nth-child(1) { animation-delay: 0.1s; }
.service-pricing-card:nth-child(2) { animation-delay: 0.2s; }
.service-pricing-card:nth-child(3) { animation-delay: 0.3s; }
.service-pricing-card:nth-child(4) { animation-delay: 0.4s; }
.service-pricing-card:nth-child(5) { animation-delay: 0.5s; }
.service-pricing-card:nth-child(6) { animation-delay: 0.6s; }

.service-pricing-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(4, 79, 148, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--heading-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.service-pricing-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-pricing-card h3 {
    font-size: 1.5rem;
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    display: grid;
    gap: 0.75rem;
}

.service-features li {
    color: var(--text-color);
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--subheading-color);
    font-weight: 700;
}

.service-btn {
    width: 100%;
}

/* Additional Services */
.additional-services {
    padding: 80px 2rem;
    background: #f8f9fa;
}

.additional-services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.additional-services-container h2 {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 3rem;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.additional-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.additional-item:nth-child(1) { animation-delay: 0.1s; }
.additional-item:nth-child(2) { animation-delay: 0.2s; }
.additional-item:nth-child(3) { animation-delay: 0.3s; }
.additional-item:nth-child(4) { animation-delay: 0.4s; }

.additional-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(4, 79, 148, 0.2);
}

.additional-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.additional-item h4 {
    font-size: 1.3rem;
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.additional-item p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.additional-item p span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
    display: block;
    margin-top: 0.5rem;
}

/* Service Rate Page (price_per_service_rate.html) */
.service-rate-section {
    padding: 80px 2rem;
    background: #f8f9fa;
}

.service-rate-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-rate-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.service-rate-header h2 {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 0.75rem;
}

.service-rate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.service-rate-card {
    background: var(--white);
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(4, 79, 148, 0.12);
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
}

.service-rate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(4, 79, 148, 0.18);
    border-color: var(--primary-color);
}

.service-rate-card--featured {
    background: linear-gradient(135deg, rgba(4, 79, 148, 0.06), rgba(4, 64, 148, 0.12));
    border-color: rgba(4, 79, 148, 0.22);
}

.service-rate-top {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.service-rate-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--heading-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    flex: 0 0 auto;
}

.service-rate-card h3 {
    font-size: 1.35rem;
    color: var(--heading-color);
    margin-bottom: 0.25rem;
    font-weight: 800;
}

.service-rate-meta {
    color: var(--text-color);
    opacity: 0.85;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-rate-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    margin: 0.25rem 0 1.25rem;
}

.service-rate-list li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
    background: #f8fbff;
    border: 1px solid rgba(4, 79, 148, 0.08);
}

.rate-label {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.35;
}

.rate-value {
    color: var(--primary-color);
    font-weight: 800;
    white-space: nowrap;
}

.service-rate-btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
}
/* Responsive */
@media (width < 900px){
    .nav__links {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    nav .btn {
        display: none;
    }
    .header {
        padding: 1rem;
        grid-template-columns: repeat(1,1fr);
    }
    .content {
        text-align: center;
    }
    .image {
        grid-area: 1/1/2/2;
    }
    .page-header h1 {
        font-size: 2.5rem;
    }
    .specialists-container,
    .gallery-container,
    .pricing-container {
        grid-template-columns: 1fr;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
    .facilities-grid,
    .service-pricing-grid,
    .additional-grid {
        grid-template-columns: 1fr;
    }
}