.catalogue-item .how-work-item-body-gold {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.catalogue-download-btn {
    margin-top: 8px;
}

.catalogue-download-btn .btn-default {
    font-size: 14px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.catalogue-download-btn .btn-default i {
    font-size: 14px;
}

.footer-logo-gold img {
    max-width: none !important;
    width: 260px !important;
    border-radius: 10px;

    background-color: white;
}

.logo2 {
    width: 260px;

    border-radius: 10px;
    padding: 10px;
}


.navbar-nav .nav-item.active .nav-link {
    font-weight: 700;
}

.catalogue-item .how-work-item-image-gold {
    height: 280px;
}

.catalogue-item .how-work-item-image-gold figure {
    height: 100%;
}

.catalogue-item .how-work-item-image-gold figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media only screen and (max-width: 1199px) {
    .catalogue-item .how-work-item-image-gold {
        height: 220px;
    }
}

@media only screen and (max-width: 767px) {
    .catalogue-item .how-work-item-image-gold {
        height: 200px;
    }
}


.our-services-gold .container {
    max-width: 1500px;
}

.our-services-gold .service-item-gold {
    padding: 30px;
}


.pain-points-section {
    padding: 120px 0;
}

.pain-points-section .section-title {
    max-width: 700px;
    margin: 0 auto 60px;
}

/* ---- Grid ---- */
.pain-radial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
        "c1  c2  c3"
        "c4  img c5"
        "c6  c7  c8";
    gap: 24px;
    align-items: stretch;
    margin-bottom: 40px;
}

/* ---- Pain Point Cards ---- */
.pain-point-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    background-color: var(--bg-color);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.pain-point-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent-secondary-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
}

/* ---- Arrow: Right (→) — c1, c4, c6 ---- */
.pain-point-item.pain-arrow-right::after {
    content: '';
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 13px solid var(--accent-secondary-color);
    z-index: 3;
}

/* ---- Arrow: Left (←) — c3, c5 ---- */
.pain-point-item.pain-arrow-left::after,
.pain-cta-mini.pain-arrow-left::after {
    content: '';
    position: absolute;
    left: -13px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-right: 13px solid var(--accent-secondary-color);
    z-index: 3;
}

/* ---- Arrow: Down (↓) — c2 ---- */
.pain-point-item.pain-arrow-down::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 13px solid var(--accent-secondary-color);
    z-index: 3;
}

/* ---- Arrow: Up (↑) — c7 ---- */
.pain-point-item.pain-arrow-up::after {
    content: '';
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 13px solid var(--accent-secondary-color);
    z-index: 3;
}

/* ---- Icon ---- */
.pain-point-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.pain-point-item:hover .pain-point-icon {
    background-color: var(--accent-secondary-color);
}

.pain-point-icon i {
    font-size: 18px;
    color: var(--white-color);
}

