
body, h1, h2, h3, p, button { 
    margin-bottom: 20px; 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: 'Poppins', sans-serif; 
    background: linear-gradient(135deg, #f9d423 0%, #ff4e50 100%);
    color: #333; 
    padding: 20px;
    overflow-x: hidden;
}

header {
    text-align: left; /* Align items to the left */
    padding: 20px; /* Reduce padding for smaller height */
    background: rgba(0, 0, 0, 0.2); 
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space between logo and buttons */
    align-items: center; /* Center items vertically */
}

header h1 {
    font-size: 3rem; 
    color: #f9d423;
    margin-bottom: 30px;
}

header h2 {
    margin-bottom: 20px; 
}

header p {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #fff;
}

header a {
    display: block; 
    text-align: center; 
    margin-bottom: 20px;
    text-decoration: none;
    color: white;
}

header img {
    height: 60px;
    width: auto;
}

h2 {
    margin-bottom: 30px; 
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0;
}

nav li {
    margin-left: 20px;
}

nav a {
    display: block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.gradient-text {
    font-size: 1.5rem; 
    background-image: linear-gradient(135deg, #f9d423 0%, #ff4e50 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; 
    -webkit-text-fill-color: transparent;
}

.introduction, .features, section {
    text-align: center;
    display: flex;
    justify-content: center; 
    align-items: center; 
    flex-direction: column;
    margin: 40px 0; 
    width: 100%; 
}

.introduction, .features {
    width: 80%;
    max-width: 850px; 
    background-color: rgba(255, 255, 255, 0.8); 
    border-radius: 8px; 
    padding: 40px; 
    margin: 40px auto; 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
}

.introduction p, .features p, .introduction h2, .features h3 {
    color: #fbc02d;
}

.feature, section {
    margin: 20px auto;
    width: 80%;
    max-width: 350px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature:hover, section:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px #f9d423; 
}

.features {
    text-align: center;
    display: flex;
    justify-content: center; 
    flex-wrap: wrap; /* This will allow items to wrap in smaller screens */
    gap: 20px; /* This creates space between the feature boxes */
}

.feature p, .feature h2, section p, section h2 {
    color: #333; 
}

button {
    background-color: #f9d423; 
    color: #333;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    margin-top: 10px;
}

button:hover {
    background-color: #fbc02d; 
    transform: scale(1.05); 
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 1rem;
    color: #fff;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav a {
        padding: 10px;
        text-align: center;
    }
    
    .feature, .introduction {
        cursor: default;
        transition: none !important;
    }

    .feature:hover, .introduction:hover, .features:hover {
        transform: none !important;
        box-shadow: none !important;
    }
}

/* Add a media query for larger screens */
@media (min-width: 769px) {
    .features {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between; /* Adjust spacing between items */
    }

    .feature {
        flex: 1 1 30%; /* Allow flexibility and space distribution */
        margin: 10px; /* Adjust margin for spacing */
    }
}




@keyframes gradientText {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.premium-text {
    background: linear-gradient(270deg, #fff700, #FFE31B, #FFED3A, #F0FF3A, #FFE31B, #fff700);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 8s ease infinite;
    font-weight: bold;
    font-size: 1.5em; /* Adjust as needed */
}
