/* GENERAL */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  line-height: 1.6;
  background: #fdfdfd;
  color: #333;
}
h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #222;
}
a {
  text-decoration: none;
  color: #0077ff;
}
.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #0077ff, #00c6ff);
  color: #fff;
  border-radius: 30px;
  transition: 0.3s;
}
.btn-primary:hover {
  transform: scale(1.05);
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero-content {
  z-index: 2;
  max-width: 800px;
}
.hero h1 span {
  color: #00c6ff;
}

/* SERVICES */
.services {
  padding: 4rem 2rem;
  background: #fafafa;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  padding: 2rem;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card i {
  font-size: 2.5rem;
  color: #00c6ff;
  margin-bottom: 1rem;
}

/* CTA */
.cta {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #0077ff, #00c6ff);
  color: #fff;
}

/* PARTNERS */
.partners {
  padding: 3rem 2rem;
  background: #fff;
}
.partner-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.partner-logos img {
  width: 120px;
  filter: grayscale(100%);
  transition: 0.3s;
}
.partner-logos img:hover {
  filter: grayscale(0%);
}

/* TEAM */
.team {
  padding: 4rem 2rem;
  background: #fafafa;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.team-card {
  background: #fff;
  padding: 1rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.team-card img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 1rem;
}

/* PORTFOLIO */
.portfolio {
  padding: 4rem 2rem;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.portfolio-grid img {
  width: 100%;
  border-radius: 12px;
}

/* LOGO CAROUSEL */
.logo-carousel {
  padding: 3rem 2rem;
  background: #fff;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 3rem;
  animation: scroll 15s linear infinite;
}
.carousel-track img {
  width: 120px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
