/* ===================================
    RESET & GLOBAL SETTINGS
=================================== */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

:root {
    --bg: #222222;
    --card-background: #fff;
    --icon-1bg: #dbeafe;
    --icon-2bg: #f3e8ff;
    --icon-3bg: #dcfce7;
    --icon-1: #3770ed;
    --icon-2: #6e0acb;
    --icon-3: #00742a;
    --primary-bg: #FF6D1F;
    --profile-bg: #BBDCE5;
    --hover: #f9f9f9;
    --text: #000;
    --button-bg: #000;
    --button-text: #fff;
    --dark-text: #fff;
    --search-text: #fff;
    --grad-blue: linear-gradient(135deg, #4A6CF7, #3B56C5);
    --grad-purple: linear-gradient(135deg, #A05DF5, #8643E6);
    --grad-green: linear-gradient(135deg, #2EC478, #1E9E5C);
    --grad-orange: linear-gradient(135deg, #FF9E43, #FF6A00);
    --grad-red: linear-gradient(135deg, #FF5C5C, #D63A3A);
    --grad-yellow: linear-gradient(135deg, #FFCA3A, #FFB302);
    scroll-behavior: smooth;
}

body {
    background: url('../images/bg.jpg') center/cover no-repeat;
    color: var(--dark-text);
}

/* ==========================
    MENU TOGGLE
========================== */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 28px;
    color: #fff;
}

/* ==========================
    HERO BANNER
========================== */
.hero-banner {
    
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
}

/* HERO CONTENT */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}
.hero .hero-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero .hero-text span{
    color: var(--primary-bg);
    font-style: normal;
    font-weight: 700;
}
.hero h1 {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.2;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 25px;
    line-height: 1.6;
    text-align: center;
}

.hero .hero-text .h-btn{
    margin-top: 50px;
    display: flex;
    gap: 20px;
}
.hero .hero-text .h-btn .btn-2{
    background: var(--primary-bg);
}
.hero .hero-text .h-btn button {
    padding: 12px 25px;
    border-radius: 10px;
    border: none;
    background: var(--button-bg);
    color: var(--button-text);
    font-size: 18px;
    cursor: pointer;
    transition: .3s ease;
}

.hero .hero-text .h-btn button:hover {
    opacity: 0.85;
}
.hero .card-container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
    flex-wrap: wrap;
}

.hero .card-container .card {
    background: var(--card-background);
    padding: 25px;
    border-radius: 15px;
    width: 260px;
    height: 220px;
    box-shadow: 0 5px 12px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: .3s ease;
    cursor: pointer;
    position: relative;
}

/* ICON SIZE FIX */
.hero .card-container .card{
    color: var(--text);
}
.hero .card-container .card .bx-user {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 100%;
    background: var(--icon-1bg);
    color: var(--icon-1);
    margin-bottom: 15px;
    font-size: 24px;
}
.hero .card-container .card .bx-checkbox-checked {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 100%;
    background: var(--icon-2bg);
    color: var(--icon-2);
    margin-bottom: 15px;
    font-size: 24px;
}
.hero .card-container .card .bx-dollar-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 100%;
    background: var(--icon-3bg);
    color: var(--icon-3);
    margin-bottom: 15px;
    font-size: 24px;
}


/* ==========================
    HEADER
========================== */
header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.header-section {
    width: 92%;
    background: url('../images/header-bg.jpg');
    height: 70px;
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(235, 95, 0, 0.4);
}

.header-section .logo {
    display: flex;
    overflow: hidden;
}

/* NAVIGATION */
nav ul {
    display: flex;
    gap: 25px;
    align-items: center;
}

nav ul li {
    list-style: none;
}

nav ul a {
    text-decoration: none;
    color: var(--search-text);
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s ease;
}

nav ul a:hover {
    border-bottom: 3px solid #fff;
    padding-bottom: 3px;
}

/* HEADER BUTTON */
.btn button {
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--button-bg);
    color: var(--button-text);
    cursor: pointer;
    transition: 0.3s;
}

.btn button:hover {
    opacity: 0.8;
}

/* ==========================
    MOBILE NAVIGATION
========================== */
@media (max-width: 820px) {

    /* Hide desktop nav */
    nav {
        display: none;
        position: absolute;
        top: 85px;
        right: 5%;
        background: var(--primary-bg);
        width: 210px;
        padding: 20px;
        border-radius: 12px;
        flex-direction: column;
        gap: 18px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    /* Show when toggled */
    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .btn {
        display: none; /* optional for cleaner mobile UI */
    }
}

/* Mobile Hero */
@media (max-width: 768px) {
    .hero-banner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}
/* ===================================
    SPACER SECTION
=================================== */
.spacer{
    height: 100px;
}
/* ===================================
    WHY SECTION
=================================== */
.why-container{
    padding: 60px 5%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.why-container .w-wrapper{
    width: 100%;
}
.why-container .w-wrapper h2{
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--search-text);
    text-align: center;
    margin-bottom: 15px;
}
.why-container .w-wrapper h2 span{
    color: var(--primary-bg);
}
.why-container .w-wrapper p{
    font-size: clamp(0.95rem, 2vw, 1.25rem);
    color: var(--search-text);
    text-align: center;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto 40px;
}
/* Grid Layout */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.why-card {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: .3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Icon */
.why-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: var(--primary-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}

.why-icon i {
    font-size: 26px;
    color: white;
}

.why-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.why-card p {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
}
/* Medium screens: 2 per row */
@media (max-width: 1199px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 per row */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
/* ===================================
    THE DOLUX -  AVAILABLE TASK
=================================== */
.available-tasks{
    padding: 60px 5%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.available-task h2{
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--search-text);
    text-align: center;
    margin-bottom: 15px;
}
.available-task h2 span{
    color: var(--primary-bg);
}
.available-task p{
    font-size: clamp(0.95rem, 2vw, 1.25rem);
    color: var(--search-text);
    text-align: center;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto 40px;
}
.task-section {
    padding: 50px 5%;
}

.task-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Card */
.task-card {
    background: #fff;
    border-radius: 15px;
    padding: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: .3s ease;
    position: relative;
}

.task-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 7px 20px rgba(0,0,0,0.18);
}

.task-card img {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
}

/* Price Badge */
.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-bg);
    color: #fff;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

/* Icon */
.icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    color: #fff;
    font-size: 24px;
}

/* Icon Gradient Variants */
.icon.blue { background: var(--grad-blue); }
.icon.purple { background: var(--grad-purple); }
.icon.green { background: var(--grad-green); }
.icon.orange { background: var(--grad-orange); }
.icon.red { background: var(--grad-red); }
.icon.yellow { background: var(--grad-yellow); }

.task-card h3 {
    margin: 12px 0 5px;
    color: var(--text);
    font-size: 20px;
}

.task-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

/* RESPONSIVE GRID */
@media (max-width: 1024px) {
    .task-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .task-container {
        grid-template-columns: 1fr;
    }
}
/* ===================================
    HOW IT WORKS SECTION
=================================== */
.how-it-works {
    text-align: center;
    padding: 60px 5%;
}

.how-it-works h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 8px;
}

