.navbar-brand figure img {
    width: 275px;
}

.main-banner2-img img{
    max-height: 800px;
    
}

.banner-inner-con{
    z-index: 5 !important;
}

.imagebox-about-us-con{
    background-size: cover;
}

.user-img img,
.customer-detail img{
    height: 56px;
    width: 56px;
}

/* projects */

.red-text a{
    color: var(--primary--color);
}


/* trust section */

/* TRUST SECTION */
.trust-con {
    background: #ffffff;
}

.trust-subtext {
    max-width: 700px;
    margin: 15px auto 40px;
    color: var(--text--color);
}

.trust-row {
    margin-top: 30px;
}

.trust-box {
    background: #ffffff;
    border: 1px solid var(--border--color2);
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.trust-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--primary--color);
}

.trust-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--light--blue--color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary--color);
    transition: all 0.4s ease;
}

.trust-box:hover .trust-icon {
    background: var(--primary--color);
    color: #ffffff;
    transform: rotateY(360deg);
}

.trust-box h5 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text--color2);
}

.trust-box p {
    font-size: 15px;
    color: var(--text--color);
    margin-bottom: 0;
}

.trust-box {
    opacity: 0;
    transform: translateY(30px);
    animation: trustFade 0.8s ease forwards;
}

.trust-box:nth-child(1) { animation-delay: 0.1s; }
.trust-box:nth-child(2) { animation-delay: 0.3s; }
.trust-box:nth-child(3) { animation-delay: 0.5s; }
.trust-box:nth-child(4) { animation-delay: 0.7s; }

@keyframes trustFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.footer-logo img{
    width: 200px;
}

.legal-item{
    margin-left: 0 !important;
    padding-left: 0 !important;
}


/* services rotation  */
.top-bar-services {
    display: flex;
    gap: 10px;
    font-size: 14px;
}

.top-bar-services .label {
    position: static !important;
    font-weight: 600;
    background-color: transparent !important;
    padding: 0 !important;
    color: var(--black--color);
}

#rotating-service-link {
    text-decoration: none;
    color: var(--primary--color);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    height: 20px;
    display: inline-block;
}

#rotating-service-text {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

#rotating-service-text.show {
    opacity: 1;
    transform: translateY(0);
}


/* bread */
.sub-banner-con {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Transparent Overlay Layer */
.sub-banner-con::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* Adjust opacity here */
    z-index: -1;
}

/* Make sure content stays above overlay */
.sub-banner-inner-con {
    position: relative;
    z-index: 2;
}

/* Optional: Improve text visibility */
.sub-banner-inner-con h1,
.sub-banner-inner-con p,
.sub-banner-inner-con .breadcrumb {
    color: #ffffff;
}

.secondary_btn, .primary_btn{
    padding-left: 10px;
    padding-right: 10px;
}


/* responsive */
@media (max-width: 768px) {
    .navbar-brand figure img{
        width: 200px;
    }

    .header-btn .quote-btn{
        display: none !important;
    }

    h1{
        font-size: 35px;
    }

    .banner2-con p{
        font-size: 16px;
    }

    h2{
        font-size: 28px;
    }

    .singleblog-section .content5 .singleblog-review1 img{
        width: 85px;
        height: 85px;
    }
}

@media (max-width: 426px) {
    h1{
        font-size: 28px !important;
    }

    h2{
        font-size: 22px !important;
    }

    .index2-outer-wrapper .case-studies-con .case-box figure{
        margin: 0;
        width: 100%;
    }
}

@media (max-width: 376px) {
    h1{
        font-size: 25px !important;
    }

    h2{
        font-size: 20px !important;
    }

    h5, .pricing-con .pricing-box h4{
        font-size: 18px !important;
    }
}

@media (max-width: 320px) {
    h1{
        font-size: 22px !important;
    }

    p{
        font-size: 14px !important;
    }

    .statistics-box > img{
        display: none !important;
    }

    h2{
        font-size: 18px !important;
    }

    .spotlight-title{
        font-size: 18px !important;
    }

     .spotlight-con p{
        font-size: 14px !important;
    }

    h5, .pricing-con .pricing-box h4{
        font-size: 16px !important;
    }

    .generic-list ul li{
        font-size: 13px;
    }

    .singleblog-section .content5 .singleblog-review1 img{
        width: 70px;
        height: 70px;
    }

    .breadcrumb-item a,
    .breadcrumb-item+.breadcrumb-item{
        font-size: 10px;
    }

}