.navbar .nav-item{
    /* padding-left: 100px; */
    padding-inline: 100px;
    
}

.navbar{
    border-radius: 40px;
    margin-left: 200px;
    margin-right: 200px;
    border: 1px solid white;
    background-color: rgba(0, 0, 0, 0.679);
    margin-top: 20px;
    
}
body{
    background-color: black;
    /* background: radial-gradient(circle at top left, black, green); */
    background: linear-gradient(to right,green, rgba(0, 0, 0, 0.701),rgba(0, 0, 0, 0.603), green);


}
.image{
    height: 400px;
    width: 400px;
    border-radius: 55%;
   margin-top: 100px;
   box-shadow: 10px 20px 10px rgb(28, 26, 27);
   animation: moveUpDown 2s ease-in-out infinite;
    /* transition: transform 0.2s ease-in-out;  */
   

}
@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(25px); /* Move down */
    }
    /* 100% {
        transform: translateY(0); /* Move back to the original position} */
    } 

.intro{
    font-size: larger;
    color: rgb(0, 0, 0);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.whatsapp-column {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    background-color: #25D366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
}

.whatsapp-button:hover {
    background-color: #128C7E; /* Darker green when hovered */
    transform: scale(1.1); /* Slightly grow the button */
}

.whatsapp-button i {
    font-size: 30px;
    color: white;
}
.work{
    height: 40px;
    padding-top: 3.5px;
    width: 30%;
    background-color: black;
    text-align: center;
    color: white;
    font-size: 19px;
    border-radius: 20px;
    overflow: hidden;
}
.text{
     /* display: inline-block; */
    white-space: nowrap;
    animation: scroll 7s linear infinite;
    text-decoration: none;
    color: white;
}
@keyframes scroll{
    0%{
        transform:translateX(-100%);
    }
    100%{
        transform: translateX(100%);
    }
}

/* Smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}

#about {
  /* Use your home page gradient */
  background: linear-gradient(to right,green, rgba(0, 0, 0, 0.701),rgba(0, 0, 0, 0.603), green);
  color: white; /* Text color to contrast the dark gradient */
  padding: 60px 20px;
  scroll-margin-top: 80px;
}

/* Adjust text styles for readability on gradient */
#about h2 {
  color: #0b0b0b;
  font-size: 50px;
}

#about p {
  color: #e0e0e0;
}

/* Button styling on gradient */
#about .btn-primary {
  background-color: #ffffffcc; /* semi-transparent white */
  color: #2575fc;
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#about .btn-primary:hover {
  background-color: #ffffff;
  color: #1a5edb;
}

#about .btn i {
  margin-right: 8px;
}
#backToTopBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 40px;
  left: 40px;
  z-index: 99;
  font-size: 24px;
  border: none;
  outline: none;
  background-color: #0d0d0d;
  color: white;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease;
}

#backToTopBtn:hover {
  background-color: #0b5ed7;
}


/* Projects Section with Gradient */
#work {
  background:linear-gradient(to right,green, rgba(0, 0, 0, 0.701),rgba(0, 0, 0, 0.603), green);
  scroll-margin-top: 80px;
}

#work h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

#work h4 {
  font-weight: 600;
  color: #ffffff;
}

#work p {
  font-size: 1rem;
  line-height: 1.6;
}
#work .project-card img {
  width: 100%;
  height: 230px; /* or 250px depending on your design */
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#contact input,
#contact textarea {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid #ccc;
}

#contact input:focus,
#contact textarea:focus {
  background-color: rgba(255, 255, 255, 0.15);
  outline: none;
  color: #fff;
  box-shadow: none;
}


