html, body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background: #e9edf3;
  color: #1b1b1b;
  line-height: 1.7;
}

header {
  background: #102a43;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.logo {
  font-weight: 600;
  font-size: 1.4em;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}

nav a:hover,
nav a.active {
  color: #f2a154;
}

.btn {
  background: #f2a154;
  color: #08121f;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}

.btn:hover {
  background: #f7b86d;
}

 
.about-hero {
  background: url("../images/background1.png") center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  position: relative;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 35, 0.6);
}

.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-text h1 {
  font-size: 2.4em;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.hero-text p {
  font-size: 1.1em;
  opacity: 0.9;
}

 
.about-content {
  padding: 80px 10%;
  background: #ffffff;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.about-img img {
  width: 100%;
  max-width: 480px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  color: #102a43;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.about-text p {
  margin-bottom: 18px;
  color: #1b1b1b;
  font-size: 1.05rem;
}

 
.mission-vision {
  text-align: center;
  padding: 70px 10%;
  background: #ffffff;
}

.mv-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.mv-box {
  background: #e9edf3;
  padding: 25px;
  border-radius: 10px;
  flex: 1 1 30%;
  width: 350px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease;
}

.mv-box:hover {
  transform: translateY(-5px);
}

.mv-box h3 {
  color: #f2a154;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.mv-box p {
  font-size: 0.95rem;
  color: #1b1b1b;
  line-height: 1.6;
}

 
@media (max-width: 900px) {
  .mv-container {
    flex-wrap: wrap;
  }
  .mv-box {
    flex: 1 1 100%;
    text-align: center;
  }
}


 
.why-us {
  background: #102a43;
  color: #ffffff;
  text-align: center;
  padding: 70px 10%;
}

.why-us h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 600;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  max-width: 320px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.feature h3 {
  color: #f2a154;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature p {
  font-size: 0.95rem;
  opacity: 0.9;
}

 
footer {
  background: #08121f;
  color: #ffffff;
  text-align: center;
  padding: 25px 10px;
  font-size: 0.9em;
}

 
@media (max-width: 900px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-img img {
    max-width: 350px;
    margin-bottom: 20px;
  }

  .mv-box {
    text-align: center;
  }
}
