/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    overflow-x:hidden;
    padding-top:110px;
}

/* ==========================
   STICKY NAVBAR
========================== */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;

    background:#f6ffe6;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:10px 40px;

    z-index:99999;

    box-shadow:0 2px 15px rgba(0,0,0,.1);
}

/* LOGO */

.logo img{
    width:90px;
    height:90px;
    object-fit:contain;
}

/* MENU */

.nav-links{
    list-style:none;
    display:flex;
    align-items:center;
    gap:30px;
}

.nav-links li{
    position:relative;
}

.nav-links a{
    text-decoration:none;
    color:#000;
    font-size:18px;
    font-weight:600;
}

.nav-links a:hover{
    color:#7CB232;
}

/* ==========================
   PRODUCTS LABEL
========================== */

.products-label{
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    color:#000;
    display:block;
}

.products-label:hover{
    color:#7CB232;
}

/* HIDE CHECKBOX */

#products-toggle{
    display:none;
}

/* ==========================
   DESKTOP DROPDOWN
========================== */

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;

    width:280px;

    background:#fff;

    list-style:none;

    border-radius:10px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

    display:none;
}

.dropdown:hover .dropdown-menu{
    display:block;
}

.dropdown-menu li a{
    display:block;
    padding:12px 18px;
    color:#333;
    font-size:12px;
    border-bottom:1px solid #eee;
}

.dropdown-menu li:last-child a{
    border-bottom:none;
}

.dropdown-menu li a:hover{
    background:#f6ffe6;
}

/* ==========================
   HAMBURGER
========================== */

#menu-toggle{
    display:none;
}

.hamburger{
    display:none;
    font-size:34px;
    cursor:pointer;
}

/* ==========================
   MOBILE
========================== */

@media(max-width:900px){

    .navbar{
        padding:10px 20px;
    }

    .logo img{
        width:70px;
        height:70px;
    }

    .hamburger{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:100%;
        left:0;

        width:100%;

        background:#f6ffe6;

        flex-direction:column;
        align-items:flex-start;

        max-height:0;
        overflow:hidden;

        transition:.4s;
        gap:0;
    }

    #menu-toggle:checked ~ .nav-links{
        max-height:1200px;
        padding:15px 0;
    }

    .nav-links li{
        width:100%;
    }

    .nav-links li a,
    .products-label{
        display:block;
        width:100%;
        padding:15px 20px;
    }

    /* MOBILE DROPDOWN */

    .dropdown-menu{
        position:static;
        width:100%;
        display:none;
        box-shadow:none;
        border-radius:0;
        background:#eef8db;
    }

    #products-toggle:checked ~ .dropdown-menu{
        display:block;
    }

    .dropdown:hover .dropdown-menu{
        display:none;
    }

    .dropdown-menu li a{
        padding-left:40px;
    }
}





/* ---------------- 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;
  }
}
