* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-decoration: none;
    list-style: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 35px 12%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 25px;
    color: #fff;
    font-weight: 600;
    transition: 0.10s ease;
}

.logo:hover {
    color: orangered;
    text-shadow: 0 0 25px orangered, 0 0 25px orangered;
    transform: scale(1.1);
}

span {
    color: orangered;
}

.navbar a {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    margin: 0 20px;
    border-bottom: 3px solid transparent;
    transition: 0.3s ease;
}

.navbar a:hover,
.navbar a:active {
    color: orangered;
    border-bottom: 3px solid orangered;
}

.contact {
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    border: 2px solid transparent;
    font-size: 16px;
    border-radius: 10px;
    letter-spacing: 1px;
    font-weight: 700;
    transition: 0.3s ease;
}

.contact:hover {
    background-color: orangered;
    box-shadow: 0 0 25px orangered;
    color: #fff;
}

.home {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    gap: 7em;
    padding: 30px 12%;
    margin-top: 7rem;
}

.home-content {
    max-width: 800px;
}

.home-content h3 {
    font-size: 22px;
}

.home-content h1 {
    font-size: 32px;
    line-height: 1.2;
}

.home-content h1 span:hover {
    border: 3px solid;
    background-color: orangered;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
}

.home-content p {
    font-size: 18px;
    margin: 25px 0 30px;
    font-weight: 200;
}

.btn-box {
    width: 345px;
    display: flex;
    gap: 2em;
}

.btn-1 {
    padding: 15px 28px;
    background-color: #000;
    color: #fff;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: 0.3s ease;
    cursor: pointer;
}

.btn-1:hover {
    background-color: #333;
    color: #fff;
    border: 2px solid transparent;
}

.img-box img {
    border-radius: 30%;
    width: 400px;
}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-thumb {
    background-color: orangered;
}

::-webkit-scrollbar-track {
    background-color: rgba(0, 0,0, 0.618);
    width: 40px;
}

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12% 8%;
    gap: 10em;
    background-color: #000;
}

.img-about img {
    position: relative;
    width: 400px;
    box-shadow: 0 0 26px orangered, 0 0 26px orangered;
    border-radius: 37%;
}

.about-content h2 {
    text-align: left;
    color: #fff;
    font-size: 30px;
}

.about-content h3 {
    font-size: 50px;
    color: #fff;
}

.about-content p {
    color: #fff;
    font-size: 20px;
    margin: 2em 0 3em;
}

.contact-form form {
    max-width: 50em;
    margin: 1rem auto;
    text-align: center;
    margin-bottom: 3em;
}

.contact-form h2 {
    text-align: center;
    margin-top: 3em;
    margin-bottom: 1em;
    font-size: 35px;
}

.contact-form form .input-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-form form .input-box input,
.contact-form form textarea {
    width: 100%;
    padding: 1.5em;
    font-size: 18px;
    color: #000;
    background: rgb(241, 241,241);
    border-radius: .8rem;
    margin: 1rem 0;
    resize: none;
}

.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    padding: 40px 0;
    background-color: #000;
}

.footer .social {
    text-align: center;
    padding-bottom: 24px;
    color: rgb(253, 250, 250);
}

.footer .social a {
    font-size: 24px;
    color: #fff;
    border: 2px solid orangered;
    width: 40px;
    height: 40px;
    line-height: 35px;
    display: inline-block;
    text-align: center;
    border-radius:45%;
    margin: 0 8px;
    box-shadow: inset 0 0 10px orangered;
    transition: 0.3s ease;
    cursor: pointer;
}

.footer .social a:hover {
    transform: scale(1.2) translateY(-10px);
    color: orangered;
    border: 2px solid orangered;
}

.footer ul {
    margin-top: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}

.footer ul li a {
    color: #fff;
    border-bottom: 3px solid transparent;
    transition: 0.3s ease;
}

.footer ul li {
    display: inline-block;
    padding: 0 15px;
}

.footer .copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 15px;
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .header {
        padding: 20px 8%;
    }

    .navbar a {
        font-size: 14px;
    }

    .home {
        padding: 30px 8%;
        gap: 3em;
    }

    .home-content h1 {
        font-size: 28px;
    }

    .home-content p {
        font-size: 16px;
    }

    .btn-box {
        width: 100%;
        flex-direction: column;
    }

    .img-box img {
        width: 200px;
    }

    .about {
        flex-direction: column;
        gap: 3em;
        padding: 10% 5%;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-content h3 {
        font-size: 35px;
    }

    .about-content p {
        font-size: 18px;
    }

    .contact-form form {
        padding: 0 5%;
    }

    .footer ul li {
        display: block;
        margin: 10px 0;
    }

    .footer .copyright {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .home {
        flex-direction: column;
        padding: 20px 5%;
    }

    .home-content h1 {
        font-size: 24px;
    }

    .home-content p {
        font-size: 14px;
    }

    .img-box img {
        width: 150px;
    }

    .about {
        flex-direction: column;
        gap: 2em;
        padding: 8% 5%;
    }

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

    .about-content h3 {
        font-size: 30px;
    }

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

    .contact-form form .input-box input,
    .contact-form form textarea {
        width: 100%;
        font-size: 16px;
        padding: 1em;
    }

    .footer .social a {
        font-size: 20px;
    }

    .footer .copyright {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 15px 5%;
    }

    .logo {
        font-size: 20px;
    }

    .navbar a {
        font-size: 12px;
    }

    .home {
        padding: 15px 5%;
        gap: 2em;
    }

    .home-content h1 {
        font-size: 22px;
    }

    .home-content p {
        font-size: 12px;
    }

    .img-box img {
        width: 120px;
    }

    .about {
        padding: 5% 3%;
    }

    .about-content h2 {
        font-size: 18px;
    }

    .about-content h3 {
        font-size: 28px;
    }

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

    .contact-form form .input-box input,
    .contact-form form textarea {
        font-size: 14px;
        padding: 0.8em;
    }

    .footer .social a {
        font-size: 18px;
    }

    .footer .copyright {
        font-size: 12px;
    }
}
