*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

body{
  overflow-x:hidden;
}

a{
  text-decoration:none;
}

/* TOP BAR */

.topbar{
  background: #3fbbc0;
  color:#fff;
  padding:10px 6%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  font-size:14px;
}

.top-left,
.top-right{
  display:flex;
  gap:20px;
  align-items:center;
  flex-wrap:wrap;
}

.top-right a{
  text-decoration: none;
  color: white;
}

/* Desktop view */
@media (min-width: 769px){
  .top-right{
    margin-left:auto; /* number konjam left/right adjust panna */
    padding-right:150px; /* ithula value increase/decrease pannunga */
  }
}

@media (min-width: 769px){
  .top-left{
    margin-right:auto; /* number konjam left/right adjust panna */
    padding-left:100px; /* ithula value increase/decrease pannunga */
  }
}

/* Mobile view */
@media (max-width: 768px){
  .top-left{
    display:none; /* left text hide */
  }

  .topbar{
    justify-content:center;
    text-align:center;
  }

  .top-right{
    width:100%;
    justify-content:center;
  }
}

/* NAVBAR */

.navbar{
  width:100%;
  background:#fff;
  padding:18px 6%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:sticky;
  top:0;
  z-index:999;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

/* LOGO */
.logo img{
  height:60px;
  width:250px;
  object-fit:contain;
  transition:.3s;
}

/* Desktop view - logo konjam right */
@media (min-width:769px){
  .logo{
    margin-left:50px;
  }
}

/* =========================
   NAVBAR
========================= */

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 6%;
  background:#fff;
  position:relative;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
  z-index:999;
}

/* =========================
   LOGO
========================= */

.logo img{
  width:250px;
  height:60px;
  object-fit:contain;
}

/* =========================
   MENU BUTTON
========================= */

#menu-toggle{
  display:none;
}

.menu-btn{
  display:none;
  font-size:28px;
  cursor:pointer;
  color:#333;
}

/* =========================
   NAV LINKS
========================= */

.nav-links{
  display:flex;
  align-items:center;
  gap:30px;
  list-style:none;
}

.nav-links li{
  position:relative;
}

.nav-links a{
  text-decoration:none;
  color:#333;
  font-weight:600;
  font-size:15px;
  transition:.3s;
  position:relative;
}

/* Underline effect */
.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#3fbbc0;
  transition:.3s;
}

.nav-links a:hover::after{
  width:100%;
}

.nav-links a:hover{
  color: #65c9cd;
}

/* =========================
   DROPDOWN
========================= */

.dropdown-toggle{
  display:flex;
  align-items:center;
  gap:5px;
}

.dropdown-btn{
  cursor:pointer;
  color:#333;
}

.dropdown-menu{
  position:absolute;
  top:130%;
  left:0;
  background:#fff;
  width:240px;
  border-radius:12px;
  box-shadow:0 5px 20px rgba(0,0,0,0.12);
  padding:10px 0;
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:999;
}

.dropdown-menu li{
  list-style:none;
}

.dropdown-menu a{
  display:block;
  padding:12px 18px;
  font-size:14px;
}

.dropdown-menu a::after{
  display:none;
}

.dropdown-menu a:hover{
  background:#f5fcfd;
  color: #65c9cd;
}

/* Desktop hover */
@media(min-width:769px){

  .dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    top:115%;
  }

}

/* =========================
   APPOINTMENT BUTTON
========================= */

.appoint-btn{
  background:#3fbbc0;
  color:#fff !important;
  padding:12px 22px;
  border-radius:30px;
  transition:.3s;
}

/* REMOVE UNDERLINE */
.appoint-btn::after{
  display:none !important;
}

.appoint-btn:hover{
  background: #65c9cd;
  transform:translateY(-2px);
  color:#fff !important;
}

/* =========================
   MOBILE VIEW
========================= */

@media(max-width:768px){

  .logo img{
    width:190px;
    height:auto;
  }

  /* Show toggle */
  .menu-btn{
    display:flex;
  }

   .nav-links{
    position:absolute;
    top:100%;
    left:0;

    width:100%;
    background:#fff;

    flex-direction:column;
    align-items:flex-start;

    gap:0;

    max-height:0;
    overflow:hidden;

    transition:.4s ease;

    box-shadow:0 5px 15px rgba(0,0,0,0.08);
  }

  /* OPEN MENU */
  #menu-toggle:checked ~ .nav-links{
    max-height:1000px;
  }

  .nav-links li{
    width:100%;
  }

  .nav-links a{
    display:block;
    width:100%;
    padding:18px 22px;
    border-bottom:1px solid #f1f1f1;
  }

  .nav-links a::after{
    display:none;
  }

  .nav-links a:hover{
    background:#f5fcfd;
  }

  /* Dropdown */
  .dropdown-toggle{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-right:20px;
  }

  .dropdown-menu{
    position:static;
    opacity:1;
    visibility:visible;
    display:none;
    width:100%;
    box-shadow:none;
    border-radius:0;
    background:#f9f9f9;
    padding:0;
  }

  /* ACTIVE DROPDOWN */
  .dropdown.active .dropdown-menu{
    display:block;
  }

  .dropdown-menu a{
    padding-left:40px;
    font-size:14px;
  }
/* Mobile Appointment Button */
.appoint-btn{
  width:270px !important;
  margin:15px auto;
  text-align:center;
  border-radius:8px;
  display:flex;
  justify-content:center;
}
}

/* =========================
   HERO SLIDER
========================= */

.hero-slider{
  width:100%;
  height:70vh;
  position:relative;
  overflow:hidden;
}

/* =========================
   EACH SLIDE
========================= */

.hero-slide{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  display:flex;
  align-items:center;

  opacity:0;
  visibility:hidden;

  transition:1s ease-in-out;
}

/* ACTIVE SLIDE */

.hero-slide.active{
  opacity:1;
  visibility:visible;
}

/* =========================
   DARK OVERLAY
========================= */

.overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.25);
  top:0;
  left:0;
}

/* =========================
   CONTENT
========================= */

.hero-content{
  position:relative;
  z-index:2;
  color:#fff;
  max-width:700px;
  padding-left:8%;
}

/* Heading */

.hero-content h1{
  color: white;
  font-size:75px;
  line-height:1.1;
  margin-bottom:25px;
  font-weight:900;
  animation:slideUp 1s ease;
}

/* Paragraph */

.hero-content p{
  font-size:24px;
  line-height:1.8;
  margin-bottom:35px;
  max-width:650px;
  animation:slideUp 1.3s ease;
}

/* Button */

.hero-btn{
  display:inline-block;
  padding:16px 35px;
  background:#3fbbc0;
  color:#fff;
  text-decoration:none;
  border-radius:40px;
  font-size:18px;
  font-weight:700;
  transition:.3s;
  animation:slideUp 1.6s ease;
}

.hero-btn:hover{
  background:#65c9cd;
  transform:translateY(-3px);
}

/* =========================
   TEXT ANIMATION
========================= */

