.procede-hero {
  background: url('../images/r3a.JPG') no-repeat center center/cover;
  height: 55vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-overlay {
  background: linear-gradient(to bottom right, rgba(0, 30, 60, 0.6), rgba(0, 95, 163, 0.5));
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  animation: fadeIn 1.2s ease-in-out;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  color: #e6f8ff;
}

.hero-content p {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
  color: #e6f0f8;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* ===== Responsive for Hero ===== */
@media (max-width: 991px) {
  .procede-hero {
    height: auto;
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-content p {
    font-size: 1.05rem;
  }
}

/* ===== Animations ===== */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== Main Section ===== */
.procede-main {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.procede-grid {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.procede-image {
  flex: 1 1 450px;
  background: url('../images/precede.JPG') no-repeat center center/cover;
  height: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  animation: fadeIn 1.3s ease-in-out;
}

.steps-content {
  flex: 1 1 500px;
  animation: fadeIn 1.5s ease-in-out;
}

.steps-title {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #005fa3;
  font-family: 'Playfair Display', serif;
}

.steps-list {
  list-style: decimal;
  padding-left: 22px;
  line-height: 1.8;
  color: #333;
  font-size: 1.05rem;
}

.steps-list li {
  margin-bottom: 14px;
  padding-left: 6px;
}

.steps-note {
  margin-top: 25px;
  color: #444;
  font-style: italic;
  font-size: 1rem;
}

/* ===== Enhancements ===== */
.steps-list li::marker {
  color: #005fa3;
  font-weight: bold;
}

.steps-content,
.procede-image {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.procede-image:hover {
  transform: scale(1.01);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .procede-grid {
    flex-direction: column;
  }

  .procede-image {
    width: 100%;
    height: 300px;
    margin-bottom: 40px;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

/* ===== Animations ===== */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
