
html{
  scroll-behavior: smooth;
}
body{
    background-color: black;
    background-image: url(images/background.png);
     background-repeat: no-repeat;
      background-position: right;
      background-size: 322px;
         background-attachment: scroll;
    color: white;
    height: 100vh;
    margin: 0;
    padding: 0;

}

.navbar{
     position: absolute;
     top: 20px;
     right: 90px;
     display: flex;
     gap:60px;
}
.navbar a{
    color: white;
    text-decoration: none;
    margin: 5px 0;
    font-size: 18px;
    font-weight: bold;
}
.navbar a:nth-child(1){color: white;}
.navbar a:nth-child(2){color: white}
.navbar a:nth-child(3){color: white}
.navbar a:nth-child(4){color:white;}


.navbar a:hover{
    text-decoration:underline;
}



.logo{
    margin-top: -20px;
}
.one{
    position: relative;
    margin-top: 20px;
    margin-left: 300px;
    margin-bottom: 200px;

}
.one h1 span{
    color: #ff004f;
}
.one p span{
    color: #ff004f;
}
.one {
    font-size: 17px;
    
}
.two a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: #ff004f;
    font-size: 24px;
}
#about {
margin-top: 100px;
  padding: 40px;
  color: #f0f0f0;
  background-color: black;
  line-height: 1.8;
  font-size: 18px;
  
}
#about p  {
margin-top: -10px;
}
#about h2{
    color: #ff004f;
}
#skills {
  padding: 40px;
  background-color:black;
  text-align: center;
  
}

#skills h2 {
  font-size: 2.5em;
  margin-top: -30px;
  color: white;
}
#skills h2 span{
  color: #ff004f;
}
.skills-one {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.skill {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.skill i {
  font-size: 3em;
  margin-bottom: 10px;
  color: #444;
  transition: color 0.3s ease;
}

.skill p {
  font-size: 1.1em;
  margin: 0;
  color:yellow;
}

.skill:hover {
  transform: scale(1.1);
}

.skill:hover i {
  color: orange;
}

#experience {
  padding: 60px 20px;
  background-color: black;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.section-title  {
  text-align: center;
  font-size: 38px;
  margin-bottom: 50px;
  color: #FF416C;
}

.experience-card {
  display: flex;
  background-color: #1e1e1e;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.08);
}

.icon {
  font-size: 36px;
  color: #00BFFF;
  margin-right: 20px;
  flex-shrink: 0;
  margin-top: 8px;
}

.details {
  flex-grow: 1;
}

.job-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 4px;
}

.company {
  color: #7CFC00;
  margin-bottom: 8px;
}

.date {
  color: #FFA07A;
  font-size: 14px;
  font-style: italic;
}

.description {
  color: #ccc;
  line-height: 1.6;
}


#contact {
  padding: 60px 20px;
  background-color:black;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.contact-title {
  color: red;
  font-size: 36px;
  margin-bottom: 30px;
}

.contact-info {
  margin-bottom: 30px;
}

.contact-info p {
  font-size: 16px;
  margin: 8px 0;
}

.contact-info i {
  color: #FF416C;
  margin-right: 10px;
}

.contact-info a {
  color: #00FFFF;
  text-decoration: none;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact-form label {
  display: block;
  margin-top: 20px;
  margin-bottom: 5px;
  font-weight: bold;
  color: #ccc;
}

.contact-form i {
  margin-right: 8px;
  color: #FF416C;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  margin-bottom: 10px;
  background-color: #222;
  color: #fff;
  font-size: 15px;
  box-shadow: 0 2px 5px rgba(255,255,255,0.1);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 5px #FF416C;
}

.contact-form textarea {
  resize: vertical;
  height: 120px;
}

.contact-form button {
  margin-top: 20px;
  padding: 12px 20px;
  background-color: #FF416C;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #e03e5d;
}
