/* Basic Reset */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #f5f7fa;
  color: #333;
  overflow-x: hidden;
}

/* Banner Section */
.banner {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(20, 20, 20, 0.8)), url('../images/banner.jpg') center/cover no-repeat;
  height: 80vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: fadeIn 2s ease-in-out;
}

.banner h1 {
  font-size: 3rem;
  font-weight: 700;
}

.banner p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Button Styles */
.btn-primary {
  background: linear-gradient(135deg, #4d5dfb, #00d2ff);
  border: none;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 600;
  color: white;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3b49d4, #00b8e0);
  transform: scale(1.05);
}

.btn-outline-primary {
  border: 2px solid #4d5dfb;
  color: #4d5dfb;
  border-radius: 30px;
  transition: 0.3s ease;
  font-weight: 500;
}

.btn-outline-primary:hover {
  background-color: #4d5dfb;
  color: #fff;
}

/* Service Cards */
.services .card {
  border: none;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease-in-out;
}

.services .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0a2c74;
}

.card-text {
  font-size: 1rem;
}

/* Modal Styling with Glass Effect */
.modal-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  animation: fadeInUp 0.7s ease-in-out;
}

.modal-body ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.modal-title {
  font-weight: bold;
  color: #fff;
}

.btn-close-white {
  filter: brightness(0) invert(1);
}

/* Why Us Section */
.why-us {
  background: linear-gradient(to right, #e0eafc, #cfdef3);
  padding: 50px 0;
}

.why-us h3 {
  font-weight: 600;
  color: #0a2c74;
}

.list-group-item {
  background-color: transparent;
  border: none;
  font-size: 1rem;
}

/* Contact Section */
.contact {
  background-color: #ffffff;
  padding: 40px 20px;
}

.contact .form-control {
  border-radius: 12px;
  box-shadow: none;
  border: 1px solid #ccc;
  padding: 10px 15px;
}

.contact .btn {
  margin-top: 10px;
}

/* Footer */
footer {
  background: #0a2c74;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

/* Animations */
@keyframes fadeIn {
  0% {opacity: 0; transform: translateY(20px);}
  100% {opacity: 1; transform: translateY(0);}
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .banner h1 {
    font-size: 2rem;
  }
  .banner p {
    font-size: 1rem;
  }
}
.why-us {
  background: linear-gradient(to right, #f2f7fd, #e3edf8);
}

.why-us h2 {
  font-weight: 700;
  color: #0a2c74;
}

.why-us .list-group-item {
  background: transparent;
  border: none;
  font-size: 1rem;
  padding-left: 0;
  color: #333;
}

.why-img img {
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  animation: floatIn 1.2s ease;
}

@keyframes floatIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
