﻿html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header */
.header {
    background-color: #343a40;
    color: white;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.contact-info {
    background-color: #f8f9fa;
    color: #343a40;
    text-align: right;
    width: 100%;
    padding: 0.5rem 1rem;
}

    .contact-info a {
        color: inherit;
        text-decoration: none;
    }

        .contact-info a:hover {
            text-decoration: underline;
        }

/* Carousel */
.carousel-section {
    width: 100%;
    height: 70vh;
    overflow: hidden;
}
.custom-caption {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 60%;
    font-weight:400;
    padding: 20px 30px;
    color: #000;
    display: flex;
    align-items: center;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 30%, rgba(255, 255, 255, 0.7) 60%, rgba(255, 255, 255, 0.2) 85%, rgba(255, 255, 255, 0) 100%);
}

    .custom-caption h2 {
        font-size: 2.2rem; /* Bigger font */
        font-weight: 400; /* Sleek and bold */
        line-height: 1.5; /* Good readability */
        letter-spacing: 0.5px; /* Subtle polish */
        margin: 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

@media (max-width: 768px) {
    .custom-caption {
        max-width: 90%;
        padding: 15px 20px;
        margin: 20px 0;
    }

        .custom-caption h2 {
            font-size: 1.2rem;
        }
}

.carousel-inner,
.carousel-item,
.carousel-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cards Section */
.cards-section {
    padding: 4rem 1rem;
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
}

.card-custom {
    width: 100%;
    max-width: 350px;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    .card-custom img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.card-left {
    align-self: flex-start;
    margin-left: 0;
    margin:0;
}

.card-center {
    align-self: center;
}

.two-column-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* Optional: makes it responsive */
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1rem;
}

    .two-column-container .text-column,
    .two-column-container .image-column {
        flex: 1;
        min-width: 300px;
    }

.text-column {
    padding-right: 20px;
}

.image-column {
    text-align: right;
}

    .image-column img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }


.features-wrapper {
    position: relative;
    z-index: 2;
    margin-top: -5vh;
    display: flex;
    justify-content: center;
}

.features-container {
    background-color: #f1f1f1;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
    position: relative;
    width: 100%;
    max-width: 900px;
}

.feature-box {
    background-color: white;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}




/* Footer */
footer {
    width: 100%;
    background-color: #343a40;
    color: white;
    padding: 2rem 1rem;
}

.footer-dark a {
    color: #fff;
    text-decoration: none;
}

    .footer-dark a:hover {
        text-decoration: underline;
    }

.footer-dark .social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-dark .copyright {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 1rem;
}

.card-horizontal {
    max-width: 900px;
    display: flex;
    flex-direction: row;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-section {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 2rem;
    max-width: 900px;
    margin: 2rem auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-family: 'Segoe UI', sans-serif;
}

    .about-section h2 {
        text-align: center;
        padding: 1rem;
        background-color: #f0f0f0;
        font-weight: 600;
        font-size: 2.5rem;
        border-radius: 8px;
        margin-bottom: 1.5rem;
    }

    .about-section p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #333;
    }

    .about-section strong {
        color: #2c3e50;
    }

    .about-section .subheading {
        margin-top: 1.5rem;
        font-weight: bold;
        font-size: 1.2rem;
        color: #3b5998;
    }
.clients-section {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 2rem;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

    .clients-section h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: #3b5998;
    }

.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

    .clients-logos img {
        max-height: 60px;
        object-fit: contain;
        /*filter: grayscale(100%);*/
        /*transition: filter 0.3s ease;*/
    }

        .clients-logos img:hover {
            /*filter: grayscale(0%);*/
        }
.product-parent-heading {
    text-align: center;
    padding: 1rem 1rem;
    background-color: #fff;
    font-weight: 400;
    /*font-size: 3rem;*/
}
.product-parent-subheading {
    text-align: center;
    font-weight: 300;
    /*font-size: 1.25rem;*/
}
        .logo-color {
            color: #0072CE !important;
        }

        .contact-info a {
            color: #000 !important;
            text-decoration: none;
            margin-left: 10px;
        }

        .contact-info div {
            margin-bottom: 5px;
        }

        .custom-search-btn {
            color: #0072CE;
            border-color: #0072CE;
        }

            .custom-search-btn:hover {
                background-color: #0072CE;
                color: white;
            }