
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f9fc;
  padding-top: 70px;
}

section{
    margin:0;
}
html, body {
  width: 100%;
 
}
html{
    scroll-behavior: smooth;
}
img{
    max-width: 100%;
    height: auto;
}


/* ===== TOP BAR ===== */
.top-bar{
  top:0;
  width:100%;
  background:linear-gradient(135deg,#008891,#00b7c2);
  color:white;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 5%;
  font-size:14px;
  z-index:1100;
}

/* LINKS */
.top-bar a{
  color:white;
  text-decoration:none;
  margin:0 6px;
  transition:0.3s;
}

.top-bar a:hover{
  opacity:0.8;
}

/* LEFT */
.top-left{
  display:flex;
  align-items:center;
  gap:10px;
}

/* CENTER */
.top-center{
  font-weight:600;
}

.top-center a{
  background:rgba(255,255,255,0.2);
  padding:5px 12px;
  border-radius:20px;
}

/* RIGHT */
.top-right{
  display:flex;
  gap:12px;
}

.top-right i{
  font-size:14px;
  transition:0.3s;
}

.top-right i:hover{
  transform:scale(1.2);
}

/* ===== FIX MAIN NAVBAR POSITION ===== */
.navbar{
  top:40px; /* IMPORTANT */
}

/* BODY SPACING */
body{
  padding-top:130px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){

  .top-bar{
    flex-direction:column;
    gap:5px;
    text-align:center;
    padding:10px;
  }

  .top-left,
  .top-right{
    justify-content:center;
    flex-wrap:wrap;
  }

}



/* ===== NAVBAR ===== */
/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  padding-top:90px;
  font-family: Arial, sans-serif;
}

/* NAVBAR */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  padding-top:90px;
  font-family:Arial, sans-serif;
}

/* ===== GLASS NAVBAR ===== */
.navbar{
  position:fixed;
  top:0;
  width:100%;
  backdrop-filter:blur(12px);
  background:rgba(255,255,255,0.6);
  box-shadow:0 4px 20px rgba(0,0,0,0.05);
  z-index:1000;
  transition:0.4s ease;
}

.navbar.scrolled{
  background:#00AAB4
}

/* Container */
.nav-container{
  width:90%;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:90px;
}

/* Logo */
.nav-left img{
  height: 95px;
}

/* Menu */
.nav-menu{
  display:flex;
  align-items:center;
  gap:30px;
}

.nav-menu a{
  text-decoration:none;
  color:#333;
  font-weight:500;
  position:relative;
  padding:5px 0;
  transition:0.3s;
}

/* Animated Underline */
.nav-menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:0%;
  height:2px;
  background:#03B4B0;
  transition:0.3s;
}

.nav-menu a:hover::after{
  width:100%;
}

/* Scroll Color Change */
.navbar.scrolled .nav-menu a{
  color:white;
}

/* Dropdown */
.dropdown{
  position:relative;
}

.mega-menu{
  position:absolute;
  top:50px;
  left:0;
  width:600px;
  background:white;
  display:flex;
  justify-content:space-between;
  padding:25px;
  box-shadow:0 8px 25px rgba(0,0,0,0.1);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:0.3s ease;
  border-radius:10px;
}

.dropdown:hover .mega-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.mega-column{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.mega-column h4{
  margin-bottom:10px;
  color:#03B4B0;
}

/* Button */
.nav-btn{
  background:#03b4b0;
  color:white;
  padding:10px 20px;
  border-radius:30px;
  text-decoration:none;
  transition:0.3s;
}

.nav-btn:hover{
  transform:translateY(-3px);
}



/* Hamburger */
.hamburger{
  display:none;
  font-size:28px;
  cursor:pointer;
}

/* Responsive */
@media(max-width:992px){

  .nav-menu{
    position:absolute;
    top:90px;
    right:0;
    background:white;
    flex-direction:column;
    width:260px;
    padding:20px;
    display:none;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
  }

  .nav-menu.active{
    display:flex;
  }

  .mega-menu{
    position:static;
    width:100%;
    flex-direction:column;
    box-shadow:none;
    padding:10px 0;
  }

  .nav-btn{
    display:none;
  }

  .hamburger{
    display:block;
  }
}


/* ================= MODERN HERO ================= */

.hero {
  width: 100%;
  padding: 100px 8% 60px;
  background: linear-gradient(135deg,#e6f7f9,#f4fcff);
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.hero-left {
  flex: 1;
  min-width: 300px;
}

.hero-left h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0f3057;
}

.hero-left h1 span {
  color: #00a8a8;
}

.hero-left p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #555;
  line-height: 1.6;
}

/* Button */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg,#03B4B0,#03B4B0);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat i {
  font-size: 26px;
  color: #00a8a8;
  margin-bottom: 8px;
}

.stat h3 {
  font-size: 22px;
  color: #0f3057;
}

.stat span {
  font-size: 14px;
  color: #777;
}

/* RIGHT SIDE */
.hero-right {
  flex: 1;
  text-align: center;
  min-width: 300px;
}

.hero-right img {
  width: 100%;
  max-width: 500px;
  
}

/* Floating animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 36px;
  }

  .hero-left p {
    font-size: 16px;
  }

  .hero-stats {
    justify-content: center;
  }

}

@media (max-width: 576px) {

  .hero {
    padding: 80px 5% 40px;
  }

  .hero-left h1 {
    font-size: 26px;
  }

  .hero-left p {
    font-size: 14px;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

}

/* ===== SERVICES ===== */
/* SECTION */
.services{
  text-align:center;
  padding:30px 15px;
}

.services h2{
  margin-bottom:20px;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:15px;
}

/* CARD */
.card{
  background:#fff;
  padding:20px 15px;
  border-radius:16px;
  text-align:center;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  cursor:pointer;
  transition:0.3s;
}

.card h3{
  margin:10px 0 5px;
  font-size:16px;
}

