﻿.hero .hero-content {
    padding: 20px 0;
}

    .hero .hero-content .hero-title {
        font-size: 3.5rem;
        font-weight: 900;
        line-height: 1.2;
        margin-bottom: 32px;
        color: var(--heading-color);
    }

@media (max-width: 768px) {
    .hero .hero-content .hero-title {
        font-size: 2.5rem;
        margin-bottom: 24px;
        margin-top: 100px;
    }
}

.hero .hero-content .hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 48px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero .hero-content .hero-description {
        font-size: 1.125rem;
        margin-bottom: 40px;
    }
}

.hero .hero-content .hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 64px;
}

@media (max-width: 576px) {
    .hero .hero-content .hero-actions {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 48px;
    }
}

.hero .hero-content .hero-actions .btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 400;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

    .hero .hero-content .hero-actions .btn-primary:hover {
        background: color-mix(in srgb, var(--accent-color), black 10%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
    }

.hero .hero-content .hero-actions .btn-secondary {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
}

    .hero .hero-content .hero-actions .btn-secondary i {
        font-size: 1.5rem;
        color: var(--accent-color);
    }

    .hero .hero-content .hero-actions .btn-secondary:hover {
        color: var(--accent-color);
        transform: translateX(4px);
    }

.hero .hero-content .hero-stats {
    display: flex;
    gap: 48px;
}

@media (max-width: 768px) {
    .hero .hero-content .hero-stats {
        gap: 32px;
    }
}

@media (max-width: 576px) {
    .hero .hero-content .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
}

.hero .hero-content .hero-stats .stat-item {
    text-align: left;
}

    .hero .hero-content .hero-stats .stat-item .stat-number {
        display: block;
        font-size: 2rem;
        font-weight: 300;
        color: var(--accent-color);
        margin-bottom: 4px;
    }

    .hero .hero-content .hero-stats .stat-item .stat-label {
        font-size: 0.875rem;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        font-weight: 400;
    }


.featured-services {
    position: relative;
}

    .featured-services .services-content .subtitle {
        display: inline-block;
        background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
        color: var(--accent-color);
        padding: 8px 16px;
        border-radius: 6px;
        font-size: 16px;
        font-weight: 500;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .featured-services .services-content h2 {
        font-size: 42px;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 20px;
    }

@media (max-width: 992px) {
    .featured-services .services-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .featured-services .services-content h2 {
        font-size: 28px;
    }
}

.featured-services .services-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.featured-services .services-content .btn-consultation {
    display: inline-flex;
    align-items: center;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .featured-services .services-content .btn-consultation span {
        margin-right: 8px;
    }

    .featured-services .services-content .btn-consultation i {
        transition: transform 0.3s ease;
    }

    .featured-services .services-content .btn-consultation:hover {
        background-color: color-mix(in srgb, var(--accent-color), #000 15%);
    }

        .featured-services .services-content .btn-consultation:hover i {
            transform: translateX(5px);
        }

.featured-services .services-image {
    position: relative;
    height: 380px;
    display: flex;
    justify-content: flex-end;
}

    .featured-services .services-image img {
        position: relative;
        z-index: 2;
        max-height: 100%;
        object-fit: cover;
    }

    .featured-services .services-image .shape-circle {
        position: absolute;
        right: -30px;
        top: -30px;
        height: 180px;
        width: 180px;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
        border-radius: 50%;
        z-index: 1;
    }

    .featured-services .services-image .shape-accent {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 100px;
        width: 100px;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
        z-index: 1;
        animation: float 5s infinite ease-in-out;
    }

@media (max-width: 992px) {
    .featured-services .services-image {
        margin-top: 30px;
        height: 300px;
        justify-content: center;
    }
}

.featured-services .services-slider {
    position: relative;
    margin-top: 30px;
    padding-top: 30px;
}

    .featured-services .services-slider .swiper-wrapper {
        height: auto !important;
    }

.featured-services .service-card {
    background-color: var(--surface-color);
    padding: 32px;
    border-radius: 16px;
    position: relative;
    transition: all 0.4s;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

    .featured-services .service-card .icon-box {
        height: 70px;
        width: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--accent-color);
        border-radius: 50%;
        margin-bottom: 20px;
        transition: all 0.4s;
    }

        .featured-services .service-card .icon-box i {
            font-size: 30px;
            color: var(--contrast-color);
            transition: all 0.4s;
        }

    .featured-services .service-card .arrow-link {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        width: 40px;
        color: var(--accent-color);
        background-color: var(--surface-color);
        border-radius: 50%;
        transform: rotate(-45deg);
        position: absolute;
        right: -50px;
        top: -50px;
        transition: all 0.4s;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .featured-services .service-card .content h4 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 15px;
    }

        .featured-services .service-card .content h4 a {
            color: var(--heading-color);
            transition: all 0.4s;
        }

    .featured-services .service-card .content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
        transition: all 0.4s;
    }

    .featured-services .service-card .content .service-number {
        position: relative;
        padding-left: 76px;
        color: var(--accent-color);
        font-size: 18px;
        font-weight: 500;
        transition: all 0.4s;
    }

        .featured-services .service-card .content .service-number::after {
            content: "";
            position: absolute;
            left: 0;
            top: 12px;
            height: 1px;
            width: 70px;
            background-color: var(--accent-color);
            transition: all 0.4s;
        }

    .featured-services .service-card:hover {
        background-color: var(--accent-color);
        transform: translateY(-5px);
    }

        .featured-services .service-card:hover .icon-box {
            background-color: var(--contrast-color);
        }

            .featured-services .service-card:hover .icon-box i {
                color: var(--accent-color);
            }

        .featured-services .service-card:hover .arrow-link {
            top: 16px;
            right: 16px;
            background-color: var(--contrast-color);
        }

        .featured-services .service-card:hover .content h4 a {
            color: var(--contrast-color);
        }

        .featured-services .service-card:hover .content p {
            color: var(--contrast-color);
        }

        .featured-services .service-card:hover .content .service-number {
            color: var(--contrast-color);
            padding-left: 0;
        }

            .featured-services .service-card:hover .content .service-number::after {
                background-color: var(--contrast-color);
                left: 30px;
            }

.featured-services .swiper-navigation {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

    .featured-services .swiper-navigation button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: none;
        border-radius: 50%;
        height: 56px;
        width: 56px;
        background-color: var(--accent-color);
        color: var(--contrast-color);
        font-size: 20px;
        transition: all 0.4s;
        margin-right: 10px;
    }

        .featured-services .swiper-navigation button:last-child {
            margin-right: 0;
        }

        .featured-services .swiper-navigation button:hover {
            background-color: color-mix(in srgb, var(--accent-color), #000 15%);
        }

@keyframes float {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.job-btn {
    background: linear-gradient(135deg, #004080, #0099cc);
    transition: all 0.4s ease-in-out;
}

.client-btn {
    background: linear-gradient(135deg, #006633, #00cc99);
    transition: all 0.4s ease-in-out;
}

.job-btn:hover {
    background: linear-gradient(135deg, #0099cc, #004080); /* reverse gradient */
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.client-btn:hover {
    background: linear-gradient(135deg, #00cc99, #006633); /* reverse gradient */
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
    padding: 30px 30px 30px 70px;
    transition: all ease-in-out 0.3s;
    border-radius: 18px;
    height: 100%;
    position: relative;
    overflow: hidden;
    /*border: 9px solid transparent;*/ /* default invisible border */
}

    /* Hover effect for ALL devices */
    .services .service-item:hover {
        transform: translateY(-10px);
        border: 9px solid transparent;
        border-image: linear-gradient(135deg, #0a2a6c, #0077b6, #00b4d8) 1;
        border-image-slice: 1;
        border-radius: 18px; /* enforce radius */
        box-shadow: 0 10px 28px rgba(0,0,0,0.18);
    }

        .services .service-item:hover h3 {
            color: var(--accent-color);
        }

    .services .service-item .icon {
        position: absolute;
        left: -20px;
        top: calc(50% - 30px);
    }

        .services .service-item .icon i {
            font-size: 64px;
            line-height: 1;
            transition: 0.5s;
        }

    .services .service-item h3 {
        font-weight: 500;
        margin: 5px 0 5px 0;
        font-size: 18px;
        transition: ease-in-out 0.3s;
    }

    .services .service-item p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

.Services-title {
    padding-bottom: 60px;
    position: relative;
    /*text-align: center;*/ /* center for better mobile balance */
}

.Services-title-h2 {
    font-size: 20px;
    font-weight: 800;
    padding: 0;
    line-height: 1.2; /* improve readability */
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #000000;
    position: relative;
    display: inline-block; /* keeps ::after aligned */
}

    .Services-title-h2::after {
        content: "";
        width: 120px;
        height: 2px;
        display: inline-block;
        background: #ef6603;
        margin: 4px 10px;
        vertical-align: middle;
    }

.Services-title-p {
    color: var(--heading-color);
    margin: 10px 0 0;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--heading-font);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .Services-title {
 
        text-align: center; /* center for better mobile balance */
    }
    .Services-title-h2 {
        font-size: 16px;
        letter-spacing: 1px;
    }

        .Services-title-h2::after {
            width: 60px; /* shorter line for small screens */
            margin: 4px 6px;
        }

    .Services-title-p {
        font-size: 14px;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .Services-title {
        text-align: center; /* center for better mobile balance */
    }

    .Services-title-h2 {
        font-size: 14px;
        line-height: 1.3;
    }

        .Services-title-h2::after {
            display: block; /* stack line below text */
            margin: 8px auto;
            width: 40px;
        }

    .Services-title-p {
        font-size: 13px;
    }
}

/*-------------------------------------urgent jobs start-------------------------------------------*/
.featured-properties .mini-list {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(280px, 1fr)); /* 2 per row */
    justify-content: center; /* Center when fewer items */
    align-items: start;
}

    /* Mini Card Styling */
    .featured-properties .mini-list .mini-card {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 14px;
        background: var(--surface-color);
        border-radius: 14px;
        box-shadow: 0 4px 18px color-mix(in srgb, var(--default-color), transparent 92%);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .featured-properties .mini-list .mini-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 88%);
        }

        .featured-properties .mini-list .mini-card .thumb {
            position: relative;
            display: block;
            height: 100%;
        }

            .featured-properties .mini-list .mini-card .thumb img {
                /*width: 100%;*/
                height: 100%;
                object-fit: cover;
                max-width:140%;
            }

            .featured-properties .mini-list .mini-card .thumb .label {
                position: absolute;
                top: 10px;
                left: 10px;
                padding: 4px 10px;
                border-radius: 12px;
                font-size: 10px;
                font-weight: 800;
                color: var(--contrast-color);
                display: inline-flex;
                align-items: center;
                gap: 6px;
            }

                .featured-properties .mini-list .mini-card .thumb .label.hot {
                    background: color-mix(in srgb, var(--accent-color), red 25%);
                }

                .featured-properties .mini-list .mini-card .thumb .label.new {
                    background: color-mix(in srgb, var(--accent-color), green 20%);
                }

                .featured-properties .mini-list .mini-card .thumb .label.featured {
                    background: color-mix(in srgb, var(--accent-color), blue 20%);
                }

        .featured-properties .mini-list .mini-card .mini-body {
            padding: 14px 14px 12px 50px;
        }

            .featured-properties .mini-list .mini-card .mini-body h4 {
                font-size: 16px;
                font-weight: 800;
                margin: 0 0 6px 0;
            }

                .featured-properties .mini-list .mini-card .mini-body h4 a {
                    color: var(--heading-color);
                    transition: 0.3s;
                }

                    .featured-properties .mini-list .mini-card .mini-body h4 a:hover {
                        color: var(--accent-color);
                    }

            .featured-properties .mini-list .mini-card .mini-body .mini-loc {
                font-size: 12px;
                color: color-mix(in srgb, var(--default-color), transparent 35%);
                display: flex;
                align-items: center;
                gap: 6px;
                margin-bottom: 8px;
            }

                .featured-properties .mini-list .mini-card .mini-body .mini-loc i {
                    color: var(--accent-color);
                }

            .featured-properties .mini-list .mini-card .mini-body .mini-specs {
                display: flex;
                gap: 10px;
                font-size: 12px;
                color: color-mix(in srgb, var(--default-color), transparent 25%);
                margin-bottom: 10px;
            }

                .featured-properties .mini-list .mini-card .mini-body .mini-specs span {
                    display: inline-flex;
                    align-items: center;
                    gap: 4px;
                }

                    .featured-properties .mini-list .mini-card .mini-body .mini-specs span i {
                        color: var(--accent-color);
                        font-size: 12px;
                    }

            .featured-properties .mini-list .mini-card .mini-body .mini-foot {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

                .featured-properties .mini-list .mini-card .mini-body .mini-foot .mini-price {
                    font-size: 18px;
                    font-weight: 800;
                    color: var(--heading-color);
                }

                .featured-properties .mini-list .mini-card .mini-body .mini-foot .mini-btn {
                    padding: 8px 14px;
                    border-radius: 18px;
                    background: var(--accent-color);
                    color: var(--contrast-color);
                    font-size: 12px;
                    font-weight: 700;
                    text-transform: uppercase;
                    transition: 0.3s;
                }

                    .featured-properties .mini-list .mini-card .mini-body .mini-foot .mini-btn:hover {
                        background: color-mix(in srgb, var(--accent-color), black 12%);
                        transform: translateY(-2px);
                    }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .featured-properties .mini-list {
        grid-template-columns: 1fr 1fr; /* Still 2 per row */
    }
}

@media (max-width: 576px) {
    .featured-properties .mini-list {
        grid-template-columns: 1fr; /* Single column on mobile */
        justify-items: center; /* Center the card */
    }

        .featured-properties .mini-list .mini-card {
            grid-template-columns: 100px 1fr;
            width: 100%;
            max-width: 400px; /* Optional: limit width for nice centering */
        }
}
/*-------------------------------------urgent jobs End-------------------------------------------*/



/* Banner */

#posts {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

    #posts .inner {
        margin: 0 auto;
    }

    #posts .button.icon {
        padding: 0;
        width: 3em;
        height: 3em;
        line-height: 3em;
        border-radius: 100%;
        text-align: center;
    }

        #posts .button.icon:before {
            margin-right: 0;
            color: #FFF;
        }

        #posts .button.icon.fa-chevron-left:before {
            margin-left: -3px;
        }

        #posts .button.icon.fa-chevron-right:before {
            margin-left: 3px;
        }

    #posts ul.actions li {
        width: 49.5%;
        margin: 0;
        padding: 0;
    }

        #posts ul.actions li:first-child {
            text-align: left;
        }

        #posts ul.actions li:last-child {
            text-align: right;
        }

@media screen and (max-width: 736px) {

    #posts {
        background-attachment: scroll;
        background-size: cover;
    }

        #posts h2 {
            font-size: 1.5em;
        }
}

