/* Vision & Mission Section */
.vision-mission-section {
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-attachment: fixed;
}

.vision-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  padding: 40px 20px;
}

.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 60px;
  color: white;
}

.vm-column {
  flex: 1;
  text-align: center;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vm-column h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.vm-column p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
  color: #eee;
}

.divider {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  height: auto;
  align-self: stretch;
}

/* Executive Section */
.executive-section {
  padding: 100px 60px;
  background-color: #ffffff;
  font-family: 'Suisse Int\'l', sans-serif;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Ensure footer doesn't get overlapped */
footer {
  position: relative;
  z-index: 2;
  clear: both;
}

/* Footer push layout */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.gaa-footer {
  margin-top: auto;
}

/* Executive Layout */
.executive-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.executive-header {
  text-align: center;
  max-width: 900px;
}

.executive-header .subtitle {
  font-size: 16px;
  color: #cba44d;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.executive-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.executive-header .description {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

/* Executive Grid */
.executive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 60px 40px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  justify-items: center;
}

.executive-card {
  text-align: center;
  max-width: 240px;
}

.executive-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
}

.executive-card a {
  font-size: 18px;
  font-weight: bold;
  color: #111;
  margin-bottom: 6px;
  text-decoration: none;
  display: block;
}

.executive-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .vision-mission-section {
    min-height: 50vh;
    background-attachment: scroll;
  }

  .vision-overlay {
    padding: 30px 20px;
  }

  .vm-column h3 {
    font-size: 22px;
  }

  .vm-column p {
    font-size: 14px;
  }

  .executive-header h2 {
    font-size: 32px;
  }

  .executive-header .description {
    font-size: 16px;
  }

  .executive-card img {
    height: 220px;
  }

  .executive-card h3 {
    font-size: 16px;
  }

  .executive-card p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    gap: 40px;
    padding: 0 10px;
  }

  .vm-column {
    padding: 30px 10px;
  }

  .divider {
    display: none;
  }

  .vision-overlay {
    padding: 20px 15px;
  }

  .vm-column h3 {
    font-size: 20px;
  }

  .vm-column p {
    font-size: 13px;
  }

  .executive-section {
    padding: 60px 20px;
  }

  .executive-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .executive-card {
    max-width: 100%;
  }

  .executive-header h2 {
    font-size: 28px;
  }

  .executive-header .subtitle {
    font-size: 14px;
  }

  .executive-header .description {
    font-size: 14px;
  }

  .executive-card img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .vm-column h3 {
    font-size: 18px;
  }

  .executive-header h2 {
    font-size: 24px;
  }

  .executive-header .description {
    font-size: 13px;
  }

  .executive-card img {
    height: 180px;
  }

  .executive-card h3 {
    font-size: 15px;
  }

  .executive-card p {
    font-size: 12px;
  }
}


