

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  padding: 0 2rem;
  margin-top: 80px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  animation: slideInLeft 1s ease-out;
}

.hero-title {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #0660c7;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 2rem;
  font-weight: 400;
  text-align: justify;
}

.hero-image {
  animation: slideInRight 1s ease-out;
  max-width: 100%;
  height: auto;
}

.hero-image img,
.benefits img {
  border-radius: 20px;
}

.hero-visual {
  animation: slideInRight 1s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.iso-breakdown {
  margin-top: 5rem;
  background-color: #cde4ff91;
  padding: 5rem 0;
}

.iso-breakdown h3 {
  line-height: 1.4;
}

.iso-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 500px;
}

.iso-badge {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.iso-badge:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.iso-badge h3 {
  font-size: 1.5rem;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.iso-badge p {
  font-size: 0.9rem;
  color: #666;
}

/* Challenges Section */
.challenges {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.7);
}

.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.challenges-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.challenge-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.challenge-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.challenge-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1b4e8c;
}

.challenge-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

/* Benefits Section */
.benefits {
  padding: 6rem 2rem;
  background-color: #cde4ff91;
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
}

.benefits-list i {
  color: #1b4e8c;
  font-size: 1.5rem;
}

/* Process Section */
.process {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.8);
}

.process-timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #1b4e8c;
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-step:nth-child(even) .process-content {
  margin-left: 120px;
  margin-right: 2rem;
}

.process-step:nth-child(even) .process-number {
  left: 50px;
  right: auto;
  transform: translate(-50%, -50%);
}

.process-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-left: 120px;
  margin-right: 2rem;
  transition: all 0.3s ease;
}

.process-content:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.process-number {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: #1b4e8c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  z-index: 10;
}

/* Footer CTA */
.footer-cta {
  padding: 6rem 2rem;
  background-color: #1b4e8c;
  color: rgb(255, 255, 255);
  text-align: center;
}

.footer-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.footer-cta p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: white;
}

.cta-button-white {
  background: white;
  color: #041560;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button-white:hover {
  transform: translateY(-3px);
  background: white;
  color: #041560;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .process-timeline::before {
    left: 30px;
  }

  .process-step,
  .process-step:nth-child(even) {
    flex-direction: row;
  }

  .process-step:nth-child(even) .process-content {
    margin-left: 80px;
    margin-right: 0;
  }

  .process-number {
    left: 30px;
  }

  .process-content {
    margin-left: 80px;
    margin-right: 0;
  }
  .iso-breakdown h3{
    font-size: 2rem;
  }
}

/* Why Choose Us Section */
.why-choose-us {
  background-color: #cde4ff91;
  padding: 4rem 0;
}

.why-choose-us p {
  padding-bottom: 2rem;
}

.why-choose-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.why-choose-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.why-choose-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: #1b4e8c;
  font-size: 3rem;
  transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-choose-card h4 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.why-choose-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