@media screen and (max-width: 480px) {

    #posts ul.actions li {
        display: inline-block;
        width: 49%;
        margin: 0;
        padding: 0;
    }
}

.posts {
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
    /*background-size: 100% auto;*/
    background-repeat: no-repeat;
    background-attachment: fixed;
    border-top: 0;
    min-height: 100vh;
    height: 100vh;
    position: relative;
    text-align: center;
    overflow: hidden;
}

    .posts .box {
        margin: 0;
    }

@-moz-keyframes inner {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes inner {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-ms-keyframes inner {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes inner {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.posts .inner {
    -moz-transform: scale(1.0);
    -webkit-transform: scale(1.0);
    -ms-transform: scale(1.0);
    transform: scale(1.0);
    -moz-transition: opacity 1.25s ease, -moz-transform 1s ease;
    -webkit-transition: opacity 1.25s ease, -webkit-transform 1s ease;
    -ms-transition: opacity 1.25s ease, -ms-transform 1s ease;
    transition: opacity 1.25s ease, transform 1s ease;
    opacity: 0;
    position: relative;
    z-index: 2;
}

    .posts .inner.current {
        opacity: 1;
    }

.posts:before {
    -moz-transition: opacity 3s ease;
    -webkit-transition: opacity 3s ease;
    -ms-transition: opacity 3s ease;
    transition: opacity 3s ease;
    -moz-transition-delay: 1.25s;
    -webkit-transition-delay: 1.25s;
    -ms-transition-delay: 1.25s;
    transition-delay: 1.25s;
    /*content: '';*/
    display: block;
    background-color: #000;
    background-size: cover;
    /*background-size: 100% auto;*/
    height: 100%;
    left: 0;
    opacity: 0.45;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

@-moz-keyframes more {
    0% {
        bottom: -3em;
    }

    100% {
        bottom: 2em;
    }
}

@-webkit-keyframes more {
    0% {
        bottom: -3em;
    }

    100% {
        bottom: 2em;
    }
}

@-ms-keyframes more {
    0% {
        bottom: -3em;
    }

    100% {
        bottom: 2em;
    }
}

@keyframes more {
    0% {
        bottom: -3em;
    }

    100% {
        bottom: 2em;
    }
}

.posts .more {
    background-color: rgba(255, 255, 255, 0.15);
    border: 0;
    border-radius: 1em 1em 0 0;
    bottom: -3em;
    color: rgba(255, 255, 255, 0.75);
    display: block;
    height: 3em;
    left: 50%;
    margin-left: -1.5em;
    overflow: hidden;
    position: absolute;
    text-indent: 3em;
    white-space: nowrap;
    width: 3em;
    z-index: 2;
    border-radius: 100%;
    text-decoration: none;
}

    .posts .more:before {
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        text-transform: none !important;
    }

    .posts .more.current {
        -moz-transition: height 0.2s ease;
        -webkit-transition: height 0.2s ease;
        -ms-transition: height 0.2s ease;
        transition: height 0.2s ease;
        -moz-animation: more 0.75s ease-out 2s forwards;
        -webkit-animation: more 0.75s ease-out 2s forwards;
        -ms-animation: more 0.75s ease-out 2s forwards;
        animation: more 0.75s ease-out 2s forwards;
    }

    .posts .more:hover {
        background: none;
        color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 0 1px 0 rgba(255, 255, 255, 0.5);
    }

        .posts .more:hover:before {
            color: rgba(255, 255, 255, 0.5);
        }

    .posts .more:before {
        content: '\f107';
        color: #FFF;
        font-size: 2em;
        position: absolute;
        right: .425em;
        bottom: -.075em;
    }

@media screen and (max-width: 980px) {

    @-moz-keyframes more {
        0% {
            bottom: -3em;
        }

        100% {
            bottom: 1.5em;
        }
    }

    @-webkit-keyframes more {
        0% {
            bottom: -3em;
        }

        100% {
            bottom: 1.5em;
        }
    }

    @-ms-keyframes more {
        0% {
            bottom: -3em;
        }

        100% {
            bottom: 1.5em;
        }
    }

    @keyframes more {
        0% {
            bottom: -3em;
        }

        100% {
            bottom: 1.5em;
        }
    }
}

@media screen and (max-width: 736px) {

    .posts {
        min-height: 0;
        height: auto;
        background-attachment: scroll;
    }

        .posts h2 {
            font-size: 1.5em;
        }
}

@media screen and (max-width: 480px) {

    .posts h2 {
        font-size: 1.25em;
    }

    .posts .more {
        display: none;
    }

    .posts .button {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Gallery Slider Section
--------------------------------------------------------------*/
.gallery-slider {
    overflow: hidden;
}

    .gallery-slider .gallery-container {
        padding: 20px 0 40px;
        position: relative;
    }

    .gallery-slider .swiper-wrapper {
        height: auto !important;
        align-items: center;
        padding: 30px 0;
    }

    .gallery-slider .gallery-item {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transition: all 0.4s ease;
    }

    .gallery-slider .gallery-img {
        position: relative;
        overflow: hidden;
    }

        .gallery-slider .gallery-img img {
            transition: transform 0.6s ease;
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
        }

        .gallery-slider .gallery-img .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: color-mix(in srgb, var(--accent-color), transparent 70%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
        }

            .gallery-slider .gallery-img .gallery-overlay i {
                color: var(--contrast-color);
                font-size: 3rem;
                transform: scale(0.5);
                transition: all 0.3s ease;
            }

        .gallery-slider .gallery-img:hover img {
            transform: scale(1.1);
        }

        .gallery-slider .gallery-img:hover .gallery-overlay {
            opacity: 1;
        }

            .gallery-slider .gallery-img:hover .gallery-overlay i {
                transform: scale(1);
            }

    .gallery-slider .swiper-pagination {
        position: relative;
        margin-top: 20px;
    }

        .gallery-slider .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: transparent;
            border: 2px solid var(--accent-color);
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .gallery-slider .swiper-pagination .swiper-pagination-bullet-active {
            background: var(--accent-color);
            opacity: 1;
            transform: scale(1.2);
        }

    .gallery-slider .swiper-button-next,
    .gallery-slider .swiper-button-prev {
        color: var(--accent-color);
        background: var(--surface-color);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        opacity: 0;
        transition: all 0.3s ease;
    }

        .gallery-slider .swiper-button-next:after,
        .gallery-slider .swiper-button-prev:after {
            font-size: 16px;
            font-weight: bold;
        }

    .gallery-slider:hover .swiper-button-next,
    .gallery-slider:hover .swiper-button-prev {
        opacity: 0.9;
    }

        .gallery-slider:hover .swiper-button-next:hover,
        .gallery-slider:hover .swiper-button-prev:hover {
            background: var(--accent-color);
            color: var(--contrast-color);
        }

@media (max-width: 991px) {
    .gallery-slider .gallery-item {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }

    .gallery-slider .swiper-button-next,
    .gallery-slider .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 767px) {
    .gallery-slider .swiper-wrapper {
        padding: 15px 0;
    }

    .gallery-slider .gallery-img .gallery-overlay i {
        font-size: 2rem;
    }
}

