* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #000;
  color: #fff;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #111;
  flex-wrap: wrap;
  height: 80px;
}

.logo {
  font-size: 1.2rem;
  font-weight: bold;
}

.menu-toggle {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: none;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #aaa;
  font-size: 1rem;
}

nav a:hover {
  color: #b832e0;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    flex-direction: column;
    width: 100%;
    display: none;
    margin-top: 10px;
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 10px 0;
    text-align: center;
    width: 100%;
  }
}

/* Hero */
.hero {
  text-align: center;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: url("Hero-section.png") center/cover no-repeat;
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 50%,
      rgba(0, 0, 0, 0.9) 100%
    ),
    url("Hero-section.png");
}

.profile-photo img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
}

.hero-content h1 {
  font-size: 3rem;
}

.hero-content p {
  margin: 10px 0;
  font-size: 1.1rem;
  color: #ccc;
  font-style: italic;
}

.btn {
  background: #b832e0;
  padding: 10px 25px;
  border-radius: 15px;
  color: white;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

.btn:hover {
  background: #C13584;
}

/* About */
.about {
  text-align: center;
  padding: 60px 20px;
  background: url("About-section.png") center/cover no-repeat;
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.9),
      rgba(0, 0, 0, 0.9)
    ),
    url("About-section.png");
}

.about h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about p {
  max-width: 800px;
  margin: 0 auto 20px;
  color: #aaa;
  font-size: 1.2rem;
}

.services span {
  display: inline-block;
  border: 1px solid #b832e0;
  padding: 8px 12px;
  margin: 5px;
  border-radius: 20px;
  font-size: 1rem;
  font-style: oblique;
}

/* Portfolio */
.portfolio {
  padding: 40px 20px;
}

.portfolio h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

/* Video Groups */
.video-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.video-card {
  background: #111;
  padding: 8px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-card video {
  width: 100%;
  height: auto;
  aspect-ratio: 9/16;
  object-fit: contain;
  border-radius: 10px;
}

.video-card p {
  margin-top: 5px;
  font-size: 0.95rem;
  color: #ccc;
  text-align: center;
}

/* Responsive Groups */
@media (max-width: 1200px) {
  .video-group {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .video-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .video-group {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .video-card {
    flex: 0 0 70%;
    scroll-snap-align: start;
  }
}

/* Testimonials */
.testimonials {
  padding: 40px 20px;
  text-align: center;
}

.testimonials img {
  width: 90%;
  max-width: 800px;
  border-radius: 10px;
}

/* Contact */
.contact {
  padding: 40px 20px;
  text-align: center;
}

.social-button {
  display: inline-block;
  padding: 10px 20px;
  margin: 10px;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.instagram {
  background: #b832e0;
}

.instagram:hover {
  background: #C13584;
}

.whatsapp {
  background: #25D366;
}

.whatsapp:hover {
  background: #128C7E;
}

.footer {
  margin-top: 20px;
  color: #888;
  font-size: 1rem;
  text-align: center;
}

@media (max-width: 768px) {
  nav {
    position: absolute;      /* Overlay everything */
    top: 80px;               /* Below navbar */
    left: 0;
    width: 100%;
    background-color: #111;  /* Dark background */
    border-radius: 0 0 10px 10px; /* Rounded bottom corners */
    flex-direction: column;
    display: none;           /* Hidden by default */
    padding: 10px 0;
    z-index: 1000;           /* On top of everything */
  }

  nav.active {
    display: flex;           /* Show when toggle clicked */
  }

  nav a {
    padding: 12px 0;
    text-align: center;
    width: 100%;
    color: #fff;
  }

}