﻿
/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F8F9FA;
    color: #333;
}

a {
    text-decoration: none;
    color: #1F77B4E5;
}

    a:hover {
        text-decoration: underline;
    }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1F77B4E5;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

    nav ul li {
        margin-left: 20px;
    }

        nav ul li a {
            color: #333;
            font-weight: 500;
        }

.auth-buttons button {
    margin-left: 10px;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.login-btn {
    border: 1px solid #1F77B4E5;
    background: none;
    color: #1F77B4E5;
}

.signup-btn {
    background-color: #FF7F0EE5;
    color: #fff;
    border: none;
}
/* Hero Section - Full Height with Centered Content */
.hero {
    background: linear-gradient(to bottom, #1F77B4E5, #AEC7E8E5);
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 26px;
    margin-bottom: 30px;
}

.hero ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

    .hero ul li {
        font-size: 20px;
        margin-bottom: 12px;
    }

.cta-btn {
    background-color: #fff;
    color: #FF7F0EE5;
    padding: 14px 30px;
    border-radius: 5px;
    font-weight: bold;
    margin-right: 10px;
    transition: all 0.3s ease;
}

    .cta-btn:hover {
        border: 2px solid #FF7F0EE5;
    }

.learn-btn {
    background: none;
    border: 1px solid #fff;
    color: #fff;
    padding: 14px 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

    .learn-btn:hover {
        background-color: #fff;
        color: #FF7F0EE5;
        border: none;
        font-weight: bold;
    }
/* Features Section - Two Columns with Images/Icons */
.features {
    padding: 80px 0;
    background-color: #fff;
}

    .features h2 {
        font-size: 32px;
        text-align: center;
        margin-bottom: 60px;
    }

.feature-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.feature-column {
    flex: 1;
    min-width: 300px;
}

.feature-card {
    background: #F8F9FA;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .feature-card:hover {
        border: 2px solid #FF7F0EE5;
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .feature-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
        color: #2CA02CE5;
    }

    .feature-card p {
        font-size: 16px;
    }

.workflow-image {
    max-width: 100%;
    margin: 40px auto 0;
    display: block;
    border: 1px solid #ddd;
    border-radius: 10px;
}
/* Features Grid - Single Row for Five Boxes */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}
/* Benchmarks Section - Carousel Style (Simulated with Grid) */
.benchmarks {
    padding: 80px 0;
    text-align: center;
    background-color: #F8F9FA;
}

    .benchmarks h2 {
        font-size: 32px;
        margin-bottom: 60px;
    }

.benchmark-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benchmark-card {
    padding: 25px;
    border: 2px solid #ddd;
    border-radius: 10px;
    background: #fff;
    transition: all 0.3s ease;
}

    .benchmark-card:hover {
        border: 2px solid #FF7F0EE5;
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .benchmark-card h3 {
        color: #2CA02CE5;
        font-size: 22px;
    }

@media (max-width: 1200px) {
    .benchmark-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}
/* CTA Section */
.cta-section {
    background-color: #AEC7E8E5;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

    .cta-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .cta-section p {
        font-size: 20px;
        margin-bottom: 40px;
    }

.button-group:has(.learn-btn:hover) .cta-btn {
    background: none !important;
    border: 1px solid #fff !important;
    color: #fff !important;
    font-weight: normal !important;
}

.button-group:has(.learn-btn:hover) .learn-btn {
    background-color: #fff !important;
    color: #FF7F0EE5 !important;
    border: none !important;
    font-weight: bold !important;
}
/* Footer - Compact */
footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 10px 0;
    text-align: left;
    height: 50px;
}

    footer .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    footer ul {
        list-style: none;
        padding: 0;
        display: flex;
        gap: 15px;
    }

        footer ul li a {
            color: #fff;
        }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.copyright {
    font-size: 16px;
    margin: 0;
    text-align: center;
    width: 100%;
}

.developed {
    font-size: 16px;
    margin: 0;
    text-align: center;
    width: 100%;
    margin-bottom: 5px;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }

    nav ul {
        flex-direction: row;
    }

        nav ul li {
            margin: 10px 10px 0;
        }

    .hero h1 {
        font-size: 32px;
        margin-top:200px;
    }

    .hero h2 {
        font-size: 22px;
    }

    .feature-row {
        flex-direction: column;
    }

    footer .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .copyright, .developed {
        text-align: center;
    }
}


