body {
    font-family: 'Arial', sans-serif;
    background-size: cover;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-image: url('https://img.freepik.com/free-photo/optical-fiber-background_23-2149301527.jpg?size=626&ext=jpg&ga=GA1.1.1527547757.1721555699&semt=ais_user');
}
.bodyy{
    margin: 0;
    font-family: Arial, sans-serif;
    background-color:transparent;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

.about-container {
    background-color:transparent;
    border-radius: 10px;
    border: 1px solid white;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}
.about-container:hover {
    border: 1px solid rgb(235 15 123);
    box-shadow: 0px 0px 10px #6f01f8;

}
.about-container img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    object-fit: cover;
    border: 4px solid #444;
}

.about-container h1 {
    margin-bottom: 20px;
    font-size: 32px;
}

.about-container p {
    font-size: 18px;
    line-height: 1.6;
    color: #bbb;
}

.about-container .skills {
    margin-top: 30px;
}

.about-container .skills h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.about-container .skills ul {
    list-style: none;
    padding: 0;
}

.about-container .skills ul li {
    background-color: #333;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    margin-right: 10px;
}

/* Media Queries */
@media (max-width: 768px) {
    .about-container {
        padding: 30px;
    }

    .about-container h1 {
        font-size: 28px;
    }

    .about-container p {
        font-size: 16px;
    }

    .about-container img {
        width: 120px;
        height: 120px;
    }

    .about-container .skills h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 20px;
    }

    .about-container h1 {
        font-size: 24px;
    }

    .about-container p {
        font-size: 14px;
    }

    .about-container img {
        width: 100px;
        height: 100px;
    }

    .about-container .skills h2 {
        font-size: 20px;
    }

    .about-container .skills ul li {
        margin-bottom: 8px;
        padding: 8px;
        font-size: 14px;
    }
}

.text-shadow {
    text-shadow: 0px 0px 10px rgb(235, 15, 123);
}

.hover-effect {
    transition: all ease-in-out 0.5s;
}

.hover-effect:hover {
    color: rgb(235 15 123);
    text-shadow: 0px 0px 10px #4ccbd9;
}

 /* footer  */
.end {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100px;
}

footer {
    background-color: #1a1a1a;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-section {
    margin-bottom: 20px;
    width: 100%;
    text-align: left;
}

.footer-section h3 {
    font-size: 30px;
    color:white;

    font-weight: bold;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: rgb(235 15 123);
}

.social-icons {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icons li {
    display: inline-block;
}

.social-icons a {
    text-decoration: none;
    /* color:rgb(235 15 123); */
    font-size: 24px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ff00cc;
}

.footer-bottom {
    font-size: 14px;
    color: #888;
    margin-top: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter-form input[type="email"] {
    padding: 10px;
    border: 1px solid white;
    border-radius: 5px;
    margin-right: 10px;
    background: #121212;
    color: #fff;
}

.newsletter-form button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background:white;
    color: #121212;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #ff00cc;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-section {
        width: 30%;
        text-align: left;
    }

    .newsletter-form {
        flex-direction: row;
        align-items: center;
    }

    .footer-bottom {
        text-align: right;
        margin-top: 0;
    }
}