* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Navbar Styles */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: black;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar .logo img {
    height: 70px; /* Adjust as needed */
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar .nav-links li {
    margin: 0;
}

.navbar .nav-links a {
    color: black;
    text-decoration: none;
    font-size: 16px;
}

.navbar .nav-links a:hover {
    text-decoration: none;
    color: #5cb85c;
    font-weight: bold;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, rgba(127, 255, 0, 0.3), white 80%);
    color: #333;
    min-height: 100vh;
}

header {
    background-color: #90EE90;
    padding: 20px;
    text-align: center;
}

header img {
    width: 150px;
}

.container {
    padding: 20px;
    text-align: center;
}

.screenshots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.screenshots img {
    max-width: 100%;
    height: auto;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.screenshots img:hover {
    transform: scale(1.02);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('images/images/screenshot 2024-08-13 135324.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(127, 255, 0, 0.2) 0%, rgba(92, 184, 92, 0.3) 100%);
    z-index: -1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #222;
    font-weight: bold;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #444;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons .btn {
    padding: 12px 30px;
    margin: 0 10px;
    text-decoration: none;
    color: white;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.hero-buttons .btn.primary {
    background: #5cb85c;
    box-shadow: 0 4px 15px rgba(92, 184, 92, 0.4);
}

.hero-buttons .btn.primary:hover {
    background: #4cae4c;
    transform: translateY(-2px);
}

.hero-buttons .btn.secondary {
    background: #34495e;
    box-shadow: 0 4px 15px rgba(52, 73, 94, 0.4);
}

.hero-buttons .btn.secondary:hover {
    background: #2c3e50;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 255, 240, 0.9) 100%);
    text-align: center;
}

.features h2 {
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: #333;
    position: relative;
    display: inline-block;
}

.features h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: #5cb85c;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.features-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.feature {
    max-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #5cb85c;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #5cb85c;
}

.feature p {
    font-size: 1rem;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(92, 184, 92, 0.05) 0%, rgba(127, 255, 0, 0.1) 100%);
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #333;
    position: relative;
    display: inline-block;
}

.how-it-works h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: #5cb85c;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.workflow-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.workflow-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #5cb85c;
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.workflow-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.workflow-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.workflow-item h3 {
    font-size: 1.5rem;
    color: #5cb85c;
    margin-bottom: 10px;
}

.workflow-subtitle {
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1rem;
}

.workflow-list {
    text-align: left;
    margin: 20px 0;
    padding-left: 20px;
}

.workflow-list li {
    margin-bottom: 10px;
    color: #555;
}

.workflow-summary {
    margin-top: 50px;
    padding: 30px;
    background: rgba(92, 184, 92, 0.1);
    border-radius: 15px;
    border-left: 5px solid #5cb85c;
}

.workflow-summary p {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

/* Other Sections */
.booking-scheduling, .tracking, .pricing, .service-providers, .customer-support {
    padding: 80px 20px;
    background-color: white;
    border-bottom: 1px solid #eee;
    position: relative;
}

.booking-scheduling::before, .service-providers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(127, 255, 0, 0.05) 0%, rgba(240, 255, 240, 0.1) 100%);
    z-index: -1;
}

.booking-scheduling h2, .tracking h2, .pricing h2, .service-providers h2, .customer-support h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #90EE90;
}

.booking-scheduling ul, .tracking ul, .pricing ul, .service-providers ul, .customer-support ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.booking-scheduling li, .tracking li, .pricing li, .service-providers li, .customer-support li {
    margin-bottom: 20px;
    font-size: 1rem;
}

.booking-scheduling li strong, .tracking li strong, .pricing li strong, .service-providers li strong, .customer-support li strong {
    color: #333;
}

/* Call to Action Section */
.call-to-action {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(92, 184, 92, 0.1) 0%, rgba(127, 255, 0, 0.2) 100%);
    color: black;
    text-align: center;
}

.call-to-action h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #333;
}

.call-to-action p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.call-to-action .btn {
    padding: 15px 40px;
    background: #5cb85c;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(92, 184, 92, 0.4);
    transition: all 0.3s ease;
}

.call-to-action .btn:hover {
    background: #4cae4c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(92, 184, 92, 0.6);
}

/* Footer */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 40px 0;
}

footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
}

footer .footer-links li {
    display: inline;
    margin: 0 10px;
}

footer .footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

footer .social-media a {
    color: white;
    margin: 0 15px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

footer .social-media a:hover {
    color: #5cb85c;
}

footer .social-media .x-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    text-decoration: none;
    background-color: transparent;
    width: 30px;
    height: 30px;
    padding: 5px;
    border: 1px solid white;
    border-radius: 50%;
    margin: 0 10px;
    transition: all 0.3s ease;
}

footer .social-media .x-svg {
    color: white;
    width: 16px;
    height: 16px;
}

footer .social-media .x-wrapper:hover {
    border-color: #5cb85c;
}

footer .social-media .x-wrapper:hover .x-svg {
    color: #5cb85c;
}

footer .social-media .x-custom {
    font-size: 22px;
    color: white;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s ease;
}

footer .social-media .x-custom:hover {
    color: #5cb85c;
}

footer p {
    margin-top: 20px;
}

/* Mobile Responsiveness */
@media only screen and (max-width: 768px) {
    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
        padding: 10px 20px;
    }
    
    .navbar .logo {
        margin-bottom: 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .navbar .nav-links {
        flex-direction: column;
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        background: white;
        width: 100%;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        gap: 15px;
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease-in-out;
        z-index: 999;
    }
    
    .navbar .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .hero {
        padding: 100px 15px 60px;
        margin-top: 120px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-buttons .btn {
        padding: 10px 20px;
        display: block;
        margin: 10px auto;
        width: 80%;
    }

    .features-grid {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 90%;
    }

    .workflow-container {
        flex-direction: column;
        align-items: center;
    }

    .workflow-item {
        width: 90%;
        min-width: unset;
        max-width: unset;
    }

    .screenshots {
        flex-direction: column;
        align-items: center;
    }

    .screenshots img {
        width: 90%;
    }

    .booking-scheduling, .tracking, .pricing, .service-providers, .customer-support {
        padding: 50px 15px;
    }

    .call-to-action {
        padding: 50px 15px;
    }

    .call-to-action .btn {
        padding: 12px 30px;
        display: block;
        margin: 0 auto;
        width: 80%;
    }

    footer .footer-links li {
        display: block;
        margin: 10px 0;
    }

    footer .social-media a {
        margin: 0 10px;
    }
}
