	:root {
  --primary-color: #0071dc;
  --secondary-color: #070b3b;
  --bg-color: #f5f7fa;
  --text-color: #333;
}

body {
  line-height: 1.6;
}

.section {
  margin-bottom: 100px;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100px;
  height: 5px;
  background-color: var(--secondary-color);
}

/* Hero Section */
.hero {
  padding: 80px 0;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #dfdfdf 0%, #001f66 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero .banner {
  flex-direction: row-reverse;
  gap: 80px;
}
@keyframes moveBackground {
  0% {
    background-position: 0 0, 25px 25px;
  }
  100% {
    background-position: 50px 50px, 75px 75px;
  }
}

.hero-content {
  max-width: 800px;
  z-index: 1;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-content .btn,
.section .btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-content .btn:hover,
.section:hover .btn {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Products Section */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.product {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.product:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.product img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}

.product-content {
  padding: 30px;
}

.product h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.product p {
  color: #666;
  margin-bottom: 20px;
}

.product ul {
  list-style-type: none;
  padding: 0;
}

.product li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.product li::before {
  content: "✓";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
}

/* Innovation Section */
.innovation {
  display: flex;
  align-items: center;
  gap: 60px;
}

.innovation-image {
  flex: 1;
  position: relative;
}

.innovation-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.innovation-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 5px solid var(--secondary-color);
  border-radius: 15px;
  z-index: -1;
}

.innovation-content {
  flex: 1;
}

.innovation-content ul {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
}

.innovation-content li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.innovation-content li::before {
  content: "→";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

/* About Section */
.about {
  background-color: white;
  padding: 80px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta {
  text-align: center;
  background-color: var(--primary-color);
  color: white;
  padding: 80px 0;
  border-radius: 15px;
}

.cta h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.product-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.category {
  flex: 1 1 300px;
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.category img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.category-content {
  padding: 20px;
}

.category h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.category p {
  color: #666;
  font-size: 0.9rem;
}
/* Ecosystem Section */
.ecosystem {
  margin-bottom: 4rem;
  background-color: #0d1257;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.ecosystem-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .ecosystem-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ecosystem-item {
  text-align: center;
}

.ecosystem-item img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 1rem;
}
@media screen and (max-width: 992px) {
  .hero .banner {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .innovation {
    flex-direction: column;
  }

  .about {
    padding: 40px;
  }
  .product-categories {
    flex-direction: column;
  }
}

