/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    background-color: #008080;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header .logo h1 {
    color: #fff;
    margin: 0;
}

.header .nav {
    position: relative;
}

.header .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-end; /* Move items to the right */
}

.header .nav ul li {
    display: inline;
}

.header .nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

.header .nav ul li .btn {
    border: 1px solid #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-transform: uppercase;
}

.header .nav ul li .btn.login {
    background-color: transparent;
    color: #fff;
}

.header .nav ul li .btn.register {
    background-color: #fff;
    color: #008080;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle i {
    font-size: 1.5rem;
    color: #fff;
}

.nav-list {
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .header .nav ul {
        flex-direction: column;
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #008080;
        width: 100%;
        text-align: right;
    }

    .header .nav ul li {
        display: block;
    }

    .header .nav ul li a {
        padding: 1rem;
        display: block;
        border-bottom: 1px solid #007070;
    }

    .header .nav ul li .btn {
        display: block;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .nav-list.show {
        display: flex;
    }
}

/* Advantages Styles */

/* CSS for Advantages Section */
.advantages {
    background-color: #008080; /* Light grey background */
    padding: 80px 0; /* Adjust padding as needed */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.advantage-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.advantage-card {
    flex: 0 0 calc(50% - 20px); /* Two cards per row with spacing */
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow effect */
    padding: 30px;
    margin-bottom: 30px;
}

.advantage-card i {
    font-size: 36px;
    color: teal; /* Icon color */
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.advantage-card p {
    font-size: 16px;
    color: #666; /* Text color */
    line-height: 1.6;
}


/* Hero Section Styles */
.hero {
    background: url('../images/tealbg1.jpg') no-repeat center center/cover; /* Add your background image */
    position: relative;
    padding: 4rem 0; /* Adjust padding as needed */
    text-align: center;
    color: #fff; /* Make sure text is readable over the background */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70vh; /* Adjust height as needed */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust overlay color and opacity */
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    width:100%;
    margin-bottom: 2rem;
}

.hero .btn {
    background-color: #008080;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
}

/* Features Section Styles */
.features {
    background-color: #f1f1f1;
    padding: 3rem 0;
    text-align: center;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.features .feature-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.features .card {
    background-color: #fff;
    padding: 1.5rem;
    margin: 1rem;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.features .card i {
    font-size: 2.5rem;
    color: #008080;
    margin-bottom: 1rem;
}

.features .card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.features .card p {
    font-size: 1rem;
}

/* How It Works Section Styles */
.how-it-works {
    background-color: #e6f7f7;
    padding: 3rem 0;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.how-it-works .steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.how-it-works .step {
    background-color: #fff;
    padding: 1.5rem;
    margin: 1rem;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.how-it-works .step i {
    font-size: 2.5rem;
    color: #008080;
    margin-bottom: 1rem;
}

.how-it-works .step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.how-it-works .step p {
    font-size: 1rem;
}

/* Feedback Section Styles */
.feedback {
    background-color: #f1f1f1;
    padding: 3rem 0;
    text-align: center;
}

.feedback h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feedback p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section Styles */
.contact {
    background-color: #e6f7f7;
    padding: 3rem 0;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact .form-group {
    margin-bottom: 1rem;
}

.contact label {
    display: block;
    margin-bottom: 0.5rem;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact button {
    display: block;
    padding: 1rem;
    border: none;
    background-color: #008080;
    color: #fff;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 auto; /* This centers the button horizontally */
    width: fit-content; /* Adjusts the width to fit the content */
}


/* Footer Styles */
.footer {
    background-color: #008080;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

.footer p {
    margin: 0;
}

.footer .social-links {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer .social-links li {
    display: inline;
}

.footer .social-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header .nav ul {
        flex-direction: column;
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #008080;
        width: 100%;
        text-align: right;
    }

    .header .nav ul li {
        display: block;
    }

    .header .nav ul li a {
        padding: 1rem;
        display: block;
        border-bottom: 1px solid #007070;
    }

    .header .nav ul li .btn {
        display: block;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .nav-list.show {
        display: flex;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .features .feature-cards,
    .how-it-works .steps {
        flex-direction: column;
    }
}
