/* GENERAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
/* TOP BLACK BAR */
.top-info-bar {
  background: #000;
  color: #fff;
  font-size: 13px;
  padding: 12px 0; /* 🔥 increased height */
}

.top-info-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 50px; /* 🔥 balanced spacing */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-left,
.top-right {
  display: flex;
  align-items: center;
  font-size: 15px;
  gap: 10px;
}

.top-info-bar i {
  color: #ff8533;
  font-size: 14px;
}

/* MAIN HEADER */
.main-header {
  background: #fff;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 50px; /* 🔥 clean alignment */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.header-logo img {
  height: 60px;
}

/* CENTER */
.header-center {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* PHONE BOX */
.phone-box {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #ff8533;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
}

.phone-box i {
  color: #ff8533;
}

/* APPOINTMENT BUTTON */
.appointment-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #ff8533;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  transition: 0.3s;
}

/* 🔥 ICON ORANGE */
.appointment-btn i {
  color: #ff8533;
}

.appointment-btn:hover {
  background: #ff8533;
  color: #fff;
}

.appointment-btn:hover i {
  color: #fff;
}

/* SOCIAL ICONS */
.header-social {
  display: flex;
  gap: 18px;
}

.header-social a {
  color: #ff8533;
  font-size: 16px;
  transition: 0.3s;
}

.header-social a:hover {
  color: #20b1aa;
}
/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  /* TOP BAR */
  .top-info-container {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 0 15px;
  }

  .top-left,
  .top-right {
    justify-content: center;
    font-size: 12px;
  }

  /* HEADER */
  .header-container {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    text-align: center;
  }

  /* LOGO */
  .header-logo img {
    height: 50px;
  }

  /* CENTER (PHONE + BUTTON) */
  .header-center {
    flex-direction: column;
    gap: 10px;
  }

  .phone-box,
  .appointment-btn {
    width: 100%;
    justify-content: center;
  }

  /* SOCIAL ICONS */
  .header-social {
    justify-content: center;
    gap: 12px;
  }
}





.navbar {
  background: #ff8533;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-links {
  display: flex;
  justify-content: center;
}

.nav-links > li > a {
  padding: 15px 20px;
  color: #fff;
  display: block;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.nav-links > li > a:hover {
  background: rgba(0, 0, 0, 0.15);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ff8533;
  min-width: 220px;
  display: none;
  z-index: 1001;

}

.dropdown:hover > .dropdown-menu {
  display: block;
}

.has-sub {
  position: relative;
}

.sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #ff8533;
  min-width: 200px;
  display: none;
  z-index: 1002;
}

.has-sub:hover > .sub-menu {
  display: block;
}

.dropdown-menu a,
.sub-menu a {
  padding: 12px 18px;
  display: block;
  color: #fff;
  font-size: 14px;

}

.dropdown-menu a:hover,
.sub-menu a:hover {
  background: #fff;
  color: #ff8533;
}

.has-sub > a::after {
  content: " ▸";
  font-size: 11px;
}

.menu-toggle {
  display: none;
  color: white;
  font-size: 22px;
  padding: 12px 15px;
  cursor: pointer;
  text-align: right;
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    display: none;
    background: #ff8533;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-menu,
  .sub-menu {
    position: static;
    display: none;
    background: #ff8533;
    min-width: 100%;
    border-top: none;
  }

  .show {
    display: block !important;
  }

  .dropdown-menu a {
    padding-left: 36px;
  }

  .sub-menu a {
    padding-left: 54px;
  }

  .has-sub > a::after {
    content: " ▾";
  }

}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dropdown-menu a,
.sub-menu a {
  border-bottom: none;
  text-decoration: none;
}

/* GENERAL SUBMENU SCROLL */
.sub-menu {
  max-height: 350px;   /* 🔥 control height */
  overflow-y: auto;    /* 🔥 enable scroll */
}

/* OPTIONAL: NICE SCROLL DESIGN */
.sub-menu::-webkit-scrollbar {
  width: 6px;
}

.sub-menu::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.sub-menu::-webkit-scrollbar-track {
  background: transparent;
}






























