/* Reset */
* {
  margin: 0; padding: 0; box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #0b0b0b;
  color: #eee;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* Header */
.header {
  position: fixed;
  width: 100%;
  top: 0; left: 0;
  background: #111;
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid #ff33cc;
  z-index: 999;
}
.logo {
  font-size: 2.5rem;
  color: #ff33cc;
  font-weight: 900;
  letter-spacing: 3px;
  user-select: none;
}
.glow {
  animation: glow 3s ease-in-out infinite;
}
.nav {
 
    display: flex;
    gap: 30px;
    position: relative;
    top: 62px;
        left: 462px
}

.nav-link {
  color: #66ccff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.3s ease;
  user-select: none;
}
.nav-link:hover {
  color: #ff33cc;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff33cc;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}

/* Hero */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #ff33cc, #3399ff);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 140px;
  text-align: center;
  color: white;
  overflow: hidden;
}
.hero-content {
  max-width: 700px;
  padding: 20px;
}
.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 0 20px #ff33cc, 0 0 30px #3399ff;
}
.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  letter-spacing: 1.2px;
  text-shadow: 0 0 10px #fff8;
}
.btn-primary {
  background: #ff33cc;
  color: white;
  padding: 15px 40px;
  font-weight: 700;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 0 20px #ff33cc;
  text-transform: uppercase;
  user-select: none;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-block;
}
.btn-primary:hover {
  background: #e600b8;
  transform: scale(1.05);
  box-shadow: 0 0 40px #ff33cc;
}

/* Sections */
.section {
  padding: 100px 0 80px;
  text-align: center;
}
.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 30px;
  color: #ff33cc;
  text-shadow: 0 0 15px #ff33cc;
}
.section-text {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  color: #ccc;
  line-height: 1.7;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.service-card {
  background: #121212;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 0 25px #ff33cc33;
  color: #fff;
  cursor: default;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  user-select: none;
}
.service-card h3 {
  color: #c12efc;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 0 0 10px #3399ff;
}
.service-card p {
  color: #ddd;
  font-size: 1rem;
}
.service-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 0 40px #ff33cc;
}

/* Contact */
.contact a {
  color: #ff33cc;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact a:hover {
  color: #66ccff;
}

/* Footer */
.footer {
  background: #111;
  text-align: center;
  padding: 20px 5%;
  font-size: 0.9rem;
  color: #555;
  letter-spacing: 1px;
  border-top: 1px solid #ff33cc44;
}


    body {
      font-family: Arial, sans-serif;
      /* background: linear-gradient(135deg, #6a11cb, #2575fc); */
      margin: 0;
      padding: 40px;
    }

    /* Container for cards */
    .card-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .flip-card {
      background: transparent;
      width: 300px;
      height: 400px;
      perspective: 1000px;
    }

    .flip-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      text-align: center;
      transition: transform 0.8s;
      transform-style: preserve-3d;
    }

    .flip-card:hover .flip-card-inner {
      transform: rotateY(180deg);
    }

    .flip-card-front,
    .flip-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    /* Front side */
    .flip-card-front {
      background: rgb(154, 87, 217);
      color: #333;
    }

    .flip-card-front img {
         width: 155px;
    height: 182px;
      object-fit: cover;
      border-radius: 50%;
      border: 4px solid #6a11cb;
      margin-bottom: 15px;
    }

    .flip-card-front h2 {
      margin: 0;
      font-size: 22px;
    }

    .flip-card-front p {
      margin-top: 6px;
      font-size: 14px;
      color: #111;
    }

    /* Back side */
    .flip-card-back {
      background: #1e1e2f;
      color: white;
      transform: rotateY(180deg);
    }

    .flip-card-back h3 {
      margin: 0;
      font-size: 20px;
      color: #fff;
    }

    .flip-card-back h4 {
      margin: 10px 0;
      font-size: 16px;
      color: #6a11cb;
    }

    .flip-card-back p {
      font-size: 14px;
      color: #ccc;
      line-height: 1.5;
      margin: 15px 0;
    }

    .btn {
      display: inline-block;
      margin-top: 10px;
      padding: 10px 20px;
      border-radius: 8px;
      background: linear-gradient(90deg, #6a11cb, #2575fc);
      color: white;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s;
    }

    .btn:hover {
      background: linear-gradient(90deg, #2575fc, #6a11cb);
    }

/* Animations */

/* Glow effect for logo */
@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 8px #ff33cc, 0 0 20px #ff33cc, 0 0 30px #3399ff;
  }
  50% {
    text-shadow: 0 0 20px #ff33cc, 0 0 40px #ff33cc, 0 0 60px #3399ff;
  }
}

/* Slide In */
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.slide-in {
  animation: slideIn 1s ease forwards;
}

/* Fade In */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeIn 1s ease forwards;
}
.delay-1 {
  animation-delay: 0.5s;
}
.delay-2 {
  animation-delay: 1s;
}

/* Slide Up */
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.slide-up {
  animation: slideUp 1s ease forwards;
}

/* Pulse button */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 10px #ff33cc;
  }
  50% {
    box-shadow: 0 0 25px #ff33cc;
    transform: scale(1.05);
  }
}
.pulse {
  animation: pulse 2.5s ease-in-out infinite;
}

/* Bounce Services */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.bounce {
  animation: bounce 3s ease-in-out infinite;
}
.bounce.delay-1 { animation-delay: 0s; }
.bounce.delay-2 { animation-delay: 0.2s; }
.bounce.delay-3 { animation-delay: 0.4s; }
.bounce.delay-4 { animation-delay: 0.6s; }
.bounce.delay-5 { animation-delay: 0.8s; }
.bounce.delay-6 { animation-delay: 1s; }
.bounce.delay-7 { animation-delay: 1.2s; }

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .section-title {
    font-size: 2.4rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}
