/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom, #fce4ec, #ffffff);
    color: #333;
    line-height: 1.6;
  }
  
  section {
    padding: 60px 20px;
    border-bottom: 1px solid #ddd;
  }
  
  .hero {
    position: relative;
    height: 500px;
    overflow: hidden;
  }
  
  .hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding-top: 80px;
  }
  
  
  .hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px #000;
  }
  
  .hero p {
    font-size: 1.3em;
    text-shadow: 1px 1px 3px #000;
  }
  
  h2 {
    color: #c2185b;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .skills ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0;
  }
  
  .skills li {
    background: #f8bbd0;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .projects .project {
    background: #fce4ec;
    margin: 15px auto;
    padding: 20px;
    border-radius: 12px;
    max-width: 600px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .projects .project h3 {
    color: #c2185b;
    margin-bottom: 8px;
  }
  
  .contact {
    text-align: center;
    background: #c2185b;
    color: rgb(211, 69, 152);
    padding: 40px;
  }
  
  .contact p {
    margin: 10px 0;
  }
  #services {
  padding: 50px 20px;
  background: linear-gradient(to bottom right, #ffe6f0, #f9ccdc);
  text-align: center;
}

#services h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #cc2b5e;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service {
  background-color: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service:hover {
  transform: translateY(-5px);
}

.service h3 {
  color: #d63384;
  margin-bottom: 10px;
}
.services {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fbd3e9, #bb377d);
  color: #fff;
  text-align: center;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 20px;
  margin: 10px 0;
  color: #000000;
}

.service-card p {
  font-size: 14px;
  color: #000000;
}


.service p {
  color: #555;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: linear-gradient(to right, #f9ccdc, #ffe6f0);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
  color: #d63384;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #d63384;
}
.contact {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to bottom, #ffe6f0, #ffd6eb);
}

.contact h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #d63384;
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.icon {
  background-color: white;
  border: 2px solid #ff99cc;
  color: #d63384;
  border-radius: 50%;
  padding: 15px;
  font-size: 24px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  text-decoration: none;
}

.icon:hover {
  background-color: #ff99cc;
  color: white;
  transform: scale(1.1);
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
