/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ===== BODY ===== */
body {
  background: #0b0f1a;
  color: #fff;
  overflow-x: hidden;
}

/* ===== HEADER / HERO ===== */
header {
  min-height: 100vh;
  background: linear-gradient(120deg, #0b0f1a, #0f1c3f, #0b0f1a);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero {
  max-width: 900px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: #ddd;
}

.hero .btns {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
#about {
  background: #f9f9f9;
  padding: 4rem 2rem;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}

.about-container p {
  margin-bottom: 1.2rem;
}

.about-container strong {
  color: #000;
}

/* ===== BUTTONS ===== */
.btn {
  padding: 0.9rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(90deg, #4facfe, #00f2fe);
  color: #000;
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-outline {
  border: 2px solid #4facfe;
  color: #4facfe;
}

.btn-outline:hover {
  background: #4facfe;
  color: #000;
}

/* ===== SECTIONS ===== */
section {
  padding: 5rem 10%;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== SERVICES ===== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #11172a;
  padding: 2rem;
  border-radius: 15px;
  transition: transform 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, #4facfe, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::before {
  opacity: 0.15;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  color: #ccc;
  font-size: 0.95rem;
}

/* ===== COMPUTER HELP – PRICING BOX (FIXED) ===== */
#computer-help .pricing-box {
  max-width: 500px;
  margin: 3rem auto 0;
  padding: 2.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #111, #222);
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

#computer-help .price {
  font-size: 2rem;
  color: #00ffcc;
}

#computer-help em {
  color: #ff4d4d;
  font-style: normal;
}

.pricing-box .btn {
  margin-top: 0.5rem;
}
.em {

  font-size: 2.5rem;
  color: red;
}
/* ===== PROJECTS ===== */
.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.project-card {
  background: #11172a;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-img {
  height: 180px;
  background: linear-gradient(120deg, #4facfe, #00f2fe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
}

.project-content {
  padding: 1.5rem;
}

/* ===== DONE JOBS ===== */
.jobs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.job-card {
  background: #0f1424;
  border-radius: 15px;
  padding: 2rem;
  transition: transform 0.4s ease;
}

.job-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.job-card span {
  font-size: 0.8rem;
  color: #4facfe;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.job-card h3 {
  margin: 0.6rem 0;
}

.job-card p {
  color: #ccc;
  font-size: 0.95rem;
}

/* ===== CONTACT ===== */
.contact {
  background: #0f1424;
  border-radius: 20px;
  padding: 3rem;
  max-width: 700px;
  margin: auto;
}
#contact p {
  color: #ccc;
  margin-bottom: 1rem;
  width: 50%;
  margin: 0 auto 1.5rem auto;
}
.contact form {
  display: grid;
  gap: 1rem;
}

.contact input,
.contact textarea {
  padding: 0.9rem;
  border-radius: 8px;
  border: none;
  outline: none;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 2rem;
  background: #050814;
  color: #aaa;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  section {
    padding: 4rem 6%;
  }
  #contact p {
  color: #ccc;
  margin-bottom: 1rem;
  width: 80%;
  margin: 0 auto 1.5rem auto;
}
}