.about-clean {
    padding: 50px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.about-flex-container {
    display: flex;
    align-items: center; /* Vertically center content */
    gap: 70px;
}

/* LEFT IMAGE STYLING */
.about-left-img {
    flex: 1;
}

.image-frame {
    position: relative;
    border-radius: 25px;
    overflow: visible; /* To allow the tag to pop out */
}

.image-frame img {
    width: 100%;
    height: 750px; /* Big vertical image */
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 20px 20px 0px #20b1aa15; /* Modern offset shadow */
}

.experience-tag {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: #ff8533;
    color: white;
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.experience-tag h3 { font-size: 38px; font-weight: 800; line-height: 1; }
.experience-tag p { font-size: 14px; font-weight: 600; margin-top: 5px; }

/* RIGHT CONTENT STYLING */
.about-right-text {
    flex: 1.2;
}

.top-label {
    color: #20b1aa;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
}

.main-title {
    font-size: 44px;
    color: #ff8533;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 800;
}

.blue-text { color: #20b1aa; }

.rich-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* FEATURES */
.key-features-list {
    margin: 35px 0;
}

.feature-line {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-weight: 600;
    color: #333;
}

.feature-line i {
    color: #ff8533;
    font-size: 20px;
    width: 25px;
}

/* CALL TO ACTION */
.action-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.btn-main {
    background: #ff8533;
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(1, 147, 188, 0.3);
    transition: 0.3s;
}

.btn-main:hover {
    background: #20b1aa;
    transform: translateY(-3px);
}

.support-contact span {
    display: block;
    font-size: 13px;
    color: #888;
}

.support-contact a {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    transition: 0.3s;
}

.support-contact a:hover { color: #20b1aa; }

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .about-flex-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .image-frame img {
        height: 400px;
    }
    
    .experience-tag {
        left: 20px;
        bottom: -20px;
    }
    
    .main-title {
        font-size: 32px;
    }
    
    .action-row {
        flex-direction: column;
        align-items: flex-start;
    }
}














/* MISSION & VISION STYLES */
.mission-vision-section {
    padding: 50px 0;
    background-color: #f8fbfd;
    overflow: hidden;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border-top: 6px solid transparent;
}

/* Color Varieties */
.mv-card.mission { border-color: #ff8533; }
.mv-card.vision { border-color: #20b1aa; }

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.mv-icon-box {
    width: 70px;
    height: 70px;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 30px;
    margin-bottom: 25px;
    transition: 0.3s;
}

.mission .mv-icon-box { color: #ff8533; background: rgba(255, 133, 51, 0.1); }
.vision .mv-icon-box { color: #20b1aa; background: rgba(32, 177, 170, 0.1); }

.mv-tag {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    display: block;
    margin-bottom: 10px;
}

.mv-content h2 {
    font-size: 32px;
    color: #ff8533;
    margin-bottom: 20px;
    font-weight: 800;
}

.mv-content h3 {
    font-size: 32px;
    color: #20b1aa;
    margin-bottom: 20px;
    font-weight: 800;
}

.mv-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.mv-list {
    list-style: none;
    padding: 0;
}

.mv-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    font-size: 15px;
}

.mission .mv-list li i { color: #ff8533; }
.vision .mv-list li i { color: #20b1aa; }

/* MOBILE VIEW */
@media (max-width: 992px) {
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mv-card {
        padding: 30px;
    }
    
    .mv-content h2 {
        font-size: 26px;
    }
    
    .mv-content h3 {
        font-size: 26px;
    }
}















.hospital-highlights {
    padding: 50px 0;
    background: linear-gradient(135deg, #20b1aa 0%, #006b8a 100%);
    position: relative;
    overflow: hidden;
}

.highlight-header {
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.highlight-header .badge {
    background: #ff8533;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.highlight-header h2 {
    font-size: 42px;
    margin-top: 15px;
    font-weight: 800;
}

.orange-text { color: #ff8533; }

/* HIGHLIGHT CARDS */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.h-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 30px;
    border-radius: 25px;
    color: white;
    position: relative;
    transition: 0.4s ease;
    z-index: 1;
}

.h-card:hover {
    background: white;
    transform: translateY(-15px);
}

.h-card:hover h3, .h-card:hover p {
    color: #333;
}

.h-icon {
    width: 65px;
    height: 65px;
    background: #ff8533;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 18px;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(255, 133, 51, 0.3);
    transition: 0.4s;
}

.h-card:hover .h-icon {
    transform: rotateY(360deg);
}

.h-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.h-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.h-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    transition: 0.4s;
}

.h-card:hover .h-number {
    color: rgba(0, 0, 0, 0.05);
}

/* MOBILE VIEW */
@media (max-width: 768px) {
    .hospital-highlights { padding: 60px 15px; }
    .highlight-header h2 { font-size: 32px; }
}













.counter-highlights {
    padding: 50px 0;
    background-color: #f4f8fb;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.counter-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border-bottom: 5px solid #ff8533; /* Subtle orange bottom border */
    position: relative;
    overflow: hidden;
}

/* HOVER EFFECT */
.counter-card:hover {
    background: #ff8533; /* Changes background to orange on hover */
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(1, 147, 188, 0.3);
}

.card-icon {
    font-size: 45px;
    color: #ff8533; /* Orange icons */
    margin-bottom: 20px;
    transition: 0.4s;
}

.counter-card:hover .card-icon {
    color: #ffffff; /* Icon turns white on hover */
    transform: scale(1.1);
}

.counter-number {
    font-size: 42px;
    font-weight: 800;
    color: #20b1aa;
    margin-bottom: 10px;
    transition: 0.4s;
}

.counter-card:hover .counter-number {
    color: #ffffff;
}

.counter-card h3 {
    font-size: 20px;
    color:#ff8533;
    margin-bottom: 15px;
    transition: 0.4s;
}

.counter-card:hover h3 {
    color: #ffffff;
}

.counter-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    transition: 0.4s;
}

.counter-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

/* MOBILE VIEW */
@media (max-width: 768px) {
    .counter-highlights {
        padding: 50px 15px;
    }
}


.highlights-header {
    text-align: center;
    margin-bottom: 20px;
}

.h-tag {
    background: rgba(255, 133, 51, 0.1);
    color: #ff8533;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
}

.h-title {
    font-size: 40px;
    color: #ff8533;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 20px;
}

.blue-text {
    color: #20b1aa;
}

.h-desc {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
    .h-title {
        font-size: 30px;
    }
    .h-desc {
        font-size: 14px;
    }
}























/* --- MAIN FOOTER --- */
.main-footer {
    background-color: #20b1aa; /* Mee current color */
    color: #ffffff;
    padding: 50px 0 0; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden; /* Side scrolling rakunda */
}

/* Container Alignment */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Section: Logo & Social */
.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo img { 
    height: 70px; 
    width: auto;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-links a:hover {
    background: #ff8533;
    transform: translateY(-3px);
}

/* Horizontal Line */
.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 35px;
}

/* Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 15px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* List Items - No Dots */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col p, 
.footer-col ul li a {
    color: #ffffff !important;
    font-size: 14px;
    line-height: 1.8;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ff8533 !important;
    padding-left: 5px;
}

/* Icons Style */
.footer-col i { 
    color: #ff8533 !important; /* Orange Icons */
    margin-right: 10px; 
    width: 20px;
    text-align: center;
}

/* Business Hours - Tight & No Lines */
.hours-list p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px !important;
    border: none !important;
    padding: 0 !important;
}

.orange-text { 
    color: #ff8533 !important; 
    font-weight: bold; 
}

/* --- FULL WIDTH GLASS BOTTOM BAR --- */
.footer-bottom {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: #ffffff !important;
  
    opacity: 0.8;
}

/* CONTACT BUTTON - Rounded Corners */
.footer-book-btn {
    display: inline-block;
    background-color: #ff8533;
    color: #ffffff !important;
    padding: 12px 25px;
    margin-top: 20px;
    
    /* BORDER RADIUS IKKADA UNDI */
    border-radius: 30px; /* Purti ga rounded (Capsule shape) kosam */
    /* Leda koncheme curve kavali ante 8px pettochu */
    
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #ff8533;
    text-align: center;
}

.footer-book-btn:hover {
    background-color: transparent;
    color: #ff8533 !important;
    border-radius: 8px; /* Hover chesinappudu shape maruthundi - Stylish ga untundi */
    transform: translateY(-3px);
}
.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info i {
    margin-top: 5px; /* icon slightly down */
    flex-shrink: 0;
}
@media (max-width: 600px) {

    /* Top section left align */
    .footer-top {
        align-items: flex-start;
        text-align: left;
    }

    .social-links {
        justify-content: flex-start;
    }

    /* Grid → single column + left aligned */
    .footer-grid { 
        grid-template-columns: 1fr; 
        text-align: left;
        gap: 25px;
    }

    .footer-col {
        text-align: left;
    }

    .footer-col h3 {
        margin-bottom: 12px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        display: inline-block;
        padding-right: 15px;
    }

    /* Hours spacing fix */
    .hours-list p { 
        justify-content: flex-start; 
        gap: 20px;
    }

    /* 🔥 Button smaller + left aligned */
    .footer-book-btn {
        display: inline-block;   /* remove full width */
        width: auto;             /* shrink to content */
        border-radius: 8px;
        padding: 10px 18px;      /* smaller size */
        font-size: 12px;
        margin-top: 15px;
    }

    /* 🔥 Bottom copyright centered */
    .footer-bottom {
        padding: 15px 10px;
        text-align: center;  /* center only this */
    }

    .footer-bottom p {
        text-align: center;
        font-size: 12px;
    }
    .hours-list p {
    display: grid;
    grid-template-columns: 80px 1fr; /* fixed width for days */
    margin-bottom: 6px !important;
    align-items: center;
}
}














.floating-icons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

/* Common Icon Style */
.icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: 0.3s ease;
  animation: pulse 2s infinite;
}

/* WhatsApp */
.whatsapp {
  background: #25D366;
}

/* Phone */
.phone {
  background: #25D366;
}

/* Hover */
.icon:hover {
  transform: scale(1.15);
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0,0,0, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0,0,0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0,0,0, 0);
  }
}

/* ✅ Desktop → only WhatsApp */
@media (min-width: 768px) {
  .phone {
    display: none;
  }
}

/* ✅ Mobile → both visible */
@media (max-width: 767px) {
  .phone {
    display: flex;
  }
}