.slider-one_content-inner h1 {
    font-size: 48px;
    line-height: 55px;
}

.service-block_three-icon img {
    width: 60px;
}

/*  */
/* ============================
   PRELOADER WRAPPER
============================ */
.preloader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    z-index: 9999999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

/* ============================
   FADE OUT STATE
============================ */
.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ============================
   LOADER CONTAINER
============================ */
.loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================
   PRELOADER IMAGE
============================ */
.preloader-img {
    width: 200px;
    max-width: 70vw;
    height: auto;

    animation: imagePulse 1.6s ease-in-out infinite;
}

/* ============================
   IMAGE PULSE ANIMATION
============================ */
@keyframes imagePulse {
    0% {
        transform: scale(1);
        opacity: 1;
        filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    }

    50% {
        transform: scale(1.08);
        opacity: 0.85;
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
    }

    100% {
        transform: scale(1);
        opacity: 1;
        filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    }
}

/* ============================
   ACCESSIBILITY (REDUCE MOTION)
============================ */
@media (prefers-reduced-motion: reduce) {
    .preloader-img {
        animation: none;
    }

    .preloader {
        transition: none;
    }
}

/*  */

.service-block_three-inner:hover a {
    color: #fff !important;

}

.service-block_three-inner:hover .h-fff {
    color: #fff !important;
}

/* contact page */
.sty {
    display: flex !important;
    gap: 10px;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
}

/* popup */
.consult-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 9999;
    padding: 20px;
}

.consult-popup-box {
    background: #fff;
    max-width: 700px;
    margin: auto;
    padding: 40px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

/* Close button */
.consult-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: #5d6967;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 20px;
    cursor: pointer;
}

/* Headings */
.popup-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 5px;
}

.popup-subtitle {
    color: #5d6967;
    margin-bottom: 30px;
}

/* Form fields */
.form-control {
    height: 48px;
    border-radius: 6px;
    border: 1px solid #dcdcdc;
}

textarea.form-control {
    height: auto;
}

/* Submit button */
.popup-submit {
    width: 100%;
    background: #5d6967;
    color: #fff;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    transition: 0.3s;
}

.popup-submit:hover {
    background: #393f3e;
}

/*  */
@media (max-width: 991px) {
    .service-two .service-block_one {
        width: 50% !important;
    }

    .contact-three_info-outer {
        display: unset !important;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .service-two .service-block_one {
        width: 100% !important;
        padding: 0 10px;
    }

    .contact-three_info-outer {
        display: unset !important;
    }
}

.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* Call Button */
.call-btn {
    background: linear-gradient(135deg, #3a4441, #38433f);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Mobile Optimization */
@media (max-width: 576px) {
    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}