.navbar-brand img {
        width: 40px;
        height: 40px;
        object-fit: cover;
        border-radius: 50%;
        margin-right: 10px;
    }

.ma2br__modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #0808081f;
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .ma2br__loader-wrapper {
        background: var(--ma2br__main_white);
        padding: 20px 30px;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        font-size: 16px;
        color: var(--ma2br__pastel_dark);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        max-width: 300px;
        text-align: center;
    }

    .ma2br__spinner {
        width: 24px;
        height: 24px;
        border: 3px solid var(--ma2br__pastel_dark);
        border-top: 3px solid var(--ma2br__main_color);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }
@media (max-width: 767px) {
  .mtss {
    font-size: 14px;
  }
}

/*** Features ***/
    .feature {
        background: linear-gradient(to right, rgba(0, 0, 0, .1), rgba(0, 0, 0, 1) 50%), url(../img/carousel-1.jpg) left center no-repeat;
        background-size: cover;
    }

    .feature-row {
        box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    }

    .feature-item {
        border-color: rgba(0, 0, 0, .03) !important;
    }

    .feature-icon {
        position: relative;
        transition: .5s;
    }

    .feature-item:hover .feature-icon {
        margin-left: 3rem;
    }

    .feature-item a::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 1px;
        background: var(--bs-secondary);
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        z-index: -1;
    }

    .feature-item a:hover {
        color: var(--bs-primary) !important;
    }

    .feature-item a:hover::after {
        background: var(--bs-primary);
    }


    .btn-xxl-square {
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: normal;
    }
.ma2br__cd6-cardsection-title {
        text-align: center;
        margin-bottom: 40px;
    }

    .ma2br__cd6-cardsection-title h2 {
        font-size: 32px;
        font-weight: 700;
        position: relative;
    }

    .ma2br__cd6-cardsection-title h2::after {
        content: "";
        display: block;
        width: 50px;
        height: 3px;
        background: #00c99c;
        margin: 10px auto 0;
        border-radius: 2px;
    }

    .ma2br__cd6-cardsection-title p {
        color: #6c757d;
        max-width: 600px;
        margin: 0 auto;
        font-size: 16px;
    }

    .ma2br__cd6-cardsection-item {
        background: transparent;
        padding: 30px 0;
    }

    .ma2br__cd6-cardsection-item span {
        display: block;
        font-size: 20px;
        font-weight: 600;
        color: #222;
        margin-bottom: 10px;
        position: relative;
    }

    .ma2br__cd6-cardsection-item span::after {
        content: "";
        display: block;
        width: 20px;
        height: 2px;
        background: #00c99c;
        margin: 8px auto 0;
        border-radius: 2px;
    }

    .ma2br__cd6-cardsection-item p {
        margin: 0;
        font-size: 14px;
        color: #6c757d;
    }


.about-triangle-section {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .about-triangle-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-bottom: 150px solid rgba(255, 193, 7, 0.2); /* bg-warning */
    z-index: 0;
  }

  .about-triangle-section .row-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .about-triangle-section .row-content h2 {
    flex: 1 1 auto;
    margin-right: 20px;
  }

  .about-triangle-section .row-content p {
    flex: 2 1 auto;
  }
.about-shape-section {
    position: relative;
    overflow: hidden;
  }

  .about-shape-section::before {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, rgba(13, 110, 253, 0.1), transparent 70%);
    z-index: 0;
    border-radius: 50%;
  }

.ma2br_cf2__gradient-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
        z-index: 0;
        pointer-events: none;
    }
.icon i {
        background-color: var(--bs-light);
        border-radius: 0.5rem;
        padding: 15px;
        display: inline-block;
    }

    .ma2br_cf5-service-card {
        border: 1px solid transparent;
        transition: all 0.3s ease-in-out;
    }

    .ma2br_cf5-service-card:hover {
        border-color:var(--bs-secondary);
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }

    .slick-slide {
        padding: 0 10px;
    }

    .slick-arrow-custom {
        background: var(--bs-primary);
        border: none;
        color: white;
        padding: 10px 15px;
        font-size: 1rem;
        border-radius: 50%;
        transition: background 0.3s ease-in-out;
        z-index: 10;
    }

    .slick-arrow-custom:hover {
        background: var(--bs-primary);
    }

    .slick-prev {
        position: absolute;
        top: 50%;
        left: -40px;
        transform: translateY(-50%);
    }

    .slick-next {
        position: absolute;
        top: 50%;
        right: -40px;
        transform: translateY(-50%);
    }









