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;
}



/* ===== 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:rgba(4,137,53,0.9);
}

/* 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 ===== */
.services{
  padding:60px 20px;
  text-align:center;
}

.service-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
  margin-top:40px;
}

.card{
  background:#f9f9f9;
  padding:25px;
  border-radius:15px;
  transition:0.4s;
  box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

.card:hover{
  transform:translateY(-8px);
  box-shadow:0 8px 25px rgba(0,0,0,0.1);
}

.icon{
  font-size:40px;
  color:#048935;
  margin-bottom:15px;
}

.card h3{
  margin-bottom:10px;
}

.card p{
  font-size:14px;
  margin-bottom:15px;
}

.card button{
  padding:10px 20px;
  background:#048935;
  color:white;
  border:none;
  border-radius:25px;
  cursor:pointer;
  transition:0.3s;
}

.card button:hover{
  background:#036c2a;
}

/* ===== POPUP ===== */
.popup{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.5);
  justify-content:center;
  align-items:center;
  z-index:2000;
}

.popup-content{
  background:white;
  padding:30px;
  border-radius:15px;
  text-align:center;
  width:90%;
  max-width:350px;
  position:relative;
  animation:popupFade 0.4s ease;
}

@keyframes popupFade{
  from{transform:scale(0.8);opacity:0;}
  to{transform:scale(1);opacity:1;}
}

.close{
  position:absolute;
  right:15px;
  top:10px;
  cursor:pointer;
}

.book-btn{
  display:inline-block;
  margin-top:15px;
  padding:10px 20px;
  background:#027d2f;
  color:white;
  border-radius:25px;
  text-decoration:none;
}


/* ================= 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:#1b5e20;
}

.section-title i{
    margin-right:8px;
    color:#048935;
}

/* 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:#1b5e20;
    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:#1b5e20;
    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,#f3f9ff,#ffffff);
}

.booking-container {
    max-width: 600px;
    width:100%;
    margin: auto;
    background: white;
    padding: 45px 35px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition:0.3s ease;
}

.booking-container:hover{
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.booking h2 {
    margin-bottom: 10px;
    color: #0f3057;
    font-size:28px;
}

.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: 10px;
    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: #008891;
    background:white;
    box-shadow:0 0 0 3px rgba(0,136,145,0.1);
}

/* Button */
.book-btn {
    background: linear-gradient(135deg,#008891,#00b7c2);
    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 20px rgba(0,0,0,0.15);
}

/* Thank You Message */
.thank-you {
    display: none;
    margin-top: 20px;
    padding:12px;
    background:#e8f9f1;
    border-radius:10px;
    color:green;
    font-weight: bold;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px){

    .booking-container{
        padding:35px 25px;
    }

    .booking h2{
        font-size:24px;
    }

}

/* Mobile */
@media (max-width: 576px){

    .booking{
        padding:50px 15px;
    }

    .booking-container{
        padding:25px 20px;
        border-radius:14px;
    }

    .booking h2{
        font-size:20px;
    }

    .booking p{
        font-size:14px;
    }

    .booking input,
    .booking select,
    .booking textarea{
        padding:12px;
        font-size:14px;
    }

    .book-btn{
        font-size:15px;
        padding:12px;
    }

}

/* ===== 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;
}

/* ================= PREMIUM LEGAL ================= */

.legal-section {
  padding: 90px 8%;
  background: linear-gradient(135deg,#e6f7f9,#f4fcff);
  position: relative;
  overflow: hidden;
}

/* Medical Pattern */
.legal-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: url("https://www.svgrepo.com/show/353397/medical-cross.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.05;
  top: 20px;
  right: 20px;
}

.legal-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.legal-box {
  flex: 1;
  min-width: 300px;
  background: rgba(255,255,255,0.9);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.legal-box h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #0f3057;
}

.legal-box p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Buttons */
.legal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: linear-gradient(45deg,#00b4db,#0083b0);
  color: white;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s;
}

.legal-btn:hover {
  transform: translateY(-4px);
}

.legal-btn.small {
  padding: 8px 18px;
  font-size: 14px;
}

/* ACCORDION */
.accordion-item {
  border-top: 1px solid #eee;
  padding: 15px 0;
}

.accordion-header {
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #0f3057;
}

.accordion-header i:first-child {
  margin-right: 10px;
  color: #00a8a8;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  margin-top: 10px;
}

.arrow {
  transition: transform 0.3s;
}

.accordion-item.active .arrow {
  transform: rotate(180deg);
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media(max-width:768px){
  .legal-container{
    flex-direction: column;
  }
}





/* ===== FOOTER ===== */
/* ================= CONTACT SECTION ================= */

/* ================= HOSPITAL FOOTER ================= */

.hospital-footer{
  background: linear-gradient(135deg,#0f3057,#00587a);
  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;
}

}


