/* ============================= */
/* HEADER STYLES                */
/* ============================= */

.navliststyle {
  font-size: 15px;           /* Increased font size */
  font-weight: 800;          /* Extra bold */
  text-transform: uppercase; /* Optional: Makes it look more premium */
  letter-spacing: 0.5px;     /* Slight spacing for elegance */
  color: #fff !important;    /* Make sure the color is visible */
  transition: color 0.3s ease;
}

.text-center{
margin-top: 15px;
}



.main_header {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 1040;
  background-color: #343a40;
  color: #fff;
}

.header_middle {
  background-color: #343a40 !important;
  box-shadow: 0px 0px 10px #302f2d;
}

.sub_header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1040;
  background-color: #000;
  color: #fff;
  padding: 5px 0;
  font-size: 14px;
}

/* Prevent content hiding behind fixed headers */


/* ============================= */
/* CAROUSEL BANNER STYLES       */
/* ============================= */

.bannertext1 {
  font-size: 65px;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  color: #d7c21e !important;
  padding: 10px;
  border-radius: 10px;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
  margin-bottom: 10px;
  animation: fadeInUp 1s ease-out;
  text-align: center;
}

.bannertext2 {
  max-width: 700px;
  text-align: center;
  animation: fadeInUp 1.5s ease-out;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 18px;
  color: #fff;
  margin: 0 auto;
}

/* FULL OVERLAY */
.carousel-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6); /* semi-transparent black */
  z-index: 1;
}

/* Caption Box */
.carousel-caption {
  z-index: 2;
 
  padding: 20px;
  border-radius: 10px;
  animation: fadeIn 2s ease-in-out;
}
.heading {
  font-weight: 700;  /* Makes text bold */
  color: #000000;    /* Black color */
}


