body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #111;
  color: #fff;
}

.highlight {
  color: #FFC200;
}

/* About Section */
.about-section {
  padding: 60px 20px;
  background: #000;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.about-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
}

.about-content h3 {
  margin-top: 20px;
  color: #FFC200;
}

.about-content ul {
  margin-top: 10px;
  list-style: none;
  padding-left: 0;
}

.about-content ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #ccc;
}

.about-content ul li i {
  color: #FFC200;
  margin-right: 10px;
}

/* Parallax */
.parallax-section {
  background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  position: relative;
  text-align: center;
}

.parallax-section .overlay {
  background: rgba(0, 0, 0, 0.7);
  padding: 60px 20px;
  color: #fff;
  max-width: 800px;
  margin: auto;
  border-radius: 10px;
}

.parallax-section h2 {
  font-size: 32px;
  color: #FFC200;
}

/* Vision & Mission */
.vision-mission-section {
  padding: 60px 20px;
  background: #111;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
}

.vision-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1000px;
  margin: auto;
}

.vision-card {
  background: #1a1a1a;
  border: 1px solid #333;
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.vision-card:hover {
  transform: translateY(-5px);
}

.vision-card i {
  font-size: 30px;
  color: #FFC200;
  margin-bottom: 15px;
}

.vision-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #fff;
}

.vision-card p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
}
