/* =====================
   Global Reset & Base
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: linear-gradient(180deg, #0b0f14, #121822);
  color: #e5e7eb;
  line-height: 1.7;
}

/* =====================
   Links & Utilities
===================== */
a {
  text-decoration: none;
  color: inherit;
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================
   Navbar
===================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 15, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar .container {
  max-width: 1100px;
  margin: auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #cbd5f5;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #6366f1;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* =====================
   Hero Section
===================== */
.hero {
  padding: 6rem 1.5rem 5rem;
  display: flex;
  justify-content: center;
}

.hero-content {
  max-width: 720px;
  text-align: center;
}

.hero-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(99, 102, 241, 0.4);
  margin-bottom: 1.2rem;
}

.shop-availability {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.05rem;
  color: #b8c1ec;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  padding: 0.7rem 1.6rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  background: #6366f1;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
}

/* =====================
   Section Base
===================== */
section {
  padding: 4.5rem 1.5rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #6366f1;
  display: block;
  margin: 0.7rem auto 0;
}

/* =====================
   About Section
===================== */
.about-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

.about-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.about-text h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
  color: #a5b4fc;
}

.about-text ul {
  padding-left: 1.2rem;
}

.about-text li {
  margin-bottom: 0.4rem;
}

/* =====================
   Services
===================== */
.services-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-card.featured {
  border: 1px solid rgba(99, 102, 241, 0.5);
  background: linear-gradient(
    145deg,
    rgba(99, 102, 241, 0.08),
    rgba(255, 255, 255, 0.02)
  );
}


.service-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.service-card h3 {
  margin-bottom: 0.7rem;
}

.service-card p {
  color: #c7d2fe;
  margin-bottom: 1rem;
}

.service-card ul {
  padding-left: 1.2rem;
  margin-bottom: 1.2rem;
}

.price {
  display: block;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  background: transparent;
  border: 1px solid #6366f1;
  color: #a5b4fc;
  transition: all 0.2s ease;
}

.service-btn:hover {
  background: #6366f1;
  color: #fff;
}




/* =====================
   Skills Section
===================== */
.skills-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.skill-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.skill-card h3 {
  margin-bottom: 1.2rem;
  color: #a5b4fc;
  font-size: 1.2rem;
}

.skill-card ul {
  list-style: none;
}

.skill-card li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.95rem;
}

.skill-card li:last-child {
  border-bottom: none;
}

.skill-card span {
  font-size: 0.8rem;
  color: #94a3b8;
}


/* =====================
   Projects Section
===================== */
.projects-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.project-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.project-content h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.project-content p {
  color: #c7d2fe;
  margin-bottom: 1rem;
}

.project-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.project-tags li {
  font-size: 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
}

.project-links {
  display: flex;
  gap: 0.8rem;
}

.project-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  background: #6366f1;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.project-btn:hover {
  box-shadow: 0 8px 18px rgba(99, 102, 241, 0.35);
}

.project-btn.outline {
  background: transparent;
  border: 1px solid #6366f1;
  color: #a5b4fc;
}



/* =====================
   Contact Section
===================== */
#contact {
  text-align: center;
}

#contact form {
  max-width: 600px;
  margin: auto;
  display: grid;
  gap: 1rem;
}

#contact input,
#contact textarea {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

#contact button {
  margin-top: 1rem;
  background: #6366f1;
  border: none;
  padding: 0.7rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

/* =====================
   Footer
===================== */
footer {
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.85rem;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* =====================
   Responsive
===================== */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .navbar .container {
    gap: 1.2rem;
    flex-wrap: wrap;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

