*{
    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(./gimg3.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%;
}





.about-us-section {
    margin-top: 60px;
    background-color: rgb(255, 249, 241);
    padding: 50px;
  }
  
  /* Wrapping sections */
  .section-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px; /* Adds space between the sections */
  }
  
  /* First Text Side */
  .text-side, .text-side2 {
    max-width: 600px;
  }
  
  .opulence, .opulence2 {
    font-size: 48px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 20px;
    color: rgb(159, 117, 63);
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  }
  
  .title-line, .title-line2 {
    width: 500px;
    border: none;
    border-top: 2px solid #7c7050;
    margin-bottom: 20px;
  }
  
  p {
    font-size: 16px;
    line-height: 1.8;
    color: #4c4c4c;
  }
  
  /* Image Side */
  .image-side, .image-side2 {
    position:relative;
    width: 500px; /* Fixed width for the image */
    height: 600px; /* Fixed height for the image */
  }
  
  .image-side img, .image-side2 img {
    width: 100%;
    height: 100%;
    object-fit:cover; /* Ensures the image covers the entire area */
  }
  
  





























.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 */
  }