/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #0d0d43;
  line-height: 1.7;
}

/* Container */
.container {
  max-width: 1140px;
  margin: auto;
  padding: 0 20px;
}

/* Banner */
.about-banner {
  background: #001f3f;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.about-banner h1 {
  font-size: 48px;
  margin-bottom: 10px;
}
.about-banner p {
  font-size: 18px;
}

/* Intro */
.intro-section {
  padding: 60px 10px;
  text-align: center;
}
.intro-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: rgb(0, 0, 0);
}
.intro-section p {
  max-width: 900px;
  margin: 10px auto;
  color: rgb(0, 0, 0);
}

/* Features */
.features-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}
.features-section h2 {
  font-size: 32px;
  color: #004080;
  margin-bottom: 40px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.feature-box {
  background: #fff;
  border-left: 5px solid #004080;
  padding: 30px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.feature-box:hover {
  transform: translateY(-5px);
}
.feature-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0d0d43;
}
.feature-box p {
  font-size: 15px;
  color: #333;
}

/* Mission */
.mission-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}
.mission-section h2 {
  font-size: 32px;
  color: #004080;
  margin-bottom: 20px;
}
.mission-section p {
  max-width: 900px;
  margin: auto;
  font-size: 18px;
}


.mission-section {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.columbbox{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /* background-color: #001f3f; */

    margin-top: 10px;
    margin-bottom: 10px;
}
.columbbox img{
    height: 300px;
    width: 500px;
    align-self: center;
}