* {
  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 img {
  width: 80px;
  height: 50px;
  object-fit: cover;
}
.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;
}


.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;
}

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

/* solutions */
.solutions-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: black;
}

.solutions-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(0, 0, 0, 0.1); */
  z-index: -1;
}

.solutions-section h2 {
  color: #333;
}

.solutions-section .card {
  /* background: rgba(255, 255, 255, 0.1); */
  border-radius: 10px;
  overflow: hidden;
}

.solutions-section .card img {
  transition: transform 0.3s ease;
}

.solutions-section .card img:hover {
  transform: scale(1.05); /* Zoom effect on hover */
}

.solutions-section ul {
  padding-left: 20px;
}

.solutions-section ul li {
  margin-bottom: 8px;
}

.process-list {
  padding-left: 20px;
  color: #333;
  font-size: 1.1rem;
}

.process-list li {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* 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;
}
.footer-bottom {
  color: #cccccc;
  font-size: 14px;
}

.services-section {
  text-align: center;
  padding: 40px;
}

.services-section h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.services-section p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #666;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

.service-card {
  background-color: #feb47b;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.service-card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.service-card ul li {
  font-size: 1rem;
  margin: 5px 0;
}

.service-card button {
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1rem;
}

.service-card button:hover {
  background-color: #555;
}


