* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: radial-gradient(circle at top, #0f2027, #000);
  color: white;
  height: 100vh;
  overflow-x: hidden;
}

/* 🔹 NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 50px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}

.logo {
  color: #00ffe7;
  letter-spacing: 3px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.navbar a:hover {
  color: #00ffe7;
}

/* 🔹 HERO */
.hero {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 85vh;
  padding: 20px;
}

.hero-content h2 {
  font-size: 3rem;
}

.glow {
  color: #00ffe7;
  text-shadow: 0 0 20px #00ffe7;
}

.hero-content p {
  margin: 20px 0;
  opacity: 0.8;
}

.buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 25px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 30px;
}

.primary {
  background: #00ffe7;
  color: black;
}

.secondary {
  background: transparent;
  color: #00ffe7;
  border: 1px solid #00ffe7;
}

/* 🔹 3D CARD */
.card-3d {
  width: 260px;
  height: 320px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  transition: 0.4s;
  box-shadow: 0 0 30px rgba(0,255,231,0.3);
}

.card-3d:hover {
  transform: rotateY(20deg) rotateX(10deg) scale(1.05);
}

.card-3d h3 {
  color: #00ffe7;
  font-size: 2rem;
}

.card-3d p {
  margin-top: 10px;
  opacity: 0.8;
}

/* 🔹 ABOUT PAGE */
.about {
  padding: 80px 50px;
  text-align: center;
}

.about-text {
  max-width: 700px;
  margin: 20px auto 60px;
  opacity: 0.8;
  line-height: 1.6;
}

.about-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.about-card {
  width: 260px;
  padding: 30px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transform-style: preserve-3d;
  transition: 0.4s;
  box-shadow: 0 0 25px rgba(0,255,231,0.25);
}

.about-card:hover {
  transform: rotateY(15deg) rotateX(10deg) scale(1.05);
}

.about-card h3 {
  color: #00ffe7;
  margin-bottom: 15px;
}

/* 🔹 TIMELINE */
.timeline {
  padding: 80px 50px;
  text-align: center;
}

.timeline-box {
  max-width: 500px;
  margin: 30px auto;
  padding: 25px;
  background: rgba(255,255,255,0.06);
  border-left: 4px solid #00ffe7;
  border-radius: 10px;
  text-align: left;
  transition: 0.3s;
}

.timeline-box:hover {
  transform: translateX(10px);
}

.timeline-box span {
  color: #00ffe7;
  font-weight: bold;
  font-size: 1.2rem;
}

/* 🔹 SERVICES PAGE */
.services {
  padding: 80px 50px;
  text-align: center;
}

.services-text {
  max-width: 700px;
  margin: 20px auto 60px;
  opacity: 0.8;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* 🔹 3D FLIP CARD */
.service-card {
  width: 260px;
  height: 180px;
  perspective: 1000px;
}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.service-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 25px rgba(0,255,231,0.25);
}

.card-front h3 {
  color: #00ffe7;
}

.card-back {
  transform: rotateY(180deg);
  font-size: 0.95rem;
  opacity: 0.9;
}

/* 🔹 WEB DEVELOPMENT PAGE */
.web-hero {
  padding: 60px 40px;
  text-align: center;
}

.web-hero p {
  max-width: 700px;
  margin: 20px auto;
  opacity: 0.85;
}

/* 🔹 TECH STACK */
.tech {
  padding: 80px 40px;
  text-align: center;
}

.tech-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 50px;
}

.tech-card {
  width: 180px;
  padding: 25px;
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  box-shadow: 0 0 25px rgba(0,255,231,0.25);
  transition: 0.4s;
}

.tech-card:hover {
  transform: translateY(-10px) scale(1.05);
  color: #00ffe7;
}

/* 🔹 PROCESS */
.process {
  padding: 80px 40px;
  text-align: center;
}

.process-steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.step {
  width: 200px;
  padding: 25px;
  background: rgba(255,255,255,0.07);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,255,231,0.2);
  transition: 0.3s;
}

.step:hover {
  transform: scale(1.08);
}

/* 🔹 DESIGN STUDIO PAGE */
.design-hero {
  padding: 90px 40px;
  text-align: center;
}

.design-hero p {
  opacity: 0.85;
  margin-top: 15px;
}

/* 🔹 GALLERY */
.gallery {
  padding: 80px 40px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.gallery-card {
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 0 25px rgba(0,255,231,0.25);
  transition: 0.3s;
}

.gallery-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
}

.gallery-card span {
  display: block;
  margin-top: 12px;
  color: #00ffe7;
  font-weight: bold;
  letter-spacing: 1px;
}

