/* ===============================
   THEME VARIABLES (OLD THEME)
================================ */
:root {
  --primary: #262262;
  --secondary: #27aae1;
  --text-dark: #262262;
  --text-light: #555;
  --bg-main: #f8fbff;
  --bg-soft: #eef4ff;

  --radius-lg: 16px;
  --radius-md: 12px;

  --shadow-soft: 0 8px 28px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 16px 40px rgba(38, 34, 98, 0.16);
}

/* ===============================
   BASE
================================ */
.about-main {
  margin-top: 100px;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, var(--bg-main), var(--bg-soft));
}

section h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 30px;
}

section h2::after {
  content: "";
  width: 0px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  display: block;
  margin: 0 auto 0;
  border-radius: 2px;
}

/* ===============================
   HERO (OLD STYLE + POLISH)
================================ */
.project-hero {
  padding: 90px 20px 80px;
  text-align: center;
  position: relative;
}

.project-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><path d="M0,100 C300,300 700,0 1000,100 L1000,300 L0,300 Z" fill="%2327aae1" opacity="0.08"/></svg>') center/cover no-repeat;
}

.project-hero h1 {
  font-size: 64px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.project-hero .hero-subtitle {
  font-size: 20px;
  color: var(--text-light);
  max-width: 900px;
  margin: 18px auto 0;
  line-height: 1.7;
}

/* ===============================
   INTRO
================================ */
.intro-section {
  padding: 50px 20px;
  background: white;
  text-align: center;
}

.intro-text {
  max-width: 1500px;
  margin: auto;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
}

/* ===============================
   WHY CHOOSE US
================================ */
.why-section {
  padding: 60px 20px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1800px;
  margin: auto;
}

.why-item {
  background: white;
  border-radius: var(--radius-lg);
  padding: 60px 30px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.why-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.why-item .icon {
  font-size: 56px;
  margin-bottom: 22px;
}

.why-item h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
}

/* ===============================
   WHO WE ARE
================================ */
.who-section {
  padding: 60px 20px;
  background: #f9fcff;
  text-align: center;
}

.who-section p {
  max-width: 1500px;
  margin: auto;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-light);
}

/* ===============================
   MISSION & VISION
================================ */
.mv-section {
  padding: 60px 20px;
  background: white;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 6px 1fr;
  gap: 60px;
  max-width: 1800px;
  margin: auto;
}

.mv-col h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
}

.mv-col p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-light);
}

.mv-divider {
  background: linear-gradient(to bottom, var(--secondary), var(--primary));
  border-radius: 4px;
}

/* ===============================
   GOALS (SOFT GLASS – OLD THEME)
================================ */
.goals-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--bg-main), var(--bg-soft));
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  max-width: 1800px;
  margin: auto;
}

.goal-item {
  background: rgba(255, 255, 255, 0.85);
  padding: 40px 25px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.goal-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.goal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: white;
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.goal-item h4 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--primary);
}

.goal-item p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .project-hero h1 {
    font-size: 40px;
  }

  section h2 {
    font-size: 34px;
  }

  .why-grid,
  .goals-grid {
    grid-template-columns: 1fr;
  }

  .mv-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .mv-divider {
    width: 100%;
    height: 4px;
  }
}
