@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

body {
    color: #1e293b;
    line-height: 1.5;
}

/* Hero Section */
#hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    min-height: 80vh;
}

#hero-left {
    flex: 1;
}

.main-button, .custom-button  {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #14213d;
    font-size: 1.5rem;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}



#hero-left h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #1e293b;
}

#hero-list {
    list-style: none;
    margin: 2rem 0;
}

#hero-list li {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #4b5563;
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

#hero-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #14213d;
    font-weight: bold;
}

#hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

#hero-right img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border: none;
}

/* Section Two */
#section-two {
    background-color: #f8fafc;
    padding: 4rem 2rem;
}

#section-two-headers {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

#section-two-headers h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #1e293b;
    margin-bottom: 1rem;
}

#section-two-headers h3 {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: #4b5563;
}

#horizontal-cards {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.card {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    flex: 1;
}

.card-header {
    color: #14213d;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.card ul {
    list-style: none;
}

.card li {
    color: #4b5563;
    margin: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #14213d;
    font-weight: bold;
}

/* Section Three */
#section-three {
    padding: 4rem 2rem;
    background-color: white;
}

#section-three-header {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: #1e293b;
    text-align: center;
    margin-bottom: 3rem;
}

#section-three > div {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

#orgchart-div {
    flex: 1;
    text-align: center;
}

#orgchart-div h3 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    color: #1e293b;
    margin-bottom: 2rem;
}

#orgchart-div img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 12px;
}

/* Section Four */
#section-four {
    background-color: #f8fafc;
    padding: 4rem 2rem;
}

#section-four-forecasting {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem;
}

#section-four-forecasting-image > img {
    max-width: 80%;
    
}

#section-four-forecasting-text {
    flex-direction: column;
    text-align: left;
    display: flex;
    justify-content: center;
}

#section-four-scheduling {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem;
}

#section-four-scheduling-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

#section-four-scheduling-image > img {
    max-width: 80%;
    height: auto;
}

#section-four-scheduling-text {
    flex-direction: column;
    text-align: left;
    display: flex;
    justify-content: center;
}

#section-four-analytics {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem;
}

#section-four-analytics-image > img {
    max-width: 80%;
    
}

#section-four-analytics-text {
    flex-direction: column;
    text-align: left;
    display: flex;
    justify-content: center;
}

/* Add responsive text sizing for section-four */
#section-four h2 {
    font-size: clamp(1.5rem, 2vw, 2.5rem);
    margin-bottom: 1rem;
}

#section-four h3 {
    font-size: clamp(1.2rem, 1.5vw, 2rem);
    margin-bottom: 1rem;
}

#section-four p {
    font-size: clamp(1rem, 1.2vw, 1.5rem);
    line-height: 1.5;
}

#section-five-header {
    text-align: center;
    font-size: 3rem;

}

/* Add media query for responsive layout */
@media screen and (max-width: 768px) {
    #section-four-forecasting,
    #section-four-scheduling,
    #section-four-analytics {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #section-four-forecasting-text,
    #section-four-scheduling-text,
    #section-four-analytics-text {
        text-align: center;
        margin-bottom: 2rem;
    }

    /* Make images take full width in mobile view */
    #section-four-forecasting-image img,
    #section-four-scheduling-image img,
    #section-four-analytics-image img {
        max-width: 100%;
    }
}


#section-five {
    padding: 4rem 0;
}
#pricingbox {
    background-color: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin: 2rem auto;
}

#section-five h3 {
    text-align: center;
    margin: 0.5rem 0;
}

#section-five h3:nth-of-type(2) {
    color: #14213d;
    font-size: 2.5rem;
    font-weight: 700;
}

#pricingbox h4 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

#pricingbox ul {
    list-style: none;
    padding: 0;
}

#pricingbox li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    color: #4b5563;
}

#pricingbox li::before {
    content: "✓";
    color: #14213d;
    font-weight: bold;
    margin-right: 0.75rem;
}

#section-five-pricing-table {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

/* Add this to your existing media query */
@media screen and (max-width: 768px) {
    #pricingbox {
        margin: 2rem 1rem;
    }
}


/* Footer */
footer {
    background-color: #14213d;
    color: white;
    text-align: center;
    font-size: 1rem;
    padding: 2rem 0;
}

/* Add smooth scrolling to html element */
html {
    scroll-behavior: smooth;
}

/* Remove underline from main button link */
.main-button {
    text-decoration: none;
}