/* Main Website Styles */

/* General Styles */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

/* Header Styles */
.navbar {
  padding: 15px 0;
}

.navbar-brand img {
  max-height: 40px;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

/* Hero Section */
.hero-section {
  height: 500px;
  overflow: hidden;
}

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

/* Section Styles */
section {
  padding: 60px 0;
}

section h2 {
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

section h2:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  background-color: #dc3545;
  bottom: -10px;
  left: 25%;
}

/* Card Styles */
.card {
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
footer {
  background-color: #dc3545;
  color: white;
  padding: 50px 0 20px;
}

footer h5 {
  margin-bottom: 20px;
  font-weight: 600;
}

footer a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.social-icons a {
  font-size: 1.5rem;
  margin-right: 15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-section {
    height: 300px;
  }

  .hero-section h1 {
    font-size: 2rem;
  }
}

