
html{
    font-family: var(--font-family);
    -webkit-text-size-adjust:100%;
    -ms-text-size-adjust:100%;
    height:100%
}

body{
    /* font-family: var(--font-family); */
    margin:0;
    height:100%;
    font-size:14px;
    font-weight: 300;
    line-height:1.42857143;
    color: var(--text-color);  
    background-color:#fff

}

.body-footer {
    font-family: Arial, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f9f9f9;
}

h1 {
    font-size: 4rem;
    margin: 0;
}

h2 {
    font-size: 2rem;
    margin: 0;
}

h3 {
    font-size: 1rem;
    margin: 0;
}

h4 {
    font-size: 0.75rem;
    margin: 0;
}

h5 {
    font-size: 0.5rem;
    margin: 0;
}
.product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
    margin-top: 40px;
}

.product-card {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 16px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: background-color 0.5s ease;
    transition: transform 0.2s;
}

.product-card:target {
    background-color: yellow;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    width: 75%; /* Reduce the image width to half of the card width */
    margin: 0 auto; /* Center the image */
    display: block;
    border-radius: 8px;
    padding: 16px; /* Add whitespace around the image */
}

.product-card h3 {
    font-size: 1.25rem;
    margin: 12px 0 8px;
}

.product-card p {
    margin: 4px 0;
    font-size: 0.9rem;
    text-align: left; /* Left-align the text */
}

.title-section {
    text-align: center;
    padding: 20px;
    margin-top: 10px;
}

.title-section h1 {
    font-size: 2rem;
    margin: 0;
}

.title-section p {
    font-size: 1.25rem;
    margin: 5px 0 0;
}

.cta-small {
    margin-top: 20px;
}

.cta-small a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073e6;
    font-size: large;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.cta-small a:hover {
    background-color: #005bb5;
}
        
@media (max-width: 768px) {
    .product-card {
        width: 100%;
    }
    .title-section {
        margin-top: 10px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-size: 1em;
}

.examples {
    display: flex;
    justify-content: center; /* Center the links horizontally */
    align-items: center;    /* Align links within the container */
    gap: 20px;              /* Space between the links */
    position: fixed;        /* Keep visible at all times */
    top: 80px;              /* Position the container 80px from the top */
    left: 50%;              /* Center horizontally in the viewport */
    transform: translateX(-50%); /* Adjust for horizontal centering */
    background-color: rgba(255, 255, 255, 1); /* Solid white background */
    padding: 10px 20px;     /* Add some padding around the links */
    border-radius: 8px;     /* Optional: Slightly rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Subtle shadow */
    z-index: 1000;          /* Ensure it stays above other elements */
    font-size: 14px;        /* Standard font size */
}

@media (max-width: 768px) {
    .examples {
        flex-direction: column; /* Stack the links vertically on mobile */
        gap: 10px;              /* Reduce space between the links */
        padding: 15px;          /* Add more padding for a touch-friendly design */
        width: 90%;             /* Make the container adapt to smaller screens */
        top: 80px;              /* Keep consistent top positioning */
        left: 50%;              /* Center horizontally */
        transform: translateX(-50%); /* Horizontal centering remains */
        font-size: 16px;        /* Slightly larger font for readability */
    }

    .examples a {
        text-align: center;     /* Center the text inside each link */
        display: block;         /* Make each link take up its own line */
        text-decoration: none;
        color: #333;
    }
}



.examples a {
    text-decoration: none;
    color: #333;
    font-size: 1em;
}

.actions {
    display: flex;
    gap: 10px;
}

.actions a {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9em;
}

.pricing {
    /* background-color: #f4f4f4; */
    color: #067c1a;
}

.header-nav-link {
    /* background-color: #f4f4f4; */
    color: #595a59;
}

@media (max-width: 768px) {
    .pricing, 
    .header-nav-link {
        display: none;
    }
}


.login {
    background-color: white;
    color: #186DED;
    border: 1px solid #186DED;
}

.signup {
    background-color: #186DED;
    color: white;
}

.menu-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-icon div {
    width: 25px;
    height: 3px;
    background-color: black;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.mobile-menu a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f4f4f4;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-icon {
        display: flex;
    }


    .text-section {
        order: 1;
    }

    .image-section {
        order: 2;
    }
}






.cta {
    margin-top: 20px;
}

.cta a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073e6;
    font-size: xx-large;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.cta a:hover {
    background-color: #005bb5;
}

.section {
    padding: 40px 20px;
}

.section-1 {
    background-color: #FFFFFF;
}

.section-2 {
    background-color: #FFFFFF;
}

.section-3 {
    background-color: #FFFFFF;
}

.section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.section p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

footer {
    text-align: center;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
}


.logo {
    text-align: center;
}

.logo a {
    display: inline-block;
}

.logo img {
    width: 225px;
    height: auto;
}

@media (max-width: 768px) {
    .logo img {
        width: 35px;
        width: 35px;
    }
}


        /* Footer Styles */
        .footer-container {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 20px 10px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 10px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }

        .footer-links li {
            display: inline;
        }

        .footer-links a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
        }

        .footer-links a:hover {
            text-decoration: underline;
        }

        .footer-legal {
            font-size: 14px;
            margin-top: 10px;
        }



/* Styling for Explained List */
.explained-ul {
    list-style-type: none; /* Remove default bullet points */
    padding: 0;
    margin: 20px 0;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.explained-li {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.explained-li:last-child {
    border-bottom: none; /* Remove border for the last item */
}

/* Highlight the <strong> element */
.explained-li strong {
    color: #0078d7;
    font-weight: bold;
}

/* Add an icon before each item (Optional) */
.explained-li::before {
    content: "✔"; /* Use a tick mark or any Unicode character */
    color: #0078d7;
    font-size: 18px;
    margin-right: 10px;
    margin-top: 2px; /* Align icon with text */
}

/* Hover Effect */
.explained-li:hover {
    background-color: #f1f9ff;
    color: #333;
}


/* Slider */
.lander-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-top: 40px;
    margin-bottom: 40px;
}

.lander-slider-viewport {
    overflow: hidden;
    width: 100%;
}

/* Ensure the container scrolls continuously */
.lander-slider-container {
    display: flex;
    animation: lander-slider-scroll 40s linear infinite; /* Adjust speed as needed */
}

.lander-slider-slide {
    flex: 0 0 auto;
    width: 200px;
    margin: 0 48px;
}

.lander-slider-logo {
    width: 100%;
    max-height: 68px;
    object-fit: contain;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.lander-slider-logo:hover {
    opacity: 1;
}

/* Keyframe to create seamless scroll */
@keyframes lander-slider-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-1 * (200px + 48px) * var(--slide-count)));
    }
}

.user-info {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    margin-top: 90px;
    max-width: 300px;
}

.user-images {
    display: flex;
    margin-right: 15px;
}

.user-images img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-left: -10px;
}

.user-images img:first-child {
    margin-left: 0;
}

.user-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.footer-nav {
    background-color: #f9f9f9;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: auto;
}

.footer-nav-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-nav-column h4 {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
}

.footer-nav-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-column ul li {
    margin-bottom: 10px;
}

.footer-nav-column ul li a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
}

.footer-nav-column ul li a:hover {
    text-decoration: underline;
    color: #333;
}

@media (max-width: 768px) {
    .footer-nav-column {
        flex: 1 1 100%;
    }
}


