/* Hewro Section */
.hero-banner {
  background: url('images/1271.jpeg') no-repeat center center/cover;
  height: 90vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 9, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn.primary {
  background-color: var(--accent-color);
  color: white;
}

.btn.primary:hover {
  background-color: #5d5a5a;
}

.btn.secondary {
  background-color: white;
  color: #111;
}

.btn.secondary:hover {
  background-color: #ddd;
}

/* discover section */

.stats-grid {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.stats-grid h2{
    color: var(--accent-color);
    font-size: 30px;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 2rem 0;
}

.stat-item {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
}

.stat-item img {
  width: 60px;
  height: auto;
  margin-bottom: 1rem;
}

i {
  font-size: 50px;
  color: var(--accent-color);
  margin-bottom: 15px;
  transition: 0.3s;
}

i:hover {
  color: #0077b6;
  transform: scale(1.1);
}

.stat-item h3 {
  margin: 10px 0;
  font-size: 1.1rem;
  color: var(--accent-color);
}

.stat-item p {
  font-size: 0.95rem;
  color: #555;
}

/* Message centre */

.features {
    padding: 60px 20px;
    background: #f9f9f9;
}

.feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 5px;
    flex-wrap: wrap;
}

.feature-image {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
}

.feature-image img {
    width: 100%;
    max-width: 500px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.4s ease;
}

.feature-image img:hover {
  transform: scale(1.03);
}

.feature-text {
    flex: 1 1 45%;
    text-align: left;
}

.feature-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.feature-text p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-color2);
}

