* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: serif;
    }

    body{
      background-color: #eaeaea;
       background-color: #888;
    }
    header {
      background-color: #181c4e;
      padding: 10px 0;
      font-family: serif;
    }

    .logo-header-content {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      padding: 20px 20px;
      margin-bottom: 10px;
    }

    .logo {
      height: 140px;
    }

    .heading1 {
      color: white;
      font-size: 30px;
      margin-bottom: 8px;
    }

    .headings {
      color: white;
      font-size: 19px;
    }

    .navbar {
      background-color: white !important;
    }

    .navbar-nav .nav-link,
    .navbar-brand {
      color: black !important;
    }

    .btn-outline-success {
      color: black;
      border-color: black;
    }

    .btn-outline-success:hover {
      background-color: black;
      color: white;
    }

    .carousel-item {
      position: relative;
      height: 800px;
    }

    .carousel-item img {
      height: 100%;
      width: 100%;
      object-fit: cover;
    }

    .carousel-item::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.4);
      /* black transparent layer */
      z-index: 1;
      pointer-events: none;
      /* <-- Add this */
    }

    .carousel-inner {
      height: 800px;
    }

    /* Optional: add content on top of the overlay */
    .carousel-caption {
      z-index: 2;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: white;
      text-align: center;
      width: 100%;
    }

    .news_and_events {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 40px;
  background-color: #181c4e;
  color: white;
}

.nae {
  font-size: 25px;
  margin: 0;
}

.nae_btn {
  background-color: white;
  color: #181c4e;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

.nae_btn:hover {
  background-color: #181c4e;
  color: white;
  border: 1px solid white;
}

    @media (max-width: 768px) {
      .heading1 {
        font-size: 19px;
      }

      .headings {
        font-size: 14px;
      }

      .logo {
        height: 80px;
      }
    }

    @media (max-width: 576px) {
      .heading1 {
        font-size: 12px;
      }

      .headings {
        font-size: 12px;
      }

      .logo {
        display: block;

      }
    }

    
    .main_section2{
      background-color: white;
      /* padding: 40px 20px; */
      max-width: 1200px;
      margin: auto;
      min-height: auto;
       padding: 40px 15px;
    }
    .home_heading{
     
       color: white;
      font-weight: bold;
      margin-bottom: 30px;
    }

    .quote{
      margin-bottom: 12px;
      text-decoration: none;
      color: red;
    }
    /* .main_section2{
      min-height: 100%;
    } */
    .c1{
      background-color: #181c4e;
      color: white;
      border-radius: 10px;
      text-align: center;
      padding: 10px 0;
      border-bottom: 2px solid #181c4e;
      margin-bottom: 20px;
    }
    .main_section3 {
      
      padding: 40px 15px;
    }
    .person-card {
      background: white;
      border-radius: 15px;
      padding: 20px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
      transition: transform 0.3s;
      height: 100%;
      margin-top: 10px;
    }

    .person-card:hover {
      transform: translateY(-10px);
    }


    .person-role {
      font-weight: bold;
      color: #181c4e;
      margin-top: 15px;
    }

    .person-message {
      font-size: 15px;
      color: #555;
    }
    .contact-section {
  background-color: #181c4e;
  padding: 60px 20px;
  color: white;
}

.contact-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.contact-card {
  background-color: #181c4e;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.row.equal-height {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.contact-map {
  display: flex;
  flex-direction: column;
}

.map-iframe {
  flex: 1;
  width: 100%;
  border: 0;
  border-radius: 10px;
}

.foot{
  width: 100%;
  height: 30%;
  background-color: #181c4e;
}
.copy{
  padding-top: 50px;
  text-align: center;
  color: white;
}