.slider-section {
    height: 100vh;
    background-image:
        linear-gradient(to right,
            #00000071 0%,
            #00000071 50%,
            rgba(0, 0, 0, 0) 100%),
        url(../images/header-section/slider-images/meeting-img.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    font-size: 20px;
    width: 100%;
}

/* next-prev-section  */

.next-prev-section {
    position: absolute;
    top: 50%;
    right: 18%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}


.home-next {
    width: 50px;
    height: 50px;
    background-color: rgba(210, 174, 85, 0.20);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #d2af55;
}

.home-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(210, 174, 85, 0.20);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffffec;
}

/* ICON VISIBLE FIX */
.home-prev::after,
.home-next::after {
    content: "";
    width: 22px;
    height: 22px;
    display: block;
    background-color: #fff;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

/* Right icon */
.home-next::after {
    mask-image: url("../images/slider-section/icons/left-dot-icon.svg");
}

/* Left icon */
.home-prev::after {
    mask-image: url("../images/slider-section/icons/dot-icon.svg");
}


.home-pagination {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.home-pagination .swiper-pagination-bullet {
    background-color: var(--p-c);
    opacity: 1;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.home-pagination .swiper-pagination-bullet-active {
    background-color: var(--w-c);
    border-radius: 30px;
}

/* end  */


.slide-content h1 {
    color: var(--w-c);
    font-size: .8em;
}

.slide-content h2 {
    position: relative;
    font-size: 3.3em;
    font-weight: 500;
    color: var(--w-c);
}

.slide-content p {
    font-size: 3em;
    color: var(--w-c);
}

.paragraph-content {
    border-left: 4px solid var(--p-c);
}

.paragraph-content p {
    color: #D0D0D0;
    font-size: .76em;
    font-family: 300;
}

.get-qoute-btn {
    background-color: var(--p-c);
    width: max-content;
    padding: 8px 25px;
    border-radius: 20px;
    text-decoration: none;
    transition: .3s ease;
}

/* text */
.get-qoute-btn span {
    color: var(--w-c);
    font-size: .7em;
    font-weight: 500;
}

/* icon normal */
.get-qoute-btn .mask-image {
    transition: .3s ease;
    transform: translateX(0);
    opacity: 1;
}

/* hover effect */
.get-qoute-btn:hover .mask-image {
    transform: translateX(6px);
    opacity: .8;
}


/* our service btn  */


.our-services {
    background-color: var(--w-c);
    width: max-content;
    padding: 8px 25px;
    border-radius: 20px;
    text-decoration: none;
    transition: .3s ease;
}

/* text */
.our-services span {
    color: var(--p-c);
    font-size: .7em;
    font-weight: 500;
}

.our-services .mask-image {
    transition: .3s ease;
    transform: translateX(0);
    opacity: 1;
}

.our-services:hover .mask-image {
    transform: translateX(6px);
    opacity: .8;
}

.slide-section-wrapper {
    display: block;
    flex-shrink: 0;
    height: 100vh !important;
    position: relative;
    transition-property: transform;
    width: 100%;
}

.slider-main-section {
    position: relative;
}

.absolute-font {
    position: absolute;
    bottom: 0;
    left: 0;
}

.absolute-font p {
    font-size: .6em;
    color: #ffffff63;
}

.mouse-icon .mask-image {
    width: 1.5em;
    height: 1.5em;
}

.mouse-icon {
    position: absolute;
    bottom: 1%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
}

.absolute-font-frame-two {
    position: absolute;
    top: 0;
    right: 0;
}

.slider-section .know-more-btn {
    position: relative;
    padding: 7px 10px;
    width: max-content;
    border-radius: 20px;
    background: linear-gradient(to right, #5CA446, #83B441);
    z-index: 1;
    color: #fff;
    overflow: hidden;
    cursor: pointer;
}

.slider-section .know-more-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: 20px;
    background: linear-gradient(to right, #83B441, #5CA446);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 2;
}

.slider-section .know-more-btn::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    left: -19px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.slider-section .know-more-btn h6 {
    font-size: .3em;
    font-weight: 700;
}

.slider-section .arrow-icons {
    background-color: var(--w-c);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.29);
}



@media (max-width: 1400px) {
    .slide-content {
        font-size: 15px;
    }

    /* Wrapper positioning */
    .next-prev-section {
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translate(-50%, 20%);
        z-index: 20;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 40px;
    }

    /* Buttons small size */

    .home-next {
        width: 46px;
        height: 46px;
        background-color: rgba(210, 174, 85, 0.20);
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #d2af55;
    }

    .home-prev {
        width: 46px;
        height: 46px;
        background-color: rgba(210, 174, 85, 0.20);
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #ffffffec;
    }

    .home-prev::after,
    .home-next::after {
        content: "";
        width: 28px;
        height: 28px;
        background-color: #fff;
        mask-size: contain;
        mask-repeat: no-repeat;
        mask-position: center;
    }

    /* Correct icon direction (NO rotation needed) */
    .home-next::after {
        mask-image: url("../images/slider-section/icons/dot-icon.svg");
        transform: rotate(0deg);
    }

    .home-prev::after {
        mask-image: url("../images/slider-section/icons/left-dot-icon.svg");
        transform: rotate(0deg);
    }

    /* Pagination styling */
    .home-pagination {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .home-pagination .swiper-pagination-bullet {
        background-color: #ffffff50;
        opacity: 1;
        border-radius: 50%;
    }

    .home-pagination .swiper-pagination-bullet-active {
        border-radius: 20px;
        background-color: var(--w-c);
    }



}

@media (max-width: 768px) {
    .slide-content {
        font-size: 12px;
    }


    .home-next {
        width: 36px;
        height: 36px;
        background-color: rgba(210, 174, 85, 0.20);
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #d2af55;
    }

    .home-prev {
        width: 36px;
        height: 36px;
        background-color: rgba(210, 174, 85, 0.20);
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #ffffffec;
    }

    .home-prev::after,
    .home-next::after {
        content: "";
        width: 20px;
        height: 20px;
        background-color: #fff;
        mask-size: contain;
        mask-repeat: no-repeat;
        mask-position: center;
    }

    .next-prev-section {
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translate(-50%, 20%);
        z-index: 20;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .get-qoute-btn span {
        color: var(--w-c);
        font-size: 1em;
        font-weight: 500;
    }

    .our-services span {
        color: var(--p-c);
        font-size: 1em;
        font-weight: 500;
    }
}

@media (max-width:420px) {
    .slide-content {
        font-size: 10px;
    }
}