/* ---- Card Text ---- */
.pain-point-content h3 {
    font-size: 17px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.pain-point-content p {
    font-size: 14px;
    line-height: 1.6em;
    color: var(--text-color);
    margin: 0;
}

/* ---- Center Person Image ---- */
.pain-center-image {
    grid-area: img;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: transparent;
    overflow: visible;
    position: relative;
}

.pain-center-image figure {
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.pain-center-image figure img {
    width: 100%;
    height: 100%;
    max-height: 440px;
    object-fit: contain;
    object-position: bottom center;
    display: block;
}

/* ---- Mini CTA Card ---- */
.pain-cta-mini {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: var(--accent-secondary-color);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    transition: all 0.4s ease-in-out;
}

.pain-cta-mini:hover {
    transform: translateY(-3px);
}

.pain-cta-mini p {
    font-family: var(--accent-font);
    font-size: 22px;
    color: var(--white-color);
    line-height: 1.3em;
    margin: 0;
}

.pain-cta-mini .btn-default {
    background-color: var(--white-color);
    color: var(--accent-color);
    margin-right: 0;
}

.pain-cta-mini .btn-default::before {
    background-color: var(--accent-color);
}

.pain-cta-mini .btn-default:hover {
    color: var(--white-color);
}

/* ---- Resolution Banner ---- */
.pain-point-resolution {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background-color: var(--accent-color);
    border-radius: 20px;
    padding: 50px 60px;
    margin-top: 10px;
}

.pain-point-resolution-content h3 {
    font-family: var(--accent-font);
    font-size: 28px;
    color: var(--white-color);
    margin-bottom: 14px;
}

.pain-point-resolution-content p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6em;
    margin: 0;
    max-width: 680px;
}

.pain-point-resolution-btn {
    flex-shrink: 0;
}

.pain-point-resolution-btn .btn-default {
    background-color: var(--white-color);
    color: var(--accent-color);
}

.pain-point-resolution-btn .btn-default::before {
    background-color: var(--accent-secondary-color);
}

.pain-point-resolution-btn .btn-default:hover {
    color: var(--white-color);
}

/* ---- Responsive ---- */
@media only screen and (max-width: 1199px) {
    .pain-radial-grid {
        gap: 18px;
    }

    .pain-point-resolution {
        padding: 40px;
    }

    .pain-point-resolution-content h3 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 991px) {
    .pain-radial-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "img  img"
            "c1   c2"
            "c3   c4"
            "c5   c6"
            "c7   c8";
    }

    .pain-point-item.pain-arrow-right::after,
    .pain-point-item.pain-arrow-left::after,
    .pain-cta-mini.pain-arrow-left::after,
    .pain-point-item.pain-arrow-down::after,
    .pain-point-item.pain-arrow-up::after {
        display: none;
    }

    .pain-center-image figure img {
        max-height: 300px;
    }

    .pain-point-resolution {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .pain-points-section {
        padding: 60px 0;
    }

    .pain-radial-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "img"
            "c1" "c2" "c3"
            "c4" "c5" "c6"
            "c7" "c8";
    }

    .pain-center-image figure img {
        max-height: 240px;
    }

    .pain-point-resolution-content h3 {
        font-size: 20px;
    }
}

.stt {
    color: aliceblue;
}

.ger {
    background: #eeeeee;
}

.project-overview-box h2,
.project-approach-box .project-entry h2,
.project-matters-box .project-entry h2,
.service-process-box .project-entry h2 {
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 25px;
}

.project-entry h2.text-anime-style-3 {
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 25px;
}

.project-entry h2.text-anime-style-3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 100px;
}

.project-overview-box h2::after,
.project-approach-box .project-entry h2::after,
.project-matters-box .project-entry h2::after,
.service-process-box .project-entry h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 100px;
}

.page-category-list h2.text-anime-style-3 {
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 25px;
}

.page-category-list h2.text-anime-style-3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 100px;
}

.project-overview-box h2,
.project-approach-box .project-entry h2,
.project-matters-box .project-entry h2,
.service-process-box .project-entry h2,
.page-category-list h2.text-anime-style-3 {
    font-size: 38px;
    line-height: 1.2em;
}

