body {
  font-family: 'Poppins', sans-serif;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('https://images.unsplash.com/photo-1596524430615-b46475ddff6e') center/cover no-repeat;
}

body {
  font-family: 'Poppins', sans-serif;
}

/* Navbar brand logo */
.navbar-brand img {
  border-radius: 50%;
  object-fit: cover;
}

.hero {
  background: url("images/hero.jpg") no-repeat center center/cover;
  min-height: 100vh; /* full screen height */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Features Section */
#features h2 {
  color: #222;
}

#features .icon {
  font-size: 2.5rem;
}
/* Pricing Section */
#pricing .card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

#pricing .card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Center carousel controls */
.carousel-control-prev,
.carousel-control-next {
  filter: invert(100%);
}

/* How It Works Section */
#how-it-works h2 {
  color: #222;
}

#how-it-works .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#how-it-works .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* CTA Section */
#cta {
  background: linear-gradient(135deg, #dc3545, #ff6b6b); /* red shades */
  color: #fff;
}

/* Why Choose Us */
#why-choose-us h2 {
  font-size: 2rem;
  font-weight: 700;
}

#why-choose-us .border {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#why-choose-us .border:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
/* Contact Us */
#contact h2 {
  font-size: 2rem;
  font-weight: 700;
}

#contact .form-control {
  border-radius: 0.375rem;
  box-shadow: none;
  border: 1px solid #ccc;
}

#contact .form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
/* Footer */
footer h5 {
  margin-bottom: 1rem;
}


.hero {
  position: relative;
  background: url("images/data hero.jpg") no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

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

.hero .container {
  position: relative;
  z-index: 2; /* ensures text stays above overlay */
}
