/* ===== SLIDER CONTAINER ===== */
.pro-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: clamp(560px, 41.67vw, 800px);
    overflow: hidden;
    background: #000;
}
 
/* Slides */
.pro-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
 
.pro-slide.active {
    opacity: 1;
    z-index: 1;
}
 
/* Image - Using background-cover approach with img tag */
.pro-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Overlay to improve text readability */
.pro-slide::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.08) 100%);
    z-index: 1;
}

@media(max-width:768px) {
    .pro-slide img {
        object-fit: cover;
        object-position: center top;
    }

    .pro-slide::after {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    }
}
 
@media(max-width:768px) {
    .btm {
        position: relative;
        bottom: 13px;
    }
}
 
/* Content */
.pro-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 80%;
    max-width: 700px;
    padding: 30px;
}
 
@media(max-width:1024px) {
    .pro-content {
        width: 85%;
        padding: 25px;
    }
}

@media(max-width:768px) {
    .pro-content {
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 100%;
        padding: 20px;
    }
}

@media(max-width:480px) {
    .pro-content {
        top: 58%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 15px;
    }
}
 
 
a {
 
    text-decoration: none;
}
 
.pro-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

@media(max-width:1024px) {
    .pro-content h2 {
        font-size: 38px;
    }
}

@media(max-width:768px) {
    .pro-content h2 {
        font-size: 28px;
        margin: 0 0 15px 0;
    }
}

@media(max-width:480px) {
    .pro-content h2 {
        font-size: 24px;
        margin: 0 0 10px 0;
    }
}
 
.pro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    font-weight: 500;
    margin: 0 0 20px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-align: center;
}

@media(max-width:1024px) {
    .pro-content p {
        font-size: 16px;
    }
}

@media(max-width:768px) {
    .pro-content p {
        font-size: 16px;
        margin: 0 0 15px 0;
        line-height: 1.6;
    }
}

@media(max-width:480px) {
    .pro-content p {
        font-size: 15px;
        margin: 0 0 12px 0;
    }
}
 
 
 
.pro-btn {
    display: inline-block;
    background: #82c03c;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #82c03c;
    border-radius: 8px;
    padding: 14px 35px;
    margin-top: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(130, 192, 60, 0.3);
}

.pro-btn:hover {
    background: #fff;
    color: #82c03c;
    border-color: #fff;
    box-shadow: 0 6px 20px rgba(130, 192, 60, 0.5);
    transform: translateY(-2px);
}

@media(max-width:1024px) {
    .pro-btn {
        padding: 12px 30px;
        font-size: 13px;
    }
}

@media(max-width:768px) {
    .pro-btn {
        padding: 10px 25px;
        font-size: 12px;
        margin-top: 12px;
    }
}

@media(max-width:480px) {
    .pro-btn {
        padding: 8px 20px;
        font-size: 11px;
        margin-top: 10px;
    }
}
 
 
/* Arrows */
.pro-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(130, 192, 60, 0.8);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    z-index: 3;
    transition: all 0.3s ease;
    font-weight: bold;
}

.pro-arrow:hover {
    background: #82c03c;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(130, 192, 60, 0.4);
}

@media(max-width:1024px) {
    .pro-arrow {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

@media(max-width:768px) {
    .pro-arrow {
        width: 45px;
        height: 45px;
        font-size: 18px;
        background: rgba(130, 192, 60, 0.9);
        top: auto;
        bottom: 25px;
    }
}

@media(max-width:480px) {
    .pro-arrow {
        width: 38px;
        height: 38px;
        font-size: 16px;
        top: auto;
        bottom: 20px;
        transform: none;
    }
    
    .pro-arrow:hover {
        transform: scale(1.1);
    }
}
 
.para {
    color: #fff;
    font-weight: 400;
}
 
.prev {
    left: 25px;
}
 
.next {
    right: 25px;
}

@media(max-width:768px) {
    .prev {
        left: 15px;
    }
    
    .next {
        right: 15px;
    }
}
 
 
 
@media(max-width:1024px) {
    .pro-slider {
        height: 600px;
    }

    .pro-slide img {
        object-fit: cover;
        object-position: center center;
    }
}

@media(max-width:768px) {
    .pro-slider {
        height: 450px;
    }
}

@media(max-width:480px) {
    .pro-slider {
        height: 350px;
    }
}
 
@media(max-width:768px) {
 
    .para {
        color: #fff
    }
}