@media only screen and (max-width: 991px) {

    .project-overview-box h2,
    .project-approach-box .project-entry h2,
    .project-matters-box .project-entry h2,
    .service-process-box .project-entry h2,
    .page-category-list h2.text-anime-style-3 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {

    .project-overview-box h2,
    .project-approach-box .project-entry h2,
    .project-matters-box .project-entry h2,
    .service-process-box .project-entry h2,
    .page-category-list h2.text-anime-style-3 {
        font-size: 26px;
    }
}

@media only screen and (max-width: 767px) {
    .award-item-box-body-prime .col-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .award-item-box-body-prime .col-6 .award-info-box-prime {

        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media only screen and (max-width: 1199px) {
    .our-apporach {
        padding: 60px 0 !important;
    }

    .approach-content {
        margin-right: 0 !important;
        margin-bottom: 30px !important;
    }

    .approach-image {
        margin-top: 30px !important;
        min-height: 300px !important;
        max-height: 400px !important;
    }

    .approach-image figure {
        height: 100% !important;
    }

    .approach-image figure img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .approach-item-list {
        width: 100% !important;
        box-sizing: border-box !important;
        margin-top: 30px !important;
    }

    .approach-item {
        width: 100% !important;
        min-height: auto !important;
    }
}

@media only screen and (max-width: 767px) {
    .our-apporach {
        padding: 50px 0 !important;
    }

    .approach-image {
        min-height: 220px !important;
        max-height: 280px !important;
        margin-top: 20px !important;
    }

    .approach-item-list {
        width: 100% !important;
        gap: 15px !important;
        margin-top: 20px !important;
    }

    .approach-item {
        width: 100% !important;
        padding: 20px !important;
        gap: 15px !important;
        min-height: auto !important;
    }

    .approach-item .icon-box {
        width: 46px !important;
        height: 46px !important;
        flex-shrink: 0 !important;
    }

    .approach-item-content {
        padding-top: 15px !important;
    }

    .approach-item-content h3 {
        font-size: 18px !important;
    }

    .approach-item-content p {
        font-size: 14px !important;
        margin-top: 8px !important;
    }
}

@media only screen and (max-width: 480px) {
    .logo2 {
        width: 200px;
    }

    .approach-image {
        min-height: 180px !important;
        max-height: 220px !important;
    }

    .approach-item {
        padding: 16px !important;
        gap: 12px !important;
    }

    .approach-item .icon-box {
        width: 40px !important;
        height: 40px !important;
    }

    .approach-item-content h3 {
        font-size: 16px !important;
    }
}

@media only screen and (max-width: 767px) {
    .pain-center-image {
        display: none !important;
    }

    .pain-points-section .section-title {
        margin: 0;
    }
}

@media only screen and (min-width: 1200px) {
    .mobile-only-image {
        display: none !important;
    }
}

@media only screen and (max-width: 1199px) {
    .mobile-only-image {
        display: block !important;
        margin-bottom: 30px !important;
    }

    .our-industries .col-xl-6:last-child {
        display: none !important;
    }
}

@media only screen and (max-width: 767px) {
    .logo2 {
        width: 200px;
    }

    .fun-fact-cta-image-gold {
        display: none !important;
    }
}

@media (max-width: 767px) {

    /* Force 2 columns and adjust the Bootstrap gap for mobile */
    .project-approach-box .project-approach-counter-boxes .row>div {
        flex: 0 0 50%;
        max-width: 50%;
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Ensure the card itself stretches to the full width of its column */
    .project-approach-box .project-approach-counter-boxes .project-approach-counter-item {
        width: 100%;
        height: 100%;
    }

}

@media (max-width: 767px) {
    .project-approach-box .w-100 {
        width: auto !important;
    }

    .footer-working-hours-box-gold ul li {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        flex-direction: row;
        align-items: baseline;
        justify-content: flex-start;
    }

    .footer-links-gold ul {
        padding: 0px;
    }

    .footer-copyright-text-gold p {
        text-align: center;
    }

    .footer-header-gold {
        justify-content: center;
    }

    .hh {
        display: none;
    }

    .hero .section-title h1,
    .hero-sub-heading {
        font-size: 2.5rem;
    }

    .hero-info-list-custom {
        display: none;
    }

    .satisfy-client-content {
        font-size: small;
    }
}


.quick-contact {
    position: fixed;
    bottom: 100px;
    right: 15px;
    width: 60px;
    z-index: 9999;
}

.quick-contact img {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    z-index: 9;
}

.contact-bottom__list__item__text {
    font-size: 15px;
    line-height: 25px;
}

.hero-video-mobile {
    display: none;
}

@media only screen and (max-width: 767px) {

    .hero .hero-bg-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .dpiit1 {

        width: 150px;
    }

    .dpiitf {
        font-size: 20px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-video-desktop {
        display: none;
    }

    .hero-video-mobile {
        display: block;
    }

    .hero-explore-btn-mobiles {
        display: inline-block;
    }

}

.hero-explore-btn-mobiles {
    display: none;
}

.nav-submenu-link {
    color: #980000 !important;
}

@media only screen and (max-width: 767px) {
    .nav-submenu-link {
        color: #ffffff !important;
    }
}