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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f5f5f5;
}


/* Main Section */
.topSection {
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    width: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-overlay {
    height: 75%;
    width: 70%;
    text-align: left;
}


/* Title */
.topSection h1 {
    font-family: "Arvo", serif;
    font-weight: 400;
    font-size: 4rem;
    color: #f1f1f1;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
}


/* Typewriter */
#typewriter span {
    font-family: "Poppins", sans-serif;
    font-size: 1.4rem;
    color: #f1f1f1;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    height: 2em;
}

#dynamic-text {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
}

#dynamic-text::after {
    content: '|';
    animation: blink 0.8s steps(1) infinite;
    margin-left: 2px;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}


/* Main advantages */
.points2 {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    width: 30%;
    gap: 20px;
}

.point2 {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.point2:hover {
    transform: translateX(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.point2 h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.point2 p {
    font-size: 1rem;
    color: #555;
}


/* Why chose us? */
.section-strong-points {
    padding: 60px 100px;
    background-color: #f8f9fa;
    text-align: center;
}

.section-strong-points h2 {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 40px;
}

.points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.point {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.point:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.point h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.point p {
    font-size: 1rem;
    color: #555;
}


/* Results */
.section-results {
    padding: 80px 20px;
    background-color: white;
    text-align: center;
}

.section-results h2 {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 40px;
}

.results-container {
    display: flex;
    gap: 120px;
    align-items: center;
    justify-content: center;
}

.result-item {
    background-color: #f5f5f5;
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 470px;
    width: 470px;
}

.result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.result-item h3 {
    font-size: 1.8rem;
    color: #333;
}

.result-item p {
    font-size: 0.9rem;
    color: #555;
}

.result-container {
    padding: 30px 30px 30px 30px;
    height: 100%;
    width: 100%;
}

.result-container img {
    height: 100%;
    width: auto;
}

/* Bullet Points inside Results */
ul.custom-bullets {
    list-style: none;
    padding-left: 0;
}

ul.custom-bullets li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

ul.custom-bullets .bullet {
    width: 16px;
    /* Bigger width */
    height: 16px;
    /* Bigger height */
    background-color: #007bff;
    border-radius: 50%;
    /* Keeps it a circle */
    margin-right: 12px;
}


/* FAQ */
.section-faq {
    padding: 60px 300px;
    background-color: #f8f9fa;
    text-align: center;
}

.section-faq h2 {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 40px;
}

.faq-item {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1.01);
}

.faq-question {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #007bff;
    text-align: left;
    width: 100%;
    padding: 10px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #0056b3;
}

.faq-answer {
    display: none;
    padding-top: 10px;
    font-size: 1rem;
    color: #555;
    text-align: left;
    padding-left: 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question {
    font-weight: bold;
}


/* About Us */
.section-about {
    padding: 60px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.section-about h2 {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

.section-about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
}


/* Contact Form | DISABLED */
.section-contact {
    padding: 60px 20px;
    background-color: white;
    text-align: center;
}

.section-contact h2 {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-size: 1rem;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.contact-form button {
    padding: 10px 20px;
    font-size: 1.2rem;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0056b3;
}


/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 42px;
    right: 42px;
    background-image: url(../images/wppbtn.png);
    background-size: cover;
    background-position: center;
    border: none;
    border-radius: 10%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition-duration: 300ms;
}

.whatsapp-button:hover {
    transform: scale(1.2);
}


/* Footer */
footer {
    padding: 20px;
    background-color: #007bff;
    color: white;
    text-align: center;
}

footer nav {
    margin-top: 10px;
}

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

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

@media (max-width: 1400px) {

    .header-overlay {
        width: 75%;
        padding-top: 40px;
        padding-bottom: 80px;
    }

    #typewriter span {
        font-size: 1.2rem;
    }

    .points2 {
        width: 34%;
    }

    .point2 h3 {
        font-size: 1.3rem;
    }

    .point2 p {
        font-size: 0.9rem;
    }

    .point h3 {
        font-size: 1.3rem;
    }

    .point p {
        font-size: 0.9rem;
    }

    .section-strong-points h2 {
        font-size: 2.2rem;
    }

    .section-results h2 {
        font-size: 2.2rem;
    }

    .result-item h3 {
        font-size: 1.4rem;
    }

    .custom-bullets li {
        font-size: 0.9rem;
    }

    .whatsapp-button {
        bottom: 36px;
        right: 36px;
        width: 78px;
        height: 78px;
    }
}

@media (max-width: 600px) {
    .topSection {
        background-position: right;
    }

    .header-overlay {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .header-overlay h1 {
        font-size: 2.8rem;
        text-align: center;
    }

    #typewriter {
        margin-top: 10px;
        width: 80%;
        text-align: center;
    }

    #typewriter span {
        display: block;
        height: 1.5em;
    }

    .points2 {
        width: 90%;
    }

    .point2 {
        text-align: center;
    }

    .section-strong-points {
        padding: 40px 0px;
    }

    .section-strong-points h2 {
        font-size: 1.8rem;
    }

    .section-results {
        padding: 50px 20px;
    }

    .section-results h2 {
        font-size: 1.4rem;
    }

    .results-container {
        flex-direction: column;
        gap: 40px;
    }

    .result-container {
        padding: 30px 0px;
        width: 300px;
    }

    .result-item {
        max-width: 100%;
        max-height: 100%;
        height: auto;
    }

    .result-item h3 {
        font-size: 1.2rem;
    }

    .result-container img {
        height: auto;
        width: 90%;
    }

    .custom-bullets li {
        font-size: 0.8rem;
    }

    .section-faq {
        padding: 60px 20px;
    }

    .faq-question {
        font-size: 1.05rem;
    }

    .section-faq h2 {
        font-size: 1.8rem;
    }

    .section-about {
        padding-top: 0px;
    }

    .section-about h2 {
        font-size: 1.8rem
    }

    .section-about p {
        max-width: 360px;
        font-size: 1rem;
    }

    .section-contact {
        padding-top: 20px;
    }

    .section-contact h2 {
        font-size: 1.8rem;
    }

    .footer {
        font-size: 0.9rem;
        text-align: center;
    }


    .whatsapp-button {
        bottom: 28px;
        right: 28px;
        width: 62px;
        height: 62px;
    }
}