/* ---------------- Hero ---------------- */
.about-hero {
  position: relative;
  height: 60vh;
  background: url('images/corporate\ gifts3.png') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5); /* overlay */
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease forwards;
}

.about-hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.2rem;
}
/* ---------------- Who We Are ---------------- */
.who-we-are {
  text-align: center;
  padding: 4rem 5%;
  background: #f9f9f9; /* light gray background to separate from hero */
}

.who-we-are h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0a1a3f;
}

.who-we-are p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

/* ---------------- Mission & Vision ---------------- */
.mission-vision {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 5%;
  background: white;
}

.mission-vision .card {
  flex: 1 1 250px;
  max-width: 300px;
  background: #f1f1f1;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-vision .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.mission-vision .card h3 {
  margin-bottom: 1rem;
  color: #0a1a3f;
}

.mission-vision .card p {
  color: #333;
  line-height: 1.6;
}


/* ---------------- About Cards ---------------- */
.about-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 5%;
  background: #f9f9f9;
}

.about-cards .card {
  flex: 1 1 250px;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.about-cards .card h3 {
  margin-bottom: 1rem;
  color: #0a1a3f;
}

.about-cards .card p {
  color: #333;
  line-height: 1.6;
}

/* ---------------- CTA ---------------- */
.cta {
  text-align: center;
  background: linear-gradient(135deg, #0a1a3f, #1e3a8a);
  color: white;
  padding: 3rem 2rem;
}

.cta-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  margin-top: 1rem;
  background: #f9c74f;
  color: #0a1a3f;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background: #e0b42f;
  transform: scale(1.05);
}

/* ---------------- Animations ---------------- */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px);}
  100% { opacity: 1; transform: translateY(0);}
}

/* ---------------- Responsive ---------------- */
@media (max-width: 768px) {
  .about-hero h2 {
    font-size: 2rem;
  }
  .about-hero p {
    font-size: 1rem;
  }
  .about-cards {
    flex-direction: column;
    align-items: center;
  }
}
.mission-vision {
  display: flex;
  gap: 40px;
  padding: 70px 6%;
  background: #f9f9f9;
}

.mission-vision .card {
  flex: 1;
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-vision .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

.card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #ff7a00;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.mission-vision h3 {
  font-size: 24px;
  font-weight: 800;
  color: #0a1a3f;
  margin-bottom: 15px;
}

.mission-vision p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}
@media (max-width: 768px) {
  .mission-vision {
    flex-direction: column;
    text-align: center;
  }
}
.search-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 25px 0 40px;
}

.search-bar {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;          /* 🔥 forces perfect centering */
  position: relative;
}

.search-bar input#searchInput {
  width: 100%;
  text-align: center;      /* 🔥 centers text */
  padding: 16px 20px;
  font-size: 18px;
  border: none;
  border-bottom: 3px solid navy;
  outline: none;
  background: transparent;
}

.search-bar input#searchInput::placeholder {
  text-align: center;      /* 🔥 centers placeholder */
  color: #888;
}

.search-bar input#searchInput:focus {
  border-bottom-color: #0056b3;
}

