/* About Preview */

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px;
  border-radius: 18px;
  transition: 0.3s;
}

.about-card:hover {
  transform: translateY(-8px);
  border-color: white;
}

.about-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.7;
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px;
  border-radius: 18px;
  transition: 0.3s;
}

.service-box:hover {
  transform: translateY(-8px);
  border-color: white;
}

.service-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.7;
}

/* Skills */

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.skill-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px;
  border-radius: 18px;
  transition: 0.3s;
}

.skill-box:hover {
  transform: translateY(-8px);
  border-color: white;
}

.skill-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.skill-box p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.7;
}

/* Projects */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.project-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px;
  border-radius: 18px;
  transition: 0.3s;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: white;
}

.project-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 12px;
}

.project-card .tag {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.project-btn {
  text-align: center;
  margin-top: 40px;
}

/* Experience */




/* CTA */

.cta-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
}

.cta-box h2 {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 15px;
}

.cta-box p {
  font-size: 15px;
  color: #ccc;
  max-width: 750px;
  margin: auto;
  line-height: 1.8;
}

.cta-btns {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Contact Mini */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s;
}

.contact-box:hover {
  transform: translateY(-8px);
  border-color: white;
}

.contact-box h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-box p {
  font-size: 14px;
  color: #ccc;
}

.contact-btn {
  margin-top: 35px;
  text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid,
  .services-grid,
  .testimonial-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .skills-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .cta-btns {
    flex-direction: column;
  }
}
