*{
    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;
  }
}





.first{
    background-color: transparent;
    height: 98vh;
    position: relative;
    background-color: white;
}

.first video {
    margin-left: auto;
    margin-right: auto;
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.first-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.first-text {
    position: absolute;
    top: 95%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.first-text h1 {
    color: white;
    font-size: 28px;
    font-family: sans-serif;
    font-weight: bolder;
    margin-bottom: 20px;
}





.custom-img {
    margin-top: 10%;
    width: 100%; /* Ensures the image fills its column */
    height: 200px; /* Adjust the height as needed */
    object-fit: cover; /* Ensures the image covers the space without stretching */
}



















.footer-section {
  color: #5c3a2b;
  padding: 20px 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 */
}