*{
  font-family: 'Inter', sans-serif;
}

html{
  scroll-behavior: smooth;
}

body{
  overflow-x: hidden;
  background: white;
}

.hero-overlay{
  background: rgba(0,0,0,0.55);
}

.hero-video{
  object-fit: cover;
}

.navbar-scroll{
  background: rgba(15,23,42,0.95);
  backdrop-filter: blur(10px);
}

.gradient-text{
  background: linear-gradient(to right, #06b6d4, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.primary-btn{
  background: #06b6d4;
  color: white;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.3s;
}

.primary-btn:hover{
  background: #0891b2;
}

.secondary-btn{
  border: 1px solid white;
  color: white;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.3s;
}

.secondary-btn:hover{
  background: white;
  color: #0f172a;
}

.section-subtitle{
  color: #06b6d4;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.section-title{
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 32px;
}

.center-title{
  margin-bottom: 0;
}

.section-description{
  color: #64748b;
  line-height: 2;
  margin-bottom: 32px;
}

.stat-number{
  font-size: 42px;
  font-weight: 700;
  color: #06b6d4;
}

.stat-text{
  color: #64748b;
  margin-top: 8px;
}

.capability-card{
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.35s;
}

.capability-card:hover{
  transform: translateY(-10px);
}

.card-icon{
  font-size: 48px;
  margin-bottom: 24px;
}

.card-title{
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.card-description{
  color: #64748b;
  line-height: 1.8;
}

.gallery-image{
  overflow: hidden;
}

.gallery-image img{
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-image:hover img{
  transform: scale(1.1);
}

.footer-title{
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-links{
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #94a3b8;
}

.footer-links a:hover{
  color: #06b6d4;
}