/* Why Choose Us Section Styles */

.why-choose-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

.why-choose-section .container {
  position: relative;
  z-index: 2;
}

/* Section Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(235, 190, 0, 0.1);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.section-badge i {
  color: var(--secondary-color);
}

/* Why Choose Image Section */
.why-choose-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color), #0347b8);
  border-radius: 20px;
  padding: 60px 40px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 60px rgba(2, 44, 130, 0.2);
}

.experience-badge {
  text-align: center;
  margin-bottom: 40px;
}

.badge-number {
  font-size: 5rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 4px 20px rgba(235, 190, 0, 0.3);
}

.badge-text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.stats-overlay {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.stats-overlay .stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 25px 20px;
  border-radius: 15px;
  flex: 1;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-overlay .stat-item h4 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 5px;
  line-height: 1;
}

.stats-overlay .stat-item p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Why Choose Content */
.why-choose-content h3 {
  color: var(--primary-color);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.why-choose-content .lead-text {
  font-size: 1.15rem;
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 35px;
}

/* Timeline Features */
.timeline-features {
  position: relative;
  padding-left: 20px;
}

.timeline-features::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  border-radius: 10px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  margin-left: -36px;
  box-shadow: 0 5px 20px rgba(2, 44, 130, 0.15);
  transition: all 0.3s ease;
}

.timeline-icon i {
  font-size: 1.3rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-icon {
  background: var(--primary-color);
  transform: scale(1.1);
}

.timeline-item:hover .timeline-icon i {
  color: var(--secondary-color);
}

.timeline-content h5 {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--dark-gray);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Highlight Cards */
.highlight-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(2, 44, 130, 0.1);
  border-radius: 20px;
  padding: 30px 25px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.highlight-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.highlight-card:hover::after {
  transform: scaleX(1);
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(2, 44, 130, 0.15);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(2, 44, 130, 0.2);
}

.highlight-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(2, 44, 130, 0.1), rgba(2, 44, 130, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.highlight-icon i {
  font-size: 2rem;
  color: var(--primary-color);
  transition: all 0.4s ease;
}

.highlight-card:hover .highlight-icon {
  background: linear-gradient(135deg, var(--primary-color), #0347b8);
  transform: rotate(360deg);
}

.highlight-card:hover .highlight-icon i {
  color: var(--secondary-color);
}

.highlight-content h4 {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.highlight-content p {
  color: var(--dark-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.highlight-badge {
  display: inline-block;
  background: rgba(235, 190, 0, 0.15);
  color: var(--primary-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Floating Background Shapes */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.floating-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  will-change: transform;
}

.floating-shapes .shape-1 {
  width: 140px;
  height: 140px;
  background: var(--primary-color);
  top: 8%;
  right: 10%;
  animation: float 22s ease-in-out infinite;
}

.floating-shapes .shape-2 {
  width: 90px;
  height: 90px;
  background: var(--secondary-color);
  top: 50%;
  left: 5%;
  animation: float 18s ease-in-out infinite reverse;
  animation-delay: 1s;
}

.floating-shapes .shape-3 {
  width: 110px;
  height: 110px;
  background: var(--primary-color);
  bottom: 20%;
  right: 15%;
  animation: float 20s ease-in-out infinite;
  animation-delay: 2s;
}

.floating-shapes .shape-4 {
  width: 70px;
  height: 70px;
  background: var(--secondary-color);
  bottom: 10%;
  left: 12%;
  animation: float 16s ease-in-out infinite;
  animation-delay: 0.5s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(25px, -25px) rotate(90deg);
  }
  50% {
    transform: translate(-20px, 20px) rotate(180deg);
  }
  75% {
    transform: translate(20px, 25px) rotate(270deg);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .why-choose-content h3 {
    font-size: 1.9rem;
  }

  .image-wrapper {
    min-height: 350px;
    padding: 50px 30px;
  }

  .badge-number {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .floating-shapes .shape {
    opacity: 0.04;
  }

  .floating-shapes .shape-1,
  .floating-shapes .shape-3 {
    width: 90px;
    height: 90px;
  }

  .floating-shapes .shape-2,
  .floating-shapes .shape-4 {
    width: 60px;
    height: 60px;
  }

  .why-choose-content {
    text-align: center;
  }

  .why-choose-content h3 {
    font-size: 1.7rem;
  }

  .why-choose-content .lead-text {
    font-size: 1.05rem;
  }

  .timeline-features {
    padding-left: 0;
    text-align: left;
  }

  .timeline-features::before {
    display: none;
  }

  .timeline-icon {
    margin-left: 0;
  }

  .image-wrapper {
    min-height: 320px;
    padding: 40px 25px;
  }

  .badge-number {
    font-size: 3.5rem;
  }

  .badge-text {
    font-size: 1.1rem;
  }

  .stats-overlay .stat-item h4 {
    font-size: 2rem;
  }

  .highlight-card {
    padding: 25px 20px;
  }

  .highlight-icon {
    width: 60px;
    height: 60px;
  }

  .highlight-icon i {
    font-size: 1.7rem;
  }
}

@media (max-width: 576px) {
  .why-choose-content h3 {
    font-size: 1.5rem;
  }

  .timeline-item {
    flex-direction: column;
    gap: 15px;
  }

  .image-wrapper {
    min-height: 300px;
    padding: 35px 20px;
  }

  .badge-number {
    font-size: 3rem;
  }

  .stats-overlay {
    flex-direction: column;
    gap: 15px;
  }

  .stats-overlay .stat-item h4 {
    font-size: 1.8rem;
  }

  .highlight-content h4 {
    font-size: 1.2rem;
  }
}
