/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lato', sans-serif;
}

/* Banner Background */
.banner-bg {
  color: #ffffff;
  /* position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden; */
  background-color: #284184;
}

.add-bg-image{
  background-image: url("../assets/Header.png");
  background-size: cover; 
  background-position: center;
  background-repeat: no-repeat;
  
}

.background-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  position: relative;
  /* padding-top: 20px; */
  color: white;
}

/* Headings */
h1 {
  font-size: 72px;
  font-weight: 600;
  /* line-height: 90px; */
}

@media(min-width: 1200px) {
  h1 {
  font-size: 55px;
  line-height: 70px;
  }
}

h1 .underline {
  position: relative;
  display: inline-block;
}

h1 .underline::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #efa74b;
  border-radius: 10px; /* Makes the line curved */
  transform: scaleX(1) scaleY(1) rotate(-2deg);
}

h1 .highlight {
  color: #f4a742;
  background: linear-gradient(
    to right,
    rgba(224, 162, 86, 0.4),
    rgba(224, 162, 86, 0)
  );
  display: inline-block;
  padding: 0 10px;
  border-left: 4px solid #efa74b;
  border-radius: 4px;
  line-height: 1.2;
}

/* Paragraphs */
p {
    font-size: 20px;
  line-height: 25px;
  font-weight: 400;
  margin-bottom: 30px;
}

/* Buttons */
.btn-container {
  margin-top: 10px;
}

.btn-primary {
  background-color: white;
  color: #000;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #d98f2b;
  color: #fff;
}

.btn-primary .icon-img {
  width: 20px;
  height: 20px;
}

/* Images */
.app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  margin-bottom: 40px;
}

/* Info Section */
.info-container {
  display: flex;
  /* gap: 20px; */
  margin-bottom: 20px;
  justify-content: flex-start; /* Desktop alignment */
}

.info-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 10px 20px;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  margin:0 5px;
}

.info-icon {
  width: 24px;
  height: 24px;
}

/* Logo Section */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  /* padding-top: 40px; */

}

.logo img {
  width: 45px;
  height: auto;
}

.logo-text h2 {
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  margin: 0;
}

.logo-text p {
  font-size: 0.8rem;
  color: #ffffff;
  margin: 0;
}

.logo-text .highlight {
  font-size: 0.8rem;
  color: white;
  font-weight: bold;
}

/* Flexbox Layout */
.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* Allow wrapping for better responsiveness */
}

/* Media Queries */
@media (max-width: 992px) {
  .row {
    flex-wrap: wrap; /* Allow wrapping for tablets */
  }
  h1 {
    font-size: 2.5rem;
    text-align: center; /* Center-align for better readability */
  }
  p {
    font-size: 1rem;
  }
  .info-container {
    justify-content: center; /* Center-align info boxes */
  }
}

@media (max-width: 768px) {
  .row {
    flex-direction: column; /* Stack content vertically */
    text-align: center;
  }
  .info-container {
    gap: 10px;
    /* flex-wrap: wrap; Allow wrapping for small screens */
  }
  .logo img {
    width: 40px; /* Smaller logo */
  }
  .app-image {
    margin-top: 20px; /* Add spacing */
  }

  /* Adjust logo container spacing on smaller screens */
  .logo-container {
    gap: 10px;
    margin-bottom: 30px; /* Added more space between logo and content */
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  p {
    font-size: 0.9rem;
  }
  .btn-primary {
    font-size: 0.9rem;
  }
  .info-box {
    /* flex-direction: column; Stack icons and text */
    text-align: center;
    padding: 10px 5px;
    font-size: 15px;
  }
  .info-icon {
    margin-bottom: 5px;
  }
  .btn-container {
    text-align: center; /* Center-align button */
  }
}
