/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #232323; /* Dark grey background */
    color: #ffffff; /* White text */
    text-align: center;
}

header {
    background: linear-gradient(to right, #003e8e, #004ab2, #0056d6); /* Gradient dark blue */
    padding: 20px;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: padding 0.3s, height 0.3s;
}

.logo {
    position: absolute;
    top: 10px;
    left: 20px;
    max-width: 100px;
    transition: display 0.3s;
}

h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 3em;
    color: #ffffff; /* White text */
    margin: 0;
    transition: font-size 0.3s, margin-left 0.3s, top 0.3s;
    position: relative;
    top: -20px; /* Adjusted position to move it up on the y-axis */
}

nav {
    transition: top 0.3s, right 0.3s;
}

.nav-links {
    list-style: none;
    padding: 0;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: top 0.3s, left 0.3s, transform 0.3s;
}

.nav-links li {
    display: inline;
    margin: 0 10px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff; /* White text */
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #0e6ac7; /* Light blue */
}

section {
    padding: 160px 20px 40px; /* Increased padding to allow for scrolling */
    border-bottom: 1px solid #ccc;
    background-color: #353535; /* Darker grey for sections */
    color: #ffffff; /* White text */
    min-height: 100vh; /* Ensure sections are tall enough to scroll */
}

h2 {
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
    color: #0e6ac7; /* Light blue */
}

p {
    margin-bottom: 20px;
    color: #ffffff; /* White text */
}

button {
    padding: 10px 20px;
    background: #0e6ac7; /* Light blue button */
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

button:hover {
    background: #0056d6; /* Darker blue on hover */
}

/* Hero Section */
.hero {
    background: url('https://i.ibb.co/6bYzGPD/Happy-People1.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 200px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 600px;
    text-align: center;
    margin-top: 200px; /* Adjust this value to position the text vertically */
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-button {
    padding: 15px 30px;
    background-color: #0e6ac7; /* Light blue button */
    color: white;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0056d6; /* Darker blue on hover */
}

/* Features Section */
.features {
    background-color: #e3f2fd;
    padding: 60px 20px;
}

.features .container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.feature {
    flex: 1;
    padding: 10px;
}
#features {
    background-color: #232323; /* Dark grey background */
    color: #ffffff; /* White text */
}

#features .feature {
    background-color: #232323; /* Dark grey background */
    color: #ffffff; /* White text */
}
.circle {
    width: 50px;
    height: 50px;
    border: 2px solid #0056d6; /* Blue border */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    color: #0056d6; /* Blue text */
    margin: 0 auto 10px auto;
}

.feature h4 {
    font-size: 1.5em;
    color: #0056d6; /* Blue */
    margin-bottom: 15px;
}

.feature p {
    font-size: 1em;
    color: #ffffff; /* White text */
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.pricing-table th,
.pricing-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.pricing-table th {
    background-color: #353535; /* Dark grey background */
    color: #ffffff; /* White text */
}

.pricing-table .tick {
    color: green;
    font-size: 1.5em;
}

.pricing-table .cross {
    color: red;
    font-size: 1.5em;
}

.pricing-button {
    padding: 10px 20px;
    background-color: #0e6ac7; /* Light blue button */
    color: white;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.pricing-button:hover {
    background-color: #0056d6; /* Darker blue on hover */
}

/* Review Slider */
.review-slider {
    position: relative;
    max-width: 800px;
    margin: auto;
}

.review-slides {
    display: flex;
    overflow: hidden;
}

.review-image {
    max-width: 100%;
    display: none;
}

.review-slider .prev,
.review-slider .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
}

.review-slider .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.review-slider .prev:hover,
.review-slider .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Review Box with Orange Background */
.review-box {
    background-color: #001827; /* Orange */
    color: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    position: relative;
}

.review-box h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.review-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-btn {
    background-color: transparent;
    border: none;
    font-size: 2em;
    color: white;
    cursor: pointer;
    padding: 10px;
}

.nav-btn:focus {
    outline: none;
}

.review-image-container {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.review-image {
    width: 100%;
    display: none;
}

.review-image:first-child {
    display: block;
}

.review-rating {
    margin: 10px 0;
}

.star {
    font-size: 1.5em;
    color: #ffd700; /* Gold color for stars */
}

.star.filled {
    color: #ffd700;
}

.review-box p {
    font-size: 1em;
    margin-top: 10px;
    color: #ffffff; /* White text */
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.contact-form label {
    text-align: left;
    color: #ffffff; /* White text */
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background: #0e6ac7; /* Light blue button */
    color: #fff;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.contact-form button:hover {
    background: #0056d6; /* Darker blue on hover */
}

.thank-you-message {
    display: none;
    margin-top: 20px;
    font-size: 1.2em;
    color: green;
    text-align: center;
}

.thank-you-message .fa-check-circle {
    color: green;
    margin-right: 10px;
}

/* FAQ Styles */
.faq {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: left;
    background-color: #353535; /* Dark grey background */
    color: #ffffff; /* White text */
}

.faq-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #0e6ac7; /* Light blue */
}

.faq-item p {
    font-size: 1em;
    color: #ffffff; /* White text */
}

/* Founder Section */
.founder {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    text-align: left;
    background-color: #353535; /* Dark grey background */
    color: #ffffff; /* White text */
}

.founder-img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-right: 20px;
}

.founder-info {
    max-width: 600px;
}

.founder-info h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #0e6ac7; /* Light blue */
}

.founder-info p {
    font-size: 1em;
    color: #ffffff; /* White text */
}

.accomplishments {
    padding: 60px 20px;
    background-color: #353535; /* Dark grey background */
    color: #ffffff; /* White text */
}

.accomplishments h2 {
    margin-bottom: 40px;
    font-family: 'Raleway', sans-serif;
    color: #0e6ac7; /* Light blue */
}

.timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 60px; /* Increased spacing between steps */
    position: relative;
}