.how-it-works h2 span {
    color: #fff;
}

.how-it-works h2 {
    color: var(--primary-bg);
}

.how-it-works .subtitle {
    font-size: clamp(0.95rem, 2vw, 1.25rem);
    color: var(--search-text);
    text-align: center;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto 40px;
}

/* Steps Container */
.steps-container {
    display: flex;
    gap: 2px;
    align-items: center;
}

/* Step Card */
.step-card {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    text-align: left;
    min-height: 260px;
}

/* Faded Step Number */
.step-card .step-number {
    position: absolute;
    top: 15px;
    left: 18px;
    font-size: 40px;
    font-weight: 700;
    color: #e6e6e6;
    z-index: 0;
}

/* Icon Box */
.step-card .icon {
    width: 55px;
    height: 55px;
    background: var(--primary-bg);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 15px;
    z-index: 2;
    position: relative;
}

.step-card .icon i {
    font-size: 28px;
    color: #fff;
}

/* Title */
.step-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
    color: var(--text);
}

/* Description */
.step-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    z-index: 2;
    position: relative;
}

/* Arrow between cards */
.arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: var(--primary-bg);
}

/* ----- RESPONSIVE BREAKPOINTS ----- */

/* 2 cards per row on medium screens */
@media (max-width: 1100px) {
    .steps-container {
        flex-direction: column;
    }

    .arrow {
        display: none;
    }
}

