body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url(laptop.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

h1,
h2,
h3,
h4 {
    color: rgb(213, 228, 99);
}

p {
    color: #fbfbfb;
}

/* Header style  */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(226, 197, 69);
    padding: 20px;
    box-shadow: 0 2px 5px rgba(238, 216, 24, 0.497);

}

.navmenu {
    list-style: none;
    display: flex;
    /* align-items: center; */
    gap: 20px;
}

.navmenu li a {
    text-decoration: none;
    color: rgb(16, 16, 36);
    font-weight: bold;
    transition: color 0.3s ease;
}

.navmenu li a:hover {
    color: #ff5a5f;
    /* Change color on hover */
    animation: big;
    animation-duration: 0.5s;
    animation-delay: 0.2s;
    animation-fill-mode: both;
    border: 1px solid #39a8e8;
    border-radius: 20px;
}

@keyframes big {
    from {
        padding: 8px;
    }

    to {
        padding: 10px;
    }
}



.hero {
    background-image: url(rfggsa_8.jpg);
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgb(83, 83, 20);

}

.hero-content h1 {
    font-size: 2.5rem;
    transition: 0.3s;
}

.name-s {
    border-radius: 0px;
    text-shadow: 1px 1px 6px;

}

.name-s:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 8px rgba(238, 216, 24, 0.497);
}

.hero-content p {
    font-size: 1.2em;
}

.btn {
    background-color: aqua;
    border-radius: 5px;
    padding: 10px 20px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    /* Smooth transition for hover effect */


}

.btn:hover {
    background-color: #0b81f7;
    /* Darker shade on hover */
    transform: translateY(-3px);
}

.btn-div:hover {
    transition: 0.3s;
}

.btn-div:hover {
    transform: translateY(-3px);
}

.wcu {
    grid-column: 1 / -1;
    /* Make heading take full width */
    text-align: center;
}


.adv-box {
    padding: 80px 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.advantages:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: 50%;
}

@media (max-width: 768px) {
    .adv-box {
        grid-template-columns: 1fr;
    }

    .advantages:last-child {
        width: 100%;
    }
}


.advantages {
    text-align: center;
    padding: 5px;
    margin: 0;
    border-radius: 20px;
    transition: 0.3s;
}

.advantages img {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;

}

.ex-t {
    height: 250px;
}

/* Login and Signup Section */
.login-signup {
    padding: 50px 20px;
    background-color: transparent;
    text-align: center;
}

.form-container {
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid #d7f297;
    border-radius: 20px;
    transition: 0.3s;
}

.form-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(238, 216, 24, 0.497);
}

.form-container form {
    background-color: transparent;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    color: black;
}

.form-container input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-container button {
    background-color: #ff5a5f;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-container button:hover {
    background-color: #e04e54;
    /* Darker shade on hover */
}

.form-container p {
    color: black;
}

/* Contact Section */
.contact {
    padding: 5px 5px;
    background-color: rgb(226, 197, 69);
    text-align: center;


}

.contact p {
    color: rgb(69, 12, 12);
}

.contact h1 {
    color: black;

}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    color: black;

}

.end-text {

    text-align: center;
    padding: 10px;
    background-color: rgb(92, 86, 61);
    color: #666;
}

.advantages:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(238, 216, 24, 0.497);
}

@keyframes uptodown {
    from {
        transform: translateY(-100px);
    }

    to {
        transform: translateY(0);

    }
}

.hero {
    animation: uptodown;
    animation-duration: 0.7s;
    animation-delay: 0.5s;
    animation-timing-function: ease-in;

}

.hero-content {
    animation: uptodown;
    animation-duration: 0.8s;
    animation-delay: 0.5s;
    animation-timing-function: ease-in;

}

@keyframes lefttoright {
    from{
        transform: translateX(-300px);
    }

    to{
        transform: translateX(0);

    }
}

.navmenu{
    animation: lefttoright;
    animation-duration: 1.5s;
    animation-delay: 0.7s;

}