body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  height: 100vh;
  background-color: #f6f5f2;
  color: #ffffff;
}

#active {
  color: #007aff;
}

#active:hover {
  color: #4e342e;
}

.content .navbar {
  height: 8vh;
  background-color: #1b2e83;
}

.navbar a {
  color: #fff;
}
.navbar a img {
  width: 50px;
  height: auto;
}

#carouselContainer {
  height: 40vh;
}

#carouselContainer .carousel-item img {
  height: 50vh;
  width: auto;
}

.card-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 60px 20px;
  background: #f8f9fa;
}

.card-section .card {
  width: 100%;
  max-width: 300px;
  background-color: #ffffff;
  border-radius: 12px;
  border: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.card .card-img-top {
  width: 100%;
  height: 20vh;
  object-fit: cover;
}

.card .card-body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 16px;
}

.card .card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f1b4c;
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
}

.card .card-text {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
}

.card-section .card .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007aff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  transition: background 0.3s ease;
}

.card .btn:hover {
  background-color: #005fcc;
}

.footer {
  background-color: #0f1b4c;
  color: #ffffff;
}

.footer {
  background: linear-gradient(135deg, #1b2e83, #0f1b4c);
  color: #f1f1f1;
  padding: 60px 20px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #f1f1f1;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #007aff;
}

.brand h2 {
  font-size: 24px;
  color: white;
  margin-bottom: 10px;
  margin-top: -70px;
}

.brand p {
  font-size: 14px;
  color: #ccc;
}

.social-icons a,
.app-buttons a {
  display: inline-block;
  margin-right: 10px;
  background: #007aff;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
  margin-top: 4px;
  transition: background 0.3s;
}

.social-icons a:hover,
.app-buttons a:hover {
  background: #005fcc;
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: #ccc;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  margin-top: 30px;
}
/* Mobile Responsive Design  */

@media (max-width: 480px) {
  .card-section {
    padding: 40px 10px;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    width: 100%;
  }

  .social-icons a,
  .app-buttons a {
    margin: 6px 5px;
  }
}
