.hero-section {
        background: url(./News-Media.jpg) ;
        background-size: cover;
        background-position: center;
        height: 60vh;
        position: relative;
        color: white;
        display: flex;
        align-items: center;
      }

      .hero-overlay {
        background-color: rgba(0, 0, 0, 0.4);
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
      }

      .hero-content {
        position: relative;
        z-index: 1;
        padding-left: 3rem;
      }

      .hero-subtitle {
        font-size: 1.2rem;
        letter-spacing: 1px;
      }

      .hero-title {
        font-size: 2.5rem;
        font-weight: bold;
        margin-top: 4%;
      }

      .underline {
        width: 320%;
        height: 3px;
        background-color: #ceaf5b;
        margin-top: 10px;
      }

      @media (max-width: 576px) {
        .hero-content {
          padding-left: 1rem;
        }

        .hero-title {
          font-size: 1.8rem;
        }

        .hero-subtitle {
          font-size: 1rem;
        }

        .underline {
          width: 90%;
        }
      }
       .card-hover {
      position: relative;
      overflow: hidden;
      border: none;
      box-shadow: 0 4px 8px rgba(8, 7, 7, 0.1);
      transition: transform 0.3s ease;
    }

    .card-hover img {
      width: 100%;
      height: auto;
      transition: transform 0.4s ease, filter 0.4s ease, opacity 0.1s ease;
    }

    .card-hover:hover img {
      transform: scale(1.05) rotate(3deg);
      filter: brightness(0.4);
      opacity: 0.8;
    }

    .card-title {
      margin-top: 15px;
      font-weight: 500;
      text-align: center;
    }
    .footer {
  background-color: #510024;
  color: white;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo-section {
  flex: 1 1 250px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo {
  width: 160px;
  height: auto;
}

.logo-text {
  font-weight: bold;
  font-size: 14px;
  line-height: 1.5;
}

.footer-links {
  flex: 2 1 600px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: -10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: white;
}

.footer-column {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 140px;
}

.footer-column li {
  margin-bottom: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
  color: white;
}

.footer-column li:hover {
  text-decoration: underline;
}

.footer-divider {
  border: none;
  height: 1px;
  background-color: #ccc;
  margin: 20px auto 10px;
  max-width: 95%;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  margin-top: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-top {
    text-align: center;
    gap: 10px;
  }

  .footer-logo-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
  }

  .logo-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer-logo {
    width: 120px;
  }

  .logo-text {
    font-size: 13px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    margin: 0;
  }

  .footer-column {
    margin: 0;
    padding: 0;
  }

  .footer-column li {
    margin-bottom: 5px;
    font-size: 13.5px;
  }

  .footer-divider {
    margin: 15px auto 5px;
  }

  .footer-bottom {
    font-size: 12.5px;
    margin-top: 0;
    padding-bottom: 10px;
  }
}
