/* === VIDEO BACKGROUND === */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

.video-foreground iframe {
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  object-fit: cover;
}

/* === NAVBAR === */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  flex-wrap: wrap;
  box-sizing: border-box;
}

nav .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin-left: auto;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #0000e5;
}

/* === RESPONSIVE NAV === */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  nav .logo {
    margin-bottom: 1rem;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.8);
    box-sizing: border-box;
    margin: 0;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    display: block;
    width: 100%;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }
}

/* === HERO SECTION === */
header {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 4rem;
  z-index: 2;
  color: white;
}

header img {
  width: 300px;
  margin-bottom: 20px;
}

header p {
  font-size: 1.5rem;
  margin: 1rem 0;
}

header a {
  padding: 0.75rem 2rem;
  background: #0000e5;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

header a:hover {
  background: #0000e5;
}

/* === GENERAL SECTION STYLING === */
section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
}

h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
  font-weight: bold;
  color: white;
}

/* === SERVICES === */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service {
  background-color: rgba(255, 255, 255, 0.75);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.service:hover {
  transform: translateY(-5px);
}

/* === TESTIMONIALS === */
.testimonials {
  background: #fff;
  border-left: 5px solid #0000e5;
  padding: 1rem 2rem;
  margin: 1rem 0;
  border-radius: 5px;
  font-style: italic;
}

/* === CTA SECTION === */
.cta {
  text-align: center;
  padding: 3rem 2rem;
  background: #0000e5;
  color: white;
}

.cta a {
  background: white;
  color: #0000e5;
  padding: 0.75rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1rem;
  display: inline-block;
  font-weight: bold;
}

/* === FOOTER === */
footer {
  background: #222;
  color: #aaa;
  text-align: center;
  padding: 2rem 1rem;
}

footer a {
  color: #f3f3f5;
  text-decoration: none;
}