.hero-section-modern {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #f0f7ff 0%, #ffffff 100%);
  overflow: hidden;
  position: relative;
}

.hero-container-modern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin-bottom: 10;
  margin-top: 10;
  gap: 2rem;
}

.hero-text-modern {
  flex: 1;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInText 1s forwards;
}

.hero-text-modern h1 {
  font-size: 3rem;
  color: #004aad;
  margin-bottom: 1rem;
}

.hero-text-modern p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-btn-modern {
  background-color: #004aad;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.hero-btn-modern:hover {
  background-color: #003080;
  transform: translateY(-3px);
}

.hero-image-modern {
  flex: 1;
  position: relative;
  opacity: 0;
  transform: translateX(50px);
  animation: slideInImage 1s forwards 0.5s;
  margin:50px;
}


.hero-image-modern img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Floating icons */
.floating-icon {
  position: absolute;
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
}

.icon-1 { top: 30%; left: 1%; animation-delay: 0s; }
.icon-2 { bottom: 11%; right: 19%; animation-delay: 0.5s; }
.icon-3 { top: 14.5%; right: 34.5%; animation: none; }

/* Animations */
@keyframes slideInText {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInImage {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* Mobile */
@media(max-width: 767px) {
  .hero-container-modern {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text-modern h1 {
    font-size: 2rem;
  }

  .hero-text-modern p {
    font-size: 1rem;
  }

  .hero-btn-modern {
    padding: 0.7rem 1.5rem;
  }

  .floating-icon {
    display: none;
  }
}




/**** Content ********/

.all-services-support {
  padding: 1rem 1rem;
  background: radial-gradient(circle at 20% 30%, #e0f7fa 0%, transparent 40%),
              radial-gradient(circle at 80% 70%, #ffe0e0 0%, transparent 40%),
              radial-gradient(circle at 50% 50%, #f3e5f5 0%, transparent 50%);
}


.all-services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.all-services-title {
  font-size: 2.75rem;
  font-weight: 700;
  text-align: center;
  color: #b91c1c;
  margin-bottom: 4rem;
}

.all-services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.all-services-left,
.all-services-right {
  flex: 1 1 45%;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.all-services-icon {
  font-size: 2rem;
  color: #dc2626;
  background-color: #ffe4e6;
  border-radius: 50%;
  padding: 0.5rem;
  flex-shrink: 0;
}

.all-services-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.all-services-text p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
}


/************  All Service  ************/

.all-services-scroll {
  padding: 4rem 1rem;
  background-color: #fff;
}

.all-services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.all-services-title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  color: #1f2937;
  margin-bottom: 2rem;
}

.all-services-row {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.all-service-card {
  flex: 0 0 auto;
  width: 180px;
  height: 160px;
  background-color: #fef2f2;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 1rem;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.all-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.all-service-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #dc2626;
}

.all-service-title {
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
}

