html,
body {
  height: auto;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-image: url("imgs/bg.png"); /* Add your background image */
  background-repeat: no-repeat;
  background-size: cover; /* Ensure the background image covers the whole page */
  background-attachment: fixed; /* Keep the background image fixed when scrolling */
  
  font-size: larger;
    font-family: "hoss-round-narrow", sans-serif;
font-weight: 200;
font-style: normal;
}




.slide {
  max-width: 800px;
  margin-bottom: 40px; /* keep your spacing below carousel */
}

.carousel-inner {
  height: auto; /* or whatever fixed height you want */
  position: relative;
}

.carousel-item {
  height: 100%;
}

.carousel-inner .carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.carousel-inner .carousel-item:nth-child(3) img {
  clip-path: inset(0 0 16px 0);
}

/* Adjust main content area to avoid being hidden behind fixed sidebar */
body {
  padding-left: 70px; /* sidebar width + some margin */
  padding-top: 50px;
  color: whitesmoke;
}

/* Menu icon */
.menu-icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 30px;
  cursor: pointer;
  background-color: #333;
  color: white;
  border-radius: 5px;
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1001;
}

/* Sidebar base (desktop by default) */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 70px;
  overflow: hidden;
  background-color: transparent;
  transition: all 0.5s ease-in-out;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding-left: 0;
  box-sizing: border-box;
}

.sidebar.open {
  width: 100vw;
  background-color: #333;
  padding-left: 60px;
  padding-top: 5px;
  padding-bottom: 10px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}

.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0 10px;
  display: flex;
  gap: 50px;
  width: 100%;
  justify-content: flex-start;
}

.sidebar ul li {
  text-align: center;
}

.sidebar ul li a {
  color: white;
  text-decoration: none;
  display: inline-block;
  padding: 10px 15px;
}

.sidebar ul li a:hover {
  background-color: #444;
  border-radius: 3px;
}

/* ---------- MOBILE DROPDOWN STYLES ---------- */
@media (max-width: 768px) {
  .col-12 {
    width: 90%;
    max-width: 100%;
    padding-top: 10px;
    box-sizing: border-box;
    margin: 0 auto;
    transform: translateX(-30px);
  }
  .sidebar {
    flex-direction: column;
    width: 100vw;
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease-in-out;
    padding: 0;
    align-items: flex-start;
    border-radius: 0;
    background-color: #333;
  }

  .sidebar.open {
    height: 100vh;
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .sidebar ul {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .sidebar ul li {
    width: 100%;
  }

  .sidebar ul li a {
    display: block;
    width: 100%;
    font-size: 18px;
    padding: 12px 0;
  }
 .gates-section {
    align-items: center;
    text-align: center;
  }

  .gates-img-wrapper {
    width: 90%;
    margin: 0 auto;
  }

  /* ✅ Center the carousel */
  .slide {
    width: 90%;
    margin: 0 auto;
  }

  /* Optional: Fix carousel height if it's too tall on mobile */
  .carousel-inner {
    max-height: 300px; /* Adjust as needed */
  }

  .carousel-inner .carousel-item img {
    height: auto;
    max-height: 300px;
  }
}
  /* ✅ NEW: Stack & center container children on mobile */
  .container {
    flex-direction: column;
    align-items: center;
  }


.text-content {
  padding: 15px;
  flex: 1;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center; /* ✅ Center text inside blocks */
}

/* ✅ Updated to center child divs and wrap properly */
.container {
  max-width: 100%;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* Each content block */
.col-12 {
  width: 100%;
  max-width: 800px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  box-sizing: border-box;
  margin: 0 auto; /* ✅ Center blocks horizontally */
}

.mb-4 {
  margin-bottom: 20px;
}

.divider {
  margin-bottom: 20px;
  background-color: transparent;
}

.one {
  background-color: crimson;
}

.two {
  background-color: crimson;
}

.tree {
  background-color: crimson;
}

.topper {
  background: #dc143c;
  background: linear-gradient(
    90deg,
    rgba(179, 54, 54, 1) 0%,
    rgba(220, 20, 60, 1) 50%,
    rgba(237, 83, 83, 1) 100%
  );
  color: whitesmoke;
}

div {
  border-radius: 15px;
}
.gate 
  border-radius: 15px;
.gates-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px; /* round all corners */
  height: 100%;
}

.gates-img-wrapper img {
  display: block;
  width: 100%;
  height: calc(100% + 20px);
  object-fit: cover;
  border-radius: 15px; /* same as container for all corners */
  position: relative;
  top: -20px;
}

.banner {
  width: 100%;
  max-width: 800px; /* Match .col-12 */
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  position: relative;
  height: 40vh;
  border-radius: 15px;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 15px;
}




