<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    box-sizing: border-box;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Cabin Sketch', sans-serif;
    background: #f2f0f0;
    color: black;
    line-height: 1.6;
    font-family: 'Cabin Sketch', sans-serif;
    font-weight: 400;
    /* or 700 for bold by default */
    font-style: normal;
}

nav {
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 10;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bolder;
    font-size: 30px;
}

nav ul li a:hover {
    color: rgb(251, 193, 42);
}

.banner-h1 {
    font-size: 4em;
    margin-bottom: 0.5em;
    color: black;
}

.banner-p {
    font-size: 1.5em;
    line-height: 1.6;
    color: black;
}

.main-banner {
    background-image: url('bg.svg');
    background-size: cover;
    background-position: center;
    height: 92vh;
    width: 100%;
    position: reative;
    color: black;
}

.overlay {
    background-color: rgb(0, 0, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}


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

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    background-color: #fff;
    padding: 30px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    flex: 0 0 100%;
    max-width: 100%;
    box-sizing: border-box;
    transition: transform 0.2s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}

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



.featured-solutions {
    text-align: center;
    padding: 60px 20px;
}

.solutions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-card img {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
}

.modal-content iframe {
    width: 100%;
    height: 450px;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: -30px;
    right: 0;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

.solution-icon {
    font-size: 80px;
    opacity: .3;
}

.cta-banner {
    background-color: #cccccc;
    /* Gray background */
    padding: 50px 20px;
    text-align: center;
    margin-top: 60px;
}

.cta-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Cabin Sketch', sans-serif;
}

.cta-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    font-family: 'Cabin Sketch', sans-serif;
}

.cta-button {
    display: inline-block;
    background-color: #fbc12a;
    /* Primary color */
    color: #fff;
    font-family: 'Cabin Sketch', sans-serif;
    /* Use Cabin Sketch font */
    font-size: 1.2rem;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    /* Add subtle shadow */
    transition: all 0.3s ease-in-out;
    letter-spacing: 2px;
    transform: scale(1);
    /* Initial size */
}

.cta-button:hover {
    background-color: #fbc12a;
    /* Darker shade on hover */
    transform: scale(1.1);
    /* Slightly larger on hover */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    /* Enhance shadow on hover */
    letter-spacing: 3px;
    /* More spacing for hover */
}

/* Footer styles */
.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 20px;
    font-family: 'Cabin Sketch', sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-links,
.footer-contact,
.footer-social {
    width: 30%;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-links ul,
.footer-social ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-social li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-social a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
    color: #fbc12a;
}

.footer-social {
    text-align: center;
}

.social-icon {
    display: inline-block;
    background-color: #ff9800;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    margin: 0 10px;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #e68900;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

/* For screens wider than 768px, show 3 per row */
@media (min-width: 768px) {
    .feature {
        flex: 0 0 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
}

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

    .main-banner {
        background-image: url('mobile-bg.svg');
        height: 100vh;
    }

    .overlay {
        height: 100vh;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }

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

    .footer-links,
    .footer-contact,
    .footer-social {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}</pre></body></html>