/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #0a0a0a;
  color: #f5f5f5;
  line-height: 1.6;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
}

h1, h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
  animation: fadeInUp 1s ease-in-out;
}

p {
  font-size: 1.1rem;
  text-align: center;
  animation: fadeIn 2s ease-in-out;
}

/* Hero Section */
.hero {
  background: linear-gradient(120deg, #000000, #ce0f0f);
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  animation: slideIn 1s ease-in-out;
}

.hero h1 {
  font-size: 3rem;
}

.hero p {
  font-size: 1.3rem;
  margin-top: 10px;
}

/* Services Section */
.services-section ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  animation: fadeIn 2s ease-in-out;
}

.services-list li {
  padding: 10px 0;
  font-size: 1.1rem;
  position: relative;
  padding-left: 20px;
}

/* Mission Section */
.mission-section p {
  max-width: 800px;
  margin: auto;
  font-size: 1.2rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  color: #918b8b;
  text-align: center;
  padding: 20px;
  background-color: #111;
}

/* Animations */
@keyframes slideIn {
  from {
    transform: translateY(-40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

.leaders-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.leaders-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.leaders-text {
  flex: 1;
  min-width: 300px;
}

.leaders-text h2 {
  font-size: 2.5rem;
  color: #d70b0b;
  margin-bottom: 20px;
}

.leaders-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 25px;
}

.btn-leaders {
  background-color: #ba1010;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  display: inline-block;
}

.leaders-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.leaders-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}




