* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background: #f5f5f5;
  color: #333;
}

.hero {
  background: linear-gradient(135deg, #3f00ff, #00c3ff);
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.hero-text {
  flex: 1;
}
.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-text h2 {
  font-size: 1.25rem;
  color: #e0e0e0;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .hero-text {
    padding-right: 2rem;
  }
  .hero-text h1 {
    font-size: 3.5rem;
  }
  .hero-text h2 {
    font-size: 1.5rem;
  }
}

.btn {
  display: inline-block;
  background: #ff4a4a;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn:hover {
  box-shadow: 2px 2px 2px black;
}

.hero-image {
  margin-top: 2rem;
}
.hero-image img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #fff;
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  .hero-image {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .hero {
    text-align: left;
  }
  .hero-content {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text h2 {
    font-size: 1rem;
  }
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  .hero-image img {
    width: 120px;
    height: 120px;
  }
}
.about {
  background: linear-gradient(135deg, #0100ec, #6e00ff);
  color: white;
  padding: 4rem 2rem;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-text {
  flex: 1;
}
.about-text__me {
  color: #ffe600;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.about-skills {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.skill-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  color: white;
}

.icon {
  font-size: 1.8rem;
}

.text {
  font-size: 1.1rem;
  line-height: 1.4;
}

.strong {
  font-weight: bold;
}

.html {
  background: linear-gradient(135deg, #ff7b00, #ff2179);
}

.bootstrap {
  background: linear-gradient(135deg, #a11cff, #d633ff);
}

.flexbox {
  background: linear-gradient(135deg, #007cf0, #00dfd8);
}

@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
    justify-content: space-between;
  }
  .about-text {
    max-width: 55%;
  }
  .about-skills {
    max-width: 40%;
  }
}
@media (max-width: 480px) {
  .about {
    padding: 2rem 1rem;
  }
  .about-text__me {
    font-size: 1.5rem;
  }
  .text {
    font-size: 1rem;
  }
  .icon {
    font-size: 1.5rem;
  }
  .skill-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
.projects-section {
  background: linear-gradient(135deg, #1100ff, #007aff);
  padding: 3rem 2rem;
}
.projects-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.projects-section .section-title {
  font-size: 1.75rem;
  color: #ffeb3b;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.projects-section .project-gallery {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.projects-section .project-card {
  width: 160px;
  height: 100px;
  border-radius: 12px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.projects-section .project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.projects-section .orange {
  background: linear-gradient(to bottom right, #ff9800, #ff5722);
}
.projects-section .pink {
  background: linear-gradient(to bottom right, #e91e63, #9c27b0);
}
.projects-section .green {
  background: linear-gradient(to bottom right, #4caf50, #00e5ff);
}

.contact-section {
  background: linear-gradient(135deg, #3a0ca3, #4361ee);
  padding: 4rem 0;
  color: #fff;
}
.contact-section h2 {
  color: #ffea00;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
}
.contact-section form input {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}
.contact-section form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.contact-section form input:focus {
  border-color: #ffea00;
}/*# sourceMappingURL=style.css.map */