*{
    padding:0px;
    margin:0px;
    box-sizing: border-box;
}



/* Make the navbar sticky */
.navi {
  position: sticky;
  top: 0;
  z-index: 1020; /* Ensure it stays on top of other elements */
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow for better visibility */
}

/* Style for navbar-brand */
.navbar-brand img {
  width: 80px;
  margin-left: 50px;
}

.navbar-nav {
  align-items: center;
}

/* Style for navbar links */
.navbar .navbar-nav .nav-link {
  color: rgb(91, 52, 1);
  font-size: 18px;
  padding: 0.5em 1em;
  font-weight: normal;
  transition: transform 0.3s ease-in-out; /* Smooth transition for the scaling effect */
}

/* Style for nav items */
.nav-item {
  font-size: 16px;
  padding: 0.5em 1em;
  gap: 20px;
  transition: transform 0.3s ease-in-out; /* Smooth transition for scaling */
}

/* Hover effect: zoom in */
.nav-item:hover {
  transform: scale(1.1); /* Adjust the scale as needed */
}

/* Ensure the underline effect works */
.nav-link.name {
  position: relative;
}

.nav-link.name::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px; /* Thickness of the underline */
  left: 0;
  bottom: 0; /* Position of the underline directly below the text */
  background-color: black;
  transition: width 0.3s ease-in-out; /* Animation duration and easing */
}

/* Hover effect: full underline */
.nav-link.name:hover::after {
  width: 100%; /* Full underline on hover */
}

/* Media query for larger screens */
@media screen and (min-width: 768px) {
  .navbar-brand img {
    width: 250px;
  }
  .navbar-brand {
    margin-right: 0;
    padding: 0 1em;
  }
}



/* banner */
.ban {
    width: 100%;
    height: 60vh;
    background-image: url(./aboutimg1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banrap {
    width: 100%;
    height: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banrap1 {
    width: 100%;
    text-align: center;
    color:white; /* You can change the color as needed */
    font-size: 40px; /* Adjust the font size as needed */
    font-weight: bolder;
    margin-bottom: 1%;
}




.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Times New Roman', Times, serif;
    color: rgb(91, 52, 1);
  }
  
  .contact-info {
    margin-top: 50px;
    width: 100%;
    max-width: 500px;
    margin-right: 20px;
  }
  
  .contact-info h2 {
    font-size: 32px;
    color: rgb(91, 52, 1);
    margin-bottom: 10px;
  }
  
  .contact-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .info-item {
    margin-bottom: 20px;
  }
  
  .contact-form {
    margin-top: 50px;
    width: 100%;
    max-width: 600px;
  }
  
  .contact-form h2 {
    font-size: 32px;
    color: rgb(91, 52, 1);
    margin-bottom: 10px;
  }
  
  .contact-form p {
    font-size: 16px;
    color: rgb(91, 52, 1);
    margin-bottom: 20px;
  }
  
  .contact-form label {
    font-size: 14px;
    font-weight: 600;
    display: block;
    color: rgb(91, 52, 1);
    margin-bottom: 5px;
  }
  
  .contact-form label span {
    color: #d9534f; /* Red color for the asterisk */
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid rgb(91, 52, 1);
    border-radius: 5px;
    font-size: 16px;
    color: rgb(91, 52, 1);
    background-color: #f9f9f9;
  }
  
  .contact-form button {
    background-color: rgb(91, 52, 1);
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }
  
  .contact-form button:hover {
    background-color: #d9534f;
  }
  
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }
  
    .contact-info,
    .contact-form {
      width: 100%;
      max-width: none;
      margin: 0;
    }
  }
  
  .map-container {
    margin-top: 2%; /* Reduced to minimize the gap between the map and footer */
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    padding-top: 56.25%; /* Aspect ratio of 16:9 */
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer Section */
.footer-section {
    color: #5c3a2b;
    padding: 0px 0; /* Adjusts the padding of the entire section */
}

.containera {
    width: 100%;
    height: 100%;
    padding: 50px;
}

.footer-heading {
    font-size: 28px;
    font-weight: bold;
    color: #5c3a2b;
}

.footer-divider {
    width: 50px;
    border-top: 2px solid #5c3a2b;
    margin: 5px auto; /* Reduces the space around the divider */
}

.list-unstyled {
    padding: 0;
    margin: 0; /* Removes extra padding and margin from the list */
}

.list-unstyled li {
    margin-bottom: 5px; /* Reduces gap between list items */
    color: rgb(91, 52, 1);
    font-size: 18px;
    font-weight: 500;
}

p {
    color: rgb(91, 52, 1);
    margin-bottom: 5px; /* Reduces gap between paragraphs */
    font-size: 18px;
    font-weight: 500;
}

.row > [class*='col-'] {
    margin-bottom: 10px; /* Reduces gap between columns */
}

.bg {
    background-color: rgb(91, 52, 1); /* Brown background color */
}
