* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arsenal", serif;
  font-weight: bolder;
  font-style: normal;
}

/* navbar */
.navbar {
  transition: background-color 0.3s ease-in-out;
}

.navbar.scrolled {
  background-color: #fff; /* Change to a lighter color when scrolled */
}
.navbar-brand {
  font-weight: bold;
  color: #ff7e5f !important;
}
.active {
  font-weight: bolder !important;
  color: #ff7e5f !important;
}
.btn-outline-success {
  border-color: #ff7e5f !important;
  color: #ff7e5f !important;
  transition: background 0.3s, color 0.3s !important;
}
.btn-outline-success:hover {
  background: linear-gradient(to right, #ff7e5f, #feb47b) !important;
  color: white !important;
}

/* hero section */

.hero,
.about-us {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: white; /* Changed to white for better contrast */
  font-weight: 900;
  position: relative; /* Ensures proper positioning for overlay */
  z-index: 0;
}

.hero {
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
  z-index: 1; /* Ensure it appears above the background but below the text */
}

.hero-container {
  text-align: left;
  position: relative; /* Ensure text is above the overlay */
  z-index: 2;
}



@media (max-width: 768px) {
  .hero h1 {
    font-size: 26px;
  }
  .hero p {
    font-size: 12px;
  }
}

.btn-custom {
  background: #f2f2f2;
  color: #333;
  padding: 20px 30px;
  border-radius: 2px;
  font-size: 18px;
  transition: background 0.3s, transform 0.2s;
  text-decoration: none;
}
.btn-custom-get {
  margin-top: 20px;
  background: #ff7e5f !important;
  color: white !important;
  font-size: 25px !important;
  font-weight: bold !important;
  padding: 10px 15px !important;  
}
.btn-custom-get:hover {
  background: white !important;
  color: #ff7e5f !important;
}
.btn-custom:hover {
  background: linear-gradient(135deg, #d1c6c3 20%, #fcb68e 80%);
  color: white;
  transform: scale(1.05);
}
.navbar-brand img {
  width: 80px;
  height: 50px;
  object-fit: cover;
}
.nav-link {
  color: #555 !important;
  font-size: 16px;
}
.nav-link:hover {
  color: #ff7e5f !important;
}
.btn-outline-success {
  border-color: #ff7e5f !important;
  color: #ff7e5f !important;
  transition: background 0.3s, color 0.3s !important;
}
.btn-outline-success:hover {
  background: linear-gradient(to right, #ff7e5f, #feb47b) !important;
  color: white !important;
}
.active {
  font-weight: bolder !important;
  color: #ff7e5f !important;
}

/* General styling */
.flex-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Who we are */


/* meet our team */

.team-wrapper {
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  color: #f2f2f2;
}

.team-wrapper h2 {
  margin-bottom: 2rem;
  text-align: center !important;
}

.team-image {
  width: 200px;
  height: 200px;
  background-color: grey;
  border-radius: 50%;
}

.team-image img{
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
}


/* Why choose us */

.why-choose-us-wrapper h2 {
  margin-bottom: 2rem;
}

.why-us > * {
  margin-top: 1rem;
}

.why-us p {
  color: #111;
}

.why-us ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.why-us li {
  list-style-type: none;
}

.why-us li:before {
  content: '✅';
  vertical-align: middle;
  margin-right: 1em;

}

@media (max-width: 992px) {
  .why-us-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .who-we-are {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .why-us ul {
    grid-template-columns: 1fr;
  }
}

/* footer */
footer {
  /* background-color: #000080; */
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  color: #ffffff;
  padding: 10px 20px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}

.contact-info p {
  margin: 5px 0;
}

.cta-section h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ff7e5f;
}

.cta-input {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.cta-input input {
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s ease;
}

.cta-input input:focus {
  border-color: #ff7e5f;
}

.cta-input button {
  background-color: #ff7e5f;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-input button:hover {
  background-color: #feb47b;
}

.footer-bottom {
  color: #cccccc;
  font-size: 14px;
}