/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: white;
}

.container {
    width: 90%;
    max-width: 600px;
    margin: auto;
}

/* Header */
header {
    background-color: #00aaff;
    color: white;
    padding: 1em 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 1.5em;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 1em;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1em;
}

header nav ul li a:hover {
    text-decoration: underline;
}
/* Hero Section */
.hero {
    background-color: #e6f7ff;
    color: #333;
    padding: 5em 0;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}
.hero h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 1.5em;
}

.hero .cta-button {
    background-color: gold;
    color: white;
    padding: 0.75em 1.5em;
    text-decoration: none;
    border-radius: 0.5em;
    font-size: 1.2em;
    transition: background-color 0.3s;
}

.hero .cta-button:hover {
    background-color: #e6b800;
}

/* Features Section */
.features {
    background-color: #fff;
    padding: 3em 0;
    text-align: center;
}
.features .feature {
    display: inline-block;
    width: 30%;
    margin: 1em;
    padding: 2em;
    border: 1px solid #ddd;
    border-radius: 0.5em;
    transition: transform 0.3s;
}

.features .feature i {
    font-size: 2em;
    margin-bottom: 0.5em;
    color: #00aaff;
}
.features .feature:hover {
    transform: translateY(-10px);
}
/* Signup Section */
.signup {
    padding: 2em 0;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

.signup h1 {
    font-size: 2em;
    margin-bottom: 1em;
}

.signup .form-group {
    margin-bottom: 1.5em;
    text-align: left;
}

.signup .form-group label {
    display: block;
    margin-bottom: 0.5em;
    font-size: 1em;
}

.signup .form-group input, .signup .form-group select {
    width: 100%;
    padding: 0.75em;
    font-size: 1em;
    border: none;
    border-bottom: 2px solid #ddd;
    transition: border-bottom 0.3s;
}

.signup .form-group input:focus, .signup .form-group select:focus {
    outline: none;
    border-bottom: 2px solid #00aaff;
}

.signup .form-group input:hover, .signup .form-group select:hover {
    border-bottom: 2px solid #00aaff;
}

.phone-field {
    display: flex;
    gap: 0.5em;
}

.signup .cta-button {
    background-color: gold;
    color: white;
    padding: 0.75em 1.5em;
    text-decoration: none;
    border-radius: 0.5em;
    font-size: 1.2em;
    transition: background-color 0.3s;
    cursor: pointer;
    border: none;
}

.signup .cta-button:hover {
    background-color: #e6b800;
}

/* Footer */
footer {
    background-color: #00aaff;
    color: white;
    text-align: center;
    padding: 1em 0;
}

/* Keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Custom Alert Box */
.alert-box {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.alert-content {
    background: white;
    padding: 2em;
    border-radius: 0.5em;
    text-align: center;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.alert-content i {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.alert-content h2 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
}

.alert-content p {
    margin-bottom: 1em;
    font-size: 1em;
}

.alert-content .cta-button {
    background-color: gold;
    color: white;
    padding: 0.75em 1.5em;
    text-decoration: none;
    border-radius: 0.5em;
    font-size: 1.2em;
    transition: background-color 0.3s;
    cursor: pointer;
    border: none;
}

.alert-content .cta-button:hover {
    background-color: #e6b800;
}

/* Media Queries */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    header nav ul {
        flex-direction: column;
        gap: 0.5em;
    }
}

/* Tasks Section */
.tasks {
    padding: 2em 0;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

.tasks h1 {
    font-size: 2em;
    margin-bottom: 1em;
}

.task {
    display: flex;
    gap: 1em;
    margin-bottom: 2em;
    padding: 1em;
    border: 1px solid #ddd;
    border-radius: 0.5em;
    transition: background-color 0.3s;
}

.task img {
    width: 100px;
    height: 100px;
    border-radius: 0.5em;
}

.task-info {
    text-align: left;
}

.task-info h2 {
    margin: 0;
    font-size: 1.5em;
}

.task-info p {
    margin: 0.5em 0;
    font-size: 1em;
}

.task .cta-button {
    background-color: gold;
    color: white;
    padding: 0.75em 1.5em;
    text-decoration: none;
    border-radius: 0.5em;
    font-size: 1.2em;
    transition: background-color 0.3s;
    cursor: pointer;
    border: none;
}

.task .cta-button:hover {
    background-color: #e6b800;
}

.task .cta-button.disabled {
    background-color: #ddd;
    cursor: not-allowed;
}

.task .cta-button.disabled:hover {
    background-color: #ddd;
}
