/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  list-style: none;
  scroll-behavior: smooth;
}

body {
  background: #f7e7d5;
  color: #2c2c2c;
}

/* Header */
.header {
  width: 100%;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f7e7d5;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 32px;
  font-weight: 700;
  color: #9b0060;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar a {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
  color: #9b0060;
}

.contact-btn {
  background: #9b0060;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 25px;
}

.contact-btn:hover {
  background: #9b0060;
}

/* Home */
.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 8%;
  gap: 50px;
}

.home-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-shape {
  width: 380px;
  height: 420px;
  background: #f1e2d0;
  border: 4px solid #9b0060;
  border-radius: 50% 40% 45% 55%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.image-shape img {
  width: 90%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}

.home-content {
  flex: 1;
}

.home-content h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 10px;
}

.home-content h1 span {
  color: #9b0060;
}

.home-content h2 {
  font-size: 34px;
  margin-bottom: 20px;
  font-weight: 600;
}

.home-content h2 span {
  color:#9b0060;
}

.home-content p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 550px;
  margin-bottom: 25px;
  color: #444;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  border: 2px solid #9b0060;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #9b0060;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #9b0060;
  color: #fff;
  transform: translateY(-5px);
}

/* Buttons */
.btn {
  display: inline-block;
  background: #9b0060;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #9b0060;
  transform: scale(1.05);
}

/* General Section */
.section {
  padding: 80px 8%;
  text-align: center;
}

.section-title {
  font-size: 38px;
  margin-bottom: 20px;
  color: #9b0060;
}

.section-text {
  max-width: 800px;
  margin: auto;
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

/* Skills */
.skills-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.skill-box {
  background: #fff;
  padding: 18px 35px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  font-weight: 600;
  transition: 0.3s;
}

.skill-box:hover {
  transform: translateY(-6px);
}

/* Cards */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

.card h3 {
  color: #9b0060;
  margin-bottom: 15px;
}

/* Contact */
.contact-form {
  max-width: 700px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #d5b896;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #9b0060;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background: #e7d1bb;
  font-size: 15px;
  color: #333;
}

/* Responsive */
@media (max-width: 991px) {
  .home {
    flex-direction: column;
    text-align: center;
    padding-top: 40px;
  }

  .home-content p {
    margin: 0 auto 25px;
  }

  .social-icons {
    justify-content: center;
  }

  .navbar {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 600px) {
  .home-content h1 {
    font-size: 38px;
  }

  .home-content h2 {
    font-size: 26px;
  }

  .image-shape {
    width: 280px;
    height: 320px;
  }

  .section-title {
    font-size: 30px;
  }
}