.team-linkedin {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;

    color: #0A66C2; /* LinkedIn Blue */
    font-size: 24px;

    transition: all 0.3s ease;
    z-index: 10;
}

.team-linkedin:hover {
    background: #0A66C2;
    color: #ffffff;
    transform: translateX(-50%) scale(1.1);
}

/* Portfolio page — scoped card styles */
.portfolio-card {
    box-shadow: var(--shadow);
    background-color: var(--main-bg);
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    overflow: hidden;
}

.portfolio-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background-color: var(--sub-bg);
}

.portfolio-card__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: top center;
    display: block;
}

.portfolio-card__content {
    padding: 24px 24px 28px;
}

.portfolio-card__industry {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.portfolio-card__title {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.portfolio-card__content p {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.6;
}

.portfolio-card__tech {
    margin-bottom: 20px;
}

.portfolio-card__tech-tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    background-color: var(--sub-bg);
    color: var(--heading-color);
}

.portfolio-card__btn {
    align-self: flex-start;
    font-size: 14px;
    padding: 12px 22px;
}

.portfolio-card__btn i {
    margin-left: 8px;
    font-size: 13px;
}

/* -------------------------------------------------------------------------
   Responsive fixes — audit C-01 / H-01
   Contact info email/phone must wrap on narrow viewports (no horizontal scroll)
   ------------------------------------------------------------------------- */
.contact__left-item h3,
.contact__left-item h3 a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact__left-item ul li > div {
    min-width: 0;
    flex: 1;
}

/* -------------------------------------------------------------------------
   Responsive fixes — audit C-02
   Mobile sidebar must not exceed viewport width
   ------------------------------------------------------------------------- */
@media (max-width: 575px) {
    .sidebar-area {
        width: 100%;
        max-width: 100vw;
    }
}

/* -------------------------------------------------------------------------
   Responsive fixes — audit H-02
   Hamburger icon minimum 44×44px touch target (mobile/tablet)
   ------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .header__main .bars i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        min-width: 44px;
        min-height: 44px;
    }
}

/* -------------------------------------------------------------------------
   Responsive fixes — audit H-03
   Sidebar close button minimum 44×44px touch target
   ------------------------------------------------------------------------- */
.sidebar-area button#closeButton {
    width: 44px;
    height: 44px;
    line-height: 44px;
}

/* -------------------------------------------------------------------------
   Responsive fixes — audit H-04
   Contact form fields stack on small screens
   ------------------------------------------------------------------------- */
@media (max-width: 575px) {
    .contact__form form .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* -------------------------------------------------------------------------
   Responsive fixes — audit H-05
   Reduce contact info panel padding on mobile
   ------------------------------------------------------------------------- */
@media (max-width: 767px) {
    .contact__left-item {
        padding: 30px 24px;
    }
}

/* -------------------------------------------------------------------------
   Responsive fixes — audit H-06
   Social icon touch targets on mobile and tablet
   ------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .contact__left-item .social a,
    .footer__item .social-icon a,
    .sidebar-area .social-icon a,
    .team__share ul li a,
    .team__share > button {
        width: 44px;
        height: 44px;
        line-height: 44px;
    }

    .team__share > button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* -------------------------------------------------------------------------
   Responsive fixes — audit H-07
   Service Details sidebar links minimum touch height
   ------------------------------------------------------------------------- */
.service-single__right-item .service-category li {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 6px 0;
}

.service-single__right-item .service-category li a {
    flex: 1;
    padding: 8px 0;
}

/* -------------------------------------------------------------------------
   Responsive fixes — audit H-08
   Slightly tighten desktop nav between 992–1199px
   ------------------------------------------------------------------------- */
@media (min-width: 992px) and (max-width: 1199px) {
    .header__main .main-menu ul {
        gap: 20px;
    }

    .header__main .main-menu ul li a {
        font-size: 15px;
    }
}

/* -------------------------------------------------------------------------
   Responsive fixes — audit M-01
   Contain inner-page banner decorative shape overflow
   ------------------------------------------------------------------------- */
.banner__inner-page .shape3 {
    max-width: 50%;
    overflow: hidden;
}

.banner__inner-page .shape3 img {
    max-width: 100%;
    height: auto;
}

/* -------------------------------------------------------------------------
   Responsive fixes — audit M-02
   Reduce hero background zoom on small screens
   ------------------------------------------------------------------------- */
@media (max-width: 767px) {
    .banner__slider .swiper-slide-active .slide-bg {
        transform: scale(1.05);
    }
}

/* -------------------------------------------------------------------------
   Responsive fixes — audit M-04
   Reduce excessive about-section bottom padding on mobile
   ------------------------------------------------------------------------- */
@media (max-width: 767px) {
    .about-area,
    .about-two-area {
        padding-bottom: 80px;
    }
}

/* -------------------------------------------------------------------------
   Responsive fixes — audit M-05
   Footer copyright stacks cleanly on small screens
   ------------------------------------------------------------------------- */
@media (max-width: 575px) {
    .footer__copyright .d-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .footer__copyright ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 20px;
    }
}

/* -------------------------------------------------------------------------
   Responsive fixes — audit M-06
   Hide non-functional search in mobile sidebar
   ------------------------------------------------------------------------- */
.sidebar-area .sidebar__search {
    display: none;
}

/* -------------------------------------------------------------------------
   Responsive fixes — audit M-07
   Prevent minor horizontal bleed in service details layout
   ------------------------------------------------------------------------- */
@media (max-width: 575px) {
    .service-single-area .container {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* -------------------------------------------------------------------------
   Responsive fixes — audit M-08
   Hide custom cursor on touch/coarse-pointer devices
   ------------------------------------------------------------------------- */
@media (hover: none), (pointer: coarse) {
    .mouse-cursor {
        display: none;
        visibility: hidden;
    }
}

/* -------------------------------------------------------------------------
   Responsive fixes — audit M-10
   Footer columns use available width better on tablet
   ------------------------------------------------------------------------- */
@media (min-width: 576px) and (max-width: 991px) {
    .footer__wrp {
        justify-content: flex-start;
        gap: 24px 40px;
    }

    .footer__item.item-sm,
    .footer__item.item-big {
        max-width: none;
        flex: 1 1 200px;
    }
}

/* -------------------------------------------------------------------------
   Responsive fixes — audit M-11
   Contact map iframe fully responsive
   ------------------------------------------------------------------------- */
.contact__map iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 450px;
}

/* -------------------------------------------------------------------------
   Responsive fixes — audit L-04
   Reduce large banner utility padding on mobile inner pages
   ------------------------------------------------------------------------- */
@media (max-width: 767px) {
    .banner__inner-page.pt-180 {
        padding-top: 80px;
    }

    .banner__inner-page.pb-180 {
        padding-bottom: 80px;
    }
}

/* -------------------------------------------------------------------------
   Responsive fixes — mobile drawer nav link touch targets
   ------------------------------------------------------------------------- */
.sidebar-area .mean-nav ul li a,
.mean-container .mean-nav ul li a {
    min-height: 44px;
    display: flex;
    align-items: center;
}