/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #3b3b98, #373492);
    color: white;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background-color: rgba(0, 0, 0, 0.2);
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

header nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

header nav a:hover {
    text-decoration: underline;
}

header .buttons button {
    margin-left: 10px;
    padding: 5px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: white;
}

.login-btn {
    background-color: #4476f6;
}

.register-btn {
    background-color: #42b983;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 5%;
    flex-wrap: wrap;
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.1rem;
    color: #dcdcdc;
}

.hero-image img {
    max-width: 400px;
    border-radius: 10px;
}

/* Featured Section */
.featured-section {
    text-align: center;
    margin: 30px 0;
}

.featured-section p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.featured-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.featured-logos img {
    max-height: 40px;
    /*filter: grayscale(1); */
    opacity: 0.8;
}

/* Call-to-Action Section */
.cta-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 5%;
    background-color: rgba(0, 0, 0, 0.1);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-image img {
    max-width: 300px;
    border-radius: 10px;
}

.cta-text {
    max-width: 50%;
}

.cta-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.newsletter-btn {
    background-color: #735ee3;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.newsletter-btn:hover {
    background-color: #5a49bd;
}

/* Hero Section2 */
.hero-section2 {
    display: flex;
    justify-content: center;
    padding: 2rem;
}

.hero-content2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    width: 100%;
    gap: 2rem;
}

.hero-text2 {
    max-width: 50%;
}

.hero-text h5 {
    font-size: 1rem;
    text-transform: uppercase;
    color: #ccc;
}

.hero-text h1 {
    font-size: 2rem;
    margin: 1rem 0;
}

.pricing-btn {
    background-color: #a895d3;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.pricing-btn:hover {
    background-color: #9078bd;
}

.hero-image2 img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
}

/* Testimonials Section */
.testimonials-section {
    text-align: center;
    padding: 2rem 1rem;
}

.testimonials-heading {
    font-size: 1.5rem;
    margin: 1rem 0;
    font-weight: lighter;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.testimonial-card {
    background-color: #C2B7E6;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    width: 280px;
    text-align: center;
}

.yellow-bg {
    background-color: #EAD58E;
}

.profile-img {
    border-radius: 50%;
    margin-bottom: 1rem;
    width: 80px;
    height: 80px;
}

.testimonial-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-size: 0.9rem;
    color: #333;
}

/* Explore Section */
.explore-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
}

.explore-card {
    background: linear-gradient(to right, #7B77C9, #D6D47B);
    border-radius: 15px;
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.explore-card h3 {
    font-size: 1.5rem;
    color: #333;
}

.explore-card p {
    font-size: 1.2rem;
    color: #fff;
    margin: 1rem 0;
}

.join-btn {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.join-btn:hover {
    background-color: #333;
}

/* Footer Section */
footer {
    text-align: center;
    padding: 15px 5%;
    background-color: rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}

footer nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

footer nav a:hover {
    text-decoration: underline;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-section, .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-section2, .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-content, .cta-text {
        max-width: 100%;
    }

    .hero-content2, .cta-text {
        max-width: 100%;
    }

    .hero-image img, .cta-image img {
        max-width: 100%;
    }

    .hero-image2 img, .cta-image img {
        max-width: 100%;
    }

    .featured-logos img {
        margin-bottom: 10px;
    }
}

