
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #0b0b13;
  color: #fff;
  line-height: 1.6;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #0b0b15;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(45deg, #7bf0d9, #124b46);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 28px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
}

.nav-links {
  position: fixed;
  top: 0;
  right: -250px;
  height: 100%;
  width: 250px;
  background: linear-gradient(45deg, #7bf0d9, #124b46);
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  transition: 0.3s;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  padding: 15px 25px;
  transition: 0.3s;
}

.nav-links a:hover {
  background-color: #0b0b13;
}

.nav-links.active {
  right: 0;
}

  
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 20px 40px;
}

.hero h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero h1 span {
  background: linear-gradient(45deg, #7bf0d9, #124b46);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #ccc;
}

.hero p {
  max-width: 600px;
  margin: auto;
  font-size: 16px;
  margin-bottom: 25px;
  color: #aaa;
}

.buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 12px 25px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 8px;
  font-size: 15px;
  transition: 0.3s;
}

.btn-primary {
  background: linear-gradient(45deg, #7bf0d9, #124b46);
  color: #fff;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  background: transparent;
  border: 2px solid  #7bf0d9;
  color: #7bf0d9;
}

.btn-outline:hover {
  background:  #7bf0d9;
  color: #000;
}

#about{
  background-color:#0d0d1a;
  color:white; 
  padding:60px 20px; 
  text-align:center;
}

.aboutme h2{
  font-size: 2.5rem;
  margin-bottom: 40px;
  line-height: 1.2;
  background: linear-gradient(45deg, #7bf0d9, #124b46);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent; 
}

.skill h2{
  font-size: 2.5rem;
  margin-bottom: 40px;
  line-height: 1.2;
  background: linear-gradient(45deg, #7bf0d9, #124b46);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent; 
}
    
.socials {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.socials a {
  color:  #7bf0d9;
  font-size: 22px;
  transition: 0.3s;
}

.socials a:hover {
  color:  #fff;
}
    
h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color:  #7bf0d9;
}

.skills-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.skill-card {
  background: #1c1f2b;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  width: 120px;
  opacity: 0;
  transform: translateX(-100px);
  animation: slideIn 1s forwards;
}

.skill-card:nth-child(1) { animation-delay: 0s; }
.skill-card:nth-child(2) { animation-delay: 0.4s; }
.skill-card:nth-child(3) { animation-delay: 0.8s; }
.skill-card:nth-child(4) { animation-delay: 1.2s; }
.skill-card:nth-child(5) { animation-delay: 1.6s; }
.skill-card:nth-child(6) { animation-delay: 2s; }

@keyframes slideIn {
  to {
        opacity: 1;
        transform: translateX(0);
    }
}

.skill-card img {
  width: 50px;
  margin-bottom: 10px;
}

.skill-card p {
  margin: 0;
  font-size: 1rem;
}

.projects {
  padding: 60px 20px;
  text-align: center;
  background: #0b0b0f;
}

.projects h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  line-height: 1.2;
  background: linear-gradient(45deg, #7bf0d9, #124b46);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent; 
}

.projects-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.project-card {
  background: #151824;
  width: 300px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(255,255,255,0.06);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.35);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.project-card h3 {
  font-size: 1.35rem;
  margin: 18px 16px 8px;
  color: #ffffff;
  text-align: left;
}

.project-card p {
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0 16px 12px;
  color: #d7d9e0;
  text-align: left;
}

.project-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0 16px 18px;
  justify-content: flex-start;
}

.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  background: linear-gradient(45deg, #7bf0d9, #124b46);
  color: #0b0f10;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 18px rgba(18, 75, 70, 0.35);
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.btn:active {
  transform: translateY(0);
}

.btn.btn-secondary {
  background: transparent;
  color: #7bf0d9;
  border: 1px solid rgba(123, 240, 217, 0.5);
  box-shadow: none;
}

.btn.btn-secondary:hover {
  background: rgba(123, 240, 217, 0.08);
  border-color: #7bf0d9;
}
.experience {
  padding: 60px 20px;
  text-align: center;
  background: #0f0f14;
}

.experience h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #7bf0d9, #124b46);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.experience-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.experience-card {
  background: #151824;
  width: 320px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.experience-card:hover {
  transform: translateY(-6px);
}

.experience-card h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 8px;
}

.experience-card h4 {
  font-size: 1rem;
  color: #7bf0d9;
  margin-bottom: 12px;
}

.experience-card p {
  font-size: 0.95rem;
  color: #d7d9e0;
  margin-bottom: 14px;
  line-height: 1.5;
}

.experience-duration {
  display: block;
  font-size: 0.85rem;
  color: #bbb;
}

.contact {
  padding: 60px 20px;
  text-align: center;
  background: #0f0f14;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #7bf0d9, #124b46);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-subtitle {
  font-size: 1rem;
  color: #bbb;
  margin-bottom: 40px;
}

.contact-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.contact-form, 
.contact-info {
  background: #151824;
  width: 320px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  padding: 20px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s ease;
}

.contact-form:hover,
.contact-info:hover {
  transform: translateY(-6px);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #1e2130;
  color: #fff;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(45deg, #7bf0d9, #124b46);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.contact-form button:hover {
  opacity: 0.9;
}

.contact-info h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 12px;
}

.contact-info p {
  font-size: 0.95rem;
  color: #d7d9e0;
  margin-bottom: 10px;
}

.footer {
  background-color: #1e293b;
  color: white;
  padding: 20px;
  text-align: center;
  margin-top: 40px; 
}

.footer-container {
  max-width: 1100px;
  margin: auto;
}
.footer p {
  margin-bottom: 10px;
  font-size: 14px;
}