@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f9fa;
}

.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

.logo {
    font-size: 36px;
    font-weight: bold;
    color: rgb(78, 71, 255);
}

.sign-up {
    background-color: rgb(78, 71, 255);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease;
}

.sign-up::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: green;
    transition: width 0.3s ease;
    z-index: -1;
}

.sign-up:hover::before {
    width: 100%;
}

.sign-up:hover {
    transform: translateY(-2px);
}

.hero {
    text-align: center;
    padding: 20px 0 100px 0;
    background-image: url('assets/Hero-bg.png');
    background-size: cover;
    color: #333;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero button {
    background-color: rgb(78, 71, 255);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease;
}

.hero button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: green;
    transition: width 0.3s ease;
    z-index: -1;
}

.hero button:hover::before {
    width: 100%;
}

.hero button:hover {
    transform: translateY(-2px);
}

.see-it-in-action {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.see-it-in-action .text {
    max-width: 400px;
    margin-right: 100px;
}

.see-it-in-action h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.see-it-in-action button {
    background-color: rgb(78, 71, 255);
    font-size: 16px;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease;
}

.see-it-in-action button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: green;
    transition: width 0.3s ease;
    z-index: -1;
}

.see-it-in-action button:hover::before {
    width: 100%;
}

.see-it-in-action button:hover {
    transform: translateY(-2px);
}

.see-it-in-action .image img {
    max-width: 500px;
    border-radius: 10px;
}

.stats {
    text-align: center;
    padding: 50px;
    background-color: #f0e8ff;
    width: 80%;
    margin: auto;
    border-radius: 20px;
}

.stats h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.stat-items {
    display: flex;
    justify-content: space-around;
}

.stat h3 {
    font-size: 48px;
    color: rgb(78, 71, 255);
    margin: 0;
}

.testimonials {
    padding: 50px;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.testimonial-items {
    display: flex;
    justify-content: center;
}

.testimonial {
    max-width: 300px;
    margin: 0 20px;
    padding: 20px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    text-align: left;
    background-color: white;
}



.reviewer {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.ready-to-focus {
    text-align: center;
    padding: 100px 50px;
    background-color: #f8f9fa;
}

.ready-to-focus h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.ready-to-focus button {
    background-color: rgb(78, 71, 255);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease;
}

.ready-to-focus button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: green;
    transition: width 0.3s ease;
    z-index: -1;
}

.ready-to-focus button:hover::before {
    width: 100%;
}

.ready-to-focus button:hover {
    transform: translateY(-2px);
}

.ready-to-focus img {
    max-width: 800px;
    border-radius: 20px;
}

.contact {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px;
}

.contact-text h2 {
    font-size: 56px;
    margin-bottom: 30px;
    text-align: left;
}

.contact-form {
    max-width: 500px;
    width: 100%;
}

.contact-text {
    max-width: 400px;
    width: 100%;
}

form {
    margin: 0;
}

label {
    display: block;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 30px;
}

textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 100px;
}

form button {
    background-color: rgb(78, 71, 255);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease;
}

form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: green;
    transition: width 0.3s ease;
    z-index: -1;
}

form button:hover::before {
    width: 100%;
}

form button:hover {
    transform: translateY(-2px);
}

footer {
    text-align: center;
    padding: 50px;
    background-color: white;
}

footer .logo {
    font-size: 56px;
    margin-bottom: 20px;
}

footer nav {
    margin-top: 20px;
}

footer nav a {
    text-decoration: none;
    color: rgb(78, 71, 255);
    margin: 0 10px;
}




/* ********************************** */
/* Responsive Start */

/* Mobile Devices (max-width: 767px) */
@media (max-width: 767px) {
    .hero-header {
        padding: 15px 20px;
    }

    .logo {
        font-size: 24px;
    }

    .sign-up {
        padding: 8px 15px;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero button {
        padding: 12px 25px;
        font-size: 16px;
    }

    .see-it-in-action {
        flex-direction: column;
        padding: 30px;
    }

    .see-it-in-action .text {
        margin-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .see-it-in-action .image img {
        max-width: 100%;
    }

    .stats {
        padding: 30px;
        width: 90%;
    }

    .stat-items {
        flex-direction: column;
    }

    .stat {
        margin-bottom: 20px;
    }

    .testimonials {
        padding: 30px;
    }

    .testimonial-items {
        flex-direction: column;
    }

    .testimonial {
        margin: 0 0 20px 0;
        max-width: 100%;
    }

    .ready-to-focus {
        padding: 50px 20px;
    }

    .ready-to-focus h2 {
        font-size: 30px;
    }

    .ready-to-focus img {
        max-width: 100%;
    }

    .contact {
        flex-direction: column;
        padding: 30px;
    }

    .contact-text {
        max-width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }

    .contact-text h2 {
        font-size: 40px;
        text-align: center;
    }

    .contact-form {
        max-width: 100%;
    }

    footer {
        padding: 30px;
    }

    footer .logo {
        font-size: 30px;
    }

    footer nav a {
        margin: 0 8px;
    }
}

/* Tablet Device (min-width: 768px and max-width: 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-header {
        padding: 20px 30px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .see-it-in-action {
        padding: 40px;
    }

    .see-it-in-action .text {
        margin-right: 50px;
    }

    .stats {
        padding: 40px;
        width: 85%;
    }

    .testimonial {
        margin: 0 15px;
    }

    .ready-to-focus {
        padding: 80px 30px;
    }

    .contact {
        padding: 40px;
    }

    .contact-text h2 {
        font-size: 50px;
    }
}

/* Desktop Devices (min-width: 1024px and max-width: 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .hero-header {
        padding: 20px 40px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .see-it-in-action .text {
        margin-right: 80px;
    }

    .stats {
        width: 80%;
    }

    .contact-text h2 {
        font-size: 56px;
    }
}

/* Extra Large Device (min-width: 1440px) */
@media (min-width: 1440px) {
    .hero-header {
        padding: 20px 80px;
    }

    .hero h1 {
        font-size: 60px;
    }

    .see-it-in-action {
        padding: 80px;
    }

    .see-it-in-action .text {
        margin-right: 120px;
    }

    .stats {
        width: 70%;
    }

    .testimonials {
        padding: 80px;
    }

    .testimonial {
        max-width: 350px;
        margin: 0 30px;
    }

    .ready-to-focus {
        padding: 120px 80px;
    }

    .ready-to-focus img {
        max-width: 900px;
    }

    .contact {
        padding: 80px;
    }

    .contact-text h2 {
        font-size: 70px;
    }

    .contact-form {
        max-width: 600px;
    }

    footer {
        padding: 80px;
    }
}

/* Nahian */