/* ============================================
   RESPONSIVE: Hamburger Button Base Style
============================================ */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
    flex-shrink: 0;
}

.nav-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--color-text);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================
   RESPONSIVE: Hamburger Active (open) State
============================================ */
.nav-hamburger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* ============================================
   RESPONSIVE: Mobile Nav Overlay / Drawer
============================================ */
.nav-overlay {
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow-y: auto;
    position: fixed;
    inset: 0;
    background: var(--color-secondary);
    z-index: 999;
    padding: 80px 0px;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease,
        visibility 0.4s ease;
}

.nav-overlay.open {
    transform: translateX(0%);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* ============================================
   RESPONSIVE: Overlay Nav Links
============================================ */
.nav-overlay .nav-menu-mobile {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
}

.nav-overlay .nav-menu-mobile>li {
    border-bottom: 1px solid var(--color-border-line-3);
}

.nav-overlay .nav-menu-mobile>li>a {
    display: block;
    text-decoration: none;
    color: var(--color-text);
    font-size: var(--font-service-title);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 20px;
    transition: color 0.2s ease;
}

.nav-overlay .nav-menu-mobile>li>a:hover {
    color: var(--color-primary);
}

/* ============================================
   RESPONSIVE: Overlay Services Dropdown
============================================ */
.nav-overlay .dropdown-mobile-list {
    list-style: none;
    margin: 0;
    display: none;
    flex-direction: column;
    gap: 0px;
}

.nav-overlay .dropdown-mobile-list.open {
    display: flex;
}

.nav-overlay .dropdown-mobile-list li a {
    display: block;
    text-decoration: none;
    padding: 15px 40px;
    color: var(--color-primary);
    font-size: 16px;
    font-family: var(--font-text);
    transition: opacity 0.2s ease;
}

.nav-overlay .dropdown-mobile-list li a:hover {
    opacity: 0.7;
}

/* ============================================
   RESPONSIVE: Overlay CTA Button
============================================ */
.nav-overlay .nav-overlay-btn {
    margin-top: auto;
    padding: 20px 20px 0 20px;
    border-top: 1px solid var(--color-border-line-3);
}

/* ============================================
   Mobile Filter Selects — hidden by default
============================================ */
.filters-mobile-select {
    display: none;
    width: 100%;
    background-color: var(--color-secondary);
    color: var(--color-text);
    border: 1px solid var(--color-border-line-3);
    padding: 12px 16px;
    font-family: var(--font-primary);
    font-size: var(--font-btn);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e2e2e2' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* ============================================
   TABLET STYLES — max-width: 1024px
============================================ */
@media (max-width: 1024px) {

    /* ── Navbar ── */

    .navbar-wrapper {
        padding: 20px;
    }

    .navbar {
        height: auto;
        padding: 15px 20px;
        flex-wrap: wrap;
        position: relative;
    }

    .nav-hamburger {
        display: flex;
        order: 3;
    }

    .nav-btn {
        display: none;
    }

    .nav-menu {
        display: none;
        width: 100%;
        order: 4;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0;
        margin: 0;
        background: var(--color-secondary);
        border-top: 1px solid var(--color-border-line-3);
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--color-border-line-3);
    }

    .nav-menu li a {
        display: block;
        padding: 14px 20px;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        display: none;
        background-color: #1b1b1b;
        min-width: 100%;
    }

    .dropdown.is-open .dropdown-menu {
        display: block;
    }

    /* ── Hero ── */
    .hero {
        height: auto;
        min-height: 90vh;
        margin-top: -125px;
    }

    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
    }

    .hero-content {
        padding: 120px 40px 60px;
    }

    .hero-content-wrapper {
        height: auto;
        gap: 40px;
    }

    .hero-content .content-subtitle {
        width: 18%;
    }

    .hero-title {
        line-height: 0.5;
    }

    .hero-btn-wrapper {
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 30px;
    }

    .hero-scroll-down {
        padding-bottom: 60px;
    }

    .borders-wrapper {
        display: none;
    }

    /* ── Counter ── */
    .counter {
        margin-top: -80px;
    }

    .counter-wrapper-box {
        height: auto;
        flex-direction: column;
        padding: 50px 40px 10px 40px;
        gap: 40px;
        clip-path: shape(from 2% 0%,
                line to 98% 0%,
                line to 98% 4%,
                line to 100% 4%,
                vline to 100%,
                hline to 0%,
                line to 0% 4%,
                line to 2% 4%,
                line to 2% 0%,
                close);
    }

    .counter-content {
        width: 100%;
    }

    .counter .content-subtitle {
        width: auto;
    }

    .counter-box {
        width: 100%;
        flex-wrap: wrap;
        gap: 0px;
        justify-content: space-between;
    }

    .counter-item-box {
        width: 25%;
        min-width: unset;
        padding: 0 !important;
    }

    .counter-item-content {
        margin-top: 20px;
    }

    .counter-text {
        width: 100%;
    }



    /* ── About Us ── */
    .about-us-top {
        margin-bottom: 0px;
    }

    .about-us-top .container {
        padding: 50px 0 0 0;
    }

    .about-us-top-content-wrapper {
        flex-direction: column;
        padding: 0 40px;
        gap: 30px;
    }

    .about-us-top-content-wrapper ul {
        width: 100%;
    }

    .about-us-top .content-subtitle {
        width: auto;
    }

    .about-us-text {
        width: 100%;
        padding-left: 0;
        padding-bottom: 0;
    }

    .about-us-image-wrapper {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .about-us-image-wrapper img {
        width: 100%;
    }

    .about-us-image-wrapper .about-us-bottom-comtent-wrapper {
        width: 100%;
        padding: 20px 40px;
    }





    /* ── Member Slider ── */
    .member-slider-wrapper {
        padding: 50px 0 0 0;
    }

    .member-content {
        padding: 10px 40px;
    }

    .member .content-subtitle {
        width: 100%;
    }

    .member-slider {
        padding: 0 40px;
        border-bottom: 1px solid var(--color-border-line-3);
    }

    .member-slide-item-border {
        width: 25%;
    }





    /* ── Services ── */
    .services .content-subtitle-wrapper {
        padding: 0 40px;
    }

    .services .content-subtitle {
        width: auto;
    }

    .services-item {
        padding: 0;
        flex-wrap: wrap;
    }

    .service-item-title {
        width: 100%;
        border-right: none;
        padding: 30px 40px;
        border-bottom: 1px solid var(--color-border-line);
    }

    .service-item-content {
        width: 100%;
        margin-left: 0;
        height: auto;
        opacity: 1;
        transform: none;
        padding: 20px 40px 30px 40px;
    }





    /* ── Achievements ── */
    .achievements-wrapper {
        padding: 60px 40px 100px;
        gap: 60px;
    }

    .achievements .content-subtitle {
        width: auto;
    }

    .achievements-card {
        width: 55%;
        clip-path: none;
        padding: 30px;
    }






    /* ── Projects ── */
    .project-content-upper {
        flex-direction: row;
        align-items: center;
        padding: 0 40px;
        gap: 0;
    }

    .project-content-upper ul {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--color-border-line-3);
    }

	.heading-wrapper-border{
		display: none;
    }
	
    .project-content-upper p {
        width: 100%;
        border-left: none;
        padding: 15px 0;
    }

    .project-content-title {
        font-size: clamp(60px, 12vw, 140px);
        padding: 0 40px 15px;
    }

    .project-slide-item {
        width: 85vw;
        height: 450px;
    }

    .project-slide-arrow {
        padding: 30px 40px;
    }






    /* ── Footer CTA ── */
    .footer-cta-wrapper {
        flex-direction: column;
        padding: 80px 40px;
        gap: 40px;
        background-size: 80%;
        background-position: 90% 90%;
    }

    .footer-cta-content-wrapper {
        width: 100%;
    }

    .footer-cta-title {
        font-size: clamp(60px, 10vw, 120px);
    }

    .footer-cta-content-wrapper p {
        position: static;
        width: 100%;
        margin-top: 20px;
    }

    .footer-cta-btn {
        width: 100%;
    }






    /* ── Footer ── */
    .footer {
        margin-top: -180px;
    }

    .footer .container {
        padding: 0 40px;
    }

    .footer .footer-logo-wrapper {
        padding-top: 220px;
    }

    .footer .content-subtitle {
        width: auto;
    }

    .footer-middle-wrapper .container {
        flex-direction: row;
    }

    .footer-middel-btn {
        width: 25%;
        border-bottom: 1px solid var(--color-border-line);
    }

    .footer-middle-content {
        width: 75%;
    }

    .footer-bottom-wrapper {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 25px 40px !important;
    }




    /* ================================================================================================
                                        ABOUT US PAGE Responsivess
    ================================================================================================ */

    /* ── About Us Hero ── */
	.about-us-page .hero-bg{
		background-position: center;
	}
	
    .about-us-page .hero-content {
        padding: 120px 40px 60px;
    }

    .hero-breadcrumbs {
        margin-left: 0;
    }

    .about-us-page .hero-title {
        line-height: 0.9;
    }

    .about-hero-text {
        width: 40%;
        margin-top: 40px;
    }

    .about-us-page .hero-scroll-down {
        margin-top: 0;
    }

    /* ── Our Story ── */
    .about-us-page .counter-wrapper-box {
        padding: 60px 40px;
    }

    .about-us-page .counter-wrapper-box p {
        width: 100%;
    }

    /* ── Story Beton ── */
    .about-us-page .services-item-wrapper {
        padding: 20px 40px 60px 40px;
    }

    .story-baton-content {
        width: 55%;
        margin-left: 30px;
    }

    .year-story-baton {
        margin-left: -35px;
    }

    .year-story {
        gap: 30px !important;
    }

    .story-baton-img {
        width: 45%;
        padding: 0 0 20px 20px;
    }

    /* Show hidden content always — hover doesn't work on touch */
    .baton-story-hidden {
        max-height: 500px;
        opacity: 1;
    }

    .story-baton-img img {
        max-height: 280px;
        opacity: 1;
    }

    .story-baton-item:hover .story-baton-content,
    .story-baton-item:hover .story-baton-img {
        border-bottom: 1px solid var(--color-border-line);
    }

    /* ── Our Mission / Our Vision ── */
    .our-mission .container {
        padding: 0 0 50px 0;
    }

    .our-mission-wrapper {
        padding: 0 40px;
    }

    .our-mission-upper {
        flex-direction: column;
    }

    .our-mission-upper .content-subtitle-wrapper {
        padding: 20px 40px;
        margin-left: 20px;
        border-right: none;
    }

    .our-mission-upper .content-subtitle {
        width: 100%;
    }

    .our-mission-title {
        width: 100%;
        padding: 20px 40px;
        border-left: none;
        border-top: 1px solid var(--color-border-line-3);
    }

    .our-vision .our-mission-title {
        width: 100%;
    }

    .our-mission-bottom {
        padding: 40px 40px 0 40px;
        flex-direction: column-reverse;
        gap: 30px;
    }

    .our-mission-img,
    .our-mission-content {
        width: 100%;
    }

    .our-mission-content {
        padding-right: 0;
    }

    .our-vision .container {
        padding-bottom: 70px;
    }

    /* ── Our Values ── */
    .our-values {
        height: auto;
        padding-bottom: 10px;
    }
	
	.about-us-page .our-values{
		height: auto;
	}

    .our-values .container {
        padding: 30px 40px 0 40px;
    }

    .our-values .our-values-shape-wrapper {
        top: -20px;
        padding-bottom: 0px;
    }


    .values-icon-box-wrapper {
        flex-wrap: wrap;
    }

    .value-icon-box-item {
        width: 50%;
        height: auto;
        min-height: 280px;
    }

    .value-icon-box-item:nth-child(2n) {
        border-right: none;
    }

    /* ── Behind Every Project ── */
    .behind-project-wrapper .content-subtitle-wrapper {
        padding: 20px 40px;
    }

    .behind-project-title {
        padding: 20px 40px;
    }

    .behind-project-slider {
        padding: 40px;
        width: 100%;
    }

    .behind-project-slide-item {
        width: 45%;
        max-width: 400px;
        height: 420px;
    }

    .behind-project-slide-arrow .member-slider-arrow {
        padding: 0 40px 40px 40px;
    }

	
	


    /* ================================================================================================
                                        Services PAGE Responsivess
    ================================================================================================ */

    /* ── Hero ── */
	
	.services-page .hero-bg{
		background-position: center;
	}
	
    .services-page .hero-content {
        padding: 120px 40px 80px 40px;
    }

    .services-page .hero-title {
        line-height: 0.7;
    }

    .breadcrumbs-wrapper {
        gap: 25px;
    }

    /* ── Counter ── */
    .services-page .counter-wrapper-box {
        padding: 0 40px;
    }
	

    .services-page .counter-box .counter-item-box {
        gap: 15px;
        padding: 40px 0 !important;
    }

    .services-page .counter-box .counter-item-box:nth-child(2) {
        padding: 40px 20px !important;
    }

    .services-page .counter-text {
        width: 70%;
    }

    /* ── Introduction / Our Mission ── */
    .services-page .our-mission .container {
        padding-bottom: 0;
    }

    .intruduction-sutitle {
        margin: 0 40px;
    }

    .services-page .our-mission-title {
        padding: 20px 40px;
        border: none;
    }

    .services-page .our-mission-title h2 {
        font-size: clamp(60px, 10vw, 100px);
    }

    .services-page .our-mission-content {
        width: 100%;
        border-right: none;
    }

    .services-page .our-mission-img img {
        min-height: 350px;
        max-height: 400px;
    }

    .our-mission-bottom {
        margin-bottom: 50px;
    }
	
	.value-blank-space{
		display: none;
	}


    /* ── Finition Tabs ── */
    .finition-tabs-wrapper {
        padding: 0 40px;
        flex-direction: column;
    }

    .finition-tabs-nav {
        width: 100%;
        height: auto;
        position: static;
        padding: 40px 0;
        border-right: none;
        border-bottom: none;
    }

    .finition-tab-btn {
        width: 100%;
    }

    .finition-tabs-content {
        width: 100%;
        border-left: none;
        padding: 40px 0;
    }

    .finition-icon {
        width: 56px;
        height: 56px;
    }

    .finition-title {
        font-size: clamp(28px, 5vw, 45px);
    }

    .finition-text {
        width: 90%;
    }

    /* ── Finition Tabs 2 (texture variant) ── */
    .finition-tabs-2 .finition-tabs-wrapper {
        padding: 40px;
    }

    /* ── Completed Projects Title ── */
    .services-page .project-content-title {
        padding: 0 40px 15px 40px;
    }

    /* ================================================================================================
                                        Project PAGE Responsivess
    ================================================================================================ */

    /* ── Hero ── */

    .listed-projects {
        margin-top: -80px;
    }

    .project-page .hero-content {
        padding: 120px 40px 60px 40px;
    }

    .project-page .hero-title {
        font-size: clamp(60px, 12vw, 120px);
    }

    .project-page .counter-box {
        width: 70%;
        flex-wrap: wrap;
        gap: 20px;
    }

    .project-page .counter-item-box {
        width: 45%;
    }

    .project-page .counter-item-box count-up {
        font-size: clamp(40px, 8vw, 70px) !important;
    }

    .project-page .counter-item-box .counter-text {
        width: 100%;
    }

    /* ── Listed Projects ── */
    .project-page-wrapper {
        padding: 50px 40px 0 40px;
        gap: 30px;
    }

    .projects-filters {
        width: 25%;
    }

    .listed-projects-wrapper {
        width: 75%;
    }

    .listed-project-title {
        padding: 0 0 20px 0;
    }

    .listed-project-title h2 {
        font-size: clamp(32px, 6vw, 50px);
    }

    .listed-project-item {
        flex-direction: column;
    }

    .listed-project-item-content {
        width: 100%;
    }

    .listed-project-item .project-details-btn {
        margin: 0;
    }

    .listed-project-item-img {
        width: 100%;
        padding-top: 20px;
    }

    .listed-project-item-img img {
        width: 100%;
        height: 220px;
    }

    .load-more-listed-btn {
        padding: 30px 40px;
    }

    /* ================================================================================================
                                        Carrier PAGE Responsivess
    ================================================================================================ */

    /* ── Hero ── */
    .carriers-page .hero-content {
        padding: 120px 40px 80px 40px;
    }

    .carriers-page .hero-title {
        font-size: clamp(50px, 9vw, 90px);
        line-height: 0.8;
    }

    /* ── Why Work / Counter ── */
    .carriers-page .counter-wrapper-box h2 {
        font-size: clamp(60px, 12vw, 140px);
    }

    .carriers-page .value-icon-box-item {
        padding: 25px !important;
        height: auto;
        min-height: 260px;
    }

    /* ── Gallery ── */
    .carrier-gallery-content {
        padding: 70px 40px;
    }

    .carrier-gallery-content h3 {
        font-size: clamp(30px, 5vw, 45px);
        width: 100%;
    }

    /* ── Join Team / Job Listings ── */
    .join-team-wrapper .content-subtitle-wrapper {
        padding: 25px 40px !important;
        margin-left: 20px;
    }

    .join-team-wrapper .content-subtitle-wrapper .content-subtitle {
        width: 20%;
    }

    .join-team-wrapper h2 {
        font-size: clamp(40px, 8vw, 70px);
        padding: 10px 40px;
    }

    .carrier-jobs-wrapper {
        padding: 20px 40px;
    }

    .carrier-jobs-content h3 {
        font-size: clamp(20px, 3vw, 28px);
    }

    .carrier-jobs-content ul {
        gap: 30px;
        flex-wrap: wrap;
    }

    .job-popup-content {
        padding: 40px 30px;
    }

    .job-popup-form {
        padding: 40px 30px;
    }

    /* ================================================================================================
                                        Contact Us PAGE Responsivess
    ================================================================================================ */


    /* ── Hero ── */
    .contact-us-page .hero-content {
        padding: 90px 0 0 0;
    }

    .contact-us-page .hero-content-wrapper {
        gap: 80px;
        padding: 40px;
        width: 100%;
    }

    .contact-us-page .hero-title {
        padding: 10px 0px;
    }

    .contact-details {
        padding: 0 0px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .contact-details-item {
        padding: 20px;
    }

    .contact-details-item a h5 {
        font-size: clamp(16px, 2vw, 20px);
    }

    /* ── Contact Form Section ── */
    .contact-us-page .counter-wrapper-box {
        height: auto;
        padding: 60px 40px;
    }

    .contact-us-page .counter-wrapper-box .content-subtitle-wrapper {
        width: 100%;
        margin-bottom: 30px;
    }

    .contact-us-page .counter-wrapper-box .content-subtitle-wrapper .content-subtitle {
        width: 60%;
    }

    .contact-form {
        width: 100%;
        min-height: 400px;

    }


    /* ================================================================================================
                                      Single Project PAGE Responsivess
    ================================================================================================ */

    /* ── Hero ── */
    .single-project-page .hero-content {
        padding: 110px 40px 60px 40px;
    }

    .single-project-page .project-details-subtitle {
        padding: 0;
    }

    .single-project-page .hero-title {
        padding: 0;
    }

    .single-project-page .contact-details .contact-details-item {
        width: 33.3% !important;
        padding: 16px 0px !important;
    }

    .single-hero-btn {
        padding: 0;
    }

    .single-project-page .hero-scroll-down{
        padding-top: 30px;
    }

    /* ── About / Image Content ── */
    .single-project-page .project-page-wrapper .single-about-project-details {
        width: 90%;
        font-size: clamp(24px, 4vw, 36px);
    }

    .img-content-wrapper {
        gap: 30px;
    }

    .single-content-wrapper h2 {
        font-size: clamp(50px, 9vw, 80px);
    }

    /* ── Gallery Title ── */
    .single-gallery .project-content-title {
        padding: 0 40px 15px 40px;
    }

    /* ── Achievements / CTA ── */
    .single-project-page .achievements-card {
        width: 65%;
        padding: 30px 30px 30px 40px;
    }


}

/* END @media (max-width: 1024px) */


/* ============================================
   MOBILE STYLES — max-width: 768px
============================================ */
@media (max-width: 768px) {

    /* ── Navbar ── */
    .navbar-wrapper {
        padding: 24px;
    }

    .navbar {
        padding: 12px 16px;
    }

    .header-logo {
        width: 180px;
    }

    /* ── Hero ── */
    .hero {
        min-height: 100svh;
        margin-top: -115px;
    }

    .hero-bg {
        width: 80%;
        height: 80% !important;
    }

    .hero-breadcrumbs p,
    .hero-breadcrumbs a,
    .about-hero-text {
        color: var(--color-text) !important;
    }

    .hero-content {
        padding: 100px 24px 50px;
    }

    .hero-content .content-subtitle {
        width: 100%;
        color: var(--color-text) !important;
    }

    .hero-btn-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }

    .hero-scroll-down {
        padding: 30px 0;
        text-align: left;
    }





    /* ── Counter ── */
    .counter {
        margin-top: -40px;
    }

    .counter-wrapper-box {
        padding: 40px 24px;
        clip-path: none
    }

    .counter-box {
        gap: 20px;
    }

    .counter-item-box {
        width: 46.5%;
    }





    /* ── About Us ── */
    .about-us-top {
        margin-bottom: 0;
    }

    .about-us-top .container {
        padding-top: 0px;
    }

    .about-us-top-content-wrapper {
        padding: 0 24px;
    }

    .about-us-text {
        font-size: 15px;
        padding-bottom: 0px;
    }

    .about-us-image-wrapper .about-us-bottom-comtent-wrapper {
        padding: 30px 24px 10px 24px;
        gap: 30px;
    }

    .about-icon-box-wrapper {
        flex-direction: row;
        gap: 30px;
    }

    .about-icon-box-item {
        width: 100%;
    }

    .about-icon-box-item.left-side {
        padding-right: 0 !important;
        border-right: none;
        border-bottom: 1px solid var(--color-border-line-2);
    }

    .about-icon-box-item.right-side {
        padding-left: 0 !important;
    }





    /* ── Member ── */
    .member-slider-wrapper {
        padding: 40px 0;
    }

    .member-content {
        padding: 10px 24px;
        flex-direction: row;
        gap: 15px;
    }

    .member .content-subtitle-wrapper {
        width: 100%;
    }

    .member .content-subtitle {
        width: auto;
    }

    .member-slider {
        padding: 0 24px;
    }





    /* ── Services ── */
    .services .content-subtitle-wrapper {
        padding: 0 24px;
    }

    .services-item {
        padding: 0;
    }

    .service-item-title {
        padding: 24px;
    }

    .service-item-content {
        flex-direction: column;
        height: auto;
        padding: 24px;
        gap: 20px;
    }

    .service-item-img {
        width: 100%;
    }

    .service-item-img img {
        width: 100%;
        height: 300px;
    }

    .service-content {
        width: 100%;
    }





    /* ── Achievements ── */
    .achievements-wrapper {
        padding: 50px 24px 80px;
    }

    .achievements-card {
        width: 70%;
        padding: 24px;
    }

    .achievements-card .hero-btn-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }





    /* ── Projects ── */
    .project-content-upper {
        padding: 0px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .project-content-upper .content-subtitle-wrapper {
        padding: 24px;
        display: flex;
        justify-content: center;
    }

    .project-content-upper p {
        padding: 24px;
        text-align: center;
    }

    .project-content-title {
        padding: 0 24px 15px;
    }

    .project-details {
        flex-direction: column;
    }

    .project-details-right {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid var(--color-projects-details);
    }

    .project-details-left {
        width: 100%;
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .project-details-left-item {
        padding: 0 15px;
    }

    .project-slide-item {
        width: 90vw;
        height: 400px;
        clip-path: none;
    }

    .project-slide-arrow {
        flex-direction: row;
        gap: 20px;
        align-items: flex-start;
        padding: 25px 24px;
    }





    /* ── Footer CTA ── */
    .footer-cta-wrapper {
        padding: 40px 24px;
        background-image: none;
    }

    /* ── Footer ── */
    .footer {
        margin-top: -120px;
    }

    .footer .container {
        padding: 0 24px;
    }

    .footer .footer-logo-wrapper {
        padding-top: 160px;
    }

    .footer-middle-wrapper .container {
        flex-direction: column;
        padding: 0;
    }

    .footer-middel-btn {
        width: 100%;
        padding: 40px 24px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-middle-content {
        padding: 0 24px;
        width: 100%;
        flex-direction: row;
    }

    .footer-middle-item {
        width: 33.3%;
        padding: 25px 20px;
        border-left: none;
        border-top: 1px solid var(--color-border-line);
    }

    .footer-bottom-wrapper {
        padding: 20px 24px !important;
    }

    .footer-bottom-wrapper p {
        font-size: 13px;
        text-align: center;
    }




    /* ================================================================================================
                                        ABOUT US PAGE Responsivess
    ================================================================================================ */

    /* ── About Us Hero ── */
    .about-us-page .hero-content {
        padding: 100px 24px 50px;
    }

    .about-us-page .hero-title {
        line-height: 0.7;
    }

    .about-hero-text {
        width: 100%;
        margin-top: 30px;
    }

    /* ── Our Story ── */
    .about-us-page .counter-wrapper-box {
        padding: 40px 24px;
        clip-path: none;
    }


    /* ── Story Beton ── */
    .about-us-page .services-item-wrapper {
        padding: 20px 24px 40px 24px;
    }

    .story-baton-item {
        flex-direction: column;
        padding-top: 30px;
    }

    .story-baton-content {
        width: 100%;
        margin-left: 0px;
        padding-right: 0;
        padding-left: 20px;
    }

    .year-story-baton {
        margin-left: -24px;
    }

    .year-story {
        gap: 16px !important;
    }

    .story-baton-img {
        width: 100%;
        margin-left: 0px;
        padding: 0 0 20px 20px;
    }

    .story-baton-img img {
        margin-top: 20px;
        max-height: 350px !important;
        object-fit: cover !important;
    }

    /* ── Our Mission / Our Vision ── */
    .our-mission-wrapper {
        padding: 0 24px;
    }

    .our-mission-upper .content-subtitle-wrapper {
        padding: 20px 24px;
    }

    .our-mission-title {
        padding: 20px 24px;
    }

    .our-mission-title h2 {
        font-size: clamp(28px, 9vw, 48px);
    }

    .our-mission-content {
        gap: 20px;
    }

    .our-vision .container {
        padding-bottom: 50px;
    }

    /* ── Our Values ── */
    .our-values .container {
        padding: 30px 24px 0 24px;
    }

    .our-values .our-values-shape-wrapper {
        top: 0px;
        padding-bottom: 30px;
        clip-path: none;
    }

    .value-icon-box-item {
        width: 100%;
        min-height: unset;
        padding: 30px 20px;
        border-right: none !important;
        border-bottom: 1px solid var(--color-border-line);
    }

    /* ── Behind Every Project ── */
    .behind-project-wrapper .content-subtitle-wrapper {
        padding: 20px 24px;
    }

    .behind-project-title {
        padding: 20px 24px;
    }

    .behind-project-slider {
        padding: 30px 24px;
    }

    .behind-project-slide-item {
        width: 85vw;
        max-width: 400px;
        height: 400px;
    }

    .behind-project-slide-arrow .member-slider-arrow {
        padding: 0 24px 30px 24px;
    }


    /* ================================================================================================
                                      Services PAGE Responsivess
    ================================================================================================ */


    .services-page .hero-content {
        padding: 100px 24px 60px 24px;
    }

    .breadcrumbs-wrapper {
        gap: 20px;
    }

    /* ── Counter: stack to single column ── */
    .services-page .counter-wrapper-box {
        padding: 0 24px;
    }

    .services-page .counter-box {
        flex-direction: column;
    }

    .services-page .counter-box .counter-item-box {
        width: 100%;
        justify-content: flex-start;
        padding: 30px 0 !important;
        border-bottom: 1px solid var(--color-border-line-3);
    }

    .services-page .counter-box .counter-item-box:last-child {
        border-bottom: none;
    }

    .services-page .counter-box .counter-item-box:nth-child(2) {
        padding: 30px 0 !important;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid var(--color-border-line-3);
    }

    .services-page .counter-text {
        width: 100%;
    }

    /* ── Introduction / Our Mission ── */
    .intruduction-sutitle {
        margin: 0 24px;
        padding: 16px 24px;
    }

    .services-page .our-mission-upper .content-subtitle-wrapper {
        margin-left: 0;
    }

    .services-page .our-mission-title {
        padding: 20px 24px;
    }

    .services-page .our-mission-title h2 {
        font-size: clamp(40px, 12vw, 60px);
    }

    .services-page .our-mission-img img {
        min-height: 240px;
        max-height: 280px;
    }

    .our-mission-bottom {
        padding: 30px 24px 0 24px;
    }

    /* ── Finition Tabs ── */
    .finition-tabs-wrapper {
        padding: 0 24px;
    }

    .finition-tabs-nav {
        gap: 12px;
        padding: 30px 0;
    }

    .finition-tab-btn {
        padding-bottom: 10px;
    }

    .finition-tabs-content {
        padding: 30px 0;
    }

    .finition-item {
        padding: 25px 0;
    }

    .finition-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 14px;
    }

    .finition-title {
        font-size: clamp(22px, 7vw, 32px);
    }

    .finition-text {
        width: 100%;
        font-size: var(--font-card-text);
    }

    /* ── Finition Tabs 2 (texture variant) ── */
    .finition-tabs-2 .finition-tabs-wrapper {
        padding: 30px 24px;
        clip-path: none;
    }

    /* ── Completed Projects Title ── */
    .services-page .project-content-title {
        padding: 0 24px 15px 24px;
    }


    /* ================================================================================================
                                        Project PAGE Responsivess
    ================================================================================================ */



    /* ── Hero ── */
    .listed-projects {
        margin-top: 0;
    }

    .project-page .hero-content {
        padding: 100px 24px 30px 24px;
    }

    .project-page .hero-content .content-subtitle {
        width: 60%;
    }

    .project-page .counter-box {
        width: 80%;
        gap: 20px;
    }

    .project-page .counter-item-box {
        width: 45%;
    }

    .project-page .counter-item-content .counter-text {
        width: 100%;
    }

    /* ── Listed Projects: switch filters to <select> ── */
    .project-page-wrapper {
        padding: 40px 24px 0 24px;
        flex-direction: column;
        gap: 30px;
    }

    .projects-filters {
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--color-border-line-3);
        padding-bottom: 24px;
        display: flex;
        flex-direction: row;
        gap: 20px;
    }

    /* Hide desktop filter lists + their labels, show <select> instead */
    .filter-type,
    .filters {
        display: none;
    }

    .filters-mobile-select {
        display: block;
        width: 50%;
    }

    .listed-projects-wrapper {
        width: 100%;
    }

    .listed-project-title {
        flex-direction: column;
        gap: 8px;
        padding: 0 0 16px 0;
    }

    .listed-project-title h2 {
        font-size: clamp(28px, 9vw, 40px);
    }

    /* Stack image below content */
    .listed-project-item {
        flex-direction: column;
        padding: 24px 0;
    }

    .listed-project-item-content {
        width: 100%;
    }

    .listed-project-item-img {
        width: 100%;
        justify-content: flex-start;
        margin-top: 20px;
    }

    .listed-project-item-img img {
        width: 100%;
        height: 240px;
    }

    .listed-projects .project-details-left {
        width: fit-content;
    }

    .load-more-listed-btn {
        padding: 24px;
    }


    /* ================================================================================================
                                        Carrier PAGE Responsivess
    ================================================================================================ */

    /* ── Hero ── */
    .carriers-page .hero-content {
        padding: 100px 24px 60px 24px;
    }
	
    .carriers-page .hero-title {
        font-size: clamp(36px, 11vw, 56px);
        line-height: 0.9;
    }

    .carriers-page .hero-content-wrapper .btn-devis {
        margin-top: 20px;
        margin-bottom: 0;
    }

    /* ── Why Work ─ */
	
	.carriers-page .counter-wrapper-box{
		padding: 40px 24px !important;
	}
	
    .carriers-page .counter-wrapper-box h2 {
        font-size: clamp(40px, 16vw, 70px);
        padding: 16px 0;
    }

    .carriers-page .values-icon-box-wrapper {
        flex-direction: column;
    }

    .carriers-page .value-icon-box-item {
        width: 100%;
        height: auto;
        min-height: unset;
        padding: 24px 0 !important;
        border-right: none !important;
        border-bottom: 1px solid var(--color-border-line-3);
    }

    .carriers-page .value-icon-box-item:nth-child(3) {
        border-bottom: none !important;
    }

    /* ── Gallery ── */
    .carrier-gallery-content {
        padding: 50px 24px;
    }

    .carrier-gallery-content h3 {
        font-size: clamp(22px, 7vw, 32px);
    }

    /* ── Join Team / Job Listings ── */
    .join-team-wrapper .content-subtitle-wrapper {
        padding: 20px 24px !important;
    }

    .join-team-wrapper .content-subtitle-wrapper .content-subtitle {
        width: 50%;
    }

    .join-team-wrapper h2 {
        font-size: clamp(32px, 12vw, 48px);
        padding: 10px 24px;
    }

    .carrier-jobs-wrapper {
        padding: 20px 24px;
    }

    /* Stack job content + button vertically with full-width button */
    .carrier-jobs-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 24px 0;
    }

    .carrier-jobs-item:nth-child(2) {
        padding: 24px 0;
    }

    .carrier-jobs-content h3 {
        font-size: clamp(18px, 5vw, 24px);
    }

    .carrier-jobs-content ul {
        gap: 30px;
        margin-left: 14px;
        flex-wrap: wrap;
    }

    .carrier-jobs-content ul li {
        font-size: var(--font-card-text);
    }

    .carrier-job-btn {
        width: 100%;
    }

    .carrier-job-btn .btn-devis {
        justify-content: center;
    }

    .job-popup-overlay {
        padding: 0;
    }

    .job-popup-box {
        max-height: 100vh;
        height: 100%;
        padding: 0;
    }

    .job-popup-close {
        top: 16px;
        right: 16px;
    }

    .job-popup-inner {
        flex-direction: column;
        max-height: 100vh;
        overflow-y: auto;
    }

    .job-popup-content,
    .job-popup-form {
        width: 100%;
        padding: 70px 24px 30px 24px;
    }

    .job-popup-content {
        border-right: none;
        border-bottom: 1px solid var(--color-border-line-2);
    }

    .job-popup-title {
        font-size: clamp(24px, 7vw, 30px);
    }



    /* ================================================================================================
                                        Contact Us PAGE Responsivess
    ================================================================================================ */


    /* ── Hero ── */
    .contact-us-page .hero {
        height: auto;
        min-height: 100svh;
    }

    .contact-us-page .hero-content {
        padding: 80px 0 0 0;
    }

    .contact-us-page .hero-content-wrapper {
        gap: 40px;
        padding: 24px;
    }

    .contact-us-page .hero-title {
        padding: 10px 0px;
    }

    /* Stack contact details to single column */
    .contact-details {
        padding: 0 0px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .contact-details-item {
        width: 100%;
        padding: 20px 0;
        border-right: none !important;
        border-bottom: 1px solid var(--color-border-line-3);
    }

    .contact-details-item:nth-child(3) {
        border-bottom: none !important;
    }

    .contact-details-item a h5 {
        font-size: clamp(16px, 4vw, 18px);
    }

    /* ── Contact Form Section ── */
    .contact-us-page .counter-wrapper-box {
        padding: 40px 24px;
    }

    .contact-us-page .counter-wrapper-box .content-subtitle-wrapper .content-subtitle {
        width: 90%;
    }

    .contact-form {
        min-height: 350px;
    }

    .project-slide-arrow {
        clip-path: none !important;
        padding-top: 40px;
        margin-top: -20px;
    }

    /* ================================================================================================
                                        Single Project PAGE Responsivess
    ================================================================================================ */

    /* ── Hero ── */
    .single-project-page .hero-bg {
        width: 70%;
        height: 45%;
        /* opacity: 0.4; */
    }

    .single-project-page .hero-content {
        padding: 100px 24px 50px 24px;
    }

    .single-project-page .project-details-subtitle {
        padding: 0px;
    }

    .single-project-page .hero-title {
        padding: 0px;
    }

    /* Contact details: full width stacked rows */
    .single-project-page .contact-details {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .single-project-page .contact-details .contact-details-item {
        width: 100% !important;
        padding: 14px 0px !important;
    }

    .single-hero-btn {
        padding: 0px;
    }

    /* About / Image Content */
    .single-project-page .project-page-wrapper .single-about-project-details {
        width: 100%;
    }

    .img-content-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .single-content-wrapper {
        width: 100%;
        order: 1;
    }

    .single-content-wrapper h2 {
        font-size: clamp(40px, 14vw, 60px);
    }

    .single-content-wrapper p {
        margin: 20px 0;
    }

    .img-content-wrapper .single-img-1 {
        width: 48%;
        margin-top: 0;
        order: 2;
    }

    .img-content-wrapper .single-img-2 {
        width: 48%;
        margin-top: 0;
        order: 3;
    }

    .img-content-wrapper img {
        height: 220px;
    }

    /* ── Gallery Title ── */
    .single-gallery .project-content-title {
        padding: 0 24px 15px 24px;
        font-size: clamp(36px, 16vw, 70px);
    }

    /* ── Achievements / CTA ── */
    .single-project-page .achievements-card {
        width: 100%;
        padding: 25px;
    }

}

/* END @media (max-width: 768px) */


/* ============================================
   SMALL MOBILE — max-width: 480px
============================================ */
@media (max-width: 480px) {


    .navbar-wrapper {
        padding: 15px;
    }

    .header-logo {
        width: 150px;
    }

    .btn-devis {
        padding: 6px 20px 6px 24px;
        font-size: 13px;
    }


    .hero {
        margin-top: -90px;
    }

    .hero-bg {
        width: 90%;
        height: 90%;
        background: center center/cover no-repeat;
    }

    .container.hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 100px 15px 50px 15px;
    }

    .hero-content-wrapper {
        gap: 20px;
    }

    .hero-title {
        line-height: 0.8;
    }

    .hero-scroll-down {
        width: 100%;
        justify-content: flex-start;
    }


    .counter-wrapper-box {
        padding: 40px 15px;
        gap: 20px;
    }

    .counter-item-box {
        width: 46%;
    }

    .about-us-top-content-wrapper {
        padding: 0 15px;
    }

    .about-us-image-wrapper .about-us-bottom-comtent-wrapper {
        padding: 30px 15px 10px 15px;
    }


    .member-content {
        flex-direction: column;
        align-items: start;
        padding: 10px 15px;
    }

    .member-slider {
        padding: 0 15px;
    }

    .member-slide-item-border {
        width: 50%;
    }


    .service-item-title {
        padding: 15px;
    }

    .service-item-content {
        padding: 15px;
    }




    .container.achievements-wrapper {
        padding: 50px 15px 80px;
    }

    .achievements-card {
        width: 100%;
        padding: 15px;
    }

    .achievements-card h2 {
        line-height: 0.9;
    }




    .project-content-upper p {
        padding: 15px;
    }

    .project-slide-item {
        width: 92vw;
        height: 360px;
        padding: 20px;
    }

    .project-details-right,
    .project-details-left {
        padding: 15px;
        gap: 0px;
    }

    .container.project-slide-arrow {
        padding: 40px 15px 20px 15px;
    }


    .footer-logo-wrapper {
        padding: 20px 15px;
    }

    .footer-middel-btn {
        padding: 20px 15px;
    }

    .footer-middle-content {
        padding: 20px 15px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-middle-item:nth-child(1) {
        width: 100%;
    }

    .footer-middle-item {
        width: 47%;
        padding: 0;
        border: none;
    }

    .footer-cta-title {
        font-size: clamp(40px, 13vw, 65px);
    }




    /* ================================================================================================
                                        ABOUT US PAGE Responsivess
    ================================================================================================ */

    /* ── About Us Hero ── */
    .about-us-page .hero-content {
        padding: 100px 15px 50px;
    }

    .about-hero-text {
        margin-top: 20px;
    }


    .services .content-subtitle-wrapper {
        padding: 0 15px;
    }

    /* ── Our Story ── */
    .about-us-page .counter-wrapper-box {
        padding: 30px 15px;
        clip-path: none !important;
    }

    /* ── Story Beton ── */
    .about-us-page .services-item-wrapper {
        padding: 20px 15px 30px 15px;
    }

    .story-baton-content,
    .story-baton-img {
        margin-left: 0px;
    }

    /* ── Our Mission / Our Vision ── */
    .our-mission .container {
        padding-bottom: 0;
    }

    .our-mission-wrapper {
        padding: 0 15px;
    }

    .our-mission-upper .content-subtitle-wrapper {
        padding: 24px 15px;
    }

    .our-mission-title {
        padding: 24px 15px;
    }

    .our-mission-bottom {
        padding: 20px 15px 0 15px;
        margin-bottom: 30px;
    }

    /* ── Our Values ── */
    .our-values .container {
        padding: 24px 15px 0 15px;
    }

    .value-icon-box-item {
        display: flex;
        padding: 24px 15px;
        gap: 40px;
    }

    .value-icon-box-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /* ── Behind Every Project ── */
    .behind-project-wrapper .content-subtitle-wrapper {
        padding: 15px;
    }

    .behind-project-title {
        padding: 15px;
    }

    .behind-project-slider {
        padding: 24px 15px;
    }

    .behind-project-slide-item {
        width: 90vw;
        height: 360px;
        padding: 15px;
    }

    .behind-project-slide-arrow .member-slider-arrow {
        padding: 0 15px 24px 15px;
    }

	.member-popup-inner{
		flex-direction: column-reverse;
		height: 100%
	}
	.member-popup-img {
    width: 100%;
}
	.member-popup-content {
    width: 100%;
	}
	
    .footer-cta-wrapper {
        background-size: 100% !important;
        background-position: 100% 70px !important;
    }

    /* ================================================================================================
                                    Services PAGE Responsivess
    ================================================================================================ */

    /* ── Hero ── */
    .services-page .hero-content {
        padding: 100px 15px 50px 15px;
    }

    /* ── Counter ── */
	count-up{
		width: 130px;
	}
    .services-page .counter-wrapper-box {
        padding: 0 15px;
    }

    .services-page .counter-item-content {
        flex-direction: column;
        gap: 5px;
    }

    /* ── Introduction / Our Mission ── */
    .intruduction-sutitle {
        margin: 0 15px;
    }

    .services-page .our-mission-title {
        padding: 16px 15px;
    }

    .services-page .our-mission-img img {
        min-height: 200px;
        max-height: 220px;
    }

    /* ── Finition Tabs ── */
    .finition-tabs-wrapper {
        padding: 0 15px;
    }

    .finition-tab-btn {
        gap: 8px;
    }

    .finition-icon {
        width: 36px;
        height: 36px;
    }

    /* ── Finition Tabs 2 (texture variant) ── */
    .finition-tabs-2 .finition-tabs-wrapper {
        padding: 24px 15px;
    }

    /* ── Completed Projects Title ── */
    .services-page .project-content-title {
        padding: 0 15px 15px 15px;
    }



    /* ================================================================================================
                                        Project PAGE Responsivess
    ================================================================================================ */


    /* ── Hero ── */
    .project-page .hero-bg-desktop {
        display: none;
    }

    .project-page .hero-bg-mobile {
        display: block;
    }

    .project-page .hero-content {
        padding: 200px 15px 40px 15px;
    }

    .project-page .counter-item-box {
        gap: 12px;
    }

    /* ── Listed Projects ── */
    .project-page-wrapper {
        padding: 30px 15px 0 15px;
    }

    .projects-filters {
        flex-direction: column;
        gap: 12px;
    }

    .filters-mobile-select {
        width: 100%;
    }

    .listed-project-item-img img {
        height: 200px;
    }

    .load-more-listed-btn {
        padding: 24px 15px;
    }

    /* ================================================================================================
                                        Carrier PAGE Responsivess
    ================================================================================================ */

    /* ── Hero ── */
    .carriers-page .hero-content {
        padding: 100px 15px 50px 15px;
    }
	
	.carriers-page .counter-wrapper-box{
		padding: 40px 15px !important;
	}

    /* ── Why Work / Counter ── */
    .carriers-page .value-icon-box-item {
        padding: 20px 0 !important;
    }

    /* ── Gallery ── */
    .carrier-gallery-content {
        padding: 40px 15px;
    }

    /* ── Join Team / Job Listings ── */
    .join-team-wrapper .content-subtitle-wrapper {
        padding: 16px 15px !important;
        margin-left: 20px;
    }

    .join-team-wrapper .content-subtitle-wrapper .content-subtitle {
        width: 70%;
    }

    .join-team-wrapper h2 {
        padding: 10px 15px;
    }

    .carrier-jobs-wrapper {
        padding: 16px 15px;
    }

    .carrier-jobs-content ul {
        margin-left: 20px;
        gap: 30px;
    }

    /* ================================================================================================
                                        Contact Us PAGE Responsivess
    ================================================================================================ */

    /* ── Hero ── */

    .contact-us-page .hero-content-wrapper {
        padding: 15px;
    }

    .contact-us-page .hero-content {
        padding: 100px 0 0 0;
    }

    .contact-us-page .hero-title {
        padding: 10px px;
    }

    .contact-details {
        padding: 0;
    }

    /* ── Contact Form Section ── */
    .contact-us-page .counter-wrapper-box {
        padding: 30px 15px;
    }

    .contact-form {
        min-height: 300px;
    }

    .project-slider {
        position: relative;
        z-index: 9;
    }

    .contact-us-page .project-slide-arrow {
        padding-top: 70px;
        margin-top: -50px;
        position: relative;
        z-index: 1;
    }


    /* ================================================================================================
                                        Single Project PAGE Responsivess
    ================================================================================================ */


    /* ── Hero ── */
    .single-project-page .hero-content {
        padding: 100px 15px 40px 15px;
    }

    .single-project-page .contact-details .contact-details-item {
        padding: 12px 0px !important;
    }


    /* ── About / Image Content ── */

    .img-content-wrapper .single-img-1{
        width: 46.5%;
    }

    .img-content-wrapper img {
        height: 160px;
    }

    /* ── Gallery Title ── */
    .single-gallery .project-content-title {
        font-size: clamp(40px, 10vw, 90px);
        padding: 0 15px 15px 15px;
    }
	.footer-middle-item:nth-child(3){
		padding: 0;
	}
}

/* END @media (max-width: 480px) */