html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: white;
    background-color: rgb(20, 20, 20);
}

nav {
    display: flex;
    gap: 50px;
    margin-left: 25px;
    margin-top: 10px;
    border: 1px solid transparent;
}

nav a {
    color: white;
    border: 1px solid transparent;
    border-radius: 8px;
    text-decoration: none;
    padding: 10px;
    transition: 0.3s ease;
}

nav a:hover {
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 8px;
    color: white;
    box-shadow: 0 8px 16px rgba(206, 4, 149, 0.5);
}

#about {
    margin-top: 25px;
    margin-left: 35px;
}

hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, rgb(20, 20, 20) 25%, violet 50%, rgb(20, 20, 20) 75%);
}

.about_me img {
    margin-right: 25px;
    box-shadow: 0 8px 16px rgba(136, 1, 97, 0.5);
    object-fit: cover;
    border-radius: 50%;
}

.info {
    transition: color 0.3s ease;
}

p:hover .info {
    color: rgb(219, 21, 219);
}

#likes {
    margin-top: 25px;
    margin-left: 35px;
}

.my_interests {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(20, 20, 20);
}

.con {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px 25px;
    padding: 30px 10px;
}

.con .card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 450px;
    height: 350px;
    background: rgb(20, 20, 20);
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(136, 1, 97, 0.5);
    transition: 0.5s;
    overflow: hidden;
}


.con .card .img {
    position: absolute;
    top: 20px;
    margin-left: 25px;
    width: 400px;
    height: 200px;
    background: rgb(20, 20, 20);
    overflow: hidden;
    border-radius: 4px;
}



.con .card .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.con .card .cont {
    position: absolute;
    top: 100px;
    width: 100%;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.7); 
    color: white;
    text-align: center;
    overflow: hidden;
    transition: 0.5s;
}


.con .card .cont h2 {
    font-size: larger;
    font-weight: 400;
}

.con .card .cont p {
    font-size: larger;
    font-weight: 400;
}

#work {
    margin-top: 25px;
    margin-left: 35px;
}

.lamisa{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px 25px;
    padding: 30px 10px;
}
.box img{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 630px;
    height: 350px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 35px 80px black;
    transition: 0.5s;
}
section.form {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 30px auto;
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

section.form form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

section.form label {
    font-size: 1.1rem;
    color: white;
}

section.form input[type="email"],
section.form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1rem;
    resize: none; 
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

section.form input[type="email"]:focus,
section.form textarea:focus {
    border-color: violet;
    box-shadow: 0 0 8px violet;
    outline: none;
}

section.form button {
    padding: 10px 15px;
    font-size: 1rem;
    color: white;
    background-color: violet;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

section.form button:hover {
    background-color: rgb(136, 1, 97);
    transform: scale(1.05);
}


.site-footer {
    background-color: #343a40; 
    color: #f8f9fa; 
    padding: 15px 20px;
    text-align: center;
    border-top: 2px solid #495057;
    font-size: 14px;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-section {
    flex: 1;
    min-width: 150px;
    padding: 5px;
    text-align: center;
  }
  
  .footer-links {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .footer-links a {
    text-decoration: none;
    color: #17a2b8;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #ffc107; 
    text-decoration: underline;
  }
  
  .footer-section p {
    margin: 0;
    color: #ced4da;
  }
  
