:root {
    --bg: #f4f9fb;
    --dark: #1b1f3a;
    --primary: #1b4965;
    --accent: #5fa8d3;
    --light: #ffffff;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background: var(--bg);
    color: var(--dark);
    line-height: 1.6;
  }
  
  nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background: var(--light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: inherit;
  top: 0;
  z-index: 999;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary);
  flex-shrink: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: 0.3s ease;
}

  
  .her {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #cae9ff, #bee9e8);
  }

  .hero{
    background-color: #9ec3de;
    justify-content: center;
    text-align: center;
    padding: 30px;
  }


  .hero h1 {
    font-size: 3rem;
    color: #000000;
  }
  
  .hero span {
    color: rgb(71, 131, 214);
  }
  
  .hero p {
    font-size: 1.2rem;
    margin: 15px 0;
  }
  
  .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
  }
  
  .btn:hover {
  transform: translateY(-8px);
  border-color: #5fa8d3;
  box-shadow: 0 12px 24px rgba(0, 123, 255, 0.2);
  }
  
  .section {
    text-align: center;
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
  }
  
  .section h2 {
    text-align: center;
    color: #000000;
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  
  .about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center;
  }
  
  .about-content img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--accent);
  }
  
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    justify-content: center;
  }
  
  .skills-grid span{
    background: var(--light);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    font-weight: 500;
  }

  .skills-grid span:hover{
  transform: translateY(-8px);
  border-color: #5fa8d3;
  box-shadow: 0 12px 24px rgba(0, 123, 255, 0.2);
  }
  

.projects-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.projects-section h2 {
  font-size: 36px;
  color: #000000;
  margin-bottom: 10px;
}

.projects-section p {
  color: #000000;
  margin-bottom: 40px;
  font-size: 16px;
}


.project-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}


.project-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: #5fa8d3;
  box-shadow: 0 12px 24px rgba(0, 123, 255, 0.2);
}

.project-card h3 {
  color: #1b4965;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 14px;
  color: #495057;
  line-height: 1.5;
}

.tags {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags span {
  background-color: #e9ecef;
  color: #343a40;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
}
.view-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 16px;
  background-color: #1b4965;
  color: #ffffff;
  text-decoration: none;
  border-radius: 20px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.view-btn:hover {
  background-color: #14405a;
}

  
  .btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
  }
  
  
  .btn-outline:hover {
    background: var(--primary);
    color: white;
  }
  
  .btn-insta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #e1306c;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
  }
  
  .btn-insta:hover {
    background-color: #c1225d;
  }
  
  .icon {
    width: 20px;
    height: 20px;
  }
.sec {
    text-align: center;
    max-width: none;
    margin: auto;
    margin-top: 90px;
    margin-bottom: -20px;
  }

  .contact {
  max-width: 400px;
  margin: 40px auto;
  padding: 25px 20px;
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #212529;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #495057;
  letter-spacing: 1.2px;
}

.contact p {
  font-size: 1.1rem;
  margin: 12px 0;
  line-height: 1.5;
}

.contact a {
  color: #1b4965;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact a:hover,
.contact a:focus {
  color: #5fa8d3;
  text-decoration: underline;
  outline: none;
}
  
  footer {
    display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #9ec3de;
  padding: 20px;
  font-size: 0.9rem;
  color: #000000;
  margin-top: 40px;
  }
