* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #f8faff;
  color: #1f2937;
  line-height: 1.6;
}

/* HEADER */
.header {
  max-width: 1100px;
  margin: 16px auto;
  padding: 12px 20px;
  background: #ffffff;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.header-left {
  font-weight: 600;
  color: #2563eb;
}

.header-right a {
  color: #2563eb;
  font-size: 18px;
}

/* SECTIONS */
.section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.section h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.section-text {
  max-width: 700px;
  margin: auto;
  color: #4b5563;
}

/* HERO */
.hero {
  margin-top: 60px;
}

.hero-image img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 32px;
}

.hero h2 {
  font-size: 18px;
  color: #2563eb;
  margin-bottom: 10px;
}

.hero p {
  max-width: 600px;
  margin: 14px auto;
  color: #4b5563;
}

.hero-buttons {
  margin-top: 20px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  margin: 6px;
  font-weight: 500;
}

.primary {
  background: #2563eb;
  color: white;
}

.secondary {
  border: 1px solid #2563eb;
  color: #2563eb;
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* PORTFOLIO */
.portfolio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.video-box {
  background: #e5e7eb;
  height: 160px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
}

/* PRICING */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.price-card {
  background: white;
  padding: 26px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.note {
  margin-top: 10px;
  font-size: 14px;
  color: #6b7280;
}

/* NUMBERS */
.numbers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.number-card {
  background: white;
  padding: 26px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.number-card span {
  font-size: 32px;
  color: #2563eb;
  font-weight: 700;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px 20px;
  color: #6b7280;
  font-size: 14px;
}

footer a {
  color: #2563eb;
  text-decoration: none;
}

/* ANIMATION */
.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}
.site-footer {
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
  color: #6b7280;
  background: transparent;
}

.site-footer p {
  margin: 0;
}

.video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* gap between videos */
  justify-content: center;
  padding: 10px;
}

.video-box {
  position: relative;
  width: 300px;   /* reel width */
  height: 550px;  /* reel height */
  overflow: hidden;
  border-radius: 20px;
  background-color: #f2f2f2;
  flex-shrink: 0;
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills the reel frame */
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  pointer-events: none;
  text-shadow: 0 0 5px rgba(0,0,0,0.7);
}

/* Responsive for smaller screens */
@media (max-width: 500px) {
  .video-box {
    width: 90%;
    height: 60vh;
  }
}