.card p{
  font-size:13px;
  color:#777;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

/* VIEW BUTTON */
.view-btn{
  margin-top:20px;
  padding:12px 25px;
  background:#00AAB4;
  color:white;
  border:none;
  border-radius:30px;
  cursor:pointer;
  font-size:14px;
}

/* POPUP BACKGROUND */
.popup{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.55);
  justify-content:center;
  align-items:center;
  z-index:9999;
}

/* POPUP BOX */
.box{
  background:#fff;
  width:340px;
  max-height:85vh;
  overflow-y:auto;
  border-radius:18px;
  padding:20px;
  position:relative;
  animation:popup .3s ease;
}

@keyframes popup{
  from{transform:scale(.9);opacity:0}
  to{transform:scale(1);opacity:1}
}

/* CLOSE BUTTON */
/* CLOSE BUTTON IMPROVED */
.close{
  position:absolute;
  right:12px;
  top:12px;
  width:32px;
  height:32px;
  background:#f1f1f1;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.close:hover{
  background:#ff4d4d;
  color:white;
}
/* SERVICE LIST ITEM */
.service{
  border:1px solid #eee;
  padding:12px;
  margin-top:10px;
  border-radius:12px;
  cursor:pointer;
  transition:.2s;
}

.service:hover{
  background:#f0fafa;
}

/* PRICE STYLE */
.service span{
  text-decoration:line-through;
  color:#ff4d4d;
  font-size:12px;
  margin-right:5px;
}

.service strong{
  color:#00AAB4;
  font-size:15px;
}

/* PRICE BOX */
.price-box{
  background:#f0fafa;
  padding:10px;
  border-radius:10px;
  margin-top:10px;
  font-weight:bold;
  color:#00AAB4;
}

/* INPUT */
input,select{
  width:100%;
  padding:12px;
  margin-top:10px;
  border-radius:10px;
  border:1px solid #ddd;
  font-size:14px;
}

/* BUTTON */
button{
  width:100%;
  padding:13px;
  margin-top:12px;
  background:#00AAB4;
  color:white;
  border:none;
  border-radius:25px;
  font-size:15px;
  cursor:pointer;
  transition:.3s;
}

button:hover{
  background:#008c95;
}

/* MOBILE */
@media(max-width:480px){
  .box{
    width:95%;
  }
}
/* Why chose us */
.why-us {
  padding: 60px 20px;
  background: #f9fafb;
  text-align: center;
}

.why-us h2 {
  font-size: 30px;
  color: #0f766e;
  margin-bottom: 10px;
}

.subtitle {
  color: #555;
  margin-bottom: 40px;
  font-size: 15px;
}

.why-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.why-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.why-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #e6f4f1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 28px;
  height: 28px;
  stroke: #0f766e;
  stroke-width: 2;
  fill: none;
}

.why-box h3 {
  font-size: 18px;
  color: #0f766e;
  margin-bottom: 5px;
}

.why-box p {
  font-size: 14px;
  color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .why-us {
    padding: 40px 15px;
  }
}




/* ================= MEDICINE SECTION ================= */

