/* ==== Welcome Section ==== */
.welcome-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.welcome-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(30px) translateY(-20px);
  }
}

.welcome-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.welcome-content {
  text-align: center;
}

.welcome-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: #267099;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.welcome-text h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 45%;
  transform: translateX(-50%);
  width: 114px;
  height: 4px;
  background: linear-gradient(90deg, #ffca28, #ffc107);
  border-radius: 2px;
}

.welcome-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #37474f;
  max-width: 800px;
  margin: 0 auto 60px;
}

/* Stats Section */
.welcome-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffca28, #ffc107);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #267099;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #267099, #1976d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 16px;
  color: #546e7a;
  font-weight: 500;
}

/* Features Section */
.welcome-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.welcome-feature {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.welcome-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.05), rgba(25, 118, 210, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.welcome-feature:hover::before {
  opacity: 1;
}

.welcome-feature:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.welcome-feature .material-icons {
  font-size: 48px;
  color: #ffca28;
  margin-bottom: 20px;
  display: inline-block;
  transition: all 0.3s ease;
}

.welcome-feature:hover .material-icons {
  transform: scale(1.1) rotate(5deg);
  color: #ffc107;
}

.welcome-feature h3 {
  font-size: 22px;
  font-weight: 600;
  color: #267099;
  margin-bottom: 16px;
}

.welcome-feature p {
  font-size: 16px;
  line-height: 1.6;
  color: #546e7a;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
  .welcome-section {
    padding: 60px 0;
  }

  .welcome-text h2 {
    font-size: 32px;
  }

  .welcome-text p {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .welcome-stats {
    gap: 20px;
    margin-bottom: 60px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 14px;
  }

  .welcome-features {
    gap: 30px;
  }

  .welcome-feature {
    padding: 30px 20px;
  }
}

@media (max-width: 767px) {
  .welcome-section {
    padding: 40px 0;
  }

  .welcome-text h2 {
    font-size: 28px;
  }

  .welcome-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .stat-item {
    padding: 20px 15px;
  }

  .stat-number {
    font-size: 24px;
  }

  .welcome-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .welcome-feature {
    padding: 25px 20px;
  }

  .welcome-feature .material-icons {
    font-size: 40px;
  }

  .welcome-feature h3 {
    font-size: 20px;
  }

  .welcome-feature p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .welcome-container {
    padding: 0 16px;
  }

  .welcome-text h2 {
    font-size: 24px;
  }

  .welcome-text p {
    font-size: 15px;
  }

  .stat-item {
    padding: 15px 10px;
  }

  .stat-number {
    font-size: 20px;
  }

  .stat-label {
    font-size: 13px;
  }

  .welcome-text h2::after {
    left: 44%;
    width: 77px;
  }
}