* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 2em;
}

/* Header Section */
header {
    background: url('job.jpg') no-repeat center center/cover; /* Add your background image */
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

header h1 {
    font-size: 3em;
    background: linear-gradient(to right, red, yellow, white, black, orange, purple);
    -webkit-background-clip: text;
    color: transparent;
}

header p {
    font-size: 1.5em;
}

/* Apply Now Button with animated RGB effect */
.apply-now-btn {
    background: linear-gradient(45deg, red, yellow, blue, green, purple);
    background-size: 200% 200%;
    color: white;
    padding: 10px 30px;
    font-size: 1.5em;
    border: none;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.4s ease;
    animation: rgbColorShift 5s infinite;
}

.apply-now-btn:hover {
    background-position: right center; /* Smooth hover effect */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

/* RGB color animation */
@keyframes rgbColorShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Payment Proof Section */
.payment-proof {
    background-color: #232F3E;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-bottom: 10px;
}

.payment-proof p {
    font-size: 2em; /* Increased font size */
    font-weight: bold;
    animation: colorChange 5s infinite;
}

@keyframes colorChange {
    0% { color: rgb(255, 0, 0); }
    20% { color: rgb(0, 255, 0); }
    40% { color: rgb(0, 0, 255); }
    60% { color: rgb(255, 255, 0); }
    80% { color: rgb(255, 0, 255); }
    100% { color: rgb(0, 255, 255); }
}

/* About Amazon Section */
.about-amazon {
    background-color: #FF9900;
    padding: 40px 0;
    color: white;
    animation: backgroundAnimation 10s infinite;
}

.about-amazon h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.about-amazon p {
    text-align: center;
}

.about-amazon ul {
    list-style: none;
    text-align: center;
    margin-top: 20px;
}

.about-amazon li {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.about-amazon button {
    display: block;
    margin: 20px auto;
    background-color: #232F3E;
    color: white;
    padding: 10px 20px;
    border: none;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.about-amazon button:hover {
    background-color: #131A22;
}

/* Animation for background color */
@keyframes backgroundAnimation {
    0% { background-color: #FF9900; }
    25% { background-color: #FF7700; }
    50% { background-color: #FF5500; }
    75% { background-color: #FF3300; }
    100% { background-color: #FF9900; }
}

/* Reviews Section */
.reviews {
    background-color: #f4f4f4;
    padding: 40px 0;
    text-align: center;
    color: #232F3E;
}

.reviews h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.review {
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    display: inline-block;
    max-width: 600px;
}

.review p {
    font-size: 1.2em;
}

#review-text {
    font-style: italic;
    margin-bottom: 10px;
}

#review-time {
    font-size: 0.9em;
    color: gray;
}

/* Footer Section */
footer {
    background-color: #232F3E;
    color: white;
    text-align: center;
    padding: 20px 0;
}
