body {
         
    /* font-family: 'Arial', sans-serif; */
    background-color: #f3f6fa;
    color: #333;
}

/* Full-Width Hero Section */
.hero {
    background: linear-gradient(to right, #1abc9c, #16a085), url('assets/images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero h1 {

    font-weight: bold;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}

.cta-button {
    background-color: #e61111;
    color: #43bbeb;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 18px;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #16a085;
    color: white;
    transform: translateY(-5px);
}

/* Custom Sections */
.section-header {
    padding: 5px;
    margin-top: 20px;
    border-radius: 100px;
}

.section-header h2 {

    font-weight: 600;
    color: #34495e;
    margin-bottom: 30px;
    text-align: center;
}

.section-header p {

    color: #7f8c8d;
    /* line-height: 1.8; */
    max-width: 90%;
    margin: 0 auto 50px;
    text-align: center;
}

.how-it-works {
    background-color: #ffffff;
    padding: 70px 0;
}

.how-it-works .card {
    border: none;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: #f9f9f9;
    margin-bottom: 30px;
}

.how-it-works .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.how-it-works i {

    color: #1abc9c;
    margin-bottom: 20px;
}

.how-it-works h3 {

    color: #34495e;
    margin-bottom: 15px;
}

.earning-method {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.earning-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-section {
    background-color: #1abc9c;
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 12px;
    margin-top: 50px;
}

.cta-section h2 {

    font-weight: 600;
    margin-bottom: 30px;
}

.cta-section p {

    margin-bottom: 30px;
}

/* Floating Action Button */
.join-now-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #0d0e0d;
    color: rgb(243, 130, 130);
    padding: 20px 25px;
    border-radius: 50%;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 999;
}

.join-now-btn:hover {
    background-color: #16a085;
    transform: scale(1.1);
}

/* Mobile Responsive Design */
@media (max-width: 768px) {


    .cta-button {
        padding: 14px 28px;

    }



    .how-it-works .col-md-4 {
        margin-bottom: 30px;
    }

    .cta-section {
        padding: 40px 20px;
    }
}