/* 1 card per row on mobile */
@media (max-width: 650px) {
    .steps-container {
        flex-direction: column;
    }
}

.hero-wrapper {
        max-width: 1200px;
        margin: 40px auto;
        padding: 40px 20px;
    }

    .hero-box {
        background: url('../images/header-bg.jpg') center/cover no-repeat;
        color: white;
        padding: 70px 40px;
        border-radius: 30px;
        text-align: center;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .hero-box h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .hero-box p {
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto 35px auto;
        line-height: 1.6;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

    .hero-buttons .btn {
        background: white;
        color: #333;
        padding: 15px 35px;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        transition: 0.3s;
        border: 2px solid transparent;
    }

    .btn:hover {
        transform: translateY(-3px);
        border-color: white;
        background: transparent;
        color: white;
    }

    .btn-outline {
        background: transparent;
        border: 2px solid white;
        color: white;
    }

    .btn-outline:hover {
        background: white;
        color: #333;
    }

    .hero-features {
        display: flex;
        justify-content: center;
        gap: 25px;
        flex-wrap: wrap;
        margin-top: 15px;
        font-size: 15px;
    }

    .hero-features span {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .check {
        color: #00ff9d;
        font-weight: bold;
    }

    /* 📱 Mobile Responsive */
    @media (max-width: 768px) {
        .hero-box h1 {
            font-size: 32px;
        }
        .hero-box p {
            font-size: 16px;
        }
        .btn {
            width: 100%;
            text-align: center;
        }
    }

    @media (max-width: 480px) {
        .hero-box {
            padding: 50px 25px;
        }
        .hero-box h1 {
            font-size: 28px;
        }
    }
/* ===================================
    FOOTER
=================================== */
.footer {
    background: var(--bg);
    width: 100%;
    min-height: 40vh;
    padding: 40px 5%;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #fff;
}

.footer-section ul li {
    list-style: none;
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-bg);
}
/* small utilities used by footer */
.visually-hidden { position:absolute !important; height:1px; width:1px; overflow:hidden; clip:rect(1px,1px,1px,1px); white-space:nowrap; }

.social-list { display:flex; gap:12px; padding:0; margin:8px 0 0 0; list-style:none; align-items:center; }
.social-list a { display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:8px; background:rgba(255,255,255,0.03); color:inherit; text-decoration:none; transition:transform .15s ease, background .15s ease; }
.social-list a:hover { transform:translateY(-3px); background:rgba(255,255,255,0.06); }

.newsletter-form { margin-top:12px; display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.newsletter-input { padding:10px 12px; border-radius:8px; border:1px solid rgba(255,255,255,0.08); background:transparent; color:inherit; min-width:200px; flex:1 1 220px; }
.newsletter-btn { padding:10px 18px; border-radius:8px; border:none; background:var(--primary-bg); color:#fff; cursor:pointer; }

@media (max-width:768px){
  .newsletter-form { flex-direction:column; align-items:stretch; }
  .newsletter-input { width:100%; }
  .newsletter-btn { width:100%; }
}

/* ===================================
    COPYRIGHT BAR
=================================== */
.copyright {
    background: #1b1b1b;
    color: #fff;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    border-top: 1px solid #333;
}
