/* Reset & Fonts */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: rgb(3, 1, 55);
}



@media (min-width: 1024px) {
    body {
        margin: 0;
        padding: 0;
        font-family: 'Poppins', sans-serif;
        background: rgb(3, 1, 55);
    }
    .hero{
        background: transparent;
    }


/* Hero Section */
    .hero {
    text-align: center;
    padding: 3rem 1rem;
    background: transparent;
    color: white;
    animation: fadeIn 1s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    }

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 2rem 1rem;
    text-align: center;
}

.features-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.feature-box {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.feature-box h3 {
    margin: 0.5rem 0;
    color: #1e293b;
}
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*---------------NEW DESIGN--------------------*/



/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #f5f5f5;
    color: #222;
}



/* Hero */
.hero {
    text-align: center;
    color: white;
    padding: 80px 20px;
    background: transparent;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
}

/* Offer Section */
.offer-section {
    padding: 50px 20px;
    text-align: center;
}

.offer-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background: #fff;
    background: linear-gradient(135deg, #ff73fa 0%, #df6cb5 50%, #8f048a 100%);
    color: wheat;
    padding: 50px;
    width: 500px;
    height: 220px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    position: relative;
}


.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 7px 10px rgba(226, 107, 250, 0.5);

}

.card i {
    font-size: 2rem;
    color: #83087f;
    margin-bottom: 10px;
}

.card h3 {
    margin-bottom: 10px;
    color: white;
}


/* Responsive */
@media(max-width: 768px) {
    .nav-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .card-container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 80%;
    }
}
