/* MAIN HEADER */
html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

.simple-footer {
    margin-top: auto;
    /* Push footer to bottom */
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

.main-header {
    width: 100%;
    background: linear-gradient(90deg, #00FF95, #04DADB);
    padding: 15px 0;

    /* New Effects */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
}

/* CONTAINER for perfect alignment */
.container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.logo img {
    width: 50px;
    display: block;
    margin-right: 11px;
}

/* LOGO TEXT */
.logo-text {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    /* white text to match header */
    letter-spacing: 1px;
    text-transform: capitalize;

}

/* NAVIGATION */
.navbar ul {
    display: flex;
    gap: 47px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar ul li a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 17px;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}


@media (max-width: 768px) {

    .navbar {
        display: none;
        width: 100%;
        background: linear-gradient(90deg, #00FF95, #04DADB);
    }

    .navbar ul {
        flex-direction: column;
        text-align: center;
        padding: 15px 0;
    }

    .menu-toggle {
        display: block;
    }
}

.simple-footer {

    text-align: center;
    padding: 23px 0;
    margin-top: auto;

    box-shadow: 0px -4px 12px rgba(0, 0, 0, 0.15);
    border-top: 2px solid rgba(255, 255, 255, 0.4);
}

.simple-footer p {
    color: #ffffff;
    font-size: 17px;
    margin: 0;
}

.main-section {
    height: -webkit-fill-available;
    padding: 120px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-section h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}
/* BANNER SECTION */
.hero-banner {
    background: linear-gradient(90deg, #00FF95, #04DADB);
    padding: 120px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CONTENT WRAPPER */
.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 18px;
    color: #f3f3f3;
    margin-bottom: 30px;
}

/* CALL-TO-ACTION BUTTON */
.banner-btn {
    background: #ffffff;
    color: #00b08d;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.banner-btn:hover {
    background: #00b08d;
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 32px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
}
/* SECTION TITLES */
section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
}

/* WHY CHOOSE US */
.why-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.why-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.why-box {
    background: white;
    padding: 50px;
    width: 300px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

/* FEATURES SECTION */
.features-section {
    padding: 60px 20px;
    background: linear-gradient(90deg, #00FF95, #04DADB);
    color: white;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.feature-box {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    width: 280px;
    text-align: center;
    border-radius: 10px;
    backdrop-filter: blur(3px);
}

/* TESTIMONIALS */
.testimonials-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.testimonial-box {
    background: white;
    padding: 25px;
    width: 300px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.12);
}

/* FAQ SECTION */
.faq-section {
    padding: 60px 20px;
    background: #ffffff;
}

.faq-box {
    width: 70%;
    margin: 10px auto;
}

.faq-question {
    width: 100%;
    padding: 15px;
    background: linear-gradient(90deg, #00FF95, #04DADB);
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    text-align: left;
}

.faq-answer {
    display: none;
    background: #f5f5f5;
    padding: 15px;
    border-radius: 0 0 8px 8px;
}