.step1, .step3 {
    justify-content: flex-start; /* Align left */
}

.step2, .step4 {
    justify-content: flex-end; /* Align right */
}

/* Adjust order for alternating layout */
.step1 .circle, .step3 .circle {
    order: 1;
    margin-right: 550px; /* Add space between circle and line */
}

.step1 .line, .step3 .line {
    order: 2;
}

.step1 .description, .step3 .description {
    order: 3;
}

.step2 .description, .step4 .description {
    order: 1;
}

.step2 .line, .step4 .line {
    order: 2;
}

.step2 .circle, .step4 .circle {
    order: 3;
    margin-left: 550px; /* Add space between circle and line */
}

.step .circle {
    position: relative;
    width: 200px; /* Increased size */
    height: 200px; /* Increased size */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    font-size: 1.2em;
    font-family: 'Roboto', sans-serif;
    padding: 20px;
}

.step1 .circle {
    background-color: #00a2e8; /* Blue */
}

.step2 .circle {
    background-color: #f7941d; /* Orange */
}

.step3 .circle {
    background-color: #ed1c24; /* Red */
}

.step4 .circle {
    background-color: #8cc63f; /* Green */
}

.step .circle h3 {
    margin: 10px 0;
    font-size: 1.5em; /* Increased font size */
    font-weight: bold;
}

.step .circle i {
    font-size: 2.5em; /* Increased icon size */
    margin-bottom: 10px;
}

}

.line {
    width: 5px;
    height: 100px;
    background-color: #333;
    position: absolute;
}

.line-right {
    left: calc(50% + -130px); /* Correct position to the right of the circle */
}

.line-left {
    right: calc(50% + -130px); /* Correct position to the left of the circle */
}

.line1 {
    background-color: #00a2e8; /* Blue */
}

.line2 {
    background-color: #f7941d; /* Orange */
}

.line3 {
    background-color: #ed1c24; /* Red */
}

.line4 {
    background-color: #8cc63f; /* Green */
}

.description {
    width: 500px; /* Increased width */
    background-color: #353535; /* Dark grey background */
    padding: 20px; /* Increased padding */
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-size: 1em; /* Increased font size */
    position: absolute;
    color: #ffffff; /* White text */
}

.description-left {
    left: calc(50% - 450px); /* Moved 40px to the left */
}

.description-right {
    right: calc(50% - 450px); /* Moved 40px to the right */
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #logo {
        display: none;
    }

    #title {
        font-size: 1.5em;
        margin-left: 0;
        text-align: left;
    }

    #menu-toggle {
        display: block;
        background: none;
        border: none;
        color: #333;
        font-size: 1.5em;
        cursor: pointer;
    }

    .mobile-menu {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 60px;
        right: 20px;
        border: 1px solid #ddd;
        border-radius: 5px;
    }

    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu ul li {
        margin: 0;
    }

    .mobile-menu ul li a {
        padding: 10px 20px;
        display: block;
        color: #333;
        text-decoration: none;
    }

    .mobile-menu ul li a:hover {
        background-color: #f4f4f4;
    }

    .nav-links {
        display: none;
    }

    .pricing-table {
        display: block;
        overflow-x: auto;
    }

    .pricing-table th, .pricing-table td {
        padding: 5px;
    }

    .step {
        flex-direction: column;
    }

    .step .circle {
        margin: 0 auto;
    }

    .step .description {
        width: auto;
        margin-top: 10px;
    }

    .contact-form textarea {
        height: 150px;
    }
}
