
 /**
.logo-container 
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 10px;
/*  */


 body {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('images/background.jpg') no-repeat center center fixed;
  background-size: cover;
  background-color: #0f0f0f;
  color: #e0e0e0;
  font-family: 'Rubik', sans-serif;
  padding-top: 80px;
}
.navbar {
  background: rgba(54, 54, 71, 0.85);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #444;
  box-shadow: 0 4px 20px rgba(0, 187, 255, 0.1);
  backdrop-filter: blur(6px);
  position: fixed;
  top: 0;
  z-index: 990;
 padding: 8px 24px; /* smaller padding */
  height: 20px;
   border-radius: 4px;
    margin-bottom: 20px;
}

  .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  
  }
  
  .nav-links li {
  margin-left: 20px;
}
 
  
  .hero {
  position: relative;
  color: white;
  text-align: center;
  padding: 100px 20px;
  background: url('images/hero.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


  .hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 19px;
  margin-bottom: 20px;
}

 

.btn {
  display: inline-block;
  background: #00ff99; /* vibrant green */
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
  box-shadow: 0 0 10px #00ff99;
}

.btn:hover {
  background: #00cc77;
  box-shadow: 0 0 14px #00ff99;
}


.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
   padding-top: 20px;
  padding-bottom: 20px;
}

 
  .project {
  background-color: #282828;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  transition: transform 0.3s ease-in-out;
  text-align: center;
   width: 300px;
   font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(145deg, #2a2a2a, #1b1b1b);
 border: 1px solid #333;
   margin-bottom: 30px;

}

 
  #portfolio {
  text-align: center;
  padding: 50px 0;
}

.project h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #00bcd4;
}


.project:hover {
  transform: scale(1.05); /* Hover effect */
}
.project p {
  color: #c0c0c0;
  font-size: 0.95rem;
}

.project a {
  margin-top: 15px;
  display: inline-block;
}


.project a:hover {
  background: #0056b3;
}



#hero {
  position: relative;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5 20px;
  overflow: hidden;
  background: url('images/hero.jpg') no-repeat center center/cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(10, 9, 9); /* Dark overlay */
  z-index: 1;
}

.hero h1,
.hero p,
.hero .btn {
  z-index: 2;
  position: relative;
}

  
/**/
.logo {
  
  background: #000; /* or rgba(0,0,0,0.6) */
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 255, 100, 0.3);
   max-height: 70px;
  width:auto;
  
  height: 30px;
  object-fit:cover;
}
/*  */
#hero {
  background: url('images/hero.jpg') no-repeat center center/cover;
  position: relative;
  height: 100vh;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  overflow: hidden;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

#hero h1, 
#hero p, 
#hero .btn {
  z-index: 2;
  position: relative;
}

#hero h1 {
  font-size: 4rem;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  color: #00ffcc;
  text-shadow: 0 0 12px #00ffcc;
}

#hero p {
  font-size: 1.4rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #e0e0e0;
}

#hero .btn {
  padding: 14px 28px;
  font-size: 1.1rem;
  border-radius: 8px;
  background: #00ff99;
  color: #000;
  box-shadow: 0 0 15px #00ff99;
}
#skills {
  text-align: center;
  padding: 60px 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #333;
  border-radius: 15px;
  max-width: 900px;
  margin: 80px auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  color: #e0e0e0;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.skill {
  background: #1e1e1e;
  padding: 15px 10px;
  border-radius: 8px;
  border: 1px solid #00ff99;
  color: #00ffcc;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
  box-shadow: 0 0 8px rgba(0,255,153,0.3);
}
#skills {
  max-width: 900px;
  margin: 80px auto;
  color: #e0e0e0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.skills-grid,
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.skill, .tool {
  background: #222;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 8px #00ff99aa;
  transition: background 0.3s ease;
}

.skill i, .tool i {
  color: #00ff99;
  font-size: 1.5rem;
}

.skill:hover, .tool:hover {
  box-shadow: 0 0 12px #00ff99, 0 0 20px #00ff99aa;
  cursor: default;
  transform: scale(1.05);
}


.soft-skills {
  font-size: 1rem;
  color: #8affc1;
  font-style: italic;
}

#about {
  max-width: 700px;
  margin: 60px auto;
  padding: 30px;
  background: rgba(0,255,153,0.1);
  border-radius: 15px;
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: center;
}


section {
  max-width: 1100px;
  margin: 80px auto; /* more spacing above and below */
  padding: 50px 30px;
  background: #030000;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  color: #e0e0e0;
}


.navbar img {
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
  display:block;
}

.btn:hover {
  background-color: #0097a7;
}



.nav-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  list-style: none;
 
}

  .nav-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  font-weight: bold;
  font-size: 2rem;
}

.nav-links a:hover {
  color: #00bcd4;
}

h1, h2, h3 {
  letter-spacing: 1px;
  color: #3fe09d;
  text-shadow: 0 0 5px #12d2ecd2;
   font-family: 'Poppins', sans-serif;
   text-align:center ;
   font-size:3rem;
}

.project {
  background: #1f1e1e; /* dark background */
  color: #e0e0e0; /* light text */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 187, 255, 0.2);
  border: 1px solid #00ff99; /* subtle green border */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  width: 300px;
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
}

.project:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 255, 153, 0.589);
}

.project h3 {
  color: #00ff99;
  margin-bottom: 10px;
}

.project p {
  color: #c0c0c0;
  font-size: 1rem;
}

.project a {
  margin-top: 15px;
  display: inline-block;
  color: #000;
  background: #00ff99;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px #00ff99;
  transition: background 0.3s ease;
}

.project a:hover {
  background: #00cc77;
  box-shadow: 0 0 14px #00ff99;
}

#about {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #333;
  border-radius: 15px;
  padding: 60px 30px;
  text-align: center;
  color: #e0e0e0;
  max-width: 900px;
  margin: 80px auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
#about p {
  font-size: 1.1rem;
  line-height: 1.6;
}
#contact {
  background: rgba(0, 0, 0, 0.6);
  padding: 60px 30px;
  border-radius: 15px;
  text-align: center;
  color: #e0e0e0;
  max-width: 900px;
  margin: 80px auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

#contact p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

#contact a {
  font-size: 1.5rem;
  margin: 0 10px;
  color: #00ffcc;
  transition: color 0.3s;
}

#contact a:hover {
  color: #ffffff;
}
footer {
  background: #111;
  color: #888;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
  border-top: 1px solid #333;
  margin-top: 60px;
}
#home, #about, #portfolio, #contact {
  scroll-margin-top: 100px;
}
@media (max-width: 768px) {
  .navbar {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 15px;
  }
.nav-links ul {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  padding: 5px 8px;
  text-decoration: none;
}




  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .portfolio-grid {
    flex-direction: column;
    align-items: center;
  }

  section {
    margin: 40px 15px;
    padding: 30px 20px;
  }

  .logo {
    height: 60px;
  }
}


@media (max-width: 768px) {
  .skills-grid,
  .tools-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .skill, .tool {
    width: 80%;
    justify-content: center;
    font-size: 1.2rem;
  }
}
