* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
}
/* Header Section */
.sub-header {
  height: 50vh;
  width: 100%;
  background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)),
    url(./images/about.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: aqua;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.sub-header h1 {
  font-size: 48px; 
  font-weight: bold;
  margin-top: 60px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.2s ease-out forwards;
  animation-delay: 0.2s;
  text-shadow: 0 0 10px rgba(7, 7, 7, 0.7), 0 0 20px rgba(6, 5, 5, 0.5);
}


@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive  */
@media (max-width: 1024px) {
  .sub-header h1 {
    font-size: 40px;
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .sub-header h1 {
    font-size: 32px;
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .sub-header h1 {
    font-size: 24px;
    margin-top: 30px;
  }
}

body{
  background-color: #cee1f4;
}
/* About Us Section */
.about-us {
  width: 80%;
  margin: auto;
  padding: 80px 0;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.about-col {
  flex-basis: 48%;
  min-width: 300px;
}

.about-col h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.about-col p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.about-col img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Buttons */
.hero-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease-in-out;
}

.red-btn {
  border: 2px solid #f44336;
  background: transparent;
  color: #f44336;
}

.red-btn:hover {
  background: #f44336;
  color: #fff;
  box-shadow: 0 4px 12px rgba(244,67,54,0.4);
}
/* Mission & Vision Section */
.mission-vision {
  width: 80%;
  margin: auto;
  text-align: center;
  padding: 60px 0;
}

.mission-vision h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #2c3e50;
  position: relative;
}

.mission-vision h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #ff4081;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

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

.mv-card {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: 0.3s ease;
  text-align: center;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.mv-card i {
  font-size: 40px;
  color: #ff4081;
  margin-bottom: 15px;
}

.mv-card h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 15px;
}

.mv-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Footer */
.footer {
  background: linear-gradient(45deg, #2c3e50, #34495e);
  padding: 50px 20px;
  text-align: center;
  color: #bbb;
}

.footer h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 20px;
}

.footer p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.icons .fa-brands {
  font-size: 26px;
  margin: 0 12px;
  color: #bbb;
  transition: 0.3s ease;
  cursor: pointer;
}

.icons .fa-brands:hover {
  color: #ff4081;
  transform: scale(1.2);
}
