/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: 'Open Sans', sans-serif; */
  color: #fff;
  background-color: #0b1f34;
  font-size: 18px;
}

h1, h2, h3, h4, h5, h6 , span{
  font-family: 'Playfair Display', serif;
}
body, p , h4, h5, h6, a, button {
  font-family: 'Poppins', sans-serif;
}
h5{
  color:#0b1f34 ;
}
/* Hero Banner Section */
.hero-banner {
  position: relative;
  background-image: url('../img/banner.jpg'); /* Ensure path is correct */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

/* Dark Overlay */
.hero-banner::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Black overlay */
  z-index: 1;
}

/* Content Over Image */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons a {
  padding: 10px 24px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  margin: 5px;
}


 .highlight-text {
      color: #ffc107;
    }
    .box {
      background-color: #0b1f34;
      color: #fff;
      padding: 20px;
      border-radius: 15px;
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
    }
    .box-icon {
      background-color: #ffc107;
      color: #0b1f34;
      font-size: 24px;
      font-weight: bold;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .btn-custom {
      background-color: #0b1f34;
      color: #ffc107;
      padding: 10px 20px;
      border-radius: 8px;
      border: none;
      margin: 10px;
    }
    .btn-custom:hover {
      background-color: #1a2f4c;
      color:#ffffff;
    }

     .highlight {
      color: #e5b93c;
    }
    .info-section {
      padding: 60px 0;
    }
    .info-text {
      font-size: 18px;
      line-height: 1.7;
      color:#ffffff;
    }
    .feature-icon {
      color: #e5b93c;
      margin-right: 10px;
    }
    .feature-item {
      margin-bottom: 15px;
      font-weight: normal;
    }
    .cta-btn {
      background-color: #e5b93c;
      color: #000;
      font-weight: 500;
      border: none;
      padding: 10px 20px;
      border-radius: 6px;
      margin-top: 30px;
    }
    .cta-btn:hover {
      background-color: #f4c84b;
    }
    .section-title {
      font-size: 32px;
      font-weight: bold;
    }
/* Responsive */
@media (max-width: 768px) {
  .hero-banner {
    background-size: contain !important;
    background-repeat: no-repeat;
    background-position: center top;
    height: auto;
    padding-top: 60vw; /* Push space for background image */
    padding-bottom: 2rem;
    position: relative;
  }

  .hero-banner::after {
    background: none !important; /* remove overlay on mobile */
  }

  .hero-content {
    position: absolute;
    /* top: 0; */
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }

  .hero-desc {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 300px;
  }

  .hero-buttons a {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
  }
}



