:root {
  --primary-color: #032d55;
  --primarycolor: #0459a5;
  --secondary-color: #ff4d4d;
  --thirdcolor: #ffd967;
}
html, body {
  overflow-x: hidden;
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: url("https://images.unsplash.com/photo-1509062522246-3755977927d7?auto=format&fit=crop&w=1920&q=80")
    center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}
.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 45, 85, 0.7);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-section h1 {
  font-weight: 700;
  font-size: 2.8rem;
}
.hero-section p {
  font-size: 1.1rem;
  color: #eaeaea;
}

/* Headings (same as previous pages) */
.section-heading {
  color: var(--primary-color);
  font-size: 2.2rem;
  position: relative;
}
.section-heading::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: var(--thirdcolor);
  display: block;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.highlight {
  color: var(--secondary-color);
}
.highlight2 {
  color: var(--thirdcolor);
}
/* About Section */
.about-card {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: 0.4s ease;
}
.about-card:hover {
  transform: translateY(-6px);
 box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
} 

.about-image {
  max-width: 100%;
  /* border-radius: 12px; */
  transition: 0.4s ease;
}
.about-image:hover {
  transform: scale(1.05);
}

/* Vision Section */
.vision-section {
  background-color: var(--primary-color);
  padding: 70px 0;
}

/* Icons */
.values-icon {
  font-size: 2.3rem;
  color: var(--primarycolor);
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    height: 55vh;
    text-align: center;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
  .about-image {
    margin-top: 20px;
  }
}
