* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 58, 138, 0.1);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-image {
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  padding: 100px 0;
  background-color: #f8fafc;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 40px;
  position: relative;
}

.about-text h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  border-radius: 2px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 25px;
  text-align: left;
}

.about-text strong {
  color: #1e40af;
  font-weight: 600;
}

/* ========================================
   MISSION VISION VALUES
   ======================================== */
.mvv-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.mvv-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mvv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
}

.mvv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mvv-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.mvv-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
}

.mvv-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
}

.mvv-card ul {
  list-style: none;
  text-align: left;
}

.mvv-card li {
  padding: 8px 0;
  font-size: 1rem;
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
}

.mvv-card li:last-child {
  border-bottom: none;
}

.mvv-card li strong {
  color: #1e40af;
}

/* ========================================
   METHODOLOGY SECTION
   ======================================== */
.methodology-section {
  padding: 100px 0;
  background-color: #fff;
}

.methodology-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.methodology-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  border-radius: 2px;
}

.methodology-content {
  max-width: 900px;
  margin: 0 auto;
}

.methodology-text h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 20px;
  text-align: center;
}

.methodology-text > p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
  text-align: center;
  margin-bottom: 50px;
}

.methodology-steps {
  display: grid;
  gap: 30px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 30px;
  background: #f8fafc;
  border-radius: 15px;
  border-left: 5px solid #3b82f6;
  transition: all 0.3s ease;
}

.step:hover {
  background: #f1f5f9;
  transform: translateX(10px);
}

.step-number {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.cta-button-large {
  display: inline-block;
  background: #fff;
  color: #1e40af;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: #f8fafc;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .about-text h2,
  .methodology-section h2,
  .cta-content h2 {
    font-size: 2rem;
  }

  .mvv-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .step {
    flex-direction: column;
    text-align: center;
  }

  .step:hover {
    transform: translateY(-5px);
  }

  .methodology-text h3 {
    font-size: 1.6rem;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 100px 0 60px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .about-section,
  .mvv-section,
  .methodology-section,
  .cta-section {
    padding: 60px 0;
  }

  .mvv-card {
    padding: 30px 20px;
  }

  .step {
    padding: 20px;
  }
}
