
   

.banner-image {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

.rev_slider_wrapper {
    position: relative;
    overflow: hidden;
}

.rev_slider_wrapper .slotholder img {
    width: 100% !important;
    height: auto !important;
}

/* Mobile View */
@media (max-width: 767px) {
    .rev_slider_wrapper .slotholder img {
        min-height: 200px !important;
        object-fit: cover !important;
    }
    
    .rev_slider_wrapper .slide-content-box h2 {
        font-size: 24px !important;
        line-height: 30px !important;
    }
}

@media (max-width: 480px) {
    .rev_slider_wrapper .slotholder img {
        min-height: 150px !important;
    }
    
    .rev_slider_wrapper .slide-content-box h2 {
        font-size: 18px !important;
        line-height: 24px !important;
    }
}




.about-sec {
    background: #fff;
    padding: 60px 0;
}

.sub-title {
    color: #ff7a00;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    transition: 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #ff7a00;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
}

.about-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-content .text {
    color: #444;
    line-height: 1.8;
    font-size: 15px;
}

.highlight-text {
    background: #f5f5f5;
    padding: 12px;
    border-left: 4px solid #ff7a00;
    margin-top: 12px;
    font-weight: 600;
}

.btn-custom {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 22px;
    background: #ff7a00;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-custom:hover {
    background: #e86d00;
}





/* =========================
   FACT COUNTER SECTION
========================= */

.fact-counter {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 70px 0;
}




.counter-column .icon i {
    font-size: 28px;
    color: #ff7a00;
}



/* =========================
   GENERAL IMPROVEMENTS
========================= */


.section-title .sub-title {
    letter-spacing: 1px;
}





/* =========================
   GALLERY SECTION MODERN
========================= */

.gallery-sec {
    background-size: cover;
    background-position: center;
    padding: 70px 0;
}

/* BOX */
.gallery-box {
    margin-bottom: 25px;
}

/* IMAGE WRAPPER */
.gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 260px;
}

/* IMAGE FIX SIZE */
.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

/* HOVER ZOOM */
.gallery-img:hover img {
    transform: scale(1.1);
}

/* OVERLAY */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

/* SHOW OVERLAY ON HOVER */
.gallery-img:hover .gallery-overlay {
    opacity: 1;
}

/* ICON */
.gallery-overlay a {
    width: 45px;
    height: 45px;
    background: #ff7a00;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s;
}

.gallery-overlay a:hover {
    background: #e86d00;
    transform: rotate(90deg);
}



    .testimonial-item {
    padding: 15px;
}

.testimonial-item .inner-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    height: 100%;
}

.testimonial-item .text p {
    font-size: 14px;
    line-height: 22px;
    color: #333;
}

.testimonial-item .author {
    margin-top: 15px;
}




/* =========================
   CTA SECTION MODERN
========================= */

.cta-section {
    
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

/* BOX */
.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
   
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
   
}

/* TEXT */
.cta-content h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-content p {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    max-width: 600px;
}

/* BUTTON */
.cta-btn {
    display: inline-block;
    padding: 14px 26px;
    background: #ff7a00;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
    white-space: nowrap;
}

.cta-btn:hover {
    background: #e86d00;
    transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cta-content h2 {
        font-size: 22px;
    }
}


