

/* Apply Comfortaa font globally */
body {
    font-family: 'Comfortaa', cursive;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    padding-top: 75px;
}

.navbar {
  background-color: #ffffff !important;
}

.navbar .nav-link,
.navbar .navbar-brand,
.navbar .bi {
  color: #223211 !important;
}
/*
.navbar-toggler {
  padding: 6px;
  width: 80px;
  height: 40px;
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler-icon {
  width: 24px;
  height: 24px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23ffffff' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
*/

.image-slider-wrapper {
  position: auto;
  width: 100%;
  height: 60vh;
  height: 900px;
  overflow: hidden;
  margin-top: 20px;
  padding-bottom: 50px; /* âœ… Adds extra background at bottom */
}


.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;     /* show entire image, no crop */
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.slider-img.active {
  opacity: 1;
  z-index: 1;
}

.slider-text {
  position: absolute;
  bottom: -20%; /* âœ… Positions text as a percentage of slider height */
  left: 5%;
  color: red;
  font-size: clamp(1.5rem, 4vw, 3rem); /* âœ… Responsive, but within bounds */
  font-family: 'Comfortaa', cursive;
  font-weight: bold;
  z-index: 2;
  max-width: 90%;
  white-space: normal;
  word-wrap: break-word;
  overflow: hidden;
}



@media (max-width: 768px) {
  .image-slider-wrapper {
    height: 100vh;
  }
}

/* General section background */
section {
  background-color: #edebeb;
}

/* Custom Box Styles */
.custom-box {
  background-color: #b50214 !important;
  border-radius: 12px;
  color: #e0e0e0 !important;
  height: 100%;
}

.custom-box h2 {
  color: #ffffff !important;
}

.text-danger-custom {
  color: #ffffff !important;
}

/* Top image inside cards */
.position-relative img {
  width: 70px;
  margin-top: -40px;
}

/* Card text styles */
.fw-bold {
  font-weight: 700;
}

.btn-danger {
  background-color: #b50214;
  border: none;
}

.btn-danger:hover {
  background-color: #880010;
}

/* Form Styling */
.form-control {
  border-bottom: 1.5px solid red;
  border-radius: 3px;
}

.form-row {
  margin-bottom: 20px;
}

.btn-custom {
  width: auto;
  padding: 10px 20px;
  border-radius: 50px;
  background-color: #990000;
  color: white;
  border: none;
}

.form-group select {
  border-bottom: 1px solid red;
  border-radius: 3px;
}

.container {
  max-width: 1240px;
}

.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}


.form-section {
  margin-left: 0;
  padding: 0;
}

@media (max-width: 480px) {
  .slider-text {
    bottom: -13%;
    font-size: clamp(1.2rem, 6vw, 2rem);
  }
}


  .form-control {
    width: 100%;
  }

  .btn-custom {
    width: 100%;
  }

  .form-row {
    margin-bottom: 15px;
  }



