 body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f8f9fa;
  padding-top: 50px;
}

main {
  flex: 1;
}

footer {
  margin-top: auto;
}


/* .hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  filter: brightness(65%);
}


.hero-text {
  position: absolute;
  top: 5%;
  right: 2%;
  color: #fff;
  text-align: right;
  max-width: 45%;
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-text p {
  font-size: 1.2rem;
  margin-top: 0.4rem;
  color: #f1f1f1;
} */

.hero-section {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}

.hero-text {
  position: absolute;
  top: 5%;
  left: 4%;      /* ✅ start text from left */
  /* right: 8%; */
  color: #fff;
  max-width: 80%;
}

.hero-text h4 {
  font-size: clamp(1.8rem, 2.2vw + 1rem, 2.5rem);
  font-weight: 700;
  white-space: nowrap; /* keep in one line */
  overflow: visible;
  text-align: left;     /* ✅ heading aligned to left */
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-text p {
  margin-top: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #f1f1f1;
  text-align: right;    /* ✅ paragraph aligned to right */
}

@media (max-width: 992px) {
  .hero-text {
    top: 5%;
    left: 5%;
    right: 5%;
    text-align: right;
  }

  .hero-text h4 {
    white-space: normal;
    text-align: center;
    font-size: 1.8rem;
  }

  .hero-text p {
    text-align: right;
  }
}

.card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.gradient-card-1 {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
}

.gradient-card-2 {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  color: #fff;
}

.gradient-card-3 {
  background: linear-gradient(135deg, #43cea2, #185a9d);
  color: #fff;
} 