.gallery-card:hover {
  transform: scale(1.05) rotateY(6deg);
}


/* 🔹 BEFORE AFTER SLIDER */
.before-after {
  padding: 80px 40px;
  text-align: center;
}

.slider-box {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 40px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0,255,231,0.3);
}

.slider-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-after {
  clip-path: inset(0 50% 0 0);
}

#slider {
  width: 100%;
  margin-top: 15px;
}

/* 🔹 PROJECTS PAGE */
.projects-hero {
  padding: 90px 40px;
  text-align: center;
}

.projects-hero p {
  opacity: 0.85;
  margin-top: 15px;
}

/* 🔹 FILTER BUTTONS */
.filter {
  text-align: center;
  margin-top: 30px;
  gap: 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  background: rgba(0,255,231,0.1);
  border: 1px solid #00ffe7;
  border-radius: 25px;
  color: #00ffe7;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn:hover {
  background: #00ffe7;
  color: black;
}

/* 🔹 PROJECT CARDS */
.project-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  padding: 50px 500px;
}

.project-card {
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0,255,231,0.25);
  transition: 0.3s;
  text-align: center;
}

.project-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.project-card h3 {
  padding: 15px;
  color: #00ffe7;
  font-size: 1.1rem;
}

.project-card:hover {
  transform: scale(1.05) rotateY(5deg);
}


/* 🔹 MEDIA PAGE */
.media-hero {
  padding: 90px 40px;
  text-align: center;
}

.media-hero p {
  opacity: 0.85;
  margin-top: 15px;
}

/* 🔹 VIDEO GALLERY */
.video-gallery {
  padding: 80px 40px;
  text-align: center;
}

.videos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}

.video-card {
  width: 300px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 25px rgba(0,255,231,0.25);
  transition: 0.4s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-card:hover {
  transform: scale(1.05) rotateY(10deg);
}

.video-card video {
  width: 100%;
  border-bottom: 1px solid rgba(0,255,231,0.3);
}

.video-card p {
  padding: 10px;
  color: #00ffe7;
  font-weight: bold;
}

/* 🔹 GAMING / TECH LAB PAGE */
.gaming-hero {
  padding: 90px 40px;
  text-align: center;
}

.gaming-hero p {
  opacity: 0.85;
  margin-top: 15px;
}

/* 🔹 GAMING CARDS */
.gaming-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 50px 20px;
}

.card {
  width: 220px;
  height: 180px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0,255,231,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: bold;
  color: #00ffe7;
  transition: 0.3s;
  perspective: 1000px;
}

.card:hover {
  transform: rotateY(10deg) rotateX(10deg) scale(1.05);
}

/* 🔹 TESTIMONIALS / REVIEWS PAGE */
.testimonials-hero {
  padding: 90px 40px;
  text-align: center;
}

.testimonials-hero p {
  opacity: 0.85;
  margin-top: 15px;
}

/* 🔹 TESTIMONIAL CARDS */
.testimonials-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 50px 20px;
}

.testimonial-card {
  width: 280px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 0 25px rgba(0,255,231,0.25);
  text-align: center;
  transition: 0.3s;
  color: #00ffe7;
}

.testimonial-card:hover {
  transform: scale(1.05) rotateY(5deg);
}

.testimonial-card h4 {
  margin-top: 15px;
  color: #00ffe7;
  font-weight: bold;
}

/* 🔹 CONTACT PAGE */
.contact-hero {
  padding: 90px 40px;
  text-align: center;
}

.contact-hero p {
  opacity: 0.85;
  margin-top: 15px;
}

/* 🔹 CONTACT FORM */
.contact-form-section {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border-radius: 15px;
  border: none;
  background: rgba(255,255,255,0.08);
  color: #00ffe7;
  font-size: 1rem;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0,255,231,0.6);
}

.contact-form button {
  padding: 15px;
  border-radius: 25px;
  border: none;
  background: #00ffe7;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: scale(1.05);
}

/* 🔹 FOOTER */
footer {
  background: rgba(0,0,0,0.9);
  padding: 40px 20px;
  text-align: center;
  color: #00ffe7;
}

footer .social-icons {
  margin-top: 20px;
}

footer .social-icons a {
  margin: 0 10px;
  display: inline-block;
}

footer .social-icons img {
  width: 30px;
  filter: invert(70%) sepia(100%) saturate(500%) hue-rotate(160deg);
  transition: 0.3s;
}

footer .social-icons img:hover {
  transform: scale(1.2);
}
