﻿#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    color: white;
    text-align: center;
}

.hero .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out, filter 1s ease-in-out;
    filter: blur(0px); /* Adjust blur level */
}

    .hero .bg-image.active {
        opacity: 1;
    }

.hero-content {
    position: relative;
    z-index: 10;
    top: 50%;
    transform: translateY(-0%);
}

    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .hero-content .btn {
        margin: 10px;
    }

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 9, 9, 0.7); /* Semi-transparent teal color */
    z-index: 1;
}

.button-group .btn {
    flex: 1;
    max-width: 200px; /* Adjust as needed */
}

#hero .btn-hero {
    background: #209dd8;
    border-radius: 50px;
    color: azure;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 11px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px 10x 0 0;
}

.core {
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    margin: 5px;
}

/* Product overview section */
#product-overview {
    padding: 40px 0;
    background: #fff;
}

    #product-overview h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    #product-overview p {
        margin-bottom: 20px;
        font-size: 18px;
    }

    #product-overview img {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    #product-overview .btn-get-in-touch {
        display: inline-block;
        padding: 10px 20px;
        background: #77b300;
        color: #fff;
        text-transform: uppercase;
        text-decoration: none;
        border-radius: 5px;
        transition: background 0.3s;
    }

        #product-overview .btn-get-in-touch:hover {
            background: #333;
        }

/* Related products/services section */
#related-products {
    padding: 40px 0;
    background: #f4f4f4;
}

    #related-products h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    #related-products .card-container {
        display: flex;
        justify-content: space-between;
    }

    #related-products .card {
        background: #fff;
        padding: 20px;
        flex: 1;
        margin: 0 10px;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

        #related-products .card h3 {
            font-size: 22px;
            margin-bottom: 10px;
        }

        #related-products .card p {
            font-size: 16px;
        }

/* Testimonials section */
#testimonials {
    padding: 40px 0;
    background: #fff;
}

    #testimonials h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    #testimonials .testimonial {
        background: #f4f4f4;
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

        #testimonials .testimonial p {
            font-size: 16px;
            font-style: italic;
        }

.nav-tabs {
    margin-bottom: 20px;
}

.accordion-button:not(.collapsed) {
    background-color: #1C6D6F;
    color: white;
}

.accordion-header {
    border-color: #1C6D6F;
}

.ms_partner {
    width: 60px;
    margin-top: 20px;
    padding: 5px;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background-color: rgba(0,0,0,0.1);
}



.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

    .tab button {
        background-color: inherit;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 14px 16px;
        transition: 0.3s;
    }

        .tab button:hover {
            background-color: #ddd;
        }

        .tab button.active {
            background-color: #ccc;
        }

.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

.icon-box {
    text-align: center;
    padding: 10px;
    border: 1px solid #ccc;
    margin-top: 10px;
}

.icon {
    margin-bottom: 10px;
}

    .icon img {
        width: 50px;
        height: 50px;
    }

#clients {
    padding-top: 4em;
}