* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0b0b16;
  color: #fff;
}

.hero {
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
}

.hero h2 {
  font-weight: 400;
  margin-top: 10px;
}

.section {
  padding: 80px 10%;
}

.section h3 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  color: #ffd369;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.card {
  padding: 25px;
  border-radius: 16px;
  background: #151528;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.gradient1 { background: linear-gradient(135deg,#ff512f,#dd2476); }
.gradient2 { background: linear-gradient(135deg,#24c6dc,#514a9d); }
.gradient3 { background: linear-gradient(135deg,#f7971e,#ffd200); }
.gradient4 { background: linear-gradient(135deg,#00c6ff,#0072ff); }
.gradient5 { background: linear-gradient(135deg,#f953c6,#b91d73); }
.gradient6 { background: linear-gradient(135deg,#43cea2,#185a9d); }

.timeline-item {
  margin-bottom: 30px;
  background: #151528;
  padding: 20px;
  border-left: 4px solid #ffd369;
  border-radius: 8px;
}


.social a {
  margin-right: 15px;
  color: #ffd369;
  text-decoration: none;
}

.projects .card p.meta {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 10px;
}

/* ===============================
   PROJECT CARD – PREMIUM STYLE
================================ */

.project-card {
  position: relative;
  padding: 26px;
  border-radius: 18px;
  background: linear-gradient(180deg, #141428, #0d0d1a);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: all 0.35s ease;
  overflow: hidden;
}

/* Gradient glow border */
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    #ffd369,
    #6a5acd,
    #00c6ff
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.35;
}

/* Hover lift */
.project-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 18px 45px rgba(0,0,0,0.6);
}

/* Header */
.project-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
}

/* Description */
.project-card .card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cfd3ff;
  margin-bottom: 14px;
}

/* Meta line */
.project-card .card-meta {
  font-size: 0.8rem;
  color: #a8b0ff;
  margin-bottom: 14px;
  opacity: 0.85;
}

/* Tags container */
.project-card .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Individual tag */
.project-card .card-tags span {
  padding: 6px 12px;
  font-size: 0.72rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2b2b55, #1c1c3a);
  color: #ffd369;
  border: 1px solid rgba(255,211,105,0.25);
  white-space: nowrap;
}

/* Light sweep on hover */
.project-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.06),
    transparent
  );
  transform: rotate(25deg);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover::after {
  opacity: 1;
}

.cta-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #ff9800, #ff5722);
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.small-hero {
  padding: 80px 20px;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #111;
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.service-card h3 {
  color: #ffb300;
  margin-bottom: 10px;
}

.service-card .price {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card ul {
  padding-left: 18px;
}

.service-card ul li {
  margin-bottom: 8px;
}

.service-card .timeline {
  margin-top: 15px;
  font-weight: 600;
}

.service-card.highlight {
  border: 2px solid #ff9800;
  transform: scale(1.03);
}

.hire-me-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  padding: 14px 26px;
  background: linear-gradient(135deg, #ff9800, #ff5722);
  color: #fff;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hire-me-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.5);
}


.whatsapp-btn {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 999;
  padding: 12px 22px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  transition: transform 0.2s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
}

.value-list {
  margin-top: 20px;
  padding-left: 18px;
}

.value-list li {
  margin-bottom: 10px;
  font-weight: 500;
}

.note {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 8px;
}



footer {
  text-align: center;
  padding: 25px;
  background: #05050a;
  color: #aaa;
}
