body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f5f5f5;
    color: #333;
  }
  
 
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .nav-links a:hover {
    color: #ffc107;
  }
  
  /* Hero Section */
  .hero {
    background: url('officers.jpg') center/cover no-repeat;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-overlay {
    background: rgba(250, 1, 1, 0.248);
    color: red;
    padding: 40px;
    text-align: center;
    width: 100%;
  }
  
  .hero-title {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  /* Services Section */
  .ourservices {
    padding: 50px 20px;
    text-align: center;
  }
  
  .ourservice {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #222;
    background: rgba(227, 7, 7, 0.276);
  }
  
  .service-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .service-grid li {
    background: white;
    border-left: 5px solid red;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
  }
  
  .service-grid li:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .service-grid i {
    margin-right: 10px;
    color: red;
  }
  
  /* Footer */
 
  
  .footer-contact {
    margin-bottom: 10px;
  }
  
