/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background: #181818;
  color: #ccc;
}

header {
  color: #fff;
  text-align: center;
  padding: 40px;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: 2px;
  font-weight: 700;
}

nav {
  background: transparent;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-links {
  list-style-type: none;
  text-align: center;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline-block;
  margin: 0 20px;
}

.nav-links a {
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #4db8ff;
  text-decoration: underline;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  background: url('images/Wallpaper.jpg') center center/cover no-repeat;
  background-size: cover;
  padding-bottom: 40px;
  overflow: hidden;
}

.hero-section .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Video Section */
.m-power-50 {
  padding: 60px 20px;
  text-align: center;
}

.m-power-video-wrapper {
  display: flex;
  justify-content: center;
}

.m-power-video-wrapper iframe {
  width: 100%;
  height: 550px;
  max-width: 900px;
  border-radius: 16px;
  box-shadow: 0 6px 40px rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.m-power-video-wrapper iframe:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 50px rgba(77, 184, 255, 0.3);
}

/* Live Links */
.instagram-link {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #000;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
  z-index: 999;
}

.instagram-link:hover {
  background: #4db8ff;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #4db8ff;
  color: #fff;
  padding: 10px 15px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:hover {
  background: #007aff;
}
/* Features Section */
.features-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #222;
}

.features-section h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 30px;
}

.feature-items {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
  max-width: 300px;
  flex: 1 1 30%;
  text-align: center;
}

.feature-item h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 15px;
}

.feature-item p {
  color: #ccc;
  font-size: 1rem;
}

/* Gallery Section */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
  padding: 40px 20px;
}

.gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover,
.gallery img:focus {
  transform: scale(1.1);
  outline: none;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}
/* Features Section */
.m4-features {
  padding: 60px 20px;
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.m4-features h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.m4-features ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.m4-features li {
  font-size: 1.1rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.video-info-container {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 40px;
  background: #1a1a1a;
}

.video-embed-wrapper {
  flex: 1;
  min-width: 0;
}

.video-embed-wrapper iframe {
  width: 100%;
  height: 315px;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(255,255,255,0.1);
}

.video-info-text {
  flex: 1;
  color: #ccc;
  line-height: 1.8;
  font-size: 0.95rem;
}

.video-info-text a {
  color: #4db8ff;
  text-decoration: none;
}

.video-info-text a:hover {
  text-decoration: underline;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.nav-brand {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  z-index: 2;
}
