/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #ffffff;
    line-height: 1.6;
  }
  
  /* Hero Section */
  .hero-section {
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    background-color: #003366; /* Navy Blue */
    background-image: url('mdfagm9.JPG'); /* Add your hero image */
    background-size: cover;
    background-position: center;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 1rem;
    color: #003366;
    background-color: #FFD700; /* Yellow */
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #e6b800; /* Darker Yellow */
  }
  
  /* Info Section */
  .info-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
  }
  
  .info-section h2 {
    color: #003366;
    margin-bottom: 40px;
    text-align: center;
    font-size: 2rem;
  }
  
  /* News Grid */
  .news-grid, .success-stories-grid, .events-grid, .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .news-item, .story-item, .event-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .news-item:hover, .story-item:hover, .event-item:hover {
    transform: translateY(-10px);
  }
  
  .news-item img, .story-item img, .event-item img {
    width: 100%;
    
    object-fit: cover;
  }
  
  .news-text, .story-text, .event-text {
    padding: 20px;
  }
  
  .news-text h3, .story-text h3, .event-text h3 {
    color: #003366;
    margin-bottom: 10px;
  }
  
  .news-text p, .story-text p, .event-text p {
    color: #555;
    margin-bottom: 20px;
  }
  
  .read-more, .register-button {
    padding: 10px 20px;
    font-size: 1rem;
    color: #003366;
    background-color: #FFD700; /* Yellow */
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .read-more:hover, .register-button:hover {
    background-color: #e6b800; /* Darker Yellow */
  }
  
  /* Report Violations Section */
  .violation-content {
    text-align: center;
  }
  
  .violation-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .violation-form button {
    padding: 10px 20px;
    background-color: #003366; /* Navy Blue */
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .violation-form button:hover {
    background-color: #002244; /* Darker Navy Blue */
  }
  
  /* Survey Section */
  .survey-content {
    text-align: center;
  }
  
  /* Gallery Section */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
  }
  
  .gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
  
    .news-grid, .success-stories-grid, .events-grid, .gallery-grid {
      grid-template-columns: 1fr;
    }
  }