.hero-sec {
    /* min-height: 100vh; */
}

/* .service-hero-sec {
    min-height: 500px;
} */
.service-hero-col {
    width: 70% !important;
    margin: 0 auto;
}

.service {
    overflow: hidden;
}

.service::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
    opacity: 0;
    transition: 0.4s ease;
}

.service .elementor-widget-wrap {
    z-index: 2;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.service:hover::after {
    opacity: 1;
}

.service:hover .elementor-widget-wrap {
    transform: translateY(0);
}

.toc-blog .elementor-toc__header,
.toc-blog .elementor-toc__body {
    padding: 20px 0;
}


#page-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-spinner {
    width: 45px;
    height: 45px;
    border: 4px solid #F5F5F5;
    border-top: 4px solid #F97316;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.elementor-accordion-item:has(.elementor-tab-title:empty),
.elementor-accordion-item:has(.elementor-tab-content:empty) {
    display: none;
}

.faq-item {
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fafafa;
}

/* Question */
.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    line-height: 1.6;
    /* color: #555; */
    transition: all 0.4s ease;
}

/* ACTIVE STATE */
.faq-item.active {
    border-color: #f7c11c;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 18px;
}

/* ICON */
.icon {
    font-size: 22px;
    transition: 0.3s ease;
}

.faq-item.active .icon {
    transform: rotate(180deg);
}


.my-blog-title .elementor-heading-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    line-height: 1.4;
    height: calc(1.4em * 2);
    /* force 2 line height */
}

/* BLOG DESCRIPTION - 2 lines ellipsis */
.my-blog-desc p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    line-height: 1.5;
    height: calc(1.5em * 2);
    /* force 2 line height */
}

.my-blog-desc3 p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 767px) {
    .hero-sec {
        height: auto;
    }

    .service-hero-col {
        width: 100% !important;
    }
}