/* ---------------- GLOBAL RESET ---------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}




/* ---------------- NAVBAR ---------------- */
.navbar {
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 30px;
    position: sticky;
    top: 0;
   background:#f6ffe6;
    z-index: 100;
}

/* Logo */
.logo img {
    width: 100px;
    height: 100px;
    margin-left: 50px;

}

/* Menu links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    color:black;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    transition: 0.3s;
    color:black;
}


/* Hamburger icon */
.hamburger {
    display: none;
    font-size: 32px;
    color: white;
    cursor: pointer;
}

/* Hide checkbox */
#menu-toggle {
    display: none;
}

/* ---------------- MOBILE RESPONSIVE ---------------- */
@media (max-width: 900px) {

  .navbar {
    position: relative;
    flex-direction: row;
  }

  .nav-links {
    position: absolute;
    top: 100%;              /* ✅ key fix */
    left: 0;
    width: 100%;
    background: #f7ffe2;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    height: 0;
    transition: height 0.4s ease;
    z-index: 999;
  }

  #menu-toggle:checked ~ .nav-links {
    height: auto;
    padding: 20px 0;
  }

  .nav-links li {
    margin: 12px 0;
  }

  .nav-links a {
    font-size: 18px;
  }

  .hamburger {
    display: block;
    font-size: 32px;
    cursor: pointer;
    color: #000;
  }
}





/* ---------------- DEMO CONTENT ---------------- */
.content {
    padding: 40px;
    text-align: center;
}




/* ================= CONTACT SECTION ================= */
.contact-container {
  max-width: 1400px;
  margin: 50px auto 80px;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* ---------- LEFT SIDE ---------- */
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.visit-heading {
  font-size: 44px;
  font-weight: 800;
}

.contact-box {
  background: #000;
  color: #fff;
  padding: 35px;
  border-radius: 14px;
}

.contact-box p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 22px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-box i {
  font-size: 22px;
  margin-top: 4px;
}

/* MAP */
.map-box iframe {
  border-radius: 14px;
  width: 100%;
  height: 260px;
}

/* ---------- RIGHT SIDE FORM ---------- */
#contactForm {
  background: #fff;
  border-radius: 18px;
  padding: 50px 45px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

#contactForm::before {
  content: "Enter Your Details";
  display: block;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 40px;
}

#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 16px 18px;
  margin-bottom: 22px;
  font-size: 17px;
  border-radius: 8px;
  border: 1.5px solid #000;
  outline: none;
}

#contactForm textarea {
  height: 140px;
  resize: none;
}

#contactForm button {
  background: #111;
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
}

#contactForm button:hover {
  background: #000;
}

/* ================= FOOTER ================= */

/* FORCE FULL WIDTH */
.footer-section {
  width: 100vw;
  background: #f6ffdc;
  padding: 70px 0 0;
}

/* CENTER CONTENT */
.footer-inner {
  max-width: 1400px;
  margin: auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

/* BOX */
.footer-box h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 22px;
}

.footer-box p,
.footer-box a {
  font-size: 16px;
  line-height: 28px;
  color: #000;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
}

.footer-box i {
  margin-right: 12px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 22px;
  font-size: 26px;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 50px;
  border-top: 2px solid #aaa;
  text-align: center;
  padding: 18px;
  font-size: 15px;
}

.footer-bottom span {
  color: #86b827;
  font-weight: bold;
}
/* FOOTER BOTTOM LINK STYLING */
.footer-bottom a {
  color: #86b827; /* మీ బ్రాండ్ గ్రీన్ కలర్ */
  text-decoration: none; /* నార్మల్ బ్లూ అండర్‌లైన్ పోవడానికి */
  font-weight: bold;
  transition: color 0.3s ease;
}

/* లింక్ పైన మౌస్ పెట్టినప్పుడు కలర్ మారడానికి */
.footer-bottom a:hover {
  color: #000000; /* Hover చేసినప్పుడు బ్లాక్ కలర్ అవుతుంది */
  text-decoration: underline;
}
/* ================= MOBILE FOOTER RESPONSIVENESS ================= */
@media (max-width: 768px) {

  /* Footer container spacing */
  .footer-section {
    padding: 40px 20px 20px;
  }

  /* Stack columns */
  .footer-section .row {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  /* Titles */
  .footer-title {
    font-size: 22px;
    margin-bottom: 14px;
    text-align: left;
  }

  /* Text */
  .footer-section p {
    font-size: 15px;
    line-height: 24px;
  }

  /* Quick links */
  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links a {
    font-size: 15px;
  }

  /* Social icons alignment */
  .social-icons {
    justify-content: flex-start;
    gap: 18px;
  }

  .social-icons i {
    font-size: 22px;
  }

  /* Divider line */
  .footer-line {
    margin: 25px 0 15px;
  }

  /* Copyright */
  .footer-copy {
    font-size: 14px;
    line-height: 22px;
    padding: 0 10px;
  }
}

/* MOBILE */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ================= FLOATING BUTTONS ================= */
.floating-whatsapp,
.floating-phone {
  position: fixed;
  bottom: 30px;
  width: 55px;
  height: 55px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 999;
}

.floating-whatsapp {
  left: 25px;
}

.floating-phone {
  right: 25px;
  background: #25d366;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .visit-heading {
    font-size: 36px;
  }

  #contactForm::before {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-box {
    padding: 25px;
  }

  #contactForm {
    padding: 35px 25px;
  }
}
