:root
{
    --primary-color: #1e1e1e;
    --secondary-color: #f4f4f4;
    --font-family: 'Poppins', sans-serif;
}

body
{
    font-family: var(--font-family);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

header
{
    background-color: var(--primary-color);
    color: white;
    padding: 10px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo
{
    max-width: 80px;
}

header .nav
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .nav .nav-list
{
    display: flex;
    list-style: none;
    padding: 0;
}

header .nav .nav-list .nav-item
{
    margin: 0 15px;
}

header .nav .nav-list .nav-item a
{
    color: white;
    text-decoration: none;
}

header .nav .nav-list .nav-item-button
{
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    /* border-radius: 5px; */
    text-decoration: none;
}

header .nav .nav-list .nav-item-button:hover
{
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Hero Section Styles */

.hero
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 200px;
    background-color: var(--primary-color);
}

.hero-text
{
    max-width: 50%;
    color: var(--secondary-color);
}

.hero-text .hero-title
{
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-description
{
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-logo
{
    max-width: 100px;
}

/* .hero-image
{
    max-width: 40%;
} */
.hero-image
{
    display: flex;
    justify-content: center;
    gap: 20px;
    max-height: 400px;
}

.hero-image img 
{
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-image video {
    width: 50%;
    object-fit: cover;
    padding-top: 20px;
    padding-bottom: 20px;
    display: block;
    margin: 0 auto;
}

/* Solution section style */
.solution
{
    padding: 110px 100px;
    background-color: var(--secondary-color);
}

.solution .solution-title
{
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}


/* Feature section style */
.features
{
    padding: 50px 100px;
    background-color: var(--primary-color);
}

.features-title
{
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--secondary-color);
    padding: 20px 0;
}

.feature-list
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    list-style-type: none;
}

.feature-item
{
    width: 15%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.feature-image
{
    max-width: 80%;
    margin: auto;
}

.feature-description
{
    font-size: 18px;
    color: var(--secondary-color);
    text-align: center;
    font-weight: 400;
}

/* Call to action Section Style */
.cta
{
    text-align: center;
    padding: 140px 100px;
    background-color: #f4f4f4;
}

.cta .cta-title
{
    font-size: 24px;
    margin-bottom: 20px;
}

.cta .cta-button
{
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 20px 80px;
    text-decoration: none;
    cursor: pointer;
}

.cta-phone
{
    color: white;

}

footer
{
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 100px 0;
}

footer img
{
    max-width: 80px;
}

footer h5
{
    margin: 10px 0 0;
}