/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.page-transition-enter{ opacity:0; transform: translateY(8px); }
.page-transition-enter-active{ opacity:1; transform:none; transition: all .45s cubic-bezier(.2,.9,.2,1); }
.page-transition-exit{ opacity:1; }
.page-transition-exit-active{ opacity:0; transform: translateY(-8px); transition: all .35s ease; }

html {
  scroll-behavior: smooth;
}
:root{
  --blue:#06b6d4; /* aqua */
  --neon:#22d3ee; /* neon blue */
  --accent:#7c3aed; /* neon purple */
  --bg:#0f172a;
  --card:#111827;
}
body{ font-family: 'Poppins', Inter, sans-serif; }


body {
  font-family: 'Inter', sans-serif;
  background: #0d1117;
  color: #e5e7eb;
  line-height: 1.6;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: #22d3ee;
}

/* Navbar */
nav {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

nav .logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #22d3ee;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

nav ul li a {
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  background: rgba(255,255,255,0.1);
}

/* Mobile menu */
#mobile-menu-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 1.8rem;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    padding: 1rem;
    gap: 1rem;
  }
  nav ul.show {
    display: flex;
  }
  #mobile-menu-button {
    display: block;
  }
}

/* Hero Section */
/* Hero Section */
#hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #d1d5db;
}

.hero-btn {
  padding: 15px 40px;
  background: linear-gradient(135deg, #25eb9f, #2563eb);
  border-radius: 50px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.hero-btn:hover {
  transform: scale(1.08);
}

/* Background blobs */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37,235,159,0.6), transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  mix-blend-mode: screen;
}

.blob1 {
  top: 10%;
  left: 15%;
}

.blob2 {
  bottom: 15%;
  right: 10%;
}


/* Sections */
section {
  padding: 6rem 2rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.section-subtitle {
  text-align: center;
  color: #9ca3af;
  margin-bottom: 3rem;
}

/* Services */
.services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.service-card {
  background: rgba(31, 41, 55, 0.8);
  padding: 2rem;
  border-radius: 16px;
  width: 300px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.service-card h3 {
  color: #22d3ee;
  margin-bottom: 1rem;
}

.service-card p {
  color: #cbd5e1;
}

/* Team */
.team-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.team-card {
  background: rgba(31, 41, 55, 0.8);
  padding: 1.5rem;
  border-radius: 16px;
  width: 220px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}

.team-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid #22d3ee;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-card h3 {
  color: #fff;
}

.team-card p {
  color: #9ca3af;
}

.team-card:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* Projects & Records */
.grid-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.card {
  background: rgba(31, 41, 55, 0.8);
  padding: 1.5rem;
  border-radius: 16px;
  width: 260px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.5);
}

.card h3 {
  color: #22d3ee;
  margin-bottom: 0.5rem;
}

.card p {
  color: #cbd5e1;
}

.record-card h3 {
  font-size: 2.5rem;
  color: #22d3ee;
}

/* About Section */
.about-section {
  background: #111827;
  color: #e5e7eb;
  padding: 80px 20px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.about-text h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.about-text h2 span {
  color: #22d3ee;
}

.about-text p {
  font-size: 1.1rem;
  color: #9ca3af;
}

.about-image img {
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: translateY(-12px) scale(1.03);
}
/* Pricing */
.pricing-section {
  background-color: #111827;
  padding: 80px 20px;
  text-align: center;
  color: #c9d1d9;
}

.pricing-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #22d3ee;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.pricing-card {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 12px;
  padding: 40px 25px;
  max-width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.pricing-card h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: bold;
  color: #22d3ee;
  margin-bottom: 20px;
}

.pricing-card .price span {
  font-size: 1rem;
  color: #9ca3af;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.pricing-card ul li {
  margin: 10px 0;
  color: #c9d1d9;
}

.pricing-card.popular {
  border: 2px solid #25eb9f;
  transform: scale(1.05);
}
/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0f172a, #1f2937);
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(37, 235, 159, 0.15);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(37, 99, 235, 0.2);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
}

.cta-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-container h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #25eb9f;
}

.cta-container p {
  font-size: 1.2rem;
  color: #d1d5db;
  margin-bottom: 30px;
}

.btn-cta {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #25eb9f, #2563eb);
  color: #fff;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: linear-gradient(135deg, #22c55e, #1d4ed8);
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Contact Section */
.contact-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 2rem;
}

.contact-form {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(31, 41, 55, 0.9);
  color: white;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #22d3ee;
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.4);
}

.contact-form button {
  padding: 15px;
  background: linear-gradient(90deg, #22d3ee, #06b6d4);
  color: #0f172a;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  transform: scale(1.05);
}

.contact-info {
  flex: 1 1 300px;
  text-align: left;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #fff;
}

.contact-info p,
.contact-info a {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #9ca3af;
}

/* Footer */
footer {
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #9ca3af;
}

footer a {
  color: #22d3ee;
  margin: 0 0.5rem;
}

footer a:hover {
  color: #06b6d4;
}

/* Fade-Up Animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .about-image {
    margin-bottom: 20px;
  }
}
