@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#05010a;
  color:white;
  overflow-x:hidden;
}

.bg-glow{
  position:fixed;
  width:500px;
  height:500px;
  background:#8f2dff;
  filter:blur(180px);
  top:-200px;
  right:-200px;
  opacity:0.25;
  z-index:-1;
}

.navbar{
  position:fixed;
  width:100%;
  top:0;
  padding:25px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(0,0,0,0.5);
  backdrop-filter:blur(10px);
  z-index:1000;
}

.logo{
  font-size:34px;
  font-weight:800;
}

.logo span{
  color:#b44cff;
}

.navbar ul{
  display:flex;
  gap:35px;
  list-style:none;
}

.navbar a{
  color:white;
  text-decoration:none;
  transition:0.3s;
}

.navbar a:hover{
  color:#b44cff;
}

.hero{
  min-height:100vh;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:60px;
  padding:140px 8%;
}

.tagline{
  color:#b44cff;
  letter-spacing:3px;
  margin-bottom:25px;
}

.hero h1{
  font-size:90px;
  line-height:0.95;
}

.hero h1 span{
  color:#b44cff;
}

.hero-text{
  margin-top:30px;
  font-size:20px;
  color:#d0d0d0;
  line-height:1.8;
}

.hero-buttons{
  display:flex;
  gap:20px;
  margin-top:40px;
}

.primary-btn,
.secondary-btn{
  padding:16px 32px;
  border-radius:14px;
  text-decoration:none;
  transition:0.3s;
  font-weight:600;
}

.primary-btn{
  background:#b44cff;
  color:white;
  box-shadow:0 0 25px rgba(180,76,255,0.4);
}

.primary-btn:hover{
  transform:translateY(-5px);
}

.secondary-btn{
  border:1px solid rgba(255,255,255,0.2);
  color:white;
}

.secondary-btn:hover{
  background:white;
  color:black;
}

.hero-right iframe{
  width:100%;
  height:700px;
  border:none;
  border-radius:30px;
  box-shadow:0 0 35px rgba(180,76,255,0.25);
}

.section{
  padding:120px 8%;
}

.section-heading{
  text-align:center;
  margin-bottom:60px;
}

.section-heading p{
  color:#b44cff;
  letter-spacing:3px;
  margin-bottom:15px;
}

.section-heading h2{
  font-size:56px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.service-card{
  background:#0d0717;
  padding:40px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.08);
  transition:0.4s;
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 30px rgba(180,76,255,0.2);
}

.service-icon{
  font-size:45px;
  margin-bottom:20px;
}

.service-card h3{
  margin-bottom:18px;
  font-size:24px;
}

.service-card p{
  color:#d0d0d0;
  line-height:1.8;
}

.reels-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.reel-card{
  overflow:hidden;
  border-radius:25px;
}

.reel-card iframe{
  width:100%;
  height:600px;
  border:none;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
}

.gallery-item{
  overflow:hidden;
  border-radius:25px;
  border:1px solid rgba(255,255,255,0.08);
  transition:0.4s;
}

.gallery-item:hover{
  transform:translateY(-10px);
  box-shadow:0 0 25px rgba(180,76,255,0.25);
}

.gallery-item img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
  transition:0.5s;
}

.gallery-item:hover img{
  transform:scale(1.08);
}

.about-box{
  background:#0d0717;
  padding:70px;
  border-radius:30px;
  text-align:center;
}

.about-tag{
  color:#b44cff;
  letter-spacing:3px;
  margin-bottom:15px;
}

.about-box h2{
  font-size:52px;
  margin-bottom:25px;
}

.about-text{
  max-width:900px;
  margin:auto;
  color:#d0d0d0;
  line-height:2;
  font-size:20px;
}

.contact-box{
  max-width:700px;
  margin:auto;
  background:#0d0717;
  padding:60px;
  border-radius:30px;
}

.contact-item{
  font-size:22px;
  margin:22px 0;
}

footer{
  padding:35px;
  text-align:center;
  color:#888;
  border-top:1px solid rgba(255,255,255,0.08);
}

@media(max-width:900px){

  .hero{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:58px;
  }

  .navbar ul{
    display:none;
  }

  .hero-right iframe{
    height:500px;
  }

  .section-heading h2{
    font-size:42px;
  }

}