:root {
  --primary: #674dad;
  --secondary: #14b8a6;
  --light: #f0fdfa;
  --white: #ffffff;
  --pink: #d55191; 
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

section {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.top-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* TOP BAR */
.top-bar {
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 0;
}

.top-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-wrap img {
  width: 170px;
  height: auto;
  object-fit: contain;
  display: block;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 35px;
  font-size: 15px;
  color: var(--primary);
}

.top-info i,
.top-info svg {
  font-size: 18px;
}

.book-btn {
  background: #674dad;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}

.book-btn:hover {
  background: var(--pink);
}

/* =========================
   NAVBAR MAIN (Middle Align)
========================= */
.main-nav {
  width: 100%;
  height: 50px;
  background: #6d4bb8;
  display: flex;
  justify-content: center; /* లింక్స్ అన్నీ పర్ఫెక్ట్ గా మధ్యలోకి రావడానికి */
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center; /* కంటైనర్ లోపల కూడా సెంటర్ చేస్తుంది */
  align-items: center;
  position: relative;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px; /* లింక్స్ మధ్య గ్యాప్ కొద్దిగా తగ్గించాను */
  height: 100%;
}

/* =========================
   NAV LINKS & HOVER PINK BAR
========================= */
nav a,
.drop-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px; /* నావ్‌బార్ హైట్‌కి మ్యాచ్ చేసాను */
  color: #fff;
  text-decoration: none;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  padding: 0 5px;
  cursor: pointer;
  position: relative; 
  transition: 0.3s;
}

nav a:hover,
.drop-btn:hover {
  color: #ffd4f1;
}

/* మెయిన్ నావ్ లింక్స్ కి కింద వచ్చే పింక్ బార్ */
nav a::after,
.drop-btn::after {
  content: '';
  position: absolute;
  bottom: 4px; 
  left: 50%;
  transform: translateX(-50%);
  width: 0; 
  height: 3px; 
  background-color: var(--pink);
  border-radius: 2px;
  transition: width 0.3s ease; 
}

nav a:hover::after,
.drop-btn::after.active,
.dropdown:hover .drop-btn::after {
  width: 80%; 
}

/* =========================
   DROPDOWN (Spaces Reduced)
========================= */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%); /* డ్రాప్‌డౌన్ సెంటర్ అవ్వడానికి */
  width: 260px; /* వెడల్పు తగ్గించాను */
  background: #5b3fa3;
  border-radius: 10px;
  padding: 8px; /* ప్యాడింగ్ తగ్గించాను */
  display: none;
  z-index: 9999;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

/* 🔥 నార్మల్ డ్రాప్‌డౌన్ లింక్స్ స్పేసింగ్ తగ్గించబడింది */
.dropdown-content > a {
  display: block;
  color: #fff;
  padding: 8px 12px; /* ప్యాడింగ్ తగ్గించాను */
  margin-bottom: 4px; /* లింక్స్ మధ్య గ్యాప్ తగ్గించాను */
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.4; /* లైన్ హైట్ తగ్గించాను */
  transition: 0.3s;
}

.dropdown-content > a:hover {
  background: var(--pink);
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* =========================
   SUB DROPDOWN
========================= */
.sub-dropdown {
  position: static;
}

.sub-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  color: #fff;
  background: none;
  border: none;
  padding: 10px 12px; /* ప్యాడింగ్ తగ్గించాను */
  margin-bottom: 4px; /* గ్యాప్ తగ్గించాను */
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.sub-btn:hover {
  background: var(--pink);
}

.sub-content {
  position: absolute;
  left: 98%;
  top: 0;
  width: 350px;
  max-height: 450px;
  overflow-y: auto;
  background: #7a57ca;
  border-radius: 10px;
  padding: 12px;
  display: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

.sub-content a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 6px 10px;
  margin-bottom: 5px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5;
  transition: 0.3s;
}

.sub-dropdown:hover .sub-content {
  display: block;
}

/* SCROLLBAR */
.sub-content::-webkit-scrollbar {
  width: 4px;
}

.sub-content::-webkit-scrollbar-thumb {
  background: var(--pink);
  border-radius: 10px;
}

.sub-content::-webkit-scrollbar-track {
  background: #8f6be0;
}

.sub-content a:hover {
  background: var(--pink);
}

/* MENU BUTTON */
.menu-btn {
  display: none;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media(max-width:768px) {

  .top-flex {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .top-info {
    gap: 15px;
    font-size: 13px;
  }

  .main-nav {
  position: relative;
}

.menu-btn {
  display: block;
  position: absolute;
  top: -5px;
  right: 20px;   /* left remove చేసి right పెట్టండి */
  left: auto;
  transform: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  z-index: 9999;
}

  /* MOBILE MENU */
  nav {
    width: 100%;
    background: #6d4bb8;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-top: 20px;
  }

  nav.show {
    display: flex;
  }

  nav a,
  .drop-btn {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 20px;
    height: auto;
    font-size: 17px;
    color: #fff;
  }

  nav a::after,
  .drop-btn::after {
    display: none;
  }

  /* DROPDOWN */
  .dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .dropdown-content {
    position: static;
    transform: none;
    width: 100%;
    padding: 10px;
    border-radius: 0;
    box-shadow: none;
    max-height: none;
    display: none;
    background: #5b3fa3;
  }

  /* CLICK chesthe maatrame open */
  .dropdown.active .dropdown-content {
    display: block;
  }

  /* SUB MENU */
  .sub-dropdown {
    width: 100%;
  }

  .sub-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    justify-content: space-between;
  }

  .sub-content {
    position: static;
    width: 100%;
    margin-top: 5px;
    padding: 10px;
    box-shadow: none;
    max-height: none;
    overflow: visible;
    display: none;
    background: #7a57ca;
    border-radius: 8px;
  }

  /* CLICK chesthe maatrame sub menu open */
  .sub-dropdown.active .sub-content {
    display: block;
  }

  .sub-content a {
    font-size: 14px;
    line-height: 1.6;
    padding: 8px 10px;
  }
}















/* ================= FOOTER ================= */

.footer{
  background:#674dad;
  color:#ffffff;
  padding:60px 0 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  padding-bottom:40px;
}

/* HEADINGS */
.footer-col h4{
  font-weight:600;
  margin-bottom:15px;
}

/* ANIMATION */
.footer-anim{
  opacity:0;
  transform:scale(0.9);
  transition:all 0.6s ease;
}

.footer-anim.show{
  opacity:1;
  transform:scale(1);
}

/* LINKS */
.footer-col a{
  display:block;
  color:white;
  margin-bottom:8px;
}

.footer-col a:hover{
  color:#d55191;
}

/* LOGO */
.footer-logo{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
}

.footer-logo img{
  width:240px;
  height:auto;
  object-fit:contain;
}

/* SOCIAL */
.social span{
  display:block;
  margin-bottom:10px;
  font-weight:600;
}

.social-icons{
  display:flex;
  gap:12px;
}

.social-icons a{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,0.15);
  color:white;
  transition:0.3s ease;
}

.social-icons a:hover{
  background:#14b8a6;
  transform:scale(1.15);
}

/* ================= ADDRESS FIX ================= */

.footer-address{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.footer-address p{
  display:flex;
  align-items:flex-start;
  gap:8px;
  margin:0;
  line-height:1.5;
  font-size:14px;
}

/* ICON ALIGN */
.footer-address p i{
  margin-top:3px;
  flex-shrink:0;
}

/* TEXT WRAP CLEAN */
.footer-address p{
  word-break:normal;
}

/* ================= COPYRIGHT ================= */

.copyright{
  background:#4a2f87;
  text-align:center;
  padding:15px;
  font-size:13px;
}

/* ================= FLOATING BUTTONS ================= */

.float-btn{
  position:fixed;
  right:20px;
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  color:white;
  z-index:9999;
}

/* WhatsApp */
.whatsapp{
  bottom:90px;
  background:#25D366;
  animation:pulse 2s infinite;
}

/* Phone */
.phone{
  bottom:20px;
  background:#25D366;
  animation:float 2.5s infinite;
}

/* Animations */
@keyframes pulse{
  0%{transform:scale(1)}
  50%{transform:scale(1.08)}
  100%{transform:scale(1)}
}

@keyframes float{
  0%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
  100%{transform:translateY(0)}
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  /* LEFT ALIGN EVERYTHING */
  .footer{
    text-align:left;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:25px;
  }

  /* LOGO LEFT */
  .footer-logo{
    justify-content:flex-start;
  }

  .footer-logo img{
    width:120px;
  }

  /* SOCIAL LEFT */
  .social-icons{
    justify-content:flex-start;
  }

  /* ADDRESS */
  .footer-address{
    gap:8px;
  }

  .footer-address p{
    font-size:13px;
  }

}
/* HIDE PHONE IN DESKTOP */
.phone{
  display:none;
}

/* MOBILE ONLY SHOW PHONE */
@media(max-width:768px){
  .phone{
    display:flex;
  }
}


















/* ================= FOOTER ================= */

.footer{
  background:#674dad;
  color:#ffffff;
  padding:60px 0 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  padding-bottom:40px;
}

/* HEADINGS – CONSTANT */
.footer-col h4{
  font-weight:600;
  margin-bottom:15px;
}

/* ZOOM ANIMATION (CONTENT ONLY) */
.footer-anim{
  opacity:0;
  transform:scale(0.9);
  transition:all 0.6s ease;
}

.footer-anim.show{
  opacity:1;
  transform:scale(1);
}

/* LINKS */
.footer-col a{
  display:block;
  color:white;
  margin-bottom:8px;
}

.footer-col a:hover{
  color:#d55191;
}

/* LOGO */
.footer-logo{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
}

/* 🔹 ONLY CHANGE: LOGO SIZE */
.footer-logo img{
  width:240px;           /* increased from 45px */
  height:auto;
  object-fit:contain;
}

/* SOCIAL */
.social span{
  display:block;
  margin-bottom:10px;
  font-weight:600;
}

.social-icons{
  display:flex;
  gap:12px;
}

.social-icons a{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,0.15);
  color:white;
  transition:0.3s ease;
}

.social-icons a:hover{
  background:#14b8a6;
  transform:scale(1.15);
}

/* COPYRIGHT */
.copyright{
  background:#4a2f87;
  text-align:center;
  padding:15px;
  font-size:13px;
}

/* ================= FLOATING BUTTONS ================= */

.float-btn{
  position:fixed;
  right:20px;
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  color:white;
  z-index:9999;
}

/* WhatsApp – pulse */
.whatsapp{
  bottom:90px;
  background:#25D366;
  animation:pulse 2s infinite;
}

/* Phone – gentle float */
.phone{
  bottom:20px;
  background:#25D366;
  animation:float 2.5s infinite;
}

/* Animations */
@keyframes pulse{
  0%{transform:scale(1)}
  50%{transform:scale(1.08)}
  100%{transform:scale(1)}
}

@keyframes float{
  0%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
  100%{transform:translateY(0)}
}

/* ================= MOBILE ================= */
@media(max-width:768px){
  .footer{
    text-align:center;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-logo{
    justify-content:center;
  }

  .footer-logo img{
    width:70px;     /* mobile balance */
  }

  .social-icons{
    justify-content:center;
  }
}
/* FOOTER ADDRESS SPACING */
.footer-address{
  margin-bottom:14px;
}

.footer-address p{
  margin-bottom:6px;
  font-size:14px;
}

/* MOBILE TUNING */
@media(max-width:768px){
  .footer-address{
    margin-bottom:18px;
  }
}











/* HERO */
.hero {
  position: relative;
  height: 50vh;          /* 🔽 reduced */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
   font-family:Arial, Helvetica, sans-serif;
}

/* BG + OVERLAY (lighter) */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(43, 55, 110, 0.6), rgba(43, 55, 110, 0.6)), /* 🔽 lighter */
    url("../img/herobg.png") center/cover no-repeat;
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  animation: zoomInSoft 0.9s ease forwards; /* 🔽 faster */
}

.hero-content h1 {
  font-size: 44px;   /* 🔽 smaller */
  font-weight: 600;  /* 🔽 softer */
}

.hero-content p {
  margin-top: 8px;
  font-size: 14px;
  opacity: 0.85;
}

.hero-content span {
  margin: 0 6px;
}

/* SOFT ZOOM */
@keyframes zoomInSoft {
  from {
    transform: scale(1.12); /* 🔽 less zoom */
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    height: 50vh; /* 🔽 */
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 13px;
  }
}














.contact-modern{
  padding:90px 20px 60px;
  background:#f4fbfa;
  font-family:Arial, Helvetica, sans-serif;
}

/* BRANCH WRAPPER */
.contact-wrapper{
  max-width:1150px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  margin-bottom:40px;
}

/* INFO BOX */
.contact-info-box{
  background:#fff;
  padding:40px;
  border-radius:22px;
  border:1px solid #d7cff0;
  box-shadow:0 18px 45px rgba(103,77,173,.18);
}

.contact-info-box h3{
  font-size:26px;
  color:#d55191;
  font-weight: 700;
}

.info-desc{
  font-size:14px;
  margin-bottom:26px;
}

/* INFO ITEM */
.info-item{
  display:flex;
  gap:16px;
  padding:14px 18px;
  border-radius:14px;
  background:#f3f1fb;
  margin-bottom:14px;
  transition:.3s;
}

.info-item:hover{
  transform:translateY(-4px);
}

.info-item i{
  font-size:20px;
  color:#674dad;
}

.info-item h4{
  color:#d55191;
  font-weight: 700;
  font-size:15px;
  margin-bottom:4px;
}

/* 🔥 LINK COLORS FIXED */
.info-item a{
  color:#674dad;
  text-decoration:none;
  font-weight:500;
}

.info-item a:hover{
  color:#d55191;
}

/* FORM */
.contact-form-box{
  max-width:900px;              /* 🔥 width reduced */
  margin:0 auto 40px;
  background:#fff;
  padding:38px;
  border-radius:22px;
  border:1px solid #d7cff0;
  box-shadow:0 25px 60px rgba(103,77,173,.2);
}

.contact-form-box h3{
  color:#d55191;
  font-weight: 700;
  margin-bottom:18px;
}

.form-row{
  display:flex;
  gap:16px;
  margin-bottom:14px;
}

input, select{
  width:100%;
  padding:13px 15px;
  border-radius:12px;
  border:1px solid #d7cff0;
}

/* 🔥 TEXTAREA FIXED */
textarea{
  width:100%;
  height:95px;                 /* 🔥 reduced height */
  padding:13px 15px;
  border-radius:12px;
  border:1px solid #d7cff0;
  resize:none;
  margin-bottom:10px;
}

button{
  width:100%;
  padding:13px;
  background:#d55191;
  color:#fff;
  border:none;
  border-radius:14px;
  font-size:15px;
  cursor:pointer;
}

button:hover{
  background:#674dad;
}

/* MAPS */
.map-wrapper{
  max-width:1150px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.map-card{
  border-radius:22px;
  border:1px solid #d7cff0;
  overflow:hidden;
  box-shadow:0 25px 60px rgba(103,77,173,.18);
}

.map-card iframe{
  width:100%;
  height:300px;
  border:none;
}

/* ANIMATIONS */
.animate-left{opacity:0;transform:translateX(-60px);animation:slideLeft .9s forwards;}
.animate-right{opacity:0;transform:translateX(60px);animation:slideRight .9s forwards;}
.animate-up{opacity:0;transform:translateY(40px);animation:fadeUp .9s forwards;}

@keyframes slideLeft{to{opacity:1;transform:none}}
@keyframes slideRight{to{opacity:1;transform:none}}
@keyframes fadeUp{to{opacity:1;transform:none}}

/* MOBILE */
@media(max-width:900px){
  .contact-wrapper,
  .map-wrapper{
    grid-template-columns:1fr;
  }

  .form-row{
    flex-direction:column;
  }

  .contact-info-box,
  .contact-form-box{
    padding:28px;
  }

  .contact-form-box{
    max-width:100%;
  }

  .map-card iframe{
    height:240px;
  }
}
.address-text{
  color:#674dad;   /* Address heading color */
  font-weight:500;
}
/* ===== MOBILE ONLY : ADDRESS TEXT ===== */
@media (max-width:768px){

  .address-text{
    font-size:14px;
    line-height:1.6;
    color:#674dad;      /* same Address heading color */
    display:block;
    margin-top:2px;
  }

}
