* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    list-style: none;
}

html {
    scroll-behavior: smooth;
}


/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 12%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(100px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 25px;
    color: white;
    font-weight: 600;
    transition: 0.3s ease;
    padding: 12px;
}

.logo:hover {
    color: orangered;
    text-shadow: 0 0 25px orangered, 0 0 50px orangered;
    transform: scale(1.1);
}

span {
    color: orangered;
}

.navbar a {
    font-size: 20px;
    color: white;
    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: 8px 15px;
    background-color: white;
    color: black;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: 0.3s ease;
}

.contact:hover {
    background-color: orangered;
    box-shadow: 0 0 25px orangered;
    color: white;
}

/* Home Section */
.home {
    width: 100%;
    min-height: 100vh;
    background: rgb(241, 241, 241);
    display: flex;
    align-items: center;
    gap: 7em;
    padding: 30px 12% 0;
}

.home-content {
    max-width: 800px;
}

.home-content h3 {
    font-size: 42px;
}

.home-content h1 {
    font-size: 62px;
    line-height: 1.2;
}

.home-content p {
    font-size: 18px;
    margin: 25px 0 30px;
}

.btn-box {
    width: 345px;
    display: flex;
    gap: 2em;
}

/* Buttons */
.btn-1,
.btn-2 {
    padding: 16px 28px;
    border-radius: 8px;
    font-size: 19px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: 0.3s ease;
    cursor: pointer;
    
}

.btn-1 {
    background-color: black;
    color: white;
    border: 2px solid black;
}

.btn-1:hover {
    background-color: white;
    color: black;
}

.btn-2 {
    background-color: orangered;
    color: white;
    border: 2px solid white;
}


.btn-2:hover {
    background-color: white;
    color: orangered;
}

/* Image */
.img-box img {
    border-radius: 50%;
    width: 300px;
    height: auto;
    object-fit:cover;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: orangered;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.6);
}

/* About Section */
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12% 8%;
    gap: 10em;
    background: black;
}

.about-img img {
    width: 550px;
    box-shadow: 0 0 25px orangered, 0 0 50px orangered;
    border-radius: 75%;
}



.about-content h2,
.about-content h3 {
    text-align: left;
    color: white;
}

.about-content h2 {
    font-size: 42px;
}

.about-content h3 {
    font-size: 62px;
}
.about-content p{
    color: white;
    margin-bottom: 25px;
}

/* Contact Form */
.contact-form h2 {
    text-align: center;
    margin: 3em 0 1em;
    font-size: 36px;
}

.contact-form form {
    max-width: 50em;
    margin: 1rem auto;
    text-align: center;
}

.contact-form .input-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.5em;
    font-size: 18px;
    color: black;
    background: rgb(241, 241, 241);
    border-radius: 0.8rem;
    margin: 1rem 0;
    resize: none;
}

/* Footer */
.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    padding: 40px 0;
    background-color: black;
    text-align: center;
}

.footer .social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: white;
    border: 2px solid orangered;
    border-radius: 50%;
    box-shadow: inset 0 0 10px orangered, 0 0 10px orangered;
    transition: 0.3s ease;
    margin: 0 8px;
}

.footer .social i {
    font-size: 2rem;
    line-height: 50px;
    text-align: center;
    margin: 10px;
}

.footer .social:hover {
    background-color: orangered;
}

.footer .social:hover i {
    transform: scale(1.1);
}

.footer .social a:hover {
    transform: scale(1.2) translateY(-10px);
    color: orangered;
}

.footer ul {
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.6;
}

.footer ul li {
    display: inline-block;
    padding: 0 15px;
}

.footer ul li a {
    color: white;
    border-bottom: 3px solid transparent;
    transition: 0.3s ease;
}

.footer ul li a:hover {
    border-bottom: 3px solid orangered;
}

.footer .copyright {
    margin-top: 15px;
    font-size: 12px;
    color: white;
}

@media (max-width: 768px) {
    .header {
        padding: 20px 5%;
        flex-direction: column;
        align-items: center;
    }

    .navbar {
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .home {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

   

    .about {
        flex-direction: column;
        text-align: center;
        gap: 3em;
    }
}