.medicine-section{
    text-align:center;
    padding:60px 20px 100px 20px;
    background: linear-gradient(135deg,#f1f8f4,#ffffff);
}

.section-title{
    font-size:30px;
    margin-bottom:40px;
    color:#00AAB4;
}

.section-title i{
    margin-right:8px;
    color:#00AAB4;
}

/* CARD */
.medicine-card{
    max-width:500px;
    width:100%;
    margin:auto;
    background:white;
    padding:50px 40px;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    position:relative;
    transition:0.4s ease;
}

.medicine-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* Badge */
.badge{
    background:#00AAB4;
    color:white;
    padding:6px 15px;
    border-radius:20px;
    font-size:13px;
    position:absolute;
    top:-12px;
    right:20px;
    box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

/* Text */
.medicine-card h3{
    font-size:28px;
    margin-top:20px;
}

.medicine-card p{
    margin:12px 0;
    color:#555;
    font-size:16px;
    line-height:1.6;
}

/* DOTS */
.dots{
    margin-top:25px;
}

.dot{
    height:10px;
    width:10px;
    background:#ccc;
    display:inline-block;
    border-radius:50%;
    margin:0 5px;
    transition:0.3s;
}

.dot.active{
    background:#00AAB4;
    transform:scale(1.2);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width:992px){

    .medicine-card{
        padding:40px 25px;
    }

    .medicine-card h3{
        font-size:24px;
    }

    .medicine-card p{
        font-size:15px;
    }

}

/* Mobile */
@media (max-width:576px){

    .medicine-section{
        padding:50px 15px 80px 15px;
    }

    .section-title{
        font-size:22px;
    }

    .medicine-card{
        padding:30px 20px;
    }

    .medicine-card h3{
        font-size:20px;
    }

    .medicine-card p{
        font-size:14px;
    }

    .badge{
        font-size:11px;
        padding:5px 12px;
    }

}
/* ===== Booking card ===== */
/* ================= BOOKING SECTION ================= */

.appointment {
  padding: 60px 20px;
  background: #f5f5f5;
}

.container {
  display: flex;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
}

.form-box {
  flex: 2;
}

.form-box h2 {
  font-size: 32px;
  margin-bottom: 25px;
}

.form-box label {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  color: #555;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: none;
  background: #eaeaea;
  font-size: 14px;
  outline: none;
}

.form-box textarea {
  height: 100px;
  resize: none;
}

.form-box button {
  margin-top: 20px;
  padding: 14px;
  width: 100%;
  background: #00AAB4;
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.form-box button:hover {
  background: #009e8c;
}

/* RIGHT SIDE */
.info-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info {
  background: #fff;
  padding: 20px;
  border-left: 4px solid #00bfa6;
}

.info h4 {
  margin-bottom: 5px;
}

.info span {
  font-weight: bold;
  display: block;
  margin-top: 5px;
}

/* MOBILE */
@media(max-width:768px){
  .container{
    flex-direction: column;
  }
}

/* ===== Team ===== */
/* ===== TEAM SECTION ===== */

.team-section{
    position:relative;
    padding:100px 20px;
    text-align:center;
    background:#f4f9ff;
    overflow:hidden;
}

/* Background Shapes */
.team-section::before,
.team-section::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:linear-gradient(45deg,#00b7c2,#008891);
    opacity:0.08;
    animation:float 8s infinite alternate ease-in-out;
}

.team-section::before{
    top:-100px;
    left:-100px;
}

.team-section::after{
    bottom:-100px;
    right:-100px;
}

@keyframes float{
    from{transform:translateY(0);}
    to{transform:translateY(40px);}
}

.team-heading{
    font-size:36px;
    margin-bottom:60px;
    color:#0f3057;
}

.team-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

/* CARD */
.team-card{
    position:relative;
    border-radius:20px;
    padding:30px 20px 40px;
    backdrop-filter:blur(12px);
    background:rgba(255,255,255,0.6);
    border:2px solid transparent;
    background-clip:padding-box;
    transition:0.4s ease;
    overflow:hidden;
}

/* Gradient Border Animation */
.team-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:20px;
    padding:2px;
    background:linear-gradient(45deg,#00b7c2,#008891,#4caf50);
    background-size:300% 300%;
    animation:borderMove 6s linear infinite;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
            mask-composite:exclude;
}

@keyframes borderMove{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

.team-card:hover{
    transform:translateY(-10px);
}

/* IMAGE */
.team-img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
    border:4px solid #fff;
    box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

/* INFO */
.team-info h3{
    margin:10px 0 5px;
    font-size:20px;
    color:#0f3057;
}

.role{
    color:#008891;
    font-weight:600;
    margin-bottom:8px;
}

.team-info p{
    font-size:14px;
    color:#555;
}

/* SOCIAL ICONS */
.social-icons{
    margin-top:15px;
    opacity:0;
    transform:translateY(10px);
    transition:0.3s ease;
}

.team-card:hover .social-icons{
    opacity:1;
    transform:translateY(0);
}

.social-icons a{
    color:#008891;
    margin:0 8px;
    font-size:18px;
    transition:0.3s;
}

.social-icons a:hover{
    color:#00b7c2;
}

/* BUTTON */
.view-btn{
    display:inline-block;
    margin-top:15px;
    padding:8px 18px;
    border-radius:20px;
    background:linear-gradient(45deg,#008891,#00b7c2);
    color:white;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.view-btn:hover{
    transform:scale(1.05);
}

/* ===== RESPONSIVE ===== */

@media(max-width:768px){
    .team-heading{
        font-size:28px;
    }
}

@media(max-width:480px){
    .team-section{
        padding:70px 15px;
    }

    .team-heading{
        font-size:22px;
    }

    .team-img{
        width:100px;
        height:100px;
    }
}



/* ===== CONTACT SECTION ===== */

.contact-section{
    background:linear-gradient(135deg,#f4f9ff,#ffffff);
    text-align:center;
    padding:100px 20px;
}

.contact-heading{
    font-size:34px;
    color:#1e3a5f;
    margin-bottom:10px;
}

.contact-sub{
    color:#666;
    margin-bottom:60px;
    font-size:15px;
}

.contact-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

/* CARD */
.contact-card{
    background:rgba(255,255,255,0.7);
    backdrop-filter:blur(12px);
    padding:40px 30px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    transition:0.4s ease;
}

.contact-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,0.15);
}

/* ICON */
.icon{
    width:65px;
    height:65px;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:15px;
    font-size:24px;
}

.blue{
    background:#e3f2fd;
    color:#2196f3;
}

.green{
    background:#e8f5e9;
    color:#4caf50;
}

.purple{
    background:#f3e5f5;
    color:#8e24aa;
}

.contact-card h3{
    margin-bottom:15px;
    color:#1e3a5f;
}

.contact-card p{
    margin:6px 0;
    color:#555;
    font-size:14px;
}

/* SOCIAL ICONS */
.social-links{
    margin-top:20px;
}

.social-links a{
    display:inline-block;
    margin:0 8px;
    font-size:16px;
    color:#008891;
    transition:0.3s;
}

.social-links a:hover{
    color:#00b7c2;
    transform:scale(1.2);
}

/* WHATSAPP BUTTON */
.whatsapp-btn{
    display:inline-block;
    margin-top:15px;
    padding:10px 18px;
    background:linear-gradient(45deg,#25D366,#128C7E);
    color:white;
    text-decoration:none;
    border-radius:25px;
    font-size:14px;
    transition:0.3s;
}

.whatsapp-btn:hover{
    transform:scale(1.05);
}

/* BRAND BOX */
.brand-box{
    background:#f1f5ff;
    padding:12px;
    margin:10px 0;
    border-radius:10px;
    font-weight:600;
}

.green-bg{
    background:#e8f5e9;
    color:#2e7d32;
}

/* ===== RESPONSIVE ===== */

@media(max-width:768px){
    .contact-heading{
        font-size:26px;
    }
}

@media(max-width:480px){
    .contact-section{
        padding:70px 15px;
    }

    .contact-heading{
        font-size:22px;
    }

    .contact-sub{
        font-size:14px;
    }
}


/* ===== REVIEW SECTION ===== */

/* ===== REVIEW SECTION ===== */

.review-section{
    padding:100px 20px;
    background:linear-gradient(135deg,#ffffff,#f4f9ff);
    text-align:center;
}

.review-heading{
    font-size:34px;
    margin-bottom:60px;
    color:#1e3a5f;
}

.review-container{
    max-width:700px;
    margin:auto;
    position:relative;
}

.review-card{
    position:absolute;
    width:100%;
    padding:40px 30px;
    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(12px);
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    opacity:0;
    transform:scale(0.95);
    transition:all 0.6s ease;
}

.review-card.active{
    opacity:1;
    transform:scale(1);
    position:relative;
}

.review-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:15px;
}

.profile-img{
    width:55px;
    height:55px;
    border-radius:50%;
    object-fit:cover;
    margin-right:12px;
    border:3px solid #fff;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.review-top h4{
    margin:0;
    font-size:16px;
    color:#1e3a5f;
}

.stars{
    color:#fbbc05;
    font-size:14px;
}

.google-icon{
    font-size:22px;
    color:#4285F4;
}

.review-text{
    font-size:15px;
    color:#555;
    line-height:1.6;
}

/* ===== RESPONSIVE ===== */

@media(max-width:480px){
    .review-section{
        padding:70px 15px;
    }

    .review-heading{
        font-size:22px;
    }

    .review-text{
        font-size:14px;
    }
}



/* ================= BLOG SECTION ================= */

.blog {
    padding: 80px 8%;
    text-align: center;
    background: linear-gradient(135deg,#f4f9ff,#ffffff);
}

.blog h2{
    font-size: 32px;
    margin-bottom: 50px;
    color: #0f3057;
}

/* SLIDER */
.blog-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.blog-slider::-webkit-scrollbar{
    display: none;
}

/* CARD */
.blog-card {
    min-width: 300px;
    max-width: 300px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: 0.4s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.4s;
}

.blog-card:hover img{
    transform: scale(1.08);
}

/* INFO */
.blog-info {
    padding: 20px;
    text-align: left;
}

.blog-info span {
    font-size: 12px;
    color: gray;
}

.blog-info h3 {
    margin: 12px 0;
    font-size: 18px;
    color:#222;
}

.blog-info button {
    padding: 8px 18px;
    border: none;
    background: linear-gradient(45deg,#008891,#00b7c2);
    color: white;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.blog-info button:hover{
    transform: scale(1.05);
}

/* ================= POPUP ================= */

.blog-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    padding:20px;
    z-index: 999;
}

.popup-content {
    background: white;
    padding: 30px;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    text-align: left;
    position: relative;
    animation: popupFade 0.3s ease;
}

@keyframes popupFade{
    from{ transform:scale(0.8); opacity:0; }
    to{ transform:scale(1); opacity:1; }
}

.close {
    position: absolute;
    right: 20px;
    top:15px;
    cursor: pointer;
    font-size:18px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){
    .blog{
        padding:60px 5%;
    }
}

@media(max-width:600px){

    .blog h2{
        font-size:24px;
    }

    .blog-card{
        min-width: 85%;
        max-width: 85%;
    }

    .popup-content{
        padding:20px;
    }

}
/* ===== CONTACT ===== */
.contact {
  background: linear-gradient(135deg, #1e3799, #4a69bd);
  color: white;
  text-align: center;
  padding: 50px;
}

.call-btn {
  margin-top: 20px;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  background: white;
  color: #1e3799;
  font-weight: bold;
}

/* Loader Style */
#loader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #0f3057, #008891);
    display: flex;
    
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 9999;
}

.heartbeat {
    font-size: 60px;
    animation: beat 1s infinite;
}

@keyframes beat {
    0% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
    75% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

#loader p {
    margin-top: 15px;
    font-size: 18px;
}




/* ===== FOOTER ===== */
/* ================= CONTACT SECTION ================= */

/* ================= HOSPITAL FOOTER ================= */

.hospital-footer{
  background: #00AAB4;
  color: white;
  padding: 80px 8% 30px;
  position: relative;
}

.footer-container{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
}

.footer-box h3{
  font-size: 24px;
  margin-bottom: 20px;
}

.footer-box h4{
  font-size: 18px;
  margin-bottom: 20px;
  border-left: 4px solid #00d2ff;
  padding-left: 10px;
}

.footer-box p{
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 10px;
}

.footer-box ul{
  list-style: none;
  padding: 0;
}

.footer-box ul li{
  margin-bottom: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-box ul li:hover{
  color: #00d2ff;
  padding-left: 6px;
}

/* Emergency Highlight */
.emergency-box{
  margin-top: 20px;
  background: rgba(255,255,255,0.1);
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  backdrop-filter: blur(5px);
}

/* Newsletter */
.newsletter{
  display: flex;
  margin-top: 10px;
  background: white;
  border-radius: 30px;
  overflow: hidden;
}

.newsletter input{
  border: none;
  padding: 10px 15px;
  flex: 1;
  outline: none;
  font-size: 14px;
}

.newsletter button{
  border: none;
  background: #00d2ff;
  color: white;
  padding: 10px 18px;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter button:hover{
  background: #009ec3;
}

/* Social */
.social-icons{
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a{
  height: 35px;
  width: 35px;
  background: white;
  color: #0f3057;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons a:hover{
  background: #00d2ff;
  color: white;
  transform: translateY(-5px);
}

/* Bottom */
.footer-bottom{
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 13px;
  opacity: 0.8;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){
  .footer-container{
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:600px){
  .footer-container{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter{
    flex-direction: column;
    border-radius: 15px;
  }

  .newsletter input,
  .newsletter button{
    width: 100%;
    border-radius: 0;
  }

  .newsletter button{
    border-radius: 0 0 15px 15px;
  }

  .social-icons{
    justify-content: center;
  }
}

/* ===== LOGO + TAGLINE ===== */
.nav-left {
  display: flex;
  
  flex-direction: column;
  align-items: flex-start;
}

.logo-tagline {
  margin-top: 4px;
  font-size: 13px;
  font-style: italic;
  color: #2e7d32; /* green shade */
}





/* Tablet */
@media (max-width: 992px){

.navbar{
    padding: 0 20px;
}

.hero h1{
    font-size: 32px;
}

.blog-grid{
    grid-template-columns: repeat(2,1fr);
}

}

/* Mobile */
@media (max-width: 768px){

.navbar{
    flex-direction: column;
    height: auto;
    padding: 15px;
}

.nav-right{
    flex-direction: column;
    gap: 15px;
}

.hero{
    text-align: center;
    padding: 50px 20px;
}

.blog-grid{
    grid-template-columns: 1fr;
}

.footer-container{
    flex-direction: column;
    text-align: center;
}

.booking-container{
    padding: 20px;
}

}



+ Add JavaScript

Options
+
Run PurgeCSS
26.83 KB → 26.38 KB−2%
Purged CSS
Copy
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f9fc;
  padding-top: 70px;
}

section{
    margin:0;
}
html, body {
  width: 100%;
 
}
html{
    scroll-behavior: smooth;
}
img{
    max-width: 100%;
    height: auto;
}


/* ===== TOP BAR ===== */
.top-bar{
  top:0;
  width:100%;
  background:linear-gradient(135deg,#008891,#00b7c2);
  color:white;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 5%;
  font-size:14px;
  z-index:1100;
}

/* LINKS */
.top-bar a{
  color:white;
  text-decoration:none;
  margin:0 6px;
  transition:0.3s;
}

.top-bar a:hover{
  opacity:0.8;
}

/* LEFT */
.top-left{
  display:flex;
  align-items:center;
  gap:10px;
}

/* CENTER */
.top-center{
  font-weight:600;
}

.top-center a{
  background:rgba(255,255,255,0.2);
  padding:5px 12px;
  border-radius:20px;
}

/* RIGHT */
.top-right{
  display:flex;
  gap:12px;
}

.top-right i{
  font-size:14px;
  transition:0.3s;
}

.top-right i:hover{
  transform:scale(1.2);
}

/* ===== FIX MAIN NAVBAR POSITION ===== */
.navbar{
  top:40px; /* IMPORTANT */
}

/* BODY SPACING */
body{
  padding-top:130px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){

  .top-bar{
    flex-direction:column;
    gap:5px;
    text-align:center;
    padding:10px;
  }

  .top-left,
  .top-right{
    justify-content:center;
    flex-wrap:wrap;
  }

}



/* ===== NAVBAR ===== */
/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  padding-top:90px;
  font-family: Arial, sans-serif;
}

/* NAVBAR */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  padding-top:90px;
  font-family:Arial, sans-serif;
}

/* ===== GLASS NAVBAR ===== */
.navbar{
  position:fixed;
  top:0;
  width:100%;
  backdrop-filter:blur(12px);
  background:rgba(255,255,255,0.6);
  box-shadow:0 4px 20px rgba(0,0,0,0.05);
  z-index:1000;
  transition:0.4s ease;
}

/* Container */
.nav-container{
  width:90%;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:90px;
}

/* Logo */
.nav-left img{
  height: 95px;
}

/* Menu */
.nav-menu{
  display:flex;
  align-items:center;
  gap:30px;
}

.nav-menu a{
  text-decoration:none;
  color:#333;
  font-weight:500;
  position:relative;
  padding:5px 0;
  transition:0.3s;
}

/* Animated Underline */
.nav-menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:0%;
  height:2px;
  background:#03B4B0;
  transition:0.3s;
}

.nav-menu a:hover::after{
  width:100%;
}

/* Scroll Color Change */

/* Dropdown */
.dropdown{
  position:relative;
}

.mega-menu{
  position:absolute;
  top:50px;
  left:0;
  width:600px;
  background:white;
  display:flex;
  justify-content:space-between;
  padding:25px;
  box-shadow:0 8px 25px rgba(0,0,0,0.1);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:0.3s ease;
  border-radius:10px;
}

.dropdown:hover .mega-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.mega-column{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.mega-column h4{
  margin-bottom:10px;
  color:#03B4B0;
}

/* Button */
.nav-btn{
  background:#03b4b0;
  color:white;
  padding:10px 20px;
  border-radius:30px;
  text-decoration:none;
  transition:0.3s;
}

.nav-btn:hover{
  transform:translateY(-3px);
}



/* Hamburger */
.hamburger{
  display:none;
  font-size:28px;
  cursor:pointer;
}

/* Responsive */
@media(max-width:992px){

  .nav-menu{
    position:absolute;
    top:90px;
    right:0;
    background:white;
    flex-direction:column;
    width:260px;
    padding:20px;
    display:none;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
  }

  .nav-menu.active{
    display:flex;
  }

  .mega-menu{
    position:static;
    width:100%;
    flex-direction:column;
    box-shadow:none;
    padding:10px 0;
  }

  .nav-btn{
    display:none;
  }

  .hamburger{
    display:block;
  }
}


/* ================= MODERN HERO ================= */

.hero {
  width: 100%;
  padding: 100px 8% 60px;
  background: linear-gradient(135deg,#e6f7f9,#f4fcff);
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.hero-left {
  flex: 1;
  min-width: 300px;
}

.hero-left h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0f3057;
}

.hero-left h1 span {
  color: #00a8a8;
}

.hero-left p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #555;
  line-height: 1.6;
}

/* Button */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg,#03B4B0,#03B4B0);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat i {
  font-size: 26px;
  color: #00a8a8;
  margin-bottom: 8px;
}

.stat h3 {
  font-size: 22px;
  color: #0f3057;
}

.stat span {
  font-size: 14px;
  color: #777;
}

/* RIGHT SIDE */
.hero-right {
  flex: 1;
  text-align: center;
  min-width: 300px;
}

.hero-right img {
  width: 100%;
  max-width: 500px;
  
}

/* Floating animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 36px;
  }

  .hero-left p {
    font-size: 16px;
  }

  .hero-stats {
    justify-content: center;
  }

}

@media (max-width: 576px) {

  .hero {
    padding: 80px 5% 40px;
  }

  .hero-left h1 {
    font-size: 26px;
  }

  .hero-left p {
    font-size: 14px;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

}

/* ===== SERVICES ===== */
/* SECTION */
.services{
  text-align:center;
  padding:30px 15px;
}

.services h2{
  margin-bottom:20px;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:15px;
}

/* CARD */
.card{
  background:#fff;
  padding:20px 15px;
  border-radius:16px;
  text-align:center;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  cursor:pointer;
  transition:0.3s;
}

.card h3{
  margin:10px 0 5px;
  font-size:16px;
}

.card p{
  font-size:13px;
  color:#777;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

/* VIEW BUTTON */
.view-btn{
  margin-top:20px;
  padding:12px 25px;
  background:#00AAB4;
  color:white;
  border:none;
  border-radius:30px;
  cursor:pointer;
  font-size:14px;
}

/* POPUP BACKGROUND */
.popup{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.55);
  justify-content:center;
  align-items:center;
  z-index:9999;
}

/* POPUP BOX */
.box{
  background:#fff;
  width:340px;
  max-height:85vh;
  overflow-y:auto;
  border-radius:18px;
  padding:20px;
  position:relative;
  animation:popup .3s ease;
}

@keyframes popup{
  from{transform:scale(.9);opacity:0}
  to{transform:scale(1);opacity:1}
}

/* CLOSE BUTTON */
/* CLOSE BUTTON IMPROVED */
.close{
  position:absolute;
  right:12px;
  top:12px;
  width:32px;
  height:32px;
  background:#f1f1f1;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.close:hover{
  background:#ff4d4d;
  color:white;
}
/* SERVICE LIST ITEM */
.service{
  border:1px solid #eee;
  padding:12px;
  margin-top:10px;
  border-radius:12px;
  cursor:pointer;
  transition:.2s;
}

.service:hover{
  background:#f0fafa;
}

/* PRICE STYLE */
.service span{
  text-decoration:line-through;
  color:#ff4d4d;
  font-size:12px;
  margin-right:5px;
}

.service strong{
  color:#00AAB4;
  font-size:15px;
}

/* PRICE BOX */
.price-box{
  background:#f0fafa;
  padding:10px;
  border-radius:10px;
  margin-top:10px;
  font-weight:bold;
  color:#00AAB4;
}

/* INPUT */
input,select{
  width:100%;
  padding:12px;
  margin-top:10px;
  border-radius:10px;
  border:1px solid #ddd;
  font-size:14px;
}

/* BUTTON */
button{
  width:100%;
  padding:13px;
  margin-top:12px;
  background:#00AAB4;
  color:white;
  border:none;
  border-radius:25px;
  font-size:15px;
  cursor:pointer;
  transition:.3s;
}

button:hover{
  background:#008c95;
}

/* MOBILE */
@media(max-width:480px){
  .box{
    width:95%;
  }
}
/* Why chose us */
.why-us {
  padding: 60px 20px;
  background: #f9fafb;
  text-align: center;
}

.why-us h2 {
  font-size: 30px;
  color: #0f766e;
  margin-bottom: 10px;
}

.subtitle {
  color: #555;
  margin-bottom: 40px;
  font-size: 15px;
}

.why-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.why-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.why-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #e6f4f1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 28px;
  height: 28px;
  stroke: #0f766e;
  stroke-width: 2;
  fill: none;
}

.why-box h3 {
  font-size: 18px;
  color: #0f766e;
  margin-bottom: 5px;
}

.why-box p {
  font-size: 14px;
  color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .why-us {
    padding: 40px 15px;
  }
}




/* ================= MEDICINE SECTION ================= */

.medicine-section{
    text-align:center;
    padding:60px 20px 100px 20px;
    background: linear-gradient(135deg,#f1f8f4,#ffffff);
}

.section-title{
    font-size:30px;
    margin-bottom:40px;
    color:#00AAB4;
}

.section-title i{
    margin-right:8px;
    color:#00AAB4;
}

/* CARD */
.medicine-card{
    max-width:500px;
    width:100%;
    margin:auto;
    background:white;
    padding:50px 40px;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    position:relative;
    transition:0.4s ease;
}

.medicine-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* Badge */
.badge{
    background:#00AAB4;
    color:white;
    padding:6px 15px;
    border-radius:20px;
    font-size:13px;
    position:absolute;
    top:-12px;
    right:20px;
    box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

/* Text */
.medicine-card h3{
    font-size:28px;
    margin-top:20px;
}

.medicine-card p{
    margin:12px 0;
    color:#555;
    font-size:16px;
    line-height:1.6;
}

/* DOTS */
.dots{
    margin-top:25px;
}

.dot{
    height:10px;
    width:10px;
    background:#ccc;
    display:inline-block;
    border-radius:50%;
    margin:0 5px;
    transition:0.3s;
}

.dot.active{
    background:#00AAB4;
    transform:scale(1.2);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width:992px){

    .medicine-card{
        padding:40px 25px;
    }

    .medicine-card h3{
        font-size:24px;
    }

    .medicine-card p{
        font-size:15px;
    }

}

/* Mobile */
@media (max-width:576px){

    .medicine-section{
        padding:50px 15px 80px 15px;
    }

    .section-title{
        font-size:22px;
    }

    .medicine-card{
        padding:30px 20px;
    }

    .medicine-card h3{
        font-size:20px;
    }

    .medicine-card p{
        font-size:14px;
    }

    .badge{
        font-size:11px;
        padding:5px 12px;
    }

}
/* ===== Booking card ===== */
/* ================= BOOKING SECTION ================= */

.booking{
    padding:70px 20px;
    background: linear-gradient(135deg,#eef7ff,#ffffff);
}

.booking-container {
    max-width: 600px;
    width:100%;
    margin: auto;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition:0.3s ease;
}

.booking-container:hover{
    transform: translateY(-6px);
}

/* TITLE */
.booking h2 {
    margin-bottom: 10px;
    color: #0f3057;
    font-size:28px;
    font-weight:600;
}

.booking p {
    margin-bottom: 30px;
    color: #555;
    font-size:15px;
}

/* INPUTS */
.booking input,
.booking select,
.booking textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 12px;
    border: 1px solid #ddd;
    outline: none;
    font-size:15px;
    transition: 0.3s;
    background:#fafafa;
}

.booking textarea{
    resize:none;
    min-height:100px;
}

.booking input:focus,
.booking select:focus,
.booking textarea:focus {
    border-color: #00b7c2;
    background:white;
    box-shadow:0 0 0 3px rgba(0,183,194,0.15);
}

/* BUTTON */
.book-btn {
    background: #03B4B0;
    color: white;
    padding: 14px;
    border: none;
    width: 100%;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size:16px;
    transition: 0.3s;
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,200,83,0.3);
}

/* THANK YOU */
.thank-you {
    display: none;
    margin-top: 20px;
    padding:12px;
    background:#e8fff3;
    border-radius:10px;
    color:#00c853;
    font-weight: bold;
}

/* MOBILE */
@media (max-width:576px){

    .booking{
        padding:50px 15px;
    }

    .booking-container{
        padding:25px 20px;
    }

    .booking h2{
        font-size:20px;
    }
}
/* ===== Team ===== */
/* ===== TEAM SECTION ===== */

.team-section{
    position:relative;
    padding:100px 20px;
    text-align:center;
    background:#f4f9ff;
    overflow:hidden;
}

/* Background Shapes */
.team-section::before,
.team-section::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:linear-gradient(45deg,#00b7c2,#008891);
    opacity:0.08;
    animation:float 8s infinite alternate ease-in-out;
}

.team-section::before{
    top:-100px;
    left:-100px;
}

.team-section::after{
    bottom:-100px;
    right:-100px;
}

@keyframes float{
    from{transform:translateY(0);}
    to{transform:translateY(40px);}
}

.team-heading{
    font-size:36px;
    margin-bottom:60px;
    color:#0f3057;
}

.team-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

/* CARD */
.team-card{
    position:relative;
    border-radius:20px;
    padding:30px 20px 40px;
    backdrop-filter:blur(12px);
    background:rgba(255,255,255,0.6);
    border:2px solid transparent;
    background-clip:padding-box;
    transition:0.4s ease;
    overflow:hidden;
}

/* Gradient Border Animation */
.team-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:20px;
    padding:2px;
    background:linear-gradient(45deg,#00b7c2,#008891,#4caf50);
    background-size:300% 300%;
    animation:borderMove 6s linear infinite;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
            mask-composite:exclude;
}

@keyframes borderMove{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

.team-card:hover{
    transform:translateY(-10px);
}

/* IMAGE */
.team-img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
    border:4px solid #fff;
    box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

/* INFO */
.team-info h3{
    margin:10px 0 5px;
    font-size:20px;
    color:#0f3057;
}

.role{
    color:#008891;
    font-weight:600;
    margin-bottom:8px;
}

.team-info p{
    font-size:14px;
    color:#555;
}

/* SOCIAL ICONS */
.social-icons{
    margin-top:15px;
    opacity:0;
    transform:translateY(10px);
    transition:0.3s ease;
}

.team-card:hover .social-icons{
    opacity:1;
    transform:translateY(0);
}

.social-icons a{
    color:#008891;
    margin:0 8px;
    font-size:18px;
    transition:0.3s;
}

.social-icons a:hover{
    color:#00b7c2;
}

/* BUTTON */
.view-btn{
    display:inline-block;
    margin-top:15px;
    padding:8px 18px;
    border-radius:20px;
    background:linear-gradient(45deg,#008891,#00b7c2);
    color:white;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.view-btn:hover{
    transform:scale(1.05);
}

/* ===== RESPONSIVE ===== */

@media(max-width:768px){
    .team-heading{
        font-size:28px;
    }
}

@media(max-width:480px){
    .team-section{
        padding:70px 15px;
    }

    .team-heading{
        font-size:22px;
    }

    .team-img{
        width:100px;
        height:100px;
    }
}



/* ===== CONTACT SECTION ===== */

.contact-section{
    background:linear-gradient(135deg,#f4f9ff,#ffffff);
    text-align:center;
    padding:100px 20px;
}

.contact-heading{
    font-size:34px;
    color:#1e3a5f;
    margin-bottom:10px;
}

.contact-sub{
    color:#666;
    margin-bottom:60px;
    font-size:15px;
}

.contact-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

/* CARD */
.contact-card{
    background:rgba(255,255,255,0.7);
    backdrop-filter:blur(12px);
    padding:40px 30px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    transition:0.4s ease;
}

.contact-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,0.15);
}

/* ICON */
.icon{
    width:65px;
    height:65px;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:15px;
    font-size:24px;
}

.blue{
    background:#e3f2fd;
    color:#2196f3;
}

.green{
    background:#e8f5e9;
    color:#4caf50;
}

.purple{
    background:#f3e5f5;
    color:#8e24aa;
}

.contact-card h3{
    margin-bottom:15px;
    color:#1e3a5f;
}

.contact-card p{
    margin:6px 0;
    color:#555;
    font-size:14px;
}

/* SOCIAL ICONS */
.social-links{
    margin-top:20px;
}

.social-links a{
    display:inline-block;
    margin:0 8px;
    font-size:16px;
    color:#008891;
    transition:0.3s;
}

.social-links a:hover{
    color:#00b7c2;
    transform:scale(1.2);
}

/* WHATSAPP BUTTON */
.whatsapp-btn{
    display:inline-block;
    margin-top:15px;
    padding:10px 18px;
    background:linear-gradient(45deg,#25D366,#128C7E);
    color:white;
    text-decoration:none;
    border-radius:25px;
    font-size:14px;
    transition:0.3s;
}

.whatsapp-btn:hover{
    transform:scale(1.05);
}

/* BRAND BOX */
.brand-box{
    background:#f1f5ff;
    padding:12px;
    margin:10px 0;
    border-radius:10px;
    font-weight:600;
}

.green-bg{
    background:#e8f5e9;
    color:#2e7d32;
}

/* ===== RESPONSIVE ===== */

@media(max-width:768px){
    .contact-heading{
        font-size:26px;
    }
}

@media(max-width:480px){
    .contact-section{
        padding:70px 15px;
    }

    .contact-heading{
        font-size:22px;
    }

    .contact-sub{
        font-size:14px;
    }
}


/* ===== REVIEW SECTION ===== */

/* ===== REVIEW SECTION ===== */

.review-section{
    padding:100px 20px;
    background:linear-gradient(135deg,#ffffff,#f4f9ff);
    text-align:center;
}

.review-heading{
    font-size:34px;
    margin-bottom:60px;
    color:#1e3a5f;
}

.review-container{
    max-width:700px;
    margin:auto;
    position:relative;
}

.review-card{
    position:absolute;
    width:100%;
    padding:40px 30px;
    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(12px);
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    opacity:0;
    transform:scale(0.95);
    transition:all 0.6s ease;
}

.review-card.active{
    opacity:1;
    transform:scale(1);
    position:relative;
}

.review-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:15px;
}

.profile-img{
    width:55px;
    height:55px;
    border-radius:50%;
    object-fit:cover;
    margin-right:12px;
    border:3px solid #fff;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.review-top h4{
    margin:0;
    font-size:16px;
    color:#1e3a5f;
}

.stars{
    color:#fbbc05;
    font-size:14px;
}

.google-icon{
    font-size:22px;
    color:#4285F4;
}

.review-text{
    font-size:15px;
    color:#555;
    line-height:1.6;
}

/* ===== RESPONSIVE ===== */

@media(max-width:480px){
    .review-section{
        padding:70px 15px;
    }

    .review-heading{
        font-size:22px;
    }

    .review-text{
        font-size:14px;
    }
}



/* ================= BLOG SECTION ================= */

.blog {
    padding: 80px 8%;
    text-align: center;
    background: linear-gradient(135deg,#f4f9ff,#ffffff);
}

.blog h2{
    font-size: 32px;
    margin-bottom: 50px;
    color: #0f3057;
}

/* SLIDER */
.blog-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.blog-slider::-webkit-scrollbar{
    display: none;
}

/* CARD */
.blog-card {
    min-width: 300px;
    max-width: 300px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: 0.4s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.4s;
}

.blog-card:hover img{
    transform: scale(1.08);
}

/* INFO */
.blog-info {
    padding: 20px;
    text-align: left;
}

.blog-info span {
    font-size: 12px;
    color: gray;
}

.blog-info h3 {
    margin: 12px 0;
    font-size: 18px;
    color:#222;
}

.blog-info button {
    padding: 8px 18px;
    border: none;
    background: linear-gradient(45deg,#008891,#00b7c2);
    color: white;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.blog-info button:hover{
    transform: scale(1.05);
}

/* ================= POPUP ================= */

.blog-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    padding:20px;
    z-index: 999;
}

.popup-content {
    background: white;
    padding: 30px;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    text-align: left;
    position: relative;
    animation: popupFade 0.3s ease;
}

@keyframes popupFade{
    from{ transform:scale(0.8); opacity:0; }
    to{ transform:scale(1); opacity:1; }
}

.close {
    position: absolute;
    right: 20px;
    top:15px;
    cursor: pointer;
    font-size:18px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){
    .blog{
        padding:60px 5%;
    }
}

@media(max-width:600px){

    .blog h2{
        font-size:24px;
    }

    .blog-card{
        min-width: 85%;
        max-width: 85%;
    }

    .popup-content{
        padding:20px;
    }

}
/* ===== CONTACT ===== */
.contact {
  background: linear-gradient(135deg, #1e3799, #4a69bd);
  color: white;
  text-align: center;
  padding: 50px;
}

/* Loader Style */
#loader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #0f3057, #008891);
    display: flex;
    
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 9999;
}

.heartbeat {
    font-size: 60px;
    animation: beat 1s infinite;
}

@keyframes beat {
    0% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
    75% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

#loader p {
    margin-top: 15px;
    font-size: 18px;
}




/* ===== FOOTER ===== */
/* ================= CONTACT SECTION ================= */

/* ================= HOSPITAL FOOTER ================= */

.hospital-footer{
  background: #00AAB4;
  color: white;
  padding: 80px 8% 30px;
  position: relative;
}

.footer-container{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
}

.footer-box h3{
  font-size: 24px;
  margin-bottom: 20px;
}

.footer-box h4{
  font-size: 18px;
  margin-bottom: 20px;
  border-left: 4px solid #00d2ff;
  padding-left: 10px;
}

.footer-box p{
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 10px;
}

.footer-box ul{
  list-style: none;
  padding: 0;
}

.footer-box ul li{
  margin-bottom: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-box ul li:hover{
  color: #00d2ff;
  padding-left: 6px;
}

/* Emergency Highlight */
.emergency-box{
  margin-top: 20px;
  background: rgba(255,255,255,0.1);
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  backdrop-filter: blur(5px);
}

/* Newsletter */
.newsletter{
  display: flex;
  margin-top: 10px;
  background: white;
  border-radius: 30px;
  overflow: hidden;
}

.newsletter input{
  border: none;
  padding: 10px 15px;
  flex: 1;
  outline: none;
  font-size: 14px;
}

.newsletter button{
  border: none;
  background: #00d2ff;
  color: white;
  padding: 10px 18px;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter button:hover{
  background: #009ec3;
}

/* Social */
.social-icons{
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a{
  height: 35px;
  width: 35px;
  background: white;
  color: #0f3057;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons a:hover{
  background: #00d2ff;
  color: white;
  transform: translateY(-5px);
}

/* Bottom */
.footer-bottom{
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 13px;
  opacity: 0.8;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){
  .footer-container{
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:600px){
  .footer-container{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter{
    flex-direction: column;
    border-radius: 15px;
  }

  .newsletter input,
  .newsletter button{
    width: 100%;
    border-radius: 0;
  }

  .newsletter button{
    border-radius: 0 0 15px 15px;
  }

  .social-icons{
    justify-content: center;
  }
}

/* ===== LOGO + TAGLINE ===== */
.nav-left {
  display: flex;
  
  flex-direction: column;
  align-items: flex-start;
}





/* Tablet */
@media (max-width: 992px){

.navbar{
    padding: 0 20px;
}

.hero h1{
    font-size: 32px;
}

}

/* Mobile */
@media (max-width: 768px){

.navbar{
    flex-direction: column;
    height: auto;
    padding: 15px;
}

.nav-right{
    flex-direction: column;
    gap: 15px;
}

.hero{
    text-align: center;
    padding: 50px 20px;
}

.footer-container{
    flex-direction: column;
    text-align: center;
}

.booking-container{
    padding: 20px;
}

}



