/* 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;
}











/* SERVICE HEADER SECTION */
.service-header {
  background-color: #20b1aa; /* Nee selection color */
  padding: 60px 0;
  text-align: center;
  color: #ffffff;
}

.service-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.service-header h1 {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.service-header .sub-text {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.95;
  letter-spacing: 0.5px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .service-header {
    padding: 40px 15px;
  }
  
  .service-header h1 {
    font-size: 28px;
  }
  
  .service-header .sub-text {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .header-icon {
    font-size: 30px;
  }
}










.about-service {
  background-color: #e0f2f4;
  padding: 40px 0;
  text-align: center;
}

.about-service .container {
  max-width: 1000px;
  margin: auto;
}

.about-service h2 {
  color: #ff8533;
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 20px;

  font-weight: 700;
}
.about-service p {
  color: #444;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;

  max-width: 850px;   /* 🔥 important */
  margin: 0 auto;     /* center the paragraph */
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  .about-service {
    padding: 30px 16px;
    text-align: left; /* better for readability */
  }
  
  .about-service h2 {
    font-size: 24px;
    text-align: center;
  }
  
  .about-service p {
    font-size: 15.5px;
    line-height: 1.7;
    text-align: justify;         /* ✅ justify text */
    text-justify: inter-word;    /* better spacing */
  }
}





















.sub-services-section {
    background-color: #e0f2f4;
    padding: 60px 0;
}

.main-title {
    text-align: center;
    color: #ff8533;
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 700;
}

.sub-service-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.sub-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Reverse class for alternating layout */
.sub-service-card.reverse {
    flex-direction: row-reverse;
}

.service-info {
    flex: 1;
    padding: 40px;
}

.service-info h3 {
    color: #ff8533;
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-info p {
    color: #555;
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-points {
    list-style: none;
    margin-bottom: 25px;
}

.service-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 500;
}

.service-points li i {
    color: #ff8533; /* Orange color for bullet icons */
    font-size: 18px;
}

.service-image {
    flex: 1;
    height: 350px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.know-more-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #20b1aa;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s;
}

.know-more-btn:hover {
    background: #20b1aa;
}
/* MOBILE VIEW */
@media (max-width: 768px) {

    .sub-services-section {
        padding: 40px 5px;
    }

    .main-title {
        font-size: 24px;
        margin-bottom: 25px;
        line-height: 1.3;
    }

    .sub-service-card,
    .sub-service-card.reverse {
        flex-direction: column;
        border-radius: 12px;
    }

    .service-image {
        width: 100%;
        height: 220px;
        order: -1; /* image top */
    }

    .service-info {
        padding: 20px 18px;
        text-align: left;
    }

    .service-info h3 {
        font-size: 20px;
        line-height: 1.4;
    }

    .service-info p {
        font-size: 15.5px;
        line-height: 1.7;
        text-align: justify;          /* ✅ clean justified text */
        text-justify: inter-word;
        margin-bottom: 15px;
    }

    .service-points li {
        font-size: 14.5px;
        line-height: 1.5;
    }

    .service-points li i {
        font-size: 16px;
    }

    .know-more-btn {
        display: block;
        width: fit-content;
        margin: 10px auto 0;
        padding: 10px 20px;
        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;
  }
}