/* ================= PAGE HERO ================= */
.page-hero {
  margin-top: 85px;
  height: 220px;
  background: #2b2f3a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
}

/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 90px 0;
  background: #ffffff;
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-content {
  flex: 1;
}

.about-tag {
  font-size: 14px;
  font-weight: 500;
  color: #0a2540;
  display: inline-block;
  margin-bottom: 14px;
  padding-left: 12px;
  position: relative;
}

.about-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 14px;
  background: #0a2540;
}

.about-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin-bottom: 18px;
}

.about-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  max-width: 520px;
  margin-bottom: 18px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0a2540;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.about-btn:hover {
  background: #123a6f;
}

/* About Image */
.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 120px 20px 120px 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ================= JOURNEY + MISSION ================= */
.journey-section {
  background: linear-gradient(
      rgba(10, 37, 64, 0.85),
      rgba(10, 37, 64, 0.85)
    ),
    url("../images/solar-bg.jpg") center/cover no-repeat;
  padding: 90px 0;
  color: #ffffff;
}

.journey-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.journey-box h3 {
  font-size: 30px;
  margin-bottom: 18px;
}

.journey-box p {
  font-size: 14.5px;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 16px;
}

/* ================= TEAM SECTION ================= */
.team-section {
  padding: 90px 0;
  background: #ffffff;
  text-align: center;
}

.team-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}

.team-subtitle {
  font-size: 15px;
  color: #666;
  max-width: 780px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.team-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.team-card img {
  width: 70px;
  margin-bottom: 18px;
}

.team-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #222;
}

.team-card span {
  font-size: 14px;
  color: #666;
}

/* ================= FLOATING CALL ICON ================= */
.call-float {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 52px;
  height: 52px;
  background: #0a2540;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  z-index: 1000;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .about-wrapper {
    flex-direction: column;
  }

  .journey-wrapper {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .page-hero h1 {
    font-size: 28px;
  }
}
/* ===== FOOTER ===== */
.site-footer {
  background: #0a1f3f;
  color: #fff;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.site-footer h4 {
  margin-bottom: 14px;
  font-size: 16px;
}

.site-footer p,
.site-footer li {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
}

.site-footer ul {
  list-style: none;
}

.site-footer li {
  margin-bottom: 8px;
}

.social-icons span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: #0a1f3f;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 10px;
}

.footer-bottom {
  margin-top: 40px;
  padding: 16px;
  text-align: center;
  font-size: 13px;
  background: #07172f;
}
/* ================= FOOTER FIX ================= */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}