@media (max-width: 768px) {
  .page-hero {
    min-height: 300px;
    height: 40vh;
    background-attachment: scroll;
    /* Disable parallax on mobile for better performance */
  }

  .page-hero h1 {
    font-size: 2.5rem;
  }

  .page-hero .breadcrumb {
    font-size: 12px;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .page-hero {
    min-height: 250px;
    height: 35vh;
  }

  .page-hero h1 {
    font-size: 2rem;
  }
}/* Welcome Section New */
.welcome-section {
  padding: 40px 8%;
  background: #fff;
}

.welcome-section .container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  max-width: 100%;
}

.welcome-section .welcome-content {
  flex: 1;
  min-width: 300px;
}

.welcome-section .welcome-content h4 {
  color: var(--secondary-color, #C18E11);
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 10px;
}

.welcome-section .welcome-content h2 {
  color: var(--primary-color, #5B0000);
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.welcome-section .welcome-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.welcome-section .btn-gold {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color, #C18E11);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid var(--secondary-color, #C18E11);
  transition: background 0.3s, color 0.3s;
  margin-top: 10px;
}

.welcome-section .btn-gold:hover {
  background: transparent;
  color: var(--secondary-color, #C18E11);
}

.welcome-section .welcome-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.welcome-section .welcome-image img {
  width: 250px;
  max-width: 100%;
  border-radius: 10px;
}

/* Vision Section */
.vision-section {
  padding: 0 8%;
  background: linear-gradient(135deg, var(--primary-color) 0%, #5c0000 100%);
  color: white;
  margin-bottom: 60px;
}

.vision-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.vision-section .container > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 40px;
}

.vision-section .container > div:last-child {
  height: 180px;
}

.vision-section h2 {
  font-size: 28px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.vision-section p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.95;
}

.vision-section img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0;
}

/* Mission Section */
.mission-section {
  padding: 0 8%;
  background: linear-gradient(135deg, var(--primary-color) 0%, #5c0000 100%);
  color: white;
}

.mission-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.mission-image {
  order: 1;
  height: 180px;
}

.mission-content {
  order: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 40px;
}

.mission-section h2 {
  font-size: 28px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.mission-section p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.95;
}

.mission-section img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0;
}

/* Objectives Section */
.objectives-section {
  padding: 40px 8%;
  background: #fff;
}

.objectives-section .container {
  max-width: 100%;
}

.objectives-section h2 {
  text-align: center;
  font-size: 32px;
  color: var(--secondary-color);
  margin-bottom: 40px;
  font-weight: 700;
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.objective-item {
  background: #eceaea;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  border-left: 4px solid var(--primary-color);
  transition: transform 0.3s, box-shadow 0.3s;
}

.objective-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.objective-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  color: var(--primary-color);
}

.objective-icon svg {
  width: 100%;
  height: 100%;
}

.objective-item p {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .welcome-section,
  .vision-section .container,
  .mission-section .container,
  .team-grid,
  .objectives-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .mission-content,
  .mission-image {
    order: unset;
  }

  .welcome-section h2,
  .team-section h2,
  .objectives-section h2 {
    font-size: 24px;
  }
}
