* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #000;
  color: white;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 10%;
  position: sticky;
  top: 0;
  background-color: #000;
  z-index: 1000;
}

.logo {
  font-size: 30px;
  font-weight: bold;
  color: white;
}

.logo span {
  color: #f72b63;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #f72b63;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 10%;
  flex-wrap: wrap;
  min-height: 100vh;
}

.hero-text {
  max-width: 600px;
}

.hero-text .title {
  font-size: 20px;
  color: #ccc;
  margin-bottom: 15px;
}

.hero-text h1 {
  font-size: 50px;
  margin-bottom: 10px;
}

.hero-text h1 span {
  color: #f72b63;
}

.hero-text h2 {
  font-size: 36px;
  color: #ddd;
}

.hero-image img {
  width: 320px;
  border-radius: 20px;
  border: 4px solid white;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* About Section */
.about {
  padding: 100px 10%;
  background-color: #111;
}

.about h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #f72b63;
}

.about-content {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.skills, .education {
  flex: 1;
  min-width: 250px;
}

.skills h3, .education h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}

.skills p, .education p {
  font-size: 16px;
  color: #ccc;
}

/* Services Section */
.services {
  padding: 100px 10%;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #f72b63;
}

.service-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 250px;
  background-color: #222;
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s;
}

.card:hover {
  background-color: #333;
}

.card h3 {
  margin-bottom: 15px;
  color: white;
}

.card p {
  color: #bbb;
}

/* Portfolio Section */
.portfolio {
  padding: 100px 10%;
  background-color: #111;
}

.portfolio h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #f72b63;
}

.project {
  background-color: #222;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.project-logo {
  font-size: 50px;
  margin-bottom: 20px;
}

.project h3 {
  font-size: 24px;
  color: white;
  margin-bottom: 10px;
}

.project p {
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    margin-top: 30px;
  }

  header {
    flex-direction: column;
    gap: 20px;
  }

  .about-content {
    flex-direction: column;
  }

  .service-cards {
    flex-direction: column;
  }
}
/* Contact Section */
.contact {
  padding: 100px 10%;
  background-color: #000;
}

.contact h2 {
  font-size: 36px;
  color: #f72b63;
  margin-bottom: 40px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 600px;
  margin: auto;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 2px solid #333;
  border-radius: 12px;
  background-color: #111;
  color: white;
  font-size: 16px;
  outline: none;
  transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid #f72b63;
}

.contact-form button {
  padding: 15px;
  border: none;
  border-radius: 12px;
  background-color: #f72b63;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #ff4d7e;
}

.contact-info {
  text-align: center;
  margin-top: 20px;
  color: #ccc;
}

.contact-info a {
  color: #f72b63;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}
