	.hero {
  background: linear-gradient(135deg, #0047ab, #4169e1);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
}

.hero p {
  font-size: 1.4em;
  max-width: 800px;
  margin: 0 auto 30px;
  animation: fadeInUp 1s ease-out 0.3s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-cta {
  display: inline-block;
  background: white;
  color: #0047ab;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.6s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-cta:hover {
  background: #e6e6e6;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s infinite alternate;
}

.hero-bg::before {
  top: -100px;
  left: -100px;
}

.hero-bg::after {
  bottom: -100px;
  right: -100px;
  animation-delay: 3s;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-background::before,
.hero-background::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform-origin: center;
  animation: rotate 20s linear infinite;
}

.hero-background::before {
  background: radial-gradient(circle, transparent 20%, #0066cc 80%);
}

.hero-background::after {
  background: linear-gradient(45deg, transparent 49%, rgba(0, 170, 255, 0.3) 50%, transparent 51%);
  animation-duration: 30s;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(30px, 30px) rotate(360deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 60px;
  background: #fff;
  padding: 0;
}

.service {
  flex-basis: calc(33.333% - 20px);
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.service:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service h2 {
  color: #0047ab;
  margin-bottom: 15px;
}

.cta {
  /*background: #0047ab;*/
  /*color: white;*/
  text-align: center;
  padding: 80px 0;
}

.cta h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  background: #0071dc;
  color: #fff;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  margin-top: 20px;
}

.cta-button:hover {
  background: #e6e6e6;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.products {
  padding: 80px 0;
  background: #fff;
}

.products h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #0047ab;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  background: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  margin-bottom: 10px;
  color: #0047ab;
}

@media (max-width: 768px) {
  .service {
    flex-basis: 100%;
  }
  .hero h1 {
    font-size: 2.5em;
  }
  .hero p {
    font-size: 1.2em;
  }
}

