/* ================================
   Sticky Book Service Button
   ================================ */
#bookServiceBtn {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #0077ff;
    color: #fff;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px 0 0 30px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: 0.3s ease;
}

#bookServiceBtn:hover {
    background: #18b26f;
}

/* ================================
   Slide-Out Floating Drawer
   ================================ */
#serviceFormDrawer {
    position: fixed;
    top: 50%;
    right: -380px; /* hidden by default */
    transform: translateY(-50%);
    width: 360px;
    max-height: 85vh;
    background: #ffffff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: -5px 5px 25px rgba(0, 0, 0, 0.18);
    transition: right 0.4s ease;
    overflow-y: auto;
    z-index: 99999;
}

/* Scroll bar styling */
#serviceFormDrawer::-webkit-scrollbar {
    width: 6px;
}
#serviceFormDrawer::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
#serviceFormDrawer::-webkit-scrollbar-thumb {
    background: #cfcfcf;
    border-radius: 10px;
}

/* ================================
   Drawer Header
   ================================ */
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.drawer-header h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

#drawerCloseBtn {
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

#drawerCloseBtn:hover {
    color: #ff3b3b;
}

/* ================================
   Mobile Responsive
   ================================ */
@media (max-width: 600px) {
    #serviceFormDrawer {
        width: 90%;
        right: -100%; /* hidden state */
        max-height: 80vh;
    }
}

/* extra small screens */
@media (max-width: 380px) {
    #bookServiceBtn {
        padding: 10px 16px;
        font-size: 14px;
    }

    #serviceFormDrawer {
        width: 92%;
    }
}

/* ================================
   Floating WhatsApp and Call Icons
   ================================ */

.floating-whatsapp,
.floating-call {
    position: fixed;
    bottom: 70px;
    z-index: 9999;
}

.floating-whatsapp {
    right: 40px;
}

.floating-call {
    left: 40px;
}

.icon-button {
    width: 50px;
    height: 50px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: 0.3s;
}

.icon-button:hover {
    opacity: 0.9;
    color: white;
}

.icon-call {
    background-color: #007bff;
}

@media only screen and (max-width: 991.98px) {
    .service-content .service-title {
        font-size: 12px;
    }

    .service-content {
        padding: 10px;
    }
}

.service-section {
    background: #f8f9fa;
}

.service-widget {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-widget:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.service-widget .service-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-top: 10px;
}

.service-content a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.service-content a:hover {
    color: #ffb703;
}

/* end Service Section CSS */
/* why choose us section */
.why-choose-us {
    background: #f8f9fa;
}

.why-choose-us .section-heading h2 {
    font-size: 2.2rem;
}

.why-choose-us .section-heading span {
    color: #18b26f;
}

.choose-box {
    transition: all 0.4s ease;
}

.choose-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.choose-box .icon i {
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .why-choose-us .section-heading h2 {
        font-size: 1.8rem;
    }
}

/* end why choose us section */
/* work process section */
.work-process-section {
    background: #f8f9fa;
}

.work-process-section h2 span {
    color: #18b26f;
}

.process-step {
    position: relative;
    transition: all 0.4s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.step-number {
    background: #18b26f;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-weight: 700;
    border-radius: 50%;
    display: inline-block;
    font-size: 1.2rem;
}

.process-icon img {
    transition: transform 0.3s ease;
}

.process-step:hover .process-icon img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .work-process-section h2 {
        font-size: 1.8rem;
    }
}

/* end work process section */
/* CTA Section */
.cta-section {
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

.cta-bg img {
    object-fit: cover;
    filter: brightness(0.5);
}

.cta-overlay {
    background: rgba(0, 0, 0, 0.55);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.4rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: #e0e0e0;
}

.cta-buttons .btn {
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: #ffb703;
    border: none;
    color: #000;
}

.cta-buttons .btn-primary:hover {
    background: #e09b00;
    color: #fff;
}

.cta-buttons .btn-success {
    background: #25d366;
    border: none;
}

.cta-buttons .btn-success:hover {
    background: #1ebd58;
}

@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}

.business-section {
    position: relative;
    z-index: 1;
}
.business-section h2,
.business-section p {
    margin-bottom: 20px;
}
.business-section::before {
    content: "";
    width: 423px;
    height: 100%;
    /* background: url("../img/bg/business-bg.png"); */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 15%;
    z-index: -1;
}
@media (max-width: 991.98px) {
    .business-section::before {
        content: none;
    }
}

.business-img {
    margin-left: 54px;
}
.business-img img {
    border-radius: 10px;
}
@media (max-width: 991.98px) {
    .business-img {
        margin-left: 0;
    }
}

.business-img {
    position: relative;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.business-img img {
    border-radius: 10px;
    border: 3px solid #fff;
}
.business-img .overlay-title {
    background: #fff;
    border-radius: 24px;
    color: #313650;
    padding: 4px 16px;
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    white-space: nowrap;
}
.business-img .overlay-title::before {
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(90deg, #fd2692 0%, #0a67f2 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
}
.business-img:hover {
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.business-img:hover .overlay-title {
    bottom: 20px;
    opacity: 1;
}
