:root {
    --light-brown: #8b7c61;
    --medium-brown:#714c1fed;
    --dark-brown: #603813;
    --white: #ffffff;
  }

  
  html {
    scroll-behavior: smooth;
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
  }
  
  /* HEADER STRUCTURE */
  .top-header {
    display: flex;
    width: 100%;
    height: 110px;
  }
  
  /* LEFT BROWN BAR */
  .left-box {
    width: 80px;
    background-color: var(--light-brown);
  }
  
  .logo-and-text {
    display: flex;
    align-items: center;
    flex: 1;
    background-color: var(--light-brown);
    padding: 0 20px;
     gap: 150px; 
     flex-wrap: wrap;  
  }
  .text-section {
    color: white;
    text-align: center;
  }
  
  /* LOGO SECTION — just right of brown box */
  .logo-section {
    margin-right: 40px;
  }
  
  .logo-section img {
    height: 130px;
    width: 160px;
  }

  .text-section h1 {
    font-size: 40px;
    font-weight: 60;
  }
  
  .text-section p {
    font-size: 15px;
    margin-top: 10px;
  }
  
  /* BOTTOM BAR */
  .bottom-bar {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--dark-brown);
    background-color: white;
    padding: 10px 30px;
  }
  
  .gst {
    margin-left: 50px;
    font-size: 15px;
    font-weight: 20px;
  }
.navbar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.navbar a {
    color:black;
    text-decoration: none;
    font-size: 18px;
    padding: 10px;
    transition: color 0.3s;
}

.navbar a:hover {
    color: var(--dark-brown);
}

/* Hamburger Icon - Initially hidden */
.hamburger {
    display: none;
    font-size: 20px;
    color:black;
    cursor: pointer;
}


/* Mobile View - Display Hamburger Icon, hide navbar links */
@media screen and (max-width: 768px) {
    .top-header {
        height: 90px; /* Reduced height for mobile */
        padding: 0 0; /* Adjust padding */
      }
    
      .logo-and-text {
        flex: 1;
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        flex-wrap: nowrap;
        background-color: var(--light-brown);
        padding: 0 10px;    
      }
      .logo-section{
        order: 0;
        flex-shrink: 0;
        margin-right: 10px;
      }
    
      .logo-section img {
        height: 95px; /* Reduced logo height for mobile */
        width: 110px; /* Reduced logo width for mobile */
      }
      .text-section{
        order: 1;
        flex: 1;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 8px;
        color: black;
        flex-wrap: wrap;
    
      }
    
      .text-section h1 {
        margin: 0;
        font-size: 12px; /* Reduced font size for mobile */
        color: black;
        
      }
    
      .text-section p {
        margin: 0;
        font-size: 8px;
        color: black; /* Reduced font size for mobile */
      }
    
      .bottom-bar {
        height: 50px; /* Reduced bottom bar height */
        padding: 5px 20px; /* Adjust padding for mobile */
      }
    
      .gst {
        font-size: 13px; /* Smaller font size for mobile */
      }
    
    .navbar {
        display: none;
        width: 100%;
        height: 300px;
        cursor: pointer;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 130px;
        left: 0;
        background-color:var(--light-brown);
        padding: 10px 0;
        z-index: 10;
    }

    .navbar a {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .hamburger {
        display: block;
    }

    .navbar.active {
        display: flex;
    }
}


  @media (max-width: 768px) {
    .contact-details-grid {
      flex-direction: column;
      align-items: center;
    }
    .contact-item {
      width: 90%;
    }
  }

/* Contact Section Styles */
.contact-info {
 
  color: var(--white);
  padding: 50px 20px;
  text-align: center;
  border-radius: 12px;
}

.contact-info h2 {
  color: var(--dark-brown);
  margin-bottom: 30px;
  font-size: 2.5rem;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.contact-item {
  background-color: var(--medium-brown);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s, background-color 0.3s;
}

.contact-item:hover {
  background-color: var(--dark-brown);
  transform: translateY(-5px);
}

.contact-item i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--white);
}

.contact-item p, .contact-item a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  display: block;
  margin-top: 5px;
}

.contact-item a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-info {
    padding: 30px 15px;
  }

  .contact-info h2 {
    font-size: 2rem;
  }

  .contact-details-grid {
    grid-template-columns: 1fr;
    justify-items: center; /* Center the cards inside grid */
  }

  .contact-item {
    padding: 15px;
    width: 100%;
    max-width: 320px; /* Maintain nice card width */
  }

  .contact-item i {
    font-size: 2rem;
  }

  .contact-item p, .contact-item a {
    font-size: 1rem;
  }
}
  
.faq-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: auto;
  }
  .faq-section h3 {
    font-size: 28px;
    color: var(--dark-brown);
    margin-bottom: 30px;
    text-align: center;
  }
  .faq-item {
    margin-bottom: 15px;
  }
  .faq-question {
    width: 100%;
    background-color: var(--light-brown);
    color: white;
    font-size: 16px;
    padding: 15px;
    border: none;
    border-radius: 6px;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s;
  }
  .faq-question:hover {
    background-color: var(--medium-brown);
  }
  .faq-answer {
    background: #f9f9f9;
    padding: 15px;
    display: none;
    border-radius: 6px;
    margin-top: 5px;
    font-size: 15px;
  }
  .faq-question.active + .faq-answer {
    display: block;
  }
  
  .footer {
    background-color: var(--medium-brown);
    color: white;
    padding: 40px 20px;
    text-align: center;
  }
  
  .footer-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: left;
    gap: 40px;
  }
  
  .footer-col h4 {
    margin-bottom: 10px;
  }
  
  .footer-col a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 5px 0;
  }
  
  .footer-col a:hover {
    text-decoration: underline;
  }
  
  .footer-bottom {
    margin-top: 20px;
    font-size: 14px;
  }
  .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
  }
  
  .whatsapp-float:hover {
    background-color: #1ebe57;
  }
  /* Animate text entrance */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
  }
  .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .contact-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
  }
  
  .contact-section form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-section input,
  .contact-section textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
  }
  
  .contact-section button {
    background-color: var(--dark-brown);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .contact-section button:hover {
    background-color: var(--medium-brown);
  }
  
  #formStatus {
    margin-top: 10px;
    font-size: 14px;
    color: green;
  }
   
  /* Error styling */
  
   .success-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  .success-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
  }
  .success-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .success-content button {
    background: var(--dark-brown);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
  }
  .success-content button:hover {
    background: var(--medium-brown);
  } 
    