@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    background: #1f242d;
    overflow-x: hidden;
    padding: 20px; 
}

h1 {
    font-size: 70px; 
    color: #fff;
    text-align: center; 
    animation: fadeInUp 0.6s ease forwards; 
}

p {
    font-size: 24px; 
    color: #0ef;
    font-weight: 600;
    text-align: center;
    margin: 5px 0; 
    animation: fadeInUp 0.6s ease forwards; 
}

.animate {
    opacity: 0;
    transform: translateY(20px); 
    transition: opacity 0.6s ease, transform 0.6s ease; 
}

.show-animate .animate {
    opacity: 1; 
    transform: translateY(0); 
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px); 
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media only screen and (max-width: 768px) {
    h1 {
        font-size: 50px;
    }
    p {
        font-size: 18px; 
    }
}



.sec-2 {
    padding: 20px; 
    text-align: center; 
}

.sec-2 .animate {
    opacity: 0; 
    transform: translateX(100%);
    transition: transform 0.5s, opacity 0.5s; 
}

.sec-2.show-animate .animate {
    opacity: 1; 
    transform: translateX(0); 
}

.sec-2 p {
    color: #0ef; 
    font-size: 20px; 
    max-width: 800px;
    margin: 10px auto; 
}


@media only screen and (max-width: 768px) {
    .sec-2 p {
        font-size: 16px;
    }
    .sec-2 h1 {
        font-size: 50px; 
    }
}


.sec-3 {
    padding: 20px; 
    text-align: center; 
}

.sec-3 .animate {
    opacity: 0; 
    transform: scale(0.9); 
    transition: 0.5s;
}

.sec-3.show-animate .animate {
    opacity: 1; 
    transform: scale(1); 
}

.sec-3 h1 {
    font-size: 60px; 
    color: #fff; 
    margin-bottom: 20px;
}

.sec-3 p {
    color: #e0f; 
    font-size: 20px; 
    max-width: 800px;
    margin: 10px auto; 
}

.sec-3 ul {
    list-style-type: none; 
    padding: 0; 
    margin: 20px 0; 
}

.sec-3 li {
    font-size: 18px; 
    color: #0ef; 
    margin: 10px 0; 
}


@media only screen and (max-width: 768px) {
    .sec-3 h1 {
        font-size: 40px; 
    }

    .sec-3 p {
        font-size: 16px; 
    }

    .sec-3 li {
        font-size: 16px; 
    }
}


.sec-5 {
    padding: 20px; 
    text-align: center; 
}

.sec-5 h1 {
    font-size: 60px;
    color: #fff; 
    margin-bottom: 20px; 
}

.sec-5 .animate {
    opacity: 0; 
    transform: scale(0.9); 
    transition: 0.5s; 
}

.sec-5.show-animate .animate {
    opacity: 1; 
    transform: scale(1); 
}

.sec-5 .job-title {
    color: #e0f;
    font-size: 20px; 
    margin: 5px 0; 
}

.sec-5 .job-location {
    color: #0ef; 
    font-size: 16px; 
    margin: 5px 0; 
}

.sec-5 ul {
    list-style-type: none; 
    padding: 0; 
    margin: 10px 0; 
    text-align: left; 
}

.sec-5 li {
    font-size: 18px; 
    max-width: 800px; 
    color: #0ef; 
    margin: 5px 0; 
    padding-left: 20px; 
}


.sec-5 li::before {
    content: "✔"; 
    color: #0ef; 
    position: absolute;
    left: 0; 
}


@media only screen and (max-width: 768px) {
    .sec-5 h1 {
        font-size: 40px; 
    }

    .sec-5 .job-title {
        font-size: 18px; 
    }

    .sec-5 .job-location {
        font-size: 14px; 
    }

    .sec-5 p,
    .sec-5 li {
        font-size: 16px; 
    }
}




.sec-4 {
    text-align: center;
    padding: 20px; 
}

.Feedback {
    margin-top: 20px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    width: 100%; 
}

#feedbackForm {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    width: 100%; 
    max-width: 400px; 
    margin: 0 auto; 
}

input[type="email"],
textarea {
    width: 100%; 
    padding: 10px; 
    margin-bottom: 10px; 
    border: 1px solid #ccc; 
    border-radius: 5px; 
}

input[type="submit"] {
    background-color: #0ef; 
    color: #fff; 
    padding: 10px 20px;
    border: none;
    border-radius: 5px; 
    cursor: pointer; 
}


@media only screen and (max-width: 768px) {
    input[type="email"],
    textarea {
        font-size: 16px; 
    }

    input[type="submit"] {
        font-size: 18px; 
    }
}


.images a {
    display: inline-block; 
}

.sec-5 .images img {
    max-width:150px;
    max-height:150px;
    margin: 0 10px;
    transform: translateX(-100%);
    transition-delay: calc(.2s * var(--i));
}

.sec-5.show-animate .images img {
    transform: translateX(0);
}


.return-button {
    position: absolute; 
    top: 20px; 
    left: 50%; 
    transform: translateX(-50%); 
    padding: 5px 8px; 
    background-color: #007bff; 
    color: #fff; 
    border: none; 
    border-radius: 4px; 
    text-decoration: none; 
    font-size: 12px; 
    cursor: pointer; 
    z-index: 1000; 
    transition: background-color 0.3s; 
}

.return-button:hover {
    background-color: #0056b3; 
}






a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Section styling from provided CSS */
section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    background: #1f242d;
    overflow-x: hidden;
    padding: 20px;
}



/* Content Wrapper */
.content-wrapper {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    background-color: #2b303b;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    padding-bottom: 300px; /* Add space at the top */
}

/* Title */
.content-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
    margin-top: 80px;
}

/* Image */
.content-image {
    display: block;
    margin: 0 auto 20px;
    max-width: 50%;
    height: auto;
    border: 1px solid #333;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .content-image {
        max-width: 80%;
    }
}

/* Explanation Section */
.content-explanation {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.content-explanation p, 
.content-explanation ul {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.6;
    color: #f1f1f1;
}

.content-explanation ul {
    list-style: disc;
    padding-left: 20px;
}

.content-explanation a {
    color: #007bff;
}

.content-explanation a:hover {
    text-decoration: underline;
}






/* Scroll Down Styling */
.scroll-down {
    text-align: center;
    margin-top: 40px;
    color: #0ef;
    animation: bounce 1.5s infinite;
}

.scroll-down p {
    font-size: 18px;
    color: #0ef;
    margin: 5px 0;
    animation: bounceText 1.5s infinite;
}

.scroll-icon {
    font-size: 30px;
    animation: bounce 1.5s infinite;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes bounceText {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}