@keyframes slideUp{

  from{
    opacity:0;
    transform:translateY(40px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

/* =========================
   MOBILE VIEW
========================= */

@media(max-width:768px){

  .hero-slider{
    height:85vh;
  }

  .hero-content{
    padding:0 20px;
  }

  .hero-content h1{
    font-size:42px;
  }

  .hero-content p{
    font-size:18px;
    line-height:1.7;
  }

  .hero-btn{
    padding:14px 28px;
    font-size:16px;
  }

}

/* =========================
   HERO WRAPPER
========================= */

.hero-wrapper{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
  padding:0 8%;
  position:relative;
  z-index:2;
}

/* =========================
   HERO CONTENT
========================= */

.hero-content{
  max-width:650px;
  color:#fff;
}

.hero-content h1{
  font-size:70px;
  line-height:1.1;
  margin-bottom:25px;
  font-weight:900;
}

.hero-content p{
  font-size:24px;
  line-height:1.8;
  margin-bottom:30px;
}

.hero-btn{
  display:inline-block;
  padding:15px 35px;
  background:#3fbbc0;
  color:#fff;
  text-decoration:none;
  border-radius:40px;
  font-size:18px;
  font-weight:700;
}

/* =========================
   HELP BOX
========================= */

.hero-slider{
    position:relative;
}

.help-box{
    position:absolute;
    right:8%;
    top:50%;
    transform:translateY(-50%);
    z-index:10;
}

.help-box{
  width:350px;
  background:rgba(255,255,255,0.15);
  backdrop-filter:blur(10px);
  padding:35px 28px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.25);
  box-shadow:0 8px 30px rgba(0,0,0,0.2);
}

@media(max-width:768px){

  .help-box{

    margin-left:35px;
  }
}

.help-box h3{
  color:#fff;
  font-size:28px;
  margin-bottom:25px;
  line-height:1.4;
}

/* Select */

.help-box select{
  width:100%;
  padding:15px;
  border:none;
  outline:none;
  border-radius:10px;
  margin-bottom:25px;
  font-size:16px;
}

/* Whatsapp */

.whatsapp-text{
  color:#fff;
  font-size:20px;
  margin-bottom:20px;
  display:flex;
  align-items:center;
  gap:10px;
}

.whatsapp-text i{
  color:#25d366;
  font-size:30px;
}

/* Numbers */

.help-numbers p a{
  color:#fff;
  font-size:28px;
  font-weight:700;
  line-height:1.8;
}

.help-numbers{

    text-align:center;
}

/* Continue Button */

.help-btn{

display:block;
width:170px;
padding:14px;
margin:0 auto 25px;
border:none;
border-radius:10px;
background:#18b6c9;
color:#fff;
font-size:17px;
font-weight:600;
cursor:pointer;
transition:.3s;

}

.help-btn:hover{

background:#0f9bad;

}

/* Numbers */

.help-numbers{

text-align:left;

}

.help-numbers p{

display:flex;
align-items:center;
gap:12px;
margin:18px 0;

}

.help-numbers i{

width:42px;
height:42px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:25px;

}

.help-numbers a{

color:#fff;
font-size:24px;
font-weight:700;
text-decoration:none;

}

/* =========================
   MOBILE VIEW
========================= */

@media(max-width:768px){

  .hero-slider{
    height:80vh;
  }

  .hero-wrapper{
    height:100%;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    padding:20px;
    gap:15px;
    
  }

  .hero-content{
     margin-bottom:300px;
     padding: 50px;
  }

  /* TEXT */

  .hero-content h1{
    font-size:34px;
    
    line-height:1;
  }

  .hero-content p{
    font-size:16px;
    line-height:1.6;
    margin-bottom:15px;
  }

  .hero-btn{
    padding:10px 20px;
    font-size:18px;
  }

  /* SMALL HELP BOX */

  .help-box{
    width:250px;
    padding:15px;
    border-radius:12px;
    left: 30px;
    margin-top: 150px;
  }

  .help-box h3{
    font-size:15px;
    margin-bottom:12px;
  }

  .help-box select{
    padding:10px;
    font-size:14px;
    margin-bottom:12px;
  }

  .whatsapp-text{
    font-size:14px;
    margin-bottom:10px;
  }

  .whatsapp-text i{
    font-size:18px;
  }

  .help-numbers a{

font-size:17px;

}

.help-numbers i{

width:32px;

height:32px;

font-size:14px;

}

}

/* =========================
   SERVICES
========================= */

.services{
  width:100%;
  padding:30px 6%;
  background:#fff;

  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

/* CARD */

.service-card{
  padding:22px 18px;
  border-radius:10px;
  color:#fff;
  transition:.3s;
  cursor:pointer;
  text-align:center;
}

.service-card:hover{
  transform:translateY(-5px);
}

/* ICON */

.service-card i{
  font-size:28px;
  margin-bottom:14px;
}

/* TITLE */

.service-card h4{
  font-size:17px;
  font-weight:600;
}

/* COLORS */

.purple{
  background:linear-gradient(135deg,#6a11cb,#8e2de2);
}

.blue{
  background:linear-gradient(135deg,#4a8df6,#5e72eb);
}

.cyan{
  background:linear-gradient(135deg,#39c7d5,#56cfe1);
}

.green{
  background:linear-gradient(135deg,#20bf55,#01baef);
}

/* =========================
   TABLET
========================= */

@media(max-width:768px){

  .services{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    padding:25px 20px;
  }

  .service-card{
    padding:18px 12px;
  }

  .service-card i{
    font-size:24px;
    margin-bottom:10px;
  }

  .service-card h4{
    font-size:14px;
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:480px){

  .services{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }

  .service-card{
    padding:16px 10px;
    border-radius:8px;
  }

  .service-card i{
    font-size:22px;
  }

  .service-card h4{
    font-size:13px;
    line-height:1.4;
  }

}

/* =========================
   EMERGENCY SECTION
========================= */

.emergency-section{
  width:100%;
  background:#3fbbc0;
  padding:50px;
  text-align:center;
}

.emergency-content{
  max-width:1100px;
  margin:auto;
}

.emergency-content h3{
  color:#fff;
  font-size:28px;
  margin-bottom:25px;
  font-weight:700;
}

.emergency-content p{
  color:#fff;
  font-size:18px;
  line-height:1.9;
  margin-bottom:40px;
}

/* BUTTON */

.emergency-btn{
  display:inline-block;
  padding:16px 30px;
  border:2px solid #fff;
  color:#fff;
  text-decoration:none;
  border-radius:40px;
  font-size:18px;
  font-weight:700;
  transition:.3s;
}

.emergency-btn:hover{
  background:#fff;
  color:#157a7e;
}

/* =========================
   COUNTER SECTION
========================= */

.counter-section{
  width:100%;
  background:#f5f5f5;
  padding:50px;

  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

/* BOX */

.counter-box{
  background:#fff;
  padding:35px;
  border-radius:12px;
  transition:.3s;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.counter-box:hover{
  transform:translateY(-6px);
}

/* TOP */

.counter-top{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:20px;
}

/* ICON */

.counter-top i{
  font-size:32px;
  color:#3fbbc0;
}

/* NUMBER */

.counter-top h3{
  font-size:42px;
  color:#444;
  font-weight:700;
}

/* TITLE */

.counter-box h4{
  font-size:20px;
  color:#444;
  margin-bottom:25px;
}

/* LINK */

.counter-box a{
  text-decoration:none;
  color:#777;
  font-size:15px;
  font-weight:600;
  transition:.3s;
}

.counter-box a:hover{
  color:#3fbbc0;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

  .counter-section{
    grid-template-columns:repeat(2,1fr);
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .emergency-section{
    padding:50px 20px;
  }

  .emergency-content h2{
    font-size:30px;
    line-height:1.4;
  }

  .emergency-content p{
    font-size:16px;
    line-height:1.8;
  }

  .emergency-btn{
    padding:13px 28px;
    font-size:15px;
  }

  .counter-section{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    padding:40px 20px;
  }

  .counter-box{
    padding:20px 18px;
  }

  .counter-top{
    gap:10px;
    margin-bottom:12px;
  }

  .counter-top i{
    font-size:24px;
  }

  .counter-top h3{
    font-size:30px;
  }

  .counter-box h4{
    font-size:16px;
    margin-bottom:15px;
  }

  .counter-box a{
    font-size:13px;
  }

}

/* =========================
   FACILITIES SECTION
========================= */

.facilities-section{
  width:100%;
  background:#fff;
  padding:70px 20px;
}

/* MAIN CONTAINER */

.section-facility{
  max-width:1300px;
  width:100%;

  margin:auto;

  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:60px;
}

/* =========================
   LEFT SIDE
========================= */

.facilities-left{
  flex:1;

  display:flex;
  flex-direction:column;
  gap:40px;
}

/* EACH ITEM */

.facility-item{
  display:flex;
  align-items:flex-start;
  gap:20px;
}

/* ICON */

.facility-icon{
  min-width:55px;
}

.facility-icon i{
  font-size:42px;
  color:#3fbbc0;
}

/* CONTENT */

.facility-content h3{
  font-size:28px;
  color:#222;
  margin-bottom:10px;
  font-weight:700;
}

.facility-content p{
  font-size:18px;
  line-height:1.8;
  color:#777;
  margin-bottom:12px;
}

/* LINK */

.facility-content a{
  text-decoration:none;
  color:#3fbbc0;

  font-size:17px;
  font-weight:600;

  transition:.3s;
}

.facility-content a:hover{
  color:#222;
}

/* =========================
   RIGHT SIDE IMAGE
========================= */

.facilities-right{
  flex:1;
}

.facilities-right img{
  width:100%;
  height:700px;

  object-fit:cover;

  border-radius:10px;
}

/* =========================
   TABLET VIEW
========================= */

@media(max-width:991px){

  .section-facility{
    flex-direction:column;
  }

  .facilities-right img{
    height:500px;
  }

}

/* =========================
   MOBILE VIEW
========================= */

@media(max-width:768px){

  .facilities-section{
    padding:50px 15px;
  }

  .section-facility{
    gap:35px;
  }

  .facilities-left{
    gap:28px;
  }

  .facility-item{
    gap:14px;
  }

  .facility-icon i{
    font-size:26px;
  }

  .facility-content h3{
    font-size:19px;
    margin-bottom:6px;
  }

  .facility-content p{
    font-size:14px;
    line-height:1.7;
    margin-bottom:8px;
  }

  .facility-content a{
    font-size:14px;
  }

  .facilities-right img{
    height:300px;
  }

}

/* =========================
   FOOTER
========================= */

.footer {
  font-family: Arial, sans-serif;
  color: #444444;
  background: #ffffff;
}

/* TOP FOOTER AREA */
.footer-top {
  background: #f7f7f7;
  padding: 60px 0;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 25px;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1.45fr;
  gap: 70px;
}

/* COMMON */
.footer-column h3,
.footer-column h4 {
  margin-top: 0;
  color: #444444;
}

.footer-column h3 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 22px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 22px;
}

.footer-column p {
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
  
}

/* CONTACT */
.footer-contact p a{
  line-height: 1.7;
  color: black;
}

.footer-contact-info {
  margin-top: 24px !important;
}

.footer-contact-info strong {
  font-weight: 700;
}

/* SOCIAL ICONS */
.social-links {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: #3fbbc0;
  color: #ffffff;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 17px;
  transition: 0.3s;
}

.social-links a:hover {
  background: #2da9ae;
  transform: translateY(-3px);
}

/* USEFUL LINKS */
.footer-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links ul li {
  padding: 0 0 25px 0;
  
}

.footer-links ul li:last-child {
  padding-bottom: 0;
}

.footer-links ul li a {
  text-decoration: none;
  color: #444444;
  font-size: 17px;
  transition: 0.3s;
}

.footer-links ul li a i {
  color: #3fbbc0;
  font-size: 12px;
  margin-right: 7px;
  font-weight: bold;
}

.footer-links ul li a:hover {
  color: #3fbbc0;
  padding-left: 5px;
}

/* NEWSLETTER */
.footer-newsletter p {
  max-width: 550px;
  margin-bottom: 28px;
}

.footer-newsletter form {
  display: flex;
  width: 100%;
}

.footer-newsletter input[type="email"] {
  width: 100%;
  height: 43px;
  border: 1px solid #d7d7d7;
  outline: none;
  padding: 0 12px;
  font-size: 14px;
  border-radius: 4px 0 0 4px;
}

.footer-newsletter input[type="email"]:focus {
  border-color: #3fbbc0;
  box-shadow: 0 0 0 1px #3fbbc0;
}

.footer-newsletter button {
  border: 0;
  background: #3fbbc0;
  color: #ffffff;
  padding: 0 22px;
  height: 43px;
  font-size: 15px;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  transition: 0.3s;
}

.footer-newsletter button:hover {
  background: #2da9ae;
}

/* BOTTOM COPYRIGHT */
.footer-bottom {
  background: #f1f1f1;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

.footer-bottom .copyright {
  margin-bottom: 13px;
}

.footer-bottom .credits {
  font-size: 13px;
}

.footer-bottom .credits a {
  color: #3fbbc0;
  text-decoration: none;
}

.footer-bottom .credits a:hover {
  text-decoration: underline;
}

/* BACK TO TOP */
.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 40px;
  height: 40px;
  background: #3fbbc0;
  color: #ffffff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  z-index: 999;
  transition: 0.3s;
}

.scroll-top:hover {
  background: #2da9ae;
  color: #ffffff;
  transform: translateY(-4px);
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 991px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }

  .footer-newsletter {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .footer-top {
    padding: 45px 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 0 20px;
  }

  .footer-newsletter {
    grid-column: span 1;
  }

  .footer-column h3 {
    font-size: 22px;
  }

  .footer-newsletter form {
    flex-direction: column;
    gap: 10px;
  }

  .footer-newsletter input[type="email"] {
    width: 100%;
    border-radius: 4px;
  }

  .footer-newsletter button {
    width: 100%;
    border-radius: 4px;
  }

  .footer-bottom {
    padding: 25px 15px;
  }

  .scroll-top {
    width: 38px;
    height: 38px;
    right: 15px;
    bottom: 15px;
  }
}

/* ===========================
   CONTACT SECTION
=========================== */

.contact-section {
  padding: 55px 0;
  background: #ffffff;
  font-family: Arial, sans-serif;
}

.contact-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* LEFT AREA */
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* COMMON CONTACT BOX */
.contact-box,
.contact-form-box {
  background: #ffffff;
  box-shadow: 0 5px 22px rgba(0, 0, 0, 0.08);
}

/* ADDRESS BOX */
.address-box {
  min-height: 242px;
  padding: 22px 25px;
  text-align: center;
}

/* EMAIL + CALL ROW */
.contact-small-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.small-box {
  min-height: 195px;
  padding: 20px 15px;
  text-align: center;
}

/* ICON CIRCLE */
.contact-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border: 2px dotted #b6edf0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #3fbbc0;
  font-size: 26px;
}

.contact-box h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: #666666;
}

.contact-box p a{
  margin: 0;
  font-size: 14px;
  color: black;
  line-height: 1.75;
  text-decoration:none ;
}

/* FORM BOX */
.contact-form-box {
  padding: 30px;
  min-height: 412px;
}

.contact-form-box form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 16px;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  border: 1px solid #cfd8dc;
  outline: none;
  font-size: 14px;
  color: #444444;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  transition: 0.3s;
}

.contact-form-box input {
  height: 43px;
  padding: 0 15px;
  margin-bottom: 16px;
}

.form-row input {
  margin-bottom: 0;
}

.contact-form-box textarea {
  height: 173px;
  padding: 15px;
  resize: vertical;
  margin-bottom: 16px;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
  border-color: #3fbbc0;
  box-shadow: 0 0 0 1px #3fbbc0;
}

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
  color: #6c7a89;
  opacity: 1;
}

/* SEND BUTTON */
.send-btn-area {
  text-align: center;
}

.send-btn-area button {
  border: 0;
  background: #3fbbc0;
  color: #ffffff;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.send-btn-area button:hover {
  background: #2da9ae;
  transform: translateY(-2px);
}

/* ===========================
   TABLET
=========================== */

@media (max-width: 991px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-form-box {
    min-height: auto;
  }
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 576px) {
  .contact-section {
    padding: 40px 0;
  }

  .contact-container {
    padding: 0 15px;
    gap: 20px;
  }

  .contact-left {
    gap: 20px;
  }

  .contact-small-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .address-box,
  .small-box {
    min-height: auto;
    padding: 28px 15px;
  }

  .contact-form-box {
    padding: 22px 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-row input {
    margin-bottom: 0;
  }

  .contact-form-box textarea {
    height: 150px;
  }
}

/* ===========================
   MAP SECTION
=========================== */

.map-section {
  background: #ffffff;
}

.map-container {
  max-width: 100%;
  margin: auto;
  
}

.map-container iframe {
  width: 100%;
  height: 400px;
  display: block;
  border-radius: 2px;
  box-shadow: 0 5px 22px rgba(0, 0, 0, 0.08);
}

/* MOBILE */
@media (max-width: 576px) {
  .map-section {
    padding: 0 0 40px;
  }

  .map-container {
    padding: 0 15px;
  }

  .map-container iframe {
    height: 280px;
  }
}

/* ===========================
   CONTACT BANNER
=========================== */

.contact-banner {
  width: 100%;
  min-height: 330px;
  background-image: url("images/home2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* light overlay for text visibility */
.contact-banner-overlay {
  width: 100%;
  min-height: 330px;
  background: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-banner-content {
  padding: 30px 15px;
}

.contact-banner-content p {
  margin: 0 0 8px;
  font-size: 16px;
  color: black;
  font-weight: 400;
}

.contact-banner-content h1 {
  margin: 0 0 15px;
  font-size: 48px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  color: black;
}

.breadcrumb a {
  color: black;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #2da9ae;
}

.breadcrumb span:last-child {
  color: #333;
}

/* MOBILE */
@media (max-width: 576px) {
  .contact-banner,
  .contact-banner-overlay {
    min-height: 230px;
  }

  .contact-banner-content h1 {
    font-size: 36px;
  }

  .contact-banner-content p {
    font-size: 14px;
  }

  .breadcrumb {
    font-size: 14px;
  }
}

/* ============================
   PROFESSIONAL SPECIALITIES
============================ */

.specialities-new-section {
  padding: 85px 0;
  background: #f7fbfb;
  font-family: Arial, sans-serif;
}

.specialities-new-container {
  max-width: 1180px;
  margin: auto;
  padding: 0 20px;
}

/* Heading */
.specialities-heading {
  text-align: center;
  margin-bottom: 45px;
}

.specialities-heading span {
  display: inline-block;
  color: #3fbbc0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.specialities-heading h2 {
  margin: 0 0 12px;
  color: #263238;
  font-size: 34px;
  font-weight: 700;
}

.specialities-heading p {
  margin: 0;
  color: #6b7780;
  font-size: 15px;
}

/* Grid */
.specialities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.speciality-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e7eeee;
  box-shadow: 0 8px 25px rgba(32, 77, 79, 0.08);
  transition: 0.35s ease;
}

.speciality-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 16px 35px rgba(32, 77, 79, 0.16);
  border-color: #b8e6e8;
}

/* Image */
/* .speciality-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.speciality-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.22), transparent 55%);
} */

.speciality-img img {
  width: 360px !important;
  height: 400px !important;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.speciality-card:hover .speciality-img img {
  transform: scale(1.08);
}

/* Content */
.speciality-content {
  padding: 24px 23px 22px;
}

.speciality-content h3 {
  margin: 0 0 12px;
  color: #000000;
  font-size: 28px;
  font-weight: 700;
}

.speciality-content p {
  margin: 0 0 19px;
  color: #000000;
  font-size: 16px;
  line-height: 1.75;
  min-height: 73px;
}

/* Button */
.speciality-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3fbbc0;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.speciality-btn i {
  font-size: 13px;
  transition: 0.3s;
}

.speciality-btn:hover {
  color: #248f94;
}

.speciality-btn:hover i {
  transform: translateX(5px);
}

/* Tablet */
@media (max-width: 991px) {
  .specialities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .specialities-new-section {
    padding: 55px 0;
  }

  .specialities-heading h2 {
    font-size: 28px;
  }

  .specialities-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .speciality-img {
    height: 220px;
  }
}

/* ===========================
   MISSION SECTION
=========================== */

.mission-section {
  width: 100%;
  padding: 32px 0 24px;
  background: #ffffff;
  font-family: Arial, sans-serif;
  border-top: 2px solid #e8f7f8;
}

.mission-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 25px;
}

.mission-container h2 {
  margin: 0 0 10px;
  color: #4b4b4b;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.2;
}

.mission-container h3 {
  margin: 17px 0 10px;
  color: #4b4b4b;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.25;
}

.mission-container p {
  margin: 0 0 17px;
  color: #555555;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.42;
}

/* Tablet */
@media (max-width: 991px) {
  .mission-container {
    padding: 0 22px;
  }

  .mission-container h2 {
    font-size: 28px;
  }

  .mission-container h3 {
    font-size: 24px;
  }

  .mission-container p {
    font-size: 16px;
    line-height: 1.55;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .mission-section {
    padding: 28px 0 18px;
  }

  .mission-container {
    padding: 0 16px;
  }

  .mission-container h2 {
    font-size: 26px;
  }

  .mission-container h3 {
    font-size: 22px;
    margin-top: 18px;
  }

  .mission-container p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 16px;
    text-align: left;
  }
}

/* ===========================
   SMART CONSULTANTS SECTION
=========================== */

.consultants-section {
  width: 100%;
  padding: 35px 0 65px;
  background: #ffffff;
  font-family: Arial, sans-serif;
  border-top: 2px solid #e8f7f8;
}

.consultants-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 25px;
  display: grid;
  grid-template-columns: 1.15fr 1.15fr;
  gap: 45px;
  align-items: start;
}

/* LEFT CONTENT */
.consultants-content h2 {
  margin: 0 0 10px;
  color: #4b4b4b;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.consultants-content h3 {
  margin: 0 0 14px;
  color: #4b4b4b;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.consultants-content p {
  margin: 0 0 18px;
  color: #555555;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
}

/* RIGHT IMAGE */
.consultants-image {
  width: 100%;
  margin-top: 105px;
}

.consultants-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
}

/* TABLET */
@media (max-width: 991px) {
  .consultants-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .consultants-image {
    max-width: 650px;
    margin-top: 0px;
  }

  .consultants-image img {
    height: 360px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .consultants-section {
    padding: 30px 0 45px;
  }

  .consultants-container {
    padding: 0 16px;
  }

  .consultants-content h2 {
    font-size: 25px;
  }

  .consultants-content h3 {
    font-size: 22px;
  }

  .consultants-content p {
    font-size: 15px;
    line-height: 1.65;
    text-align: left;
  }

  .consultants-image img {
    height: 260px;
  }
}

/* ===========================
   TESTIMONIAL SECTION
=========================== */

.testimonial-section {
  padding: 85px 0;
  background: #f7fbfb;
  font-family: Arial, sans-serif;
}

.testimonial-container {
  max-width: 1180px;
  margin: auto;
  padding: 0 20px;
}

/* Heading */
.testimonial-heading {
  text-align: center;
  margin-bottom: 45px;
}

.testimonial-heading span {
  display: inline-block;
  color: #3fbbc0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.testimonial-heading h2 {
  margin: 0 0 12px;
  color: #263238;
  font-size: 34px;
  font-weight: 700;
}

.testimonial-heading p {
  margin: 0;
  color: #6b7780;
  font-size: 15px;
}

/* Cards Grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Card */
.testimonial-card {
  position: relative;
  background: #ffffff;
  padding: 32px 28px 28px;
  border-radius: 12px;
  border: 1px solid #e5eeee;
  box-shadow: 0 8px 25px rgba(32, 77, 79, 0.08);
  transition: 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: #b8e6e8;
  box-shadow: 0 16px 35px rgba(32, 77, 79, 0.15);
}

/* Quote Icon */
.quote-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #e9f9fa;
  color: #3fbbc0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 20px;
}

/* Text */
.testimonial-text {
  margin: 0 0 26px;
  color: #66757d;
  font-size: 15px;
  line-height: 1.8;
  min-height: 135px;
}

/* User */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 18px;
  border-top: 1px solid #edf1f1;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #d7f2f3;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-user-info h4 {
  margin: 0 0 4px;
  color: #263238;
  font-size: 15px;
  font-weight: 700;
}

.testimonial-user-info span {
  color: #3fbbc0;
  font-size: 13px;
}

/* TABLET */
@media (max-width: 991px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .testimonial-section {
    padding: 55px 0;
  }

  .testimonial-container {
    padding: 0 16px;
  }

  .testimonial-heading h2 {
    font-size: 28px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 27px 22px 23px;
  }

  .testimonial-text {
    min-height: auto;
  }
}

/* ===========================
   VISION SECTION
=========================== */

.vision-section {
  width: 100%;
  padding: 30px 0 40px;
  background: #ffffff;
  font-family: Arial, sans-serif;
  border-top: 2px solid #e8f7f8;
}

.vision-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: start;
}

/* LEFT CONTENT */

.vision-content h2 {
  margin: 0 0 10px;
  color: #4b4b4b;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.2;
}

.vision-subtitle {
  margin: 0 0 18px;
  color: #555555;
  font-size: 17px;
  line-height: 1.45;
}

.vision-content h3 {
  margin: 0 0 28px;
  color: #4b4b4b;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.25;
}

.vision-list {
  margin-bottom: 25px;
}

.vision-list p {
  margin: 0 0 12px;
  color: #555555;
  font-size: 17px;
  line-height: 1.4;
}

.vision-content .stay-heading {
  margin: 0 0 12px;
  font-size: 28px;
}

.stay-content {
  margin: 0;
  color: #555555;
  font-size: 17px;
  line-height: 1.43;
}

/* RIGHT IMAGE */
/* margin-top value increase panna image innum keela pogum */

.vision-image {
  width: 100%;
  margin-top: 105px;
}

.vision-image img {
  width: 100%;
  height: 477px;
  object-fit: cover;
  display: block;
}

/* TABLET */

@media (max-width: 991px) {
  .vision-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .vision-image {
    max-width: 700px;
    margin-top: 0;
  }

  .vision-image img {
    height: 380px;
  }
}

/* MOBILE */

@media (max-width: 576px) {
  .vision-section {
    padding: 28px 0 35px;
  }

  .vision-container {
    padding: 0 16px;
  }

  .vision-content h2 {
    font-size: 26px;
  }

  .vision-content h3 {
    font-size: 23px;
    margin-bottom: 20px;
  }

  .vision-content .stay-heading {
    font-size: 24px;
  }

  .vision-subtitle,
  .vision-list p,
  .stay-content {
    font-size: 15px;
    line-height: 1.6;
  }

  .vision-image img {
    height: 260px;
  }
}

.management-section{
    width:90%;
    margin:auto;
    padding:30px 0;
}

.top-content{
    width:100%;
    margin-bottom:30px;
}

.top-content p{
    color:#555;
    font-size:16px;
    line-height:1.8;
}

.team-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.team-card{
    background:#f5f5f5;
    border:1px solid #00bfff;
    text-align:center;
    padding:20px;
    border-radius:3px;
    transition:0.3s;
}

.team-card:hover{
    transform:translateY(-5px);
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.team-image{
    width:100%;
    height:310px;
    overflow:hidden;
    position:relative;
}

.team-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.social-icons{
    position:absolute;
    bottom:10px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:15px;
}

.social-icons a{
    width:35px;
    height:35px;
    background:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:#666;
    transition:0.3s;
}

.social-icons a:hover{
    background:#00bfff;
    color:white;
}

.team-info{
    margin-top:20px;
}

.team-info h2{
    font-size:18px;
    color:#555;
    margin-bottom:10px;
}

.team-info p{
    color:#999;
    line-height:1.7;
    font-size:15px;
}

@media(max-width:768px){

    .top-content p{
        font-size:14px;
    }

    .team-image{
        height:260px;
    }

}

.why-smart-section{
    width:100%;
    padding:25px 0 40px;
}

.container{
    width:78%;
    margin:auto;
}

h1{
    font-size:28px;
    color:#4c4c4c;
    margin-bottom:15px;
    font-weight:700;
}

.top-para{
    font-size:17px;
    line-height:1.9;
    color:#5f5f5f;
    margin-bottom:22px;
}

.number-list{
    margin-left:22px;
    margin-bottom:35px;
}

.number-list li{
    font-size:17px;
    line-height:1.8;
    color:#5f5f5f;
}

.description{
    font-size:17px;
    line-height:1.8;
    color:#5f5f5f;
    text-align:justify;
    margin-bottom:20px;
}

h2{
    font-size:30px;
    color:#4c4c4c;
    margin-bottom:15px;
    font-weight:700;
}

.brand-para{
    font-size:17px;
    line-height:1.8;
    color:#5f5f5f;
    text-align:justify;
    margin-bottom:15px;
}

.bullet-list{
    margin-left:30px;
}

.bullet-list li{
    font-size:17px;
    line-height:1.8;
    color:#5f5f5f;
}

@media(max-width:992px){

    .container{
        width:90%;
    }

}

@media(max-width:768px){

    h1{
        font-size:24px;
    }

    h2{
        font-size:26px;
    }

    .top-para,
    .description,
    .brand-para,
    .number-list li,
    .bullet-list li{
        font-size:15px;
    }

} 

.quality-section{
    width:100%;
    padding:25px 0 40px;
}

.container{
    width:78%;
    margin:auto;
}

h1{
    font-size:28px;
    color:#4b4b4b;
    margin-bottom:15px;
    font-weight:700;
}

h2{
    font-size:26px;
    color:#4b4b4b;
    margin-top:18px;
    margin-bottom:12px;
    font-weight:700;
}

.paragraph{
    font-size:17px;
    line-height:1.8;
    color:#5c5c5c;
    text-align:justify;
    margin-bottom:10px;
}

.team-list{
    margin-left:30px;
    margin-top:10px;
}

.team-list li{
    font-size:17px;
    line-height:1.8;
    color:#5c5c5c;
}

@media(max-width:992px){

    .container{
        width:90%;
    }

}

@media(max-width:768px){

    h1{
        font-size:24px;
    }

    h2{
        font-size:22px;
    }

    .paragraph,
    .team-list li{
        font-size:15px;
    }

}

.gallery-section{
      width:100%;
      padding:20px;
    }

    .gallery-container{
      max-width:1300px;
      margin:auto;
      overflow:hidden;
    }

    .gallery-title{
      font-size:32px;
      font-weight:700;
      color:#333;
      position:relative;
      margin-bottom:25px;
    }

    /* MOBILE VIEW */

@media(max-width:768px){

    .gallery-title{

        margin-top:50px;
    }
}

    .gallery-title::after{
      content:"";
      position:absolute;
      left:0;
      bottom:-10px;
      width:70px;
      height:4px;
      background:#32c7d2;
    }

    .gallery-text{
      font-size:17px;
      line-height:1.8;
      color:#555;
      margin-bottom:60px;
    }

    /* SWIPER */

    .swiper{
      width:100%;
      padding-top:30px;
      padding-bottom:80px;
    }

    .swiper-slide{
      height:220px;
      overflow:hidden;
      border:6px solid transparent;
      transition:0.4s;
      background:#fff;
    }

    .swiper-slide img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }

    /* ACTIVE CENTER IMAGE */

    .swiper-slide-active{
      transform:scale(1.12);
      border-color:#38c8d3;
    }

    .swiper-wrapper{
  transition-timing-function:linear !important;
}

    /* DOTS */

    .swiper-pagination-bullet{
      width:12px;
      height:12px;
      background:#8cdde3 !important;
      opacity:1;
    }

    .swiper-pagination-bullet-active{
      background:#32c7d2 !important;
    }

    @media(max-width:768px){

      .swiper-slide{
        height:180px;
      }

      .swiper-slide-active{
        transform:scale(1.05);
      }

      .gallery-section{
        padding-top: 0;
      }
    }

    .physio-section{
      width:100%;
      padding:60px 20px;
    }

    .physio-container{
      max-width:1300px;
      margin:auto;
    }

    /* MAIN TITLE */

    .physio-title{
      font-size:28px;
      font-weight:700;
      color:#2f3b4a;
      line-height:1.4;
      margin-bottom:25px;
    }

    /* PARAGRAPH */

    .physio-text{
      font-size:17px;
      line-height:1.9;
      color:#444;
      margin-bottom:28px;
    }

    /* SUB TITLE */

    .physio-subtitle{
      font-size:26px;
      font-weight:700;
      color:#2f3b4a;
      margin-top:40px;
      margin-bottom:20px;
    }

    /* LIST */

    .physio-list{
      padding-left:30px;
      margin-bottom:35px;
    }

    .physio-list li{
      font-size:17px;
      line-height:1.9;
      color:#444;
    }

    /* SMALL HEADING */

    .physio-small-title{
      font-size:22px;
      font-weight:700;
      color:#2f3b4a;
      margin-top:30px;
      margin-bottom:15px;
    }

    /* MOBILE */

    @media(max-width:768px){

      .physio-title{
        font-size:24px;
      }

      .physio-subtitle{
        font-size:22px;
      }

      .physio-small-title{
        font-size:20px;
      }

      .physio-text,
      .physio-list li{
        font-size:16px;
      }

    }

    .labs-section{
      width:100%;
      padding:60px 20px;
    }

    .labs-container{
      max-width:1300px;
      margin:auto;
    }

    /* TITLE */

    .labs-title{
      font-size:28px;
      font-weight:700;
      color:#2f3b4a;
      margin-bottom:18px;
    }

    /* PARAGRAPH */

    .labs-text{
      font-size:17px;
      line-height:1.8;
      color:#444;
      margin-bottom:28px;
    }

    /* LIST */

    .labs-list{
      padding-left:32px;
      margin-bottom:35px;
    }

    .labs-list li{
      font-size:17px;
      line-height:1.8;
      color:#444;
    }

    /* SUB TITLE */

    .labs-subtitle{
      font-size:26px;
      font-weight:700;
      color:#2f3b4a;
      margin-top:20px;
      margin-bottom:18px;
      line-height:1.5;
    }

    /* MOBILE */

    @media(max-width:768px){

      .labs-title{
        font-size:24px;
      }

      .labs-subtitle{
        font-size:22px;
      }

      .labs-text,
      .labs-list li{
        font-size:16px;
      }

    }

    /* FIRST SECTION */
.neuro-program-section {
  background: #ffffff;
  padding: 10px 0 65px;
}

.neuro-program-section .container {
  max-width: 1360px;
  margin: auto;
  padding: 0 20px;
}

.neuro-program-section h2 {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.neuro-program-section p {
  font-size: 17px;
  line-height: 1.5;
  color: #333;
  margin: 0;
}


/* SECOND SECTION */
.neuro-rehab-unit-section1 {
  background: #42b8bf;
  padding: 60px 0;
}

.neuro-rehab-unit-section .container {
  max-width: 1360px;
  margin: auto;
  padding: 0 20px;
}

.neuro-rehab-unit-row {
  display: flex;
  align-items: center;
  gap: 55px;
}

/* LEFT CONTENT */
.neuro-rehab-content {
  width: 60%;
}

.neuro-rehab-content h2 {
  color: #ffffff;
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 12px;
}

.neuro-rehab-content p {
  color: #ffffff;
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
  text-align: justify;
}

/* RIGHT IMAGE */
.neuro-rehab-image {
  width: 40%;
  display: flex;
  justify-content: flex-end;
}

.neuro-rehab-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  object-fit: cover;
}


/* MOBILE VIEW */
@media (max-width: 991px) {
  .neuro-rehab-unit-row {
    flex-direction: column;
    gap: 30px;
  }

  .neuro-rehab-content,
  .neuro-rehab-image {
    width: 100%;
  }

  .neuro-rehab-image {
    justify-content: center;
  }

  .neuro-rehab-image img {
    max-width: 100%;
  }

  .neuro-program-section h2,
  .neuro-rehab-content h2 {
    font-size: 24px;
  }

  .neuro-program-section p,
  .neuro-rehab-content p {
    font-size: 15px;
    text-align: left;
  }
}

.neuro-conditions-section {
  background: #ffffff;
  padding: 50px 0 40px;
}

.neuro-conditions-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.conditions-block {
  margin-bottom: 18px;
}

.conditions-block h2,
.rehab-suggested-block h2 {
  font-size: 26px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 10px;
}

.conditions-block ul,
.rehab-suggested-block ul {
  margin: 0;
  padding-left: 32px;
}

.conditions-block li,
.rehab-suggested-block li {
  font-size: 17px;
  line-height: 1.45;
  color: #333333;
  margin-bottom: 2px;
}

.rehab-suggested-block p {
  font-size: 17px;
  line-height: 1.5;
  color: #333333;
  margin: 0 0 14px;
}

/* Mobile View */
@media (max-width: 768px) {
  .neuro-conditions-section {
    padding: 35px 0;
  }

  .conditions-block h2,
  .rehab-suggested-block h2 {
    font-size: 23px;
    line-height: 1.3;
  }

  .conditions-block li,
  .rehab-suggested-block li,
  .rehab-suggested-block p {
    font-size: 15px;
  }

  .conditions-block ul,
  .rehab-suggested-block ul {
    padding-left: 22px;
  }
}

/* Combined Content + Image Section */
.neuro-rehab-unit-section {
  background: #ffffff;
  padding: 55px 0;
}

.neuro-rehab-unit-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.neuro-rehab-unit-row {
  display: flex;
  align-items: center;
  gap: 55px;
}

/* LEFT CONTENT */
.neuro-rehab-content {
  width: 65%;
  color: #333333;
}

.conditions-block {
  margin-bottom: 22px;
}

.conditions-block h2,
.rehab-suggested-block h2 {
  font-size: 26px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 10px;
}

.conditions-block ul,
.rehab-suggested-block ul {
  margin: 0;
  padding-left: 32px;
}

.conditions-block li,
.rehab-suggested-block li {
  font-size: 17px;
  line-height: 1.45;
  color: #333333;
  margin-bottom: 2px;
}

.rehab-suggested-block p {
  font-size: 17px;
  line-height: 1.5;
  color: #333333;
  margin: 0 0 14px;
}

/* RIGHT IMAGE */
.neuro-rehab-image {
  width: 35%;
  display: flex;
  justify-content: flex-end;
}

.neuro-rehab-image img {
  width: 100%;
  max-width: 430px;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* MOBILE VIEW */
@media (max-width: 991px) {
  .neuro-rehab-unit-row {
    flex-direction: column;
    gap: 30px;
  }

  .neuro-rehab-content,
  .neuro-rehab-image {
    width: 100%;
  }

  .neuro-rehab-image {
    justify-content: center;
  }

  .neuro-rehab-image img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .neuro-rehab-unit-section {
    padding: 35px 0;
  }

  .conditions-block h2,
  .rehab-suggested-block h2 {
    font-size: 23px;
    line-height: 1.3;
  }

  .conditions-block li,
  .rehab-suggested-block li,
  .rehab-suggested-block p {
    font-size: 15px;
  }

  .conditions-block ul,
  .rehab-suggested-block ul {
    padding-left: 22px;
  }
}

/* =========================
   FAQ SECTION
========================= */

/* =========================
   FAQ SECTION
========================= */

.faq-section{
  width:100%;
  background:#f5fcfd;
  padding:70px 20px;
}

.faq-container{
  max-width:1300px;
  width:100%;
  margin:auto;
}

/* =========================
   TITLE
========================= */

.faq-title{
  font-size:30px;
  font-weight:700;
  color:#444;
  text-transform:uppercase;
  position:relative;
  margin-bottom:40px;
  line-height:1.3;
}

.faq-title::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-15px;
  width:70px;
  height:4px;
  background:#38c8d3;
}

/* =========================
   INTRO TEXT
========================= */

.faq-text{
  font-size:17px;
  line-height:1.8;
  color:#555;
  margin-bottom:35px;
}

/* =========================
   FAQ ITEM
========================= */

.faq-item{
  border-bottom:1px solid #d8e3e3;
}

/* =========================
   QUESTION
========================= */

.faq-question{
  width:100%;
  background:none;
  border:none;
  outline:none;
  padding:24px 0;
  font-size:20px;
  color:#222;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  transition:0.3s ease;
  gap:20px;
}

.faq-question span{
  text-align:left;
}

.faq-question:hover{
  color:#38c8d3;
}

/* =========================
   ICON
========================= */

.faq-icon{
  font-size:14px;
  color:#444;
  transition:0.3s ease;
  flex-shrink:0;
}

.faq-item.active .faq-icon{
  transform:rotate(180deg);
  color:#38c8d3;
}

/* =========================
   ANSWER
========================= */

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s ease;
}

.faq-answer p{
  font-size:17px;
  line-height:1.8;
  color:#666;
  padding-bottom:25px;
}

/* =========================
   ACTIVE
========================= */

.faq-item.active .faq-answer{
  max-height:300px;
}

.faq-item.active .faq-question{
  color:#38c8d3;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .faq-section{
    padding:50px 20px;
  }

  .faq-title{
    font-size:25px;
  }

  .faq-text{
    font-size:15px;
  }

  .faq-question{
    font-size:16px;
    padding:18px 0;
    gap:12px;
  }

  .faq-answer p{
    font-size:15px;
    padding-bottom:20px;
  }

}

.physio-section{
    width:100%;
    background:white;
    padding:40px 20px;
    box-sizing:border-box;
}

/* Center Container */
.physio-container{
    max-width:1300px;
    margin:0 auto;
}

/* Top Content Full Width */
.physio-top-content{
    width:100%;
    margin-bottom:40px;
}

.physio-top-content h2{
    color:black;
    font-size:32px;
    margin-bottom:15px;
    text-align: center;
}

.physio-top-content p{
    color:black;
    line-height:1.8;
    font-size:16px;
}

/* Image + Content */
.physio-image-content{
    display:flex;
    align-items:flex-start;
    gap:40px;
    flex-wrap:wrap;
}

/* Left Image */
.physio-image{
    flex:0 0 45%;
}

.physio-image img{
  margin-top: 40px;
    width:100%;
    display:block;
    border-radius:8px;
}

/* Right Content */
.physio-text{
    flex:1;
    background:#fff;
    padding:25px;
    border-radius:8px;
}

.physio-text h3{
    margin-bottom:15px;
    color:#222;
}

.physio-text ul{
    padding-left:20px;
    margin-bottom:25px;
}

.physio-text ul li{
    margin-bottom:10px;
    line-height:1.6;
}

.physio-text p{
    line-height:1.7;
    color:#444;
}

/* Mobile */
@media(max-width:768px){

    .physio-image-content{
        flex-direction:column;
    }

    .physio-image,
    .physio-text{
        width:100%;
        flex:100%;
    }

    .physio-top-content h2{
        font-size:26px;
    }
}

.therapy-section{
    width:100%;
    background:#1db7bf;
    padding:60px 20px;
    box-sizing:border-box;
}

.therapy-container{
    max-width:1300px;
    margin:0 auto;
    display:flex;
    align-items:center;
    gap:60px;
}

/* Left Content */
.therapy-content{
    flex:1;
}

.therapy-box{
    margin-bottom:45px;
    border-bottom:1px solid rgba(255,255,255,0.3);
    padding-bottom:25px;
}

.therapy-box:last-child{
    border-bottom:none;
    margin-bottom:0;
}

.therapy-box h2{
    color:#fff;
    font-size:32px;
    margin-bottom:18px;
    font-weight:700;
}

.therapy-box p{
    color:#fff;
    font-size:18px;
    line-height:1.5;
    margin-bottom:12px;
}

/* Right Image */
.therapy-image{
    flex:0 0 48%;
}

.therapy-image img{
    width:100%;
    display:block;
    border-radius:20px;
}

/* Responsive */
@media(max-width:991px){

    .therapy-container{
        flex-direction:column-reverse;
    }

    .therapy-image,
    .therapy-content{
        width:100%;
        flex:100%;
    }

    .therapy-box h2{
        font-size:30px;
    }

    .therapy-box p{
        font-size:16px;
    }
}

.content-section{
    width:100%;
    padding:60px 20px;
    background:#f5f5f5;
}

.content-section .container{
    max-width:1300px;
    margin:0 auto;
}

.content-section h2{
    font-size:32px;
    line-height:1.3;
    margin-bottom:25px;
    color:#333;
}

.content-section p{
    font-size:18px;
    line-height:1.5;
    color:#444;
    margin-bottom:25px;
}

.health-packages{
    width:100%;
    padding:40px 20px;
    background:#f4f7fb;
}

.health-packages .container{
    max-width:1300px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.package-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.package-header{
    background:#0ea5a8;
    padding:25px;
}

.package-header h2{
    color:#fff;
    margin-bottom:10px;
    font-size:30px;
    font-weight:700;
}

.package-header h4{
    color:#fff;
    margin:0;
    font-size:18px;
    font-weight:500;
}

.package-body{
    padding:20px;
}

.package-item{
    padding-bottom:12px;
    margin-bottom:12px;
    border-bottom:1px solid #e5e7eb;
}

.package-item:last-child{
    border-bottom:none;
    margin-bottom:0;
}

.package-item h3{
    font-size:20px;
    color:#111827;
    margin-bottom:12px;
    line-height:1.5;
}

.package-item p{
    font-size:16px;
    line-height:1.8;
    color:#4b5563;
    margin:0;
}

/* Responsive */
@media(max-width:991px){

    .health-packages .container{
        grid-template-columns:1fr;
    }

    .package-header h2{
        font-size:28px;
    }

    .package-item h3{
        font-size:18px;
    }

}

.doctor-container{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
    padding:70px 50px;
    background:#f3f4f6;
}

.doctor-card{

    width:310px;
    background:#fff;
    border:1px solid #00bfff;
    border-radius:8px;
    overflow:hidden;
    text-align:center;
    transition:0.3s;
    padding-bottom:25px;
}

.doctor-card:hover{

    transform:translateY(-8px);
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

.doctor-card img{

    width:100%;
    height:340px;
    object-fit:cover;
    padding:20px;
}

.doctor-card h2{

    font-size:20px;
    color:#4b5563;
    margin-bottom:10px;
    font-weight:700;
}

.doctor-card h4{

    color:#9ca3af;
    font-size:18px;
    margin-bottom:8px;
    padding:0 15px;
}

.doctor-card p{

    color:#9ca3af;
    font-size:17px;
    line-height:1.5;
    padding:0 20px;
}

.specialities-new-section{

    background:#f3f4f6;
    padding:70px 40px;
}

.specialities-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
}

.speciality-card{

    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

.speciality-card:hover{

    transform:translateY(-8px);
}

.speciality-img img{

    width:100%;
    height:250px;
    object-fit:cover;
}

.speciality-content{

    padding:25px;
}

.speciality-content h3{

    font-size:34px;
    margin-bottom:18px;
    color:#111827;
}

.speciality-content p{

    color:#4b5563;
    line-height:1.8;
    font-size:17px;
}

/* APPOINTMENT POPUP */

.appointment-popup{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
    padding:20px;
}

.appointment-box{

    width:950px;
    background:white;
    border-radius:15px;
    overflow:hidden;
    display:flex;
    position:relative;
    animation:popupShow 0.3s ease;
}

@keyframes popupShow{

    from{
        transform:scale(0.8);
        opacity:0;
    }

    to{
        transform:scale(1);
        opacity:1;
    }
}

.close-popup{

    position:absolute;
    top:15px;
    right:20px;
    font-size:34px;
    cursor:pointer;
    color:#111;
}

.appointment-left{

    width:40%;
}

.appointment-left img{

    width:100%;
    height:100%;
    object-fit:cover;
}

.appointment-right{

    width:60%;
    padding:40px;
}

.appointment-right h2{

    font-size:34px;
    margin-bottom:25px;
    color:#111827;
}

.appointment-right form{

    display:flex;
    flex-direction:column;
    gap:16px;
}

.appointment-right input,
.appointment-right select,
.appointment-right textarea{

    width:100%;
    padding:14px;
    border:1px solid #d1d5db;
    border-radius:8px;
    outline:none;
    font-size:15px;
}

.appointment-right textarea{

    height:120px;
    resize:none;
}

.appointment-right button{

    background:#0ea5e9;
    color:white;
    border:none;
    padding:15px;
    border-radius:8px;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

.appointment-right button:hover{

    background:#0284c7;
}

/* MOBILE */

@media(max-width:768px){

    .appointment-box{

        flex-direction:column;
        width:100%;
        max-height:95vh;
        overflow:auto;
    }

    .appointment-left,
    .appointment-right{

        width:100%;
    }

    .appointment-left img{

        height:250px;
    }
}

/*=========================
Gallery
=========================*/

.hospital-gallery-section{

width:92%;
max-width:1400px;
margin:auto;
padding:70px 0;

}

.gallery-category-block{

margin-bottom:70px;

}

.gallery-category-title{

font-size:34px;
font-weight:700;
text-align:center;
margin-bottom:35px;
color:#0f172a;
position:relative;

}

.gallery-category-title::after{

content:"";
width:90px;
height:4px;
background:#3fbbc0;
display:block;
margin:15px auto 0;
border-radius:30px;

}

.hospital-gallery-wrapper{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;

}

.hospital-gallery-card{

position:relative;
overflow:hidden;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,.12);

}

.hospital-gallery-card img{

width:100%;
height:260px;
object-fit:cover;
display:block;
transition:.4s;

}

.hospital-gallery-card:hover img{

transform:scale(1.06);

}

.view-all-btn{

position:absolute;
left:50%;
top:50%;
transform:translate(-50%,-50%);
padding:12px 30px;
border:none;
border-radius:50px;
background:#3fbbc0;
color:#fff;
font-size:15px;
cursor:pointer;
font-weight:600;

}

.extra-img{
    display:none;
}

@media(max-width:991px){

.hospital-gallery-wrapper{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.hospital-gallery-wrapper{

grid-template-columns:1fr;

}

.gallery-category-title{

font-size:28px;

}

}

/* =========================
   SECTION
========================= */

.smart-services{

    width:100%;
    padding:70px 0;
}

/* =========================
   CONTAINER
========================= */

.services-container{

    width:85%;
    margin:auto;
}

/* =========================
   TITLE
========================= */

.services-title{

    font-size:32px;
    font-weight:700;
    color:#444;
    margin-bottom:15px;
}

/* =========================
   BLUE LINE
========================= */

.title-line{

    width:70px;
    height:3px;
    background:#3fbbc0;
    margin-bottom:50px;
    border-radius:10px;
}

/* =========================
   SERVICES BOX
========================= */

.services-list{

    display:flex;
    flex-direction:column;
    gap:25px;
}

/* =========================
   SERVICE ITEM
========================= */

.service-item{

    background:#fff;
    border:1px solid #dcdcdc;
    border-radius:8px;
    height:62px;

    display:flex;
    align-items:center;

    padding:0 20px;

    font-size:18px;
    color:#555;

    transition:0.3s;
}

/* HOVER */

.service-item:hover{

    transform:translateY(-3px);
    box-shadow:0 6px 18px rgba(0,0,0,0.08);

    border-color:#11c5f5;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .services-container{

        width:92%;
    }

    .services-title{

        font-size:38px;
    }

    .service-item{

        font-size:18px;
        height:auto;
        padding:20px;
        line-height:1.6;
    }
}

/* =========================
   SECTION
========================= */

.medical-services{

    width:100%;
    padding:80px 0;
    background:#f5f5f5;
    overflow:hidden;
}

/* =========================
   CONTAINER
========================= */

.medical-container{

    width:1300px;
    max-width:95%;
    margin:auto;
}

/* =========================
   GRID
========================= */

.medical-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:60px 60px;
}

/* =========================
   CARD
========================= */

.medical-card{

    text-align:center;
    transition:0.3s;
}

/* =========================
   ICON CIRCLE
========================= */

.medical-icon{

    width:82px;
    height:82px;

    background:#fff;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    margin:auto auto 25px;

    box-shadow:0 4px 18px rgba(0,0,0,0.06);

    transition:0.3s;
}

.medical-icon i{

    font-size:38px;
    color:#42c3cf;
}

/* =========================
   TITLE
========================= */

.medical-card h3{

    font-size:28px;
    color:#4a4a4a;
    margin-bottom:18px;
    font-weight:700;
    transition:0.3s;
}

/* =========================
   SMALL LINE
========================= */

.medical-line{

    width:50px;
    height:3px;

    background:#42c3cf;

    margin:0 auto 30px;

    border-radius:10px;
}

/* =========================
   TEXT
========================= */

.medical-card p{

    font-size:16px;
    line-height:2;

    color:#5f5f5f;

    text-align:justify;
}

/* =========================
   HOVER
========================= */

.medical-card:hover .medical-icon{

    transform:translateY(-5px);
}

.medical-card:hover h3{

    color:#42c3cf;
}

/* =========================
   LARGE LAPTOP
========================= */

@media(max-width:1400px){

    .medical-container{

        width:95%;
    }
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .medical-grid{

        grid-template-columns:repeat(2,1fr);

        gap:60px 40px;
    }

    .medical-card h3{

        font-size:28px;
    }

    .medical-card p{

        font-size:17px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .medical-services{

        padding:60px 0;
    }

    .medical-container{

        width:92%;
    }

    .medical-grid{

        grid-template-columns:1fr;

        gap:50px;
    }

    .medical-icon{

        width:70px;
        height:70px;
    }

    .medical-icon i{

        font-size:30px;
    }

    .medical-card h3{

        font-size:24px;
        margin-bottom:15px;
    }

    .medical-line{

        margin-bottom:20px;
    }

    .medical-card p{

        font-size:15px;

        line-height:1.9;

        text-align:left;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

    .medical-card h3{

        font-size:22px;
    }

    .medical-card p{

        font-size:14px;
    }
}

.health-packages-section{
    padding:70px 0;
    background:#f8fafc;
}

.health-packages-container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.health-packages-heading{
    text-align:center;
    margin-bottom:50px;
}

.health-packages-heading h2{
    font-size:34px;
    margin-bottom:15px;
}

.health-packages-line{
    width:80px;
    height:4px;
    background:#3fbbc0;
    margin:15px auto;
}

.health-packages-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.health-packages-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.health-package-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    text-decoration:none;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
    transition:.3s;
    display:flex;
    flex-direction:column;
}

.health-package-card:hover{
    transform:translateY(-5px);
}

.health-package-top{
    background:#3fbbc0;
    color:#fff;
    padding:20px;
    text-align:center;
}

.health-package-top h3{
    font-size:20px;
    margin:0;
}

.health-package-body{
    padding:20px;
    flex:1;
}

.health-package-body ul{
    padding-left:20px;
    margin:0;
}

.health-package-body li{
    margin-bottom:10px;
    color:#555;
}

.health-package-btn{
    margin:20px;
    background:#3fbbc0;
    color:#fff;
    text-align:center;
    padding:12px;
    border-radius:8px;
    font-weight:600;
}

@media(max-width:1200px){
    .health-packages-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:900px){
    .health-packages-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .health-packages-grid{
        grid-template-columns:1fr;
    }
}