@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom right, #fdfcfb, #e2d1c3);
  color: #222;
  overflow-x: hidden;
  position: relative;
}

.glow {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, #f472b6aa, transparent 60%);
  z-index: -1;
  animation: pulse 6s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1.5rem;
}

/* Header */
header {
  background: linear-gradient(to right, #6366f1, #9333ea);
  color: white;
  padding: 2.5rem 1rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

header h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.highlight {
  background: linear-gradient(to right, #f43f5e, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Nav */
nav ul {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  list-style: none;
  margin-top: 1.5rem;
}

nav a {
  color: white;
  font-weight: 600;
  padding: 0.7rem 1.3rem;
  border-radius: 25px;
  background: rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

nav a:hover {
  background: white;
  color: #4f46e5;
  transform: scale(1.1);
}

/* Hero */
.hero {
  background: radial-gradient(circle at top left, #e879f9, #6366f1);
  color: white;
  padding: 6rem 1rem;
  text-align: center;
  animation: fadeInZoom 1.5s ease-out;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.rainbow-text {
  background: linear-gradient(to right, #facc15, #f97316, #ef4444, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(to right, #10b981, #22d3ee);
  color: white;
  box-shadow: 0 12px 25px rgba(34, 211, 238, 0.5);
}

.btn-primary:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 30px rgba(6, 182, 212, 0.6);
}

.btn-glow {
  background: linear-gradient(to right, #f59e0b, #ef4444);
  color: white;
  box-shadow: 0 10px 30px rgba(255, 115, 179, 0.4);
}

.btn-glow:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 40px rgba(255, 115, 179, 0.6);
}

/* Services */
.services-preview {
  background: linear-gradient(to right, #fcd34d, #fbbf24, #fb923c);
  color: #111;
  padding: 5rem 1rem;
  text-align: center;
}

.services-preview h2 {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: #1f2937;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.card {
  display: flex;
  flex-direction: row;
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform-style: preserve-3d;
  transition: transform 0.4s, box-shadow 0.4s;
}

.card:hover {
  transform: rotateY(4deg) scale(1.03);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.card img {
  width: 40%;
  object-fit: cover;
}

.card-content {
  padding: 2rem;
  width: 60%;
  text-align: left;
}

.card-content h3 {
  font-size: 1.8rem;
  color: #1e40af;
  margin-bottom: 0.8rem;
}

.card-content p {
  font-size: 1.1rem;
  color: #374151;
}

/* About */
.about {
  background: linear-gradient(to top left, #a5f3fc, #06b6d4);
  border-radius: 30px;
  padding: 5rem 1rem;
  margin: 4rem 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  color: #1e293b;
  text-align: center;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.about ul {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
}

/* CTA */
.cta {
  background: linear-gradient(to right, #7c3aed, #6366f1);
  color: white;
  text-align: center;
  padding: 5rem 1rem;
}

.cta h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

/* Footer */
footer {
  background: #1f2937;
  color: #cbd5e1;
  padding: 3rem 1rem;
  text-align: center;
}

footer h2 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

footer form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: auto;
}

footer input,
footer textarea {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #334155;
  color: white;
  resize: vertical;
}

footer input::placeholder,
footer textarea::placeholder {
  color: #94a3b8;
}

footer button {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  background: linear-gradient(to right, #6366f1, #9333ea);
  color: white;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

footer button:hover {
  background: linear-gradient(to right, #9333ea, #6366f1);
  transform: scale(1.05);
}

footer p {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #94a3b8;
}
/* Animations */
@keyframes fadeInZoom {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

