* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
}

/* Header Section */
/* Header Section */
.hero {
    position: relative;
    background-image: url('assets/boxes.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 20px 20px 80px 20px;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Adjust the opacity as needed */
    z-index: 1;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.argentina {
    background: linear-gradient(90deg, #00c6ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: argentina-flow 6s infinite ease-in-out;
    background-size: 200% 200%;
}

@keyframes argentina-flow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.coming-soon {
    font-size: 5em;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #00c6ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-flow 6s infinite ease-in-out;
}

.contact-button {
    display: inline-block;
    padding: 20px 40px;
    margin-top: 20px;
    background: linear-gradient(90deg, #00c6ff, #ffffff);
    color: rgb(48, 48, 48);
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    background-size: 200% 200%;
    animation: gradient-flow 6s infinite linear;
    border: none;
    cursor: pointer;
}

.contact-button:hover {
    background-position: 100% 50%;
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.navbar h1 {
    font-size: 1.8em;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
}
.hero-content{

    justify-content: center;
    align-items: center;
}

.hero-content h2 {
    font-size: 2.5em; /* Increased font size */
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2em; /* Increased font size */
    margin-bottom: 30px;
}

.hero-content button {
    padding: 15px 30px;
    font-size: 1.1em;
    border: none;
    background-color: #4CAF50;
    color: #fff;
    cursor: pointer;
    border-radius: 25px; /* Rounder button */
    transition: background-color 0.3s;
}

.hero-content button:hover {
    background-color: #45a049; /* Darker shade on hover */
}

/* Features Section */
.features {
    text-align: center;
    padding: 80px 20px; /* Increased padding for more vertical height */
}

.features h2 {
    font-size: 2.5em; /* Increased font size */
    margin-bottom: 40px;
}

.feature-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-card {
    background-color: #fff;
    padding: 30px;
    width: 320px;
    border: 1px solid #ddd;
    border-radius: 15px; /* Rounder card corners */
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: scale(1.05); /* Subtle zoom effect on hover */
}

.feature-card .icon {
    font-size: 2.5em; /* Increased icon size */
    display: block;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1.1em;
    color: #666;
}

/* Subscription Section */
.subscribe {
    background-color: #f4f4f4;
    text-align: center;
    padding: 80px 20px; /* Increased padding for more vertical height */
}

.subscribe h2 {
    font-size: 2.5em; /* Increased font size */
    margin-bottom: 20px;
}

.subscribe p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #666;
}

.subscribe form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.subscribe input[type="email"] {
    padding: 15px;
    font-size: 1.1em;
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 25px; /* Rounder input corners */
}

.subscribe button {
    padding: 15px 25px;
    font-size: 1.1em;
    border: none;
    background-color: #333;
    color: #fff;
    cursor: pointer;
    border-radius: 25px; /* Rounder button corners */
    transition: background-color 0.3s;
}

.subscribe button:hover {
    background-color: #444; /* Darker shade on hover */
}

footer {
    margin-top: 40px;
    font-size: 0.9em;
    color: #666;
}

footer a {
    color: #666;
    text-decoration: none;
    margin: 0 5px;
}
