/* Zarma Chatbot Custom CSS - Orange branding & fixes */

/* --- Orange Brand Color --- */
:root {
    --brand-orange: #3997DF;
    --brand-orange-light: #00c6ff;
    --promo-height: 0px;
}

/* Service icons - orange colored */
.accordion-faq_item .accordion-action .accordion-title i.icon,
.features-item>i.icon,
.process-card>i.icon,
.contact-item>i.icon,
.benefits-progress-item .progress-text i.icon,
.accordion-faq_item.style-1 .accordion-action .accordion-title i.icon {
    color: var(--brand-orange) !important;
}

/* Header logo image - modern tech layout with no border, perfectly sized and aligned */
.tf-header .logo-site {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 290px !important;
    height: 50px !important;
    min-width: 290px !important;
    margin-right: 48px !important;
    overflow: visible !important;
}

.tf-header .logo-site img {
    height: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    object-fit: contain !important;
    display: block !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    transform: scale(3.5) !important;
    transform-origin: left center !important;
}

.footer-logo img {
    object-fit: contain;
    max-width: 260px !important;
    height: auto;
    display: block;
}

/* Highly visible, premium shaped navbar background & borders */
.tf-header .header-inner,
.tf-header.header2 .header-inner {
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 2px solid rgba(57, 151, 223, 0.18) !important;
    box-shadow: 0 16px 40px rgba(57, 151, 223, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04) !important;
    border-radius: 999px !important;
    transition: all 0.3s ease !important;
}

.tf-header.header2 .header-inner {
    width: 92% !important;
    height: 80px !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

@media (min-width: 992px) {
    .tf-header.header2 .header-inner {
        max-width: 760px !important;
        /* Extremely close and compact desktop layout */
        padding: 0 16px 0 24px !important;
        gap: 12px !important;
    }

    .tf-header.header2 .box-navigation {
        padding-left: 0 !important;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
    }

    .nav-menu-main {
        gap: 16px !important;
        /* Perfectly fits 760px desktop navbar pill */
        white-space: nowrap !important;
        /* Bulletproof prevent links from wrapping */
    }
}

.nav-menu-main .item-link {
    color: #2b2b2b;
    font-weight: 600;
}

.nav-menu-main .item-link:hover,
.nav-menu-main .menu-item.active>.item-link {
    color: var(--brand-orange) !important;
}

/* Active nav styling */
.nav-menu-main .menu-item.active>.item-link {
    color: var(--brand-orange) !important;
}

/* Fix invisible gradients - making them much lighter/visible */
.text-gradient-1 {
    background: linear-gradient(132.09deg, #222 11.15%, #555 79.01%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.text-gradient-2 {
    background: linear-gradient(180deg, #333 0%, #666 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.text-gradient-3 {
    background: linear-gradient(95.5deg, #111 1.91%, #444 43.92%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Ensure secondary text is readable on light backgrounds */
.text-secondary {
    color: #666 !important;
}

/* Logo styling */
.logo-site span:first-child {
    color: #3997DF !important;
}

.logo-site span:last-child {
    color: #3C2424 !important;
}

/* Admin sidebar active state */
.nav-link.active {
    background: rgba(57, 151, 223, 0.1) !important;
    color: var(--brand-orange) !important;
}

/* Testimonial Cards */
.tes-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 36px 32px 28px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tes-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.tes-review {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.tes-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tes-avatar-wrap img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.tes-name {
    font-weight: 700;
    color: #333;
}

.tes-role {
    font-size: 0.85em;
    color: #888;
}

/* Blog Cards */
.blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

/* --- Blog Swiper / Home Blog Section --- */
.section-blog-preview {
    position: relative;
    overflow: visible;
}

.blog-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.blog-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3997DF;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95em;
    padding: 10px 22px;
    border: 2px solid rgba(57, 151, 223, 0.25);
    border-radius: 100px;
    background: rgba(57, 151, 223, 0.05);
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.blog-view-all-btn:hover {
    background: #3997DF;
    color: #ffffff;
    border-color: #3997DF;
    box-shadow: 0 8px 20px rgba(57, 151, 223, 0.2);
    gap: 12px;
}

.blog-drag-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.blog-drag-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.blog-cat-pill {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75em;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid;
    backdrop-filter: blur(8px);
}

.blog-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-drag-card:hover .blog-card-img img {
    transform: scale(1.1);
}

.blog-card-img-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.blog-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85em;
    color: #888;
    margin-bottom: 12px;
    font-weight: 500;
}

.blog-dot {
    font-size: 1.2em;
    line-height: 1;
}

.blog-card-title {
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #111;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-title a:hover {
    color: var(--brand-orange);
}

.blog-card-excerpt {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 24px;
}

.blog-read-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9em;
    text-decoration: none;
    transition: gap 0.3s;
}

.blog-read-link:hover {
    gap: 12px;
}

.blog-card-accent {
    height: 4px;
    width: 0;
    transition: width 0.4s ease;
}

.blog-drag-card:hover .blog-card-accent {
    width: 100%;
}

.blog-drag-hint {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #999;
    font-size: 0.85em;
    font-weight: 600;
}

.blog-swiper .tf-sw-pagination {
    bottom: -35px !important;
}

.blog-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 0.5;
    transition: all 0.3s;
}

.blog-swiper .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 4px;
    background: var(--brand-orange) !important;
    opacity: 1;
}

.blog-swiper {
    position: relative !important;
    overflow: visible !important;
    padding-bottom: 70px !important;
}

.blog-swiper .nav-next-swiper,
.blog-swiper .nav-prev-swiper {
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 1000 !important;
    cursor: pointer !important;
    background: #ffffff !important;
    border: 2px solid #3997DF !important;
    border-radius: 50% !important;
    box-shadow: 0 10px 25px rgba(57, 151, 223, 0.15) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.blog-swiper .nav-prev-blog {
    left: -28px !important;
    right: auto !important;
}

.blog-swiper .nav-next-blog {
    right: -28px !important;
    left: auto !important;
}

.blog-swiper .nav-next-swiper:after,
.blog-swiper .nav-prev-swiper:after {
    font-family: 'icomoon' !important;
    font-size: 1.8rem !important;
    color: #3997DF !important;
    font-weight: 700 !important;
}

.blog-swiper .nav-next-swiper:after {
    content: "\e903" !important;
}

.blog-swiper .nav-prev-swiper:after {
    content: "\e902" !important;
}

.blog-swiper .nav-next-swiper:hover {
    background: #3997DF !important;
    transform: translateY(-50%) scale(1.15) !important;
    box-shadow: 0 15px 30px rgba(57, 151, 223, 0.3) !important;
}

.blog-swiper .nav-prev-swiper:hover {
    background: #3997DF !important;
    transform: translateY(-50%) scale(1.15) !important;
    box-shadow: 0 15px 30px rgba(57, 151, 223, 0.3) !important;
}

.blog-swiper .nav-next-swiper:hover:after,
.blog-swiper .nav-prev-swiper:hover:after {
    color: #ffffff !important;
}

/* Responsive Blog Buttons — Tablet (<1024px) */
@media (max-width: 1024px) {
    .blog-swiper .nav-prev-blog {
        left: 50% !important;
        margin-left: -55px !important;
        right: auto !important;
        top: auto !important;
        bottom: -70px !important;
        transform: none !important;
    }

    .blog-swiper .nav-next-blog {
        left: 50% !important;
        margin-left: 11px !important;
        right: auto !important;
        top: auto !important;
        bottom: -70px !important;
        transform: none !important;
    }

    .blog-swiper .nav-next-swiper:hover,
    .blog-swiper .nav-prev-swiper:hover {
        transform: scale(1.1) !important;
    }

    .blog-swiper {
        padding-bottom: 80px !important;
    }
}

/* Mobile (<768px) — Side overlay arrows inside the card, stacked header */
@media (max-width: 768px) {

    /* Stack blog header vertically so button doesn't fight heading for space */
    .blog-preview-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 18px !important;
        margin-bottom: 28px !important;
    }

    .blog-view-all-btn {
        font-size: 0.88em !important;
        padding: 9px 18px !important;
    }

    /* Move nav arrows to card sides (inside the swiper, not below) */
    .blog-swiper .nav-prev-swiper,
    .blog-swiper .nav-next-swiper {
        top: 38% !important;
        bottom: auto !important;
        width: 40px !important;
        height: 40px !important;
        transform: translateY(-50%) !important;
        margin-left: 0 !important;
    }

    .blog-swiper .nav-prev-blog {
        left: 12px !important;
        right: auto !important;
        margin-left: 0 !important;
    }

    .blog-swiper .nav-next-blog {
        right: 12px !important;
        left: auto !important;
        margin-left: 0 !important;
    }

    .blog-swiper .nav-next-swiper:hover,
    .blog-swiper .nav-prev-swiper:hover {
        transform: translateY(-50%) scale(1.1) !important;
    }

    .blog-swiper {
        padding-bottom: 50px !important;
    }

    .blog-view-all-btn:hover {
        background: #3997DF !important;
        color: #ffffff !important;
        border-color: #3997DF !important;
    }
}

.section-partner {
    padding: 60px 0;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.partner-wrap {
    display: flex;
    align-items: center;
    gap: 60px;
}

.partner-wrap p.text {
    flex-shrink: 0;
    font-size: 1.1rem;
    line-height: 1.4;
    color: #333 !important;
    margin-bottom: 0;
}

.infiniteSlide_tech_main {
    flex-grow: 1;
    overflow: hidden;
}

.infiniteSlide_partner {
    display: flex !important;
    align-items: center;
}

.partner-wrap .infiniteslide_wrap::after {
    display: none !important;
}

.partner-logo {
    height: 70px !important;
    width: auto !important;
    max-width: 180px;
    object-fit: contain;
    margin: 0 15px;
    filter: none !important;
    opacity: 1 !important;
    transition: all 0.3s ease-in-out;
}

.partner-logo:hover {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .partner-wrap {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

/* --- Global UI Fixes --- */
html,
body {
    caret-color: transparent;
}

input,
textarea,
[contenteditable='true'] {
    caret-color: auto;
}

img,
i,
svg {
    user-select: none;
}

/* --- Services Image Corner Fix --- */
.section-services {
    position: relative;
}

.services-image {
    max-width: 416px;
    height: 280px;
    position: absolute;
    bottom: 30px;
    left: 15px;
    z-index: 10;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: #000;
}

.services-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 1;
}

.services-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .services-image {
        position: relative;
        bottom: 0;
        left: 0;
        margin: 40px auto 0;
        max-width: 100%;
        height: auto;
    }
}

/* --- Heading Sub Pill Style --- */
.heading-sub-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    color: #00c6ff !important;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 25px;
    border: 1px solid #f0f0f0;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.heading-sub-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(57, 151, 223, 0.1);
    border-color: rgba(57, 151, 223, 0.2);
}

.heading-sub-pill .sparkle-icon {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
}

.heading-sub-pill .sparkle-icon span {
    display: block;
    background: #00c6ff;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: sparkleAnim 2s infinite ease-in-out;
}

.heading-sub-pill .sparkle-icon span:nth-child(1) {
    width: 14px;
    height: 14px;
}

.heading-sub-pill .sparkle-icon span:nth-child(2) {
    width: 8px;
    height: 8px;
    animation-delay: 0.5s;
}

.heading-sub-pill .sparkle-icon span:nth-child(3) {
    width: 6px;
    height: 6px;
    animation-delay: 1s;
}

@keyframes sparkleAnim {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.7);
        opacity: 0.5;
    }
}

/* --- Language Support Pills --- */
.langs-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.langs-pills span {
    background: #fff;
    padding: 6px 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #3997DF;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.langs-pills span:hover {
    transform: translateY(-2px);
    border-color: #3997DF;
    box-shadow: 0 8px 20px rgba(57, 151, 223, 0.1);
}

.langs-pills span.more {
    background: #f8f8f8;
    color: #666;
}

/* --- Global Responsiveness Fix --- */
html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

#wrapper {
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px !important;
    }
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 24px;
}

/* --- Zarma Chatbot Unique Mobile Navigation Fix (Non-Destructive) --- */
.ace-mobile-nav-active {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background: #fff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    padding: 12px 0 !important;
    margin-bottom: 0 !important;
}

.ace-mobile-inner-fix {
    margin: 0 15px !important;
    max-width: 100% !important;
    background: #fff !important;
    border: 1px solid #f0f0f0 !important;
}

.ace-offcanvas-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.ace-offcanvas-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.ace-offcanvas-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background: #ffffff !important;
    border-left: 2px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.08) !important;
    z-index: 10001;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    padding: 30px;
    visibility: hidden;
    overflow-y: auto;
}

.ace-canvas-title {
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    letter-spacing: 2px !important;
    color: #3997DF !important;
    text-transform: uppercase !important;
    font-family: 'Inter', sans-serif !important;
    opacity: 0.85 !important;
    display: inline-block !important;
    position: relative !important;
}

.ace-offcanvas-panel.is-open {
    transform: translateX(0);
    visibility: visible;
}

.ace-canvas-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.ace-close-btn {
    color: #2b2b2b !important;
    font-weight: 800;
    font-size: 0.8rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.2s ease !important;
}

.ace-close-btn:hover {
    background: rgba(0, 0, 0, 0.1) !important;
    transform: scale(1.05) !important;
}

.ace-nav-list {
    list-style: none;
    padding: 0;
}

.ace-nav-list li {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    padding-bottom: 10px;
}

.ace-nav-link {
    color: #2b2b2b !important;
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.3s;
}

.ace-nav-link:hover {
    color: #3997DF !important;
}

/* --- Mobile Submenu Unique Styles --- */
.ace-has-submenu {
    cursor: pointer;
}

.ace-submenu-toggle {
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: #888;
}

.ace-has-submenu.is-active .ace-submenu-toggle {
    transform: rotate(180deg);
    color: #3997DF;
}

.ace-sub-list {
    list-style: none;
    padding: 15px 0 5px 20px;
    display: none;
    /* Controlled by JS toggle */
    border-left: 2px solid rgba(57, 151, 223, 0.2);
    margin-top: 10px;
}

.ace-sub-list.is-visible {
    display: block;
}

.ace-sub-link {
    color: #bbb;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.ace-sub-link:hover {
    color: #3997DF;
    padding-left: 5px;
}

/* Header Button Color */
.tf-btn {
    background: #3997DF !important;
    border-color: #3997DF !important;
    color: #fff !important;
}

.tf-btn:hover {
    background: #3C2424 !important;
    border-color: #3C2424 !important;
}

/* =====================================================
   GLOBAL SPACING OVERRIDES — Reduce Excessive Padding
   ===================================================== */

/* 1. Global Section Spacings */
.flat-spacing {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
}

@media (max-width: 1439px) {
    .flat-spacing {
        padding-top: 55px !important;
        padding-bottom: 55px !important;
    }
}

@media (max-width: 991px) {
    .flat-spacing {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }
}

@media (max-width: 767px) {
    .flat-spacing {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }
}

/* 2. Page Header Tightening — reduce blank space above page content */
.tf-header {
    padding-top: 48px !important;
    margin-bottom: -116px !important;
}

@media (max-width: 991px) {
    .tf-header {
        margin-bottom: -104px !important;
    }
}

/* 3. Utility py-80 reduction */
.py-80 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

/* 4. Partner strip spacing */
.section-partner {
    padding: 40px 0 !important;
}

/* 5. About page hero (section-hero) tightening */
.section-hero.v1.about-hero-banner {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.section-hero.v1.about-hero-banner .content-wrap {
    padding-top: 170px !important;
    padding-bottom: 40px !important;
}

.about-hero-banner .title-icon {
    width: auto !important;
    height: auto !important;
    margin-left: 6px !important;
    vertical-align: middle !important;
}

.about-hero-banner .about-hero-ai-badge {
    width: 132px !important;
    height: 78px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 26px !important;
    background: linear-gradient(135deg, #3997df 0%, #16c7ff 48%, #7d5cff 100%) !important;
    box-shadow: 0 18px 36px rgba(57, 151, 223, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.55) !important;
    transform: rotate(-5deg) !important;
}

.about-hero-banner .about-hero-ai-badge span {
    color: #fff !important;
    font-size: 38px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
}

/* 6. AI Assistant page spacing and orange hero accent */
.ai-assistant-hero {
    padding-top: 240px !important;
    margin-top: 0 !important;
}

.ai-assistant-hero .img-inner {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    border-radius: 34px;
    border: 4px solid #3997DF;
    background: rgba(57, 151, 223, 0.08);
}

.ai-assistant-hero .hero-banner-image {
    width: 100%;
    height: auto;
    border-radius: 28px;
    border: 3px solid #3997DF;
    box-shadow: 0 24px 60px rgba(57, 151, 223, 0.16);
}

.ai-assistant-hero .img-inner,
.ai-assistant-hero .hero-banner-image {
    outline: none !important;
}

.ai-assistant-hero .custom-sketch-button {
    padding: 10px 22px;
    font-size: 0.95rem;
    border-radius: 22px;
}

.ai-assistant-hero .row.align-items-center.mt-40 {
    margin-top: 20px !important;
}

/* =====================================================
   HERO SLIDER CONTROLS FIX
   Prevents arrows & dots from overlapping the right image
   ===================================================== */

/* Desktop: centralized controls */
.ec-home-hero__controls {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    bottom: 32px !important;
    transform: translateX(-50%) !important;
    justify-content: center !important;
    z-index: 10 !important;
}

/* 3rd slide visual panel – give explicit height so image fills it */
.ec-home-hero__visual-panel[data-slide-visual="2"] {
    min-height: 580px !important;
    align-items: stretch !important;
}

.ec-home-hero__visual-panel[data-slide-visual="2"] .ec-video-shell {
    width: 100% !important;
    height: 580px !important;
    min-height: 540px !important;
    display: block !important;
    border-radius: 40px !important;
    overflow: hidden !important;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease !important;
}

.ec-home-hero__visual-panel[data-slide-visual="2"] .ec-video-shell:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 45px 120px rgba(57, 151, 223, 0.35) !important;
}

.ec-home-hero__visual-panel[data-slide-visual="2"] .ec-video-shell img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 40px !important;
}

/* =====================================================
   FULL MOBILE OPTIMIZATION  Whole Website
   ===================================================== */

/* --- 1100px: Tablet landscape --- */
@media (max-width: 1100px) {
    .ec-home-hero__controls {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        justify-content: center !important;
        bottom: 20px !important;
    }

    .ec-home-hero__visual {
        min-height: 480px !important;
    }

    .ec-home-hero__visual-panel[data-slide-visual="2"],
    .ec-home-hero__visual-panel[data-slide-visual="2"] .ec-video-shell {
        min-height: 440px !important;
        height: 480px !important;
    }

    .ec-programs__grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }

    .section-tools {
        min-height: 420px !important;
    }
}

/* --- 860px: Tablet portrait --- */
@media (max-width: 860px) {
    .ec-home-hero {
        padding-top: 90px !important;
        padding-bottom: 90px !important;
    }

    .ec-home-hero__title {
        font-size: clamp(1.8rem, 6vw, 2.8rem) !important;
    }

    .ec-home-hero__visual-panel[data-slide-visual="2"],
    .ec-home-hero__visual-panel[data-slide-visual="2"] .ec-video-shell {
        height: 380px !important;
        min-height: 360px !important;
    }

    .ec-programs__grid {
        grid-template-columns: 1fr !important;
        max-width: 520px !important;
        margin: 0 auto !important;
    }

    .section-benefits-wrap,
    .section-testimonials,
    .section-tools {
        padding: 50px 0 !important;
    }

    .section-tools {
        min-height: auto !important;
    }

    .cta-banner-premium {
        border-radius: 28px !important;
        padding: 40px 30px !important;
    }
}

/* --- 768px: Mobile landscape / small tablet --- */
@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
    }

    .ec-home-hero {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
        min-height: auto !important;
    }

    .ec-home-hero__grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .ec-home-hero__visual {
        min-height: 380px !important;
    }

    .ec-home-hero__visual-panel[data-slide-visual="2"],
    .ec-home-hero__visual-panel[data-slide-visual="2"] .ec-video-shell {
        height: 360px !important;
        min-height: 360px !important;
        border-radius: 24px !important;
    }

    .ec-home-hero__visual-panel[data-slide-visual="2"] .ec-video-shell img {
        border-radius: 24px !important;
    }

    .ec-home-hero__title {
        font-size: clamp(1.75rem, 7.5vw, 2.6rem) !important;
        max-width: 100% !important;
    }

    .ec-home-hero__actions {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .ec-home-hero__actions .ec-btn {
        width: 100% !important;
        justify-content: center !important;
    }

    .ec-home-hero__controls {
        bottom: 12px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        justify-content: center !important;
    }

    .ec-social-proof {
        flex-wrap: wrap !important;
        gap: 12px !important;
    }

    .ec-programs {
        padding: 50px 0 !important;
    }

    .ec-programs__grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        max-width: 100% !important;
    }

    .ec-program-card__image {
        min-height: 200px !important;
        max-height: 200px !important;
    }

    .flat-spacing {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .section-benefits-wrap,
    .section-testimonials,
    .section-tools {
        padding: 40px 0 !important;
    }

    .section-tools {
        min-height: auto !important;
    }

    .cta-banner-premium {
        padding: 36px 20px !important;
        border-radius: 24px !important;
    }

    .cta-banner-premium h2 {
        font-size: clamp(1.5rem, 7vw, 2.2rem) !important;
    }

    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .section-tools .container {
        overflow: hidden !important;
    }

    .box-quotes {
        flex-direction: column !important;
    }

    .tf-header .header-inner {
        padding: 12px 16px !important;
    }

    .heading-title {
        font-size: clamp(1.6rem, 8vw, 2.1rem) !important;
        text-align: center !important;
    }

    .heading-sub {
        text-align: center !important;
    }
}

/* --- 480px: Mobile portrait (small phones) --- */
@media (max-width: 480px) {
    .ec-home-hero {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .ec-home-hero__title {
        font-size: clamp(1.55rem, 9vw, 2.1rem) !important;
    }

    .ec-home-hero__lead {
        font-size: 0.92rem !important;
    }

    .ec-home-hero__visual {
        min-height: 300px !important;
    }

    .ec-home-hero__visual-panel[data-slide-visual="2"],
    .ec-home-hero__visual-panel[data-slide-visual="2"] .ec-video-shell {
        height: 300px !important;
        min-height: 300px !important;
        border-radius: 18px !important;
    }

    .ec-jacket-carousel {
        min-height: 280px !important;
    }

    .ec-orbit {
        min-height: 280px !important;
    }

    .ec-slider-arrow {
        width: 36px !important;
        height: 36px !important;
    }

    .ec-home-hero__actions .ec-btn,
    .tf-btn {
        width: 100% !important;
        justify-content: center !important;
    }

    .ec-programs__grid {
        grid-template-columns: 1fr !important;
    }

    .cta-banner-premium {
        padding: 28px 16px !important;
        border-radius: 20px !important;
    }

    .cta-banner-premium h2 {
        font-size: clamp(1.3rem, 8vw, 1.85rem) !important;
    }

    .flat-spacing {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .heading-title {
        font-size: clamp(1.45rem, 8.5vw, 1.9rem) !important;
    }

    .ec-social-proof {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .ec-avatar-stack img {
        width: 36px !important;
        height: 36px !important;
    }

    .pricing-price {
        font-size: 2rem !important;
    }
}

/* =====================================================
   DEVICE AUTO-OPTIMIZATION � Touch, Scroll, Performance
   ===================================================== */

/* Smooth scrolling on all devices */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Better touch behavior on mobile */
a,
button,
.tf-btn,
.ec-btn,
.ec-slider-arrow,
.ec-slider-dot,
.ec-program-card,
.menu-item,
.nav-link {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Prevent horizontal overflow on all screens */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Smooth image rendering on all devices */
img {
    max-width: 100%;
    height: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Fix section-about-us spacing � reduce gap below hero */
.section-about-us.flat-spacing {
    padding-top: 50px !important;
    padding-bottom: 60px !important;
}

/* Reduce gap: hero bottom padding on desktop */
.ec-home-hero {
    padding-top: 175px !important;
    padding-bottom: 80px !important;
}

/* heading-sub spacing */
.heading-sub {
    margin-bottom: 10px !important;
}

/* Remove excessive margin on mb-40 and mb-64 inside hero sections */
@media (max-width: 768px) {
    .section-about-us.flat-spacing {
        padding-top: 35px !important;
        padding-bottom: 40px !important;
    }

    .mb-64 {
        margin-bottom: 32px !important;
    }

    .mb-40 {
        margin-bottom: 24px !important;
    }
}

@media (max-width: 480px) {
    .section-about-us.flat-spacing {
        padding-top: 24px !important;
        padding-bottom: 32px !important;
    }
}


/* =====================================================
   MOBILE NAVIGATION & BUTTON RESPONSIVENESS OVERRIDES
   ===================================================== */

/* Fix mobile menu hamburger icon button stretching */
.tf-header .mobile-menu.open-mb-menu {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    aspect-ratio: 1 / 1 !important;
    background: #3997DF !important;
    color: #fff !important;
    border: none !important;
}

.tf-header .mobile-menu.open-mb-menu i {
    font-size: 20px !important;
    line-height: 1 !important;
    margin: 0 !important;
}

/* Fix WhatsApp button icon and text spacing in hero */
.ec-btn--whatsapp {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

.ec-btn--whatsapp::before {
    margin-right: 0 !important;
    flex-shrink: 0 !important;
}

/* Fix button widths on small screens to prevent extra wide overflow */
@media (max-width: 480px) {
    .ec-home-hero__actions {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
        align-items: center !important;
    }

    .ec-home-hero__actions .ec-btn {
        width: 100% !important;
        max-width: 280px !important;
        min-width: unset !important;
        justify-content: center !important;
        margin: 0 auto !important;
    }
}


/* =====================================================
   VISUAL OVERHAUL - PREMIUM ORANGE GLOW & CONTRAST
   ===================================================== */

/* 1. Base Contrast & Backgrounds */
body {
    background-color: #faf9f6 !important;
    /* Premium off-white instead of sleepy white */
}

/* Subtle orange gradient glassmorphism for section backgrounds */
.section-calculator,
.ec-programs,
.section-testimonials,
.section-process {
    background: linear-gradient(180deg, rgba(57, 151, 223, 0.005) 0%, rgba(57, 151, 223, 0.02) 100%) !important;
}

/* 2. Premium Orange Glow Hover on Cards */
.ec-program-card,
.service-card-premium,
.process-card,
.box-quotes {
    background: #ffffff !important;
    border: 1px solid rgba(57, 151, 223, 0.08) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    position: relative !important;
}

.ec-program-card:hover,
.service-card-premium:hover,
.process-card:hover,
.box-quotes:hover {
    transform: translateY(-8px) !important;
    border-color: #3997DF !important;
    box-shadow: 0 20px 45px rgba(57, 151, 223, 0.12) !important;
}

/* Glowing Icons inside cards */
.ec-program-card i,
.service-card-premium i,
.process-card i,
.box-quotes i,
.ec-program-card .icon,
.service-card-premium .icon,
.process-card .icon {
    color: #3997DF !important;
    text-shadow: 0 0 15px rgba(57, 151, 223, 0.35) !important;
    transition: all 0.3s ease !important;
}

.ec-program-card:hover i,
.service-card-premium:hover i,
.process-card:hover i {
    transform: scale(1.1) !important;
}

/* 3. Typography Hierarchy Boost */
.ec-home-hero__title {
    font-size: clamp(2.4rem, 6vw, 4.4rem) !important;
    line-height: 1.12 !important;
    font-weight: 800 !important;
    letter-spacing: -1.2px !important;
}

.heading-title,
.ec-title {
    font-size: clamp(2rem, 5vw, 3.4rem) !important;
    font-weight: 850 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.8px !important;
}

.ec-program-card__title,
.service-card-premium .title {
    font-size: 1.6rem !important;
    font-weight: 750 !important;
    letter-spacing: -0.4px !important;
    margin-top: 12px !important;
}

/* Orange accent lines */
.ec-accent-line {
    background: linear-gradient(90deg, #3997DF, #00c6ff) !important;
    height: 4px !important;
    width: 64px !important;
    border-radius: 99px !important;
}

/* 4. Interactive Micro-Animations */
/* Explore links sliding arrows */
.ec-link-inline,
.tf-btn-2 {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #3997DF !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

.ec-link-inline svg,
.tf-btn-2 i {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease !important;
}

.ec-program-card:hover .ec-link-inline svg,
.service-card-premium:hover .tf-btn-2 i {
    transform: translateX(6px) !important;
}

/* 5. Premium Badges & Glows */
.ec-tag,
.heading-sub,
.heading-sub-pill {
    display: inline-block !important;
    width: fit-content !important;
    background: rgba(57, 151, 223, 0.08) !important;
    color: #3997DF !important;
    border: 1px solid rgba(57, 151, 223, 0.2) !important;
    padding: 6px 16px !important;
    border-radius: 99px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    box-shadow: 0 4px 12px rgba(57, 151, 223, 0.05) !important;
}

/* Custom premium hover button style */
.ec-btn--primary,
.tf-btn {
    background: linear-gradient(135deg, #3997DF, #00c6ff) !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(57, 151, 223, 0.25) !important;
    transition: all 0.3s ease !important;
}

.ec-btn--primary:hover,
.tf-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(57, 151, 223, 0.4) !important;
}


/* =====================================================
   ADDITIONAL NAV AND BADGE AESTHETIC FIXES
   ===================================================== */

/* Hide mobile menu button completely on desktop/laptops */
@media (min-width: 992px) {

    .tf-header .mobile-menu.open-mb-menu,
    .tf-header .open-mb-menu,
    .tf-header .mobile-menu {
        display: none !important;
    }
}

@media (max-width: 991px) {

    /* Position navbar close to the top on mobile below the promo bar */
    .tf-header {
        top: calc(12px + var(--promo-height, 0px)) !important;
    }

    /* Make it a premium white curved capsule/pill on mobile */
    .tf-header.header2 .header-inner {
        background: rgba(255, 255, 255, 0.96) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border: 2px solid rgba(57, 151, 223, 0.18) !important;
        box-shadow: 0 10px 30px rgba(57, 151, 223, 0.1) !important;
        border-radius: 999px !important;
        padding: 8px 12px 8px 20px !important;
        width: 94% !important;
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: 72px !important;
        /* Tall enough to show logo prominently */
        gap: 0 !important;
        overflow: visible !important;
    }

    /* ===== MOBILE LOGO — Full override of desktop values ===== */
    .tf-header .logo-site {
        width: 170px !important;
        min-width: 170px !important;
        height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        overflow: visible !important;
    }

    .tf-header .logo-site img {
        width: auto !important;
        height: 100% !important;
        object-fit: contain !important;
        /* Preserves aspect ratio perfectly */
        transform: none !important;
        max-height: none !important;
        max-width: none !important;
        display: block !important;
        border: none !important;
        border-radius: 0 !important;
        background: transparent !important;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Mobile hamburger button */
    .tf-header .mobile-menu.open-mb-menu,
    .tf-header .open-mb-menu.mobile-menu {
        display: inline-flex !important;
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        max-width: 48px !important;
        flex-shrink: 0 !important;
        margin-left: 10px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        align-items: center !important;
        justify-content: center !important;
        background: #3997DF !important;
        color: #fff !important;
        box-shadow: 0 8px 20px rgba(57, 151, 223, 0.35) !important;
        transform: none !important;
        transition: background-color 0.2s ease !important;
    }

    .tf-header .mobile-menu.open-mb-menu:hover,
    .tf-header .open-mb-menu.mobile-menu:hover,
    .tf-header .mobile-menu.open-mb-menu:active,
    .tf-header .mobile-menu.open-mb-menu:focus,
    .tf-header .open-mb-menu.mobile-menu:active,
    .tf-header .open-mb-menu.mobile-menu:focus {
        transform: none !important;
        background-color: #2d7abf !important;
        color: #fff !important;
    }

    .tf-header .mobile-menu.open-mb-menu i,
    .tf-header .open-mb-menu.mobile-menu i {
        font-size: 1.4em !important;
    }

    /* Hide the weird animating SVG lines on mobile devices to look pristine and modern */
    .tool-wrap .side-line {
        display: none !important;
    }
}

/* Remove overlapping dots from all tags, heading-subs, and badges */
.heading-sub::before,
.heading-sub-pill::before,
.ec-tag::before,
.heading-section .heading-sub::before {
    display: none !important;
    content: none !important;
}

/* Fix padding alignment now that the dot is removed */
.heading-section .heading-sub,
.heading-sub,
.heading-sub-pill,
.ec-tag {
    padding: 6px 16px !important;
}

/* =====================================================
   CONTACT SECTION EQUAL HEIGHT CARDS
   ===================================================== */
.section-partner+.flat-spacing .col-md-4 .overflow-hidden,
.col-md-4 .overflow-hidden:has(.box-contact-item) {
    height: 100% !important;
}

.box-contact-item {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    min-height: 250px !important;
    padding: 40px 24px !important;
}

.box-contact-item .text {
    margin-top: auto !important;
}

/* =====================================================
   SERVICE PAGE - PREMIUM CARD STYLE REFINEMENT
   ===================================================== */
.service-card-premium {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    background: #ffffff !important;
    border: 1px solid rgba(57, 151, 223, 0.08) !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    overflow: hidden !important;
    position: relative !important;
}

.service-card-premium:hover {
    transform: translateY(-10px) !important;
    border-color: #3997DF !important;
    box-shadow: 0 20px 50px rgba(57, 151, 223, 0.12) !important;
}

/* Ensure equal sizing of image */
.service-card-premium .image-wrap {
    position: relative !important;
    height: 280px !important;
    overflow: hidden !important;
}

.service-card-premium .image-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.service-card-premium:hover .image-wrap img {
    transform: scale(1.08) !important;
}

/* Float active hover number badge */
.service-card-premium .num {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: #3997DF !important;
    color: #ffffff !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    box-shadow: 0 4px 15px rgba(57, 151, 223, 0.3) !important;
    z-index: 5 !important;
    transition: all 0.3s ease !important;
}

.service-card-premium:hover .num {
    transform: rotate(360deg) scale(1.1) !important;
}

/* Flex-grow content for equal bottom button alignment */
.service-card-premium .content {
    padding: 35px 30px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

/* Fix invisible white-on-white title */
.service-card-premium .title {
    color: #111111 !important;
    font-size: 1.65rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px !important;
    margin: 0 !important;
    line-height: 1.25 !important;
    transition: color 0.3s ease !important;
    display: block !important;
}

.service-card-premium:hover .title {
    color: #3997DF !important;
}

/* Description Typography */
.service-card-premium .desc {
    color: #4a4a4a !important;
    font-size: 0.96rem !important;
    line-height: 1.7 !important;
    margin-top: 15px !important;
    margin-bottom: 25px !important;
}

/* WhatsApp Icon Button in Card Header */
.service-card-premium .wa-service-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: rgba(37, 211, 102, 0.08) !important;
    border: 1px solid rgba(37, 211, 102, 0.2) !important;
    transition: all 0.3s ease !important;
    color: #25D366 !important;
}

.service-card-premium .wa-service-btn:hover {
    background: #25D366 !important;
    color: #ffffff !important;
    transform: scale(1.15) rotate(15deg) !important;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.25) !important;
}

.service-card-premium .wa-service-btn svg {
    width: 20px !important;
    height: 20px !important;
    fill: currentColor !important;
    transition: fill 0.3s ease !important;
}

.service-card-premium .wa-service-btn:hover svg {
    fill: #ffffff !important;
}

/* Soft-orange premium tags */
.service-card-premium .tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-bottom: 30px !important;
}

.service-card-premium .tag-item {
    background: rgba(57, 151, 223, 0.05) !important;
    color: #3997DF !important;
    border: 1px solid rgba(57, 151, 223, 0.12) !important;
    padding: 6px 14px !important;
    border-radius: 100px !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.service-card-premium .tag-item:hover {
    background: #3997DF !important;
    color: #ffffff !important;
    border-color: #3997DF !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 10px rgba(57, 151, 223, 0.15) !important;
}

/* Learn More Button - align perfectly at the bottom */
.service-card-premium .tf-btn-2 {
    margin-top: auto !important;
    align-self: flex-start !important;
    color: #3997DF !important;
    border: 1px solid rgba(57, 151, 223, 0.2) !important;
    padding: 10px 24px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    border-radius: 100px !important;
    transition: all 0.3s ease !important;
    background: #ffffff !important;
}

.service-card-premium .tf-btn-2:hover {
    background: #3997DF !important;
    color: #ffffff !important;
    border-color: #3997DF !important;
    box-shadow: 0 8px 20px rgba(57, 151, 223, 0.2) !important;
}

/* =====================================================
   SCALE BENEFITS SECTION - 4 CARD GRID SYSTEM
   ===================================================== */
.scale-card {
    background: #ffffff !important;
    border: 1px solid rgba(57, 151, 223, 0.08) !important;
    border-radius: 24px !important;
    padding: 40px 30px !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.015) !important;
    position: relative !important;
    overflow: hidden !important;
}

.scale-card:hover {
    transform: translateY(-10px) !important;
    border-color: #3997DF !important;
    box-shadow: 0 20px 45px rgba(57, 151, 223, 0.12) !important;
}

.scale-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 4px !important;
    background: linear-gradient(90deg, #3997DF, #00c6ff) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.scale-card:hover::before {
    opacity: 1 !important;
}

/* Icon Wrap Styles with unique glow gradients */
.scale-card-icon-wrap {
    width: 60px !important;
    height: 60px !important;
    border-radius: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 28px !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.scale-card:hover .scale-card-icon-wrap {
    transform: scale(1.1) rotate(5deg) !important;
}

/* Different gradients for different card icons to create rich aesthetics */
.scale-card-icon-wrap.icon-automation {
    background: rgba(57, 151, 223, 0.07) !important;
    color: #3997DF !important;
    border: 1px solid rgba(57, 151, 223, 0.15) !important;
}

.scale-card-icon-wrap.icon-calling {
    background: rgba(34, 197, 94, 0.07) !important;
    color: #22c55e !important;
    border: 1px solid rgba(34, 197, 94, 0.15) !important;
}

.scale-card-icon-wrap.icon-lead {
    background: rgba(59, 130, 246, 0.07) !important;
    color: #3b82f6 !important;
    border: 1px solid rgba(59, 130, 246, 0.15) !important;
}

.scale-card-icon-wrap.icon-marketing {
    background: rgba(168, 85, 247, 0.07) !important;
    color: #a855f7 !important;
    border: 1px solid rgba(168, 85, 247, 0.15) !important;
}

.scale-card-icon-wrap svg {
    stroke-width: 2.2 !important;
    transition: transform 0.3s ease !important;
}

.scale-card:hover .scale-card-icon-wrap svg {
    animation: pulse-icon 1s infinite alternate !important;
}

@keyframes pulse-icon {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

/* Title Styling */
.scale-card-title {
    font-size: 1.28rem !important;
    font-weight: 800 !important;
    color: #111111 !important;
    margin-bottom: 14px !important;
    line-height: 1.35 !important;
    letter-spacing: -0.4px !important;
    transition: color 0.3s ease !important;
}

.scale-card:hover .scale-card-title {
    color: #3997DF !important;
}

/* Description Styling */
.scale-card-desc {
    color: #555555 !important;
    font-size: 0.94rem !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}


/* =====================================================
   CARD VISIBILITY & SPACING — ALL SECTIONS
   ===================================================== */

/* ---- General Card styling overrides for services and quote boxes ---- */
.ec-program-card,
.service-card-premium,
.process-card,
.box-quotes {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 12px 36px rgba(0, 0, 0, 0.08) !important;
    border: 1.5px solid rgba(57, 151, 223, 0.13) !important;
}

.ec-program-card:hover,
.service-card-premium:hover,
.process-card:hover,
.box-quotes:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06), 0 24px 56px rgba(57, 151, 223, 0.13) !important;
    border-color: rgba(57, 151, 223, 0.38) !important;
}

.section-services-list .col-lg-6 {
    display: flex !important;
    flex-direction: column !important;
}

.section-services-list .service-card-premium {
    flex: 1 !important;
}

/* ---- Spacing & Position Refinements for Benefits Bento Grid ---- */

/* Shift floating message in the last card slightly to the left on desktop for a perfect fit */
@media (min-width: 992px) {
    .benefits-design .benefits-design-inner .item-img-2 {
        right: 265px !important;
    }
}

/* Ensure clean vertical separation of bento grid cards when stacked on mobile/tablet viewports */
@media (max-width: 991px) {
    .section-benefits .row>[class*="col-"] {
        margin-bottom: 24px !important;
    }

    .section-benefits .row>[class*="col-"]:last-child {
        margin-bottom: 0 !important;
    }

    /* Optimize internal card padding and spacing inside mobile view to prevent overflowing element collisions */
    .benefits-box {
        padding: 32px 24px !important;
        margin-bottom: 0 !important;
        /* Managed cleanly by columns margin-bottom */
    }

    /* Make sure the decorative floating bubble fits cleanly on smaller viewport widths */
    .benefits-design .benefits-design-inner .item-img-2 {
        right: 175px !important;
    }
}

@media (max-width: 575px) {

    /* Fine-tune padding for extra small mobile screens */
    .benefits-box {
        padding: 24px 18px !important;
    }
}

/* Fix shield disappearing bug on hover by completing a full 360deg rotation */
.benefits-box.benefits-secure:hover img {
    transform: rotateY(360deg) !important;
}

/* =====================================================
   FLAGSHIP SINGLE SERVICE CARD PREMIUM STYLING OVERRIDES
   ===================================================== */
.ec-program-card {
    border-radius: 28px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    box-shadow: 0 20px 50px rgba(57, 151, 223, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    border: 1px solid rgba(57, 151, 223, 0.15) !important;
    display: flex !important;
    flex-direction: column !important;
}

@media (min-width: 992px) {
    .ec-program-card {
        flex-direction: row !important;
        align-items: stretch !important;
        min-height: 420px !important;
    }

    .ec-program-card__image {
        width: 48% !important;
        height: auto !important;
        min-height: 100% !important;
        flex-shrink: 0 !important;
    }

    .ec-program-card__body {
        width: 52% !important;
        padding: 50px 60px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
}

.ec-program-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 30px 70px rgba(57, 151, 223, 0.15) !important;
    border-color: rgba(57, 151, 223, 0.35) !important;
}

.ec-program-card__image {
    height: 340px !important;
    overflow: hidden !important;
    position: relative !important;
}

.ec-program-card__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s ease !important;
}

.ec-program-card:hover .ec-program-card__image img {
    transform: scale(1.06) !important;
}

.ec-program-card__body {
    padding: 44px 40px !important;
}

.ec-program-card__title {
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    color: #111 !important;
    line-height: 1.25 !important;
    margin-bottom: 16px !important;
    transition: color 0.3s ease !important;
}

.ec-program-card:hover .ec-program-card__title {
    color: #3997DF !important;
}

.ec-program-card__desc {
    font-size: 1.06rem !important;
    line-height: 1.7 !important;
    color: #555 !important;
    margin-bottom: 24px !important;
}

@media (max-width: 991px) {
    .ec-program-card__image {
        height: 280px !important;
    }

    .ec-program-card__body {
        padding: 36px 28px !important;
    }

    .ec-program-card__title {
        font-size: 1.8rem !important;
    }
}

/* =====================================================
   HOMEPAGE OPTIMIZATIONS & SPACING REFINEMENTS
   ===================================================== */
.ec-home-hero {
    padding-top: 240px !important;
    padding-bottom: 80px !important;
}

/* Bulletproof Hero Slider Overlap Fix */
.ec-home-hero__slide {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease !important;
}

.ec-home-hero__slide.is-active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(0) !important;
}

.ec-home-hero__slide.is-leaving {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Color shift yellow PNG chat bubble in Why Choose Us to exact brand sky-blue */
.benefits-design .item-img-2 {
    filter: hue-rotate(155deg) saturate(1.4) !important;
}

/* =====================================================
   ABOUT PAGE OVERLAP & SPACING OVERRIDES
   ===================================================== */
.section-about-us .heading-section {
    margin-bottom: 16px !important;
    /* Keeps the About badge close to the dark card */
}

.section-about-us .col-left {
    margin-top: 0 !important;
}

/* Tools section extra bottom spacing */
.section-tools.v2 {
    padding-bottom: 150px !important;
}

/* =====================================================
   NAVBAR STATIC SUSPENDED POSITIONING (STOPS MOVING)
   ===================================================== */
.tf-header {
    position: absolute !important;
    /* Stays at the top of the page and scrolls out of view naturally */
    top: calc(48px + var(--promo-height, 0px)) !important;
    /* Pushes the navbar below the top edge and promo bar */
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background: transparent !important;
    border: none !important;
    /* Clear theme default full-width borders around the pill capsule */
    box-shadow: none !important;
    /* Clear theme default full-width shadows around the pill capsule */
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    transition: top 0.3s ease !important;
}

/* =====================================================
   MOBILE MENU CANVAS HEAD LOGO RESIZER
   ===================================================== */
.ace-canvas-head .logo-site {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: auto !important;
    height: 52px !important;
    min-width: 120px !important;
    max-width: 200px !important;
    overflow: visible !important;
    flex-shrink: 0 !important;
}

.ace-canvas-head .logo-site img {
    height: 52px !important;
    width: auto !important;
    max-height: 52px !important;
    max-width: 200px !important;
    object-fit: contain !important;
    display: block !important;
    transform: none !important;
    /* Show colored logo */
    filter: none !important;
}

/* =====================================================
   FOOTER LOGO RESIZER & ENHANCED CENTER ALIGNMENT
   ===================================================== */
.footer-logo {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin-bottom: 24px !important;
}

.footer-logo img {
    height: 110px !important;
    width: auto !important;
    max-height: 110px !important;
    max-width: 320px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
}

/* =====================================================
   HOMEPAGE FLAGSHIP SERVICE CARD CUSTOM STYLING
   ===================================================== */
.ec-program-card {
    border-radius: 32px !important;
    border: 2px solid rgba(57, 151, 223, 0.3) !important;
    overflow: hidden !important;
    box-shadow: 0 15px 45px rgba(57, 151, 223, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.ec-program-card:hover {
    border-color: rgba(57, 151, 223, 0.6) !important;
    box-shadow: 0 25px 60px rgba(57, 151, 223, 0.18) !important;
    transform: translateY(-5px) !important;
}

/* =====================================================
   ABOUT PAGE TOOLS/PLATFORMS SVG ICONS SIZE FIX
   ===================================================== */
.tool-image-box .img-item,
.tool-wrap .img-item {
    width: 75px !important;
    height: 75px !important;
    padding: 14px !important;
    background: #ffffff !important;
    border: 1px solid #eeeeee !important;
    border-radius: 18px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05) !important;
    object-fit: contain !important;
    display: block !important;
    z-index: 2 !important;
}


/* =====================================================
   ABOUT PAGE TOOLS CENTERPIECE VISUAL OVERLAP & SPACING OVERRIDES
   ===================================================== */
.tool-wrap .tool-image-box {
    margin: 40px 0 40px !important;
    height: 506px !important;
}

/* =====================================================
   ABOUT PAGE PLATFORM ICONS ABSOLUTE POSITION ADJUSTMENTS (TOUCH THE CONNECTOR LINES)
   ===================================================== */
.tool-wrap .img-item-1 {
    top: 26px !important;
    left: 26px !important;
}

.tool-wrap .img-item-2 {
    left: 22px !important;
}

.tool-wrap .img-item-3 {
    bottom: 26px !important;
    left: 26px !important;
}

.tool-wrap .img-item-4 {
    top: 26px !important;
    right: 26px !important;
}

.tool-wrap .img-item-5 {
    right: 22px !important;
}

.tool-wrap .img-item-6 {
    bottom: 26px !important;
    right: 26px !important;
}



/* =====================================================
   GLOBAL PAGE HERO - CUSTOM BRAND HERO BANNER BACKGROUND (ABOUT, BLOG, CONTACT)
   ===================================================== */
.section-hero.v1 .hero-image {
    background-image: url(./../images/section/hero1-new.png) !important;
}


/* =====================================================
   GLOBAL PAGE HERO - ADD SPACING BELOW THE SUSPENDED NAVBAR
   ===================================================== */
.section-hero.v1 .content-wrap {
    padding-top: 240px !important;
}

/* =====================================================
   MOBILE POLISHING OVERRIDES - STABLE NAVBAR, CARDS & SPACING
   ===================================================== */
@media (max-width: 991px) {

    /* 1. Spacing Fix: Pushes Banner Content Down on Mobile so it doesn't overlap the Suspended Navbar capsule! */
    .ec-home-hero {
        padding-top: 165px !important;
        /* Adjusted for taller 68px navbar pill */
    }

    .section-hero.v1 .content-wrap,
    .ai-assistant-hero,
    .about-hero-banner .content-wrap {
        padding-top: 170px !important;
        /* Adjusted for taller 68px navbar pill */
    }

    /* 2. Drawer Mobile Menu Close Button & Logo Alignment */
    .ace-canvas-head {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        margin-bottom: 40px !important;
        width: 100% !important;
        gap: 15px !important;
    }

    .ace-canvas-head .logo-site {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        height: 48px !important;
        width: 150px !important;
        min-width: 150px !important;
        flex-shrink: 0 !important;
        background: transparent !important;
        margin: 0 !important;
        overflow: visible !important;
    }

    .ace-canvas-head .logo-site img {
        height: 100% !important;
        width: auto !important;
        max-height: 100% !important;
        max-width: 100% !important;
        object-fit: contain !important;
        /* Preserves aspect ratio perfectly */
        display: block !important;
        transform: none !important;
        filter: none !important;
        /* Colored brand logo instead of white */
    }

    .ace-close-btn {
        color: #2b2b2b !important;
        font-weight: 700 !important;
        font-size: 0.82rem !important;
        cursor: pointer !important;
        background: rgba(0, 0, 0, 0.05) !important;
        padding: 8px 16px !important;
        border-radius: 99px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        transition: all 0.3s ease !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        transform: none !important;
    }

    .ace-close-btn:hover,
    .ace-close-btn:active {
        background: rgba(57, 151, 223, 0.1) !important;
        border-color: rgba(57, 151, 223, 0.25) !important;
        color: #3997DF !important;
        transform: none !important;
    }

    /* 3. WhatsApp, Instagram & Facebook Automation Cards — Mobile Icon Overlap Fix */
    .feature-card-template {
        margin-top: 70px !important;
        padding-top: 75px !important;
        margin-bottom: 20px !important;
    }

    /* First card in a row doesn't need the large top margin */
    .row .col-lg-4:first-child .feature-card-template {
        margin-top: 45px !important;
    }

    .card-speaker {
        position: absolute !important;
        top: -45px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: auto !important;
        height: auto !important;
        margin: 0 !important;
    }

    /* 4. Generous Top Spacing for CTA Buttons */
    .tf-btn-premium {
        margin-top: 30px !important;
    }

    /* Mobile Navbar Logo Override for perfect fit and visibility */
    .tf-header .logo-site {
        width: 170px !important;
        min-width: 170px !important;
        height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }

    .tf-header .logo-site img {
        width: auto !important;
        height: 100% !important;
        object-fit: contain !important;
        /* Preserves aspect ratio perfectly */
        transform: none !important;
        max-height: none !important;
        max-width: none !important;
        display: block !important;
    }

    /* 5. Mobile Alignment overrides for AI Assistant Hero */
    #col-1645523743 .col-inner {
        text-align: left !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    #text-4124665630 h1,
    #text-1139206364 h2,
    #text-1139206364 p {
        text-align: left !important;
    }

    .service-points-list {
        align-self: stretch !important;
    }
}

/* =====================================================
   FEATURE CARDS ROW — OVERFLOW FIX (Bootstrap g-4 negative margins clip absolute icons)
   ===================================================== */
.row.g-4 {
    overflow: visible !important;
}

/* Extra-small phones: reduce card icon even further */
@media (max-width: 576px) {
    .feature-card-template {
        margin-top: 65px !important;
        padding-top: 75px !important;
        margin-bottom: 15px !important;
    }

    .row .col-lg-4:first-child .feature-card-template {
        margin-top: 45px !important;
    }

    .card-speaker {
        top: -45px !important;
    }
}

/* Very small phones (≤400px) — navbar logo compact adjustments */
@media (max-width: 400px) {
    .tf-header.header2 .header-inner {
        padding: 6px 8px 6px 14px !important;
        width: 96% !important;
        height: 64px !important;
    }

    .tf-header .logo-site {
        width: 160px !important;
        min-width: 160px !important;
        height: 48px !important;
    }

    .tf-header .logo-site img {
        width: 100% !important;
        height: 100% !important;
        object-fit: fill !important;
        transform: none !important;
        max-height: none !important;
        max-width: none !important;
        display: block !important;
    }

    .tf-header .mobile-menu.open-mb-menu,
    .tf-header .open-mb-menu.mobile-menu {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        max-width: 42px !important;
    }
}

/* 6. Service Points List Layout (AI Assistant Hero) */
.service-points-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    align-items: flex-start !important;
    text-align: left !important;
    margin-top: 24px !important;
    margin-bottom: 24px !important;
}

.service-point-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    text-align: left !important;
    font-weight: 700 !important;
    color: #2b2b2b !important;
    font-size: 1.05rem !important;
    line-height: 1.4 !important;
}

.service-point-item .tick-icon {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    display: inline-block !important;
    object-fit: contain !important;
}

/* =====================================================
   PREMIUM LIGHTWEIGHT FEATURE CARDS (NO HEAVY PNGs)
   ===================================================== */
.feature-card-template {
    padding: 75px 25px 35px !important;
    border-radius: 24px !important;
    position: relative !important;
    height: 100% !important;
    margin-top: 50px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04) !important;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.feature-card-template:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1) !important;
}

.card-speaker {
    position: absolute !important;
    top: -45px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    height: auto !important;
    z-index: 10 !important;
    margin: 0 !important;
}

/* Beautiful circular glassmorphic speaker icons */
.card-speaker-icon {
    width: 90px !important;
    height: 90px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid #ffffff !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.feature-card-template:hover .card-speaker-icon {
    transform: scale(1.15) rotate(8deg) !important;
}

.card-speaker-icon i {
    font-size: 38px !important;
    color: #ffffff !important;
    display: inline-block !important;
    line-height: 1 !important;
}

/* Specific gradients & shadows */
.card-speaker-icon.whatsapp-glow {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4) !important;
}

.card-speaker-icon.instagram-glow {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCB045 100%) !important;
    box-shadow: 0 10px 30px rgba(253, 29, 29, 0.4) !important;
}

.card-speaker-icon.facebook-glow {
    background: linear-gradient(135deg, #1877F2 0%, #0056b3 100%) !important;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4) !important;
}

.card-speaker-icon.google-glow {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 30%, #FBBC05 70%, #EA4335 100%) !important;
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.45) !important;
}

.card-speaker-icon.meta-glow {
    background: linear-gradient(135deg, #0066ff 0%, #0044cc 100%) !important;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4) !important;
}

.card-speaker-icon.chart-glow {
    background: linear-gradient(135deg, #3997DF 0%, #00c6ff 100%) !important;
    box-shadow: 0 10px 30px rgba(57, 151, 223, 0.4) !important;
}

/* =====================================================
   FINAL NAVBAR REPAIR - DESKTOP + MOBILE
   Keeps logo, menu, and CTA from overlapping.
   ===================================================== */
.tf-header.header2 .header-inner {
    width: min(1180px, calc(100% - 48px)) !important;
    max-width: 1180px !important;
    height: 76px !important;
    padding: 10px 18px 10px 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
    overflow: visible !important;
}

.tf-header .logo-site {
    width: 210px !important;
    min-width: 210px !important;
    height: 58px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex: 0 0 210px !important;
    overflow: visible !important;
}

.tf-header .logo-site img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: left center !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.tf-header.header2 .box-navigation {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    display: flex !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
}

.tf-header.header2 .nav-menu-main {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(18px, 2vw, 30px) !important;
    white-space: nowrap !important;
    margin: 0 !important;
    padding: 0 !important;
}

.tf-header.header2 .nav-menu-main .item-link {
    white-space: nowrap !important;
    font-size: 16px !important;
    line-height: 1.2 !important;
}

.tf-header.header2 .header-inner>.tf-btn.d-lg-flex {
    flex: 0 0 auto !important;
    min-width: 154px !important;
    height: 48px !important;
    padding: 0 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    line-height: 1 !important;
    border-radius: 999px !important;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .tf-header.header2 .header-inner {
        width: min(1040px, calc(100% - 32px)) !important;
        gap: 16px !important;
        padding-left: 20px !important;
        padding-right: 14px !important;
    }

    .tf-header .logo-site {
        width: 180px !important;
        min-width: 180px !important;
        flex-basis: 180px !important;
    }

    .tf-header.header2 .nav-menu-main {
        gap: 18px !important;
    }

    .tf-header.header2 .header-inner>.tf-btn.d-lg-flex {
        min-width: 142px !important;
        padding: 0 18px !important;
    }
}

@media (max-width: 991px) {
    .tf-header.header2 .header-inner {
        width: min(94%, 680px) !important;
        max-width: none !important;
        height: 72px !important;
        padding: 8px 12px 8px 18px !important;
        gap: 12px !important;
        position: relative !important;
    }

    .tf-header.header2 .box-navigation,
    .tf-header.header2 .header-inner>.tf-btn.d-lg-flex {
        display: none !important;
    }

    .tf-header .logo-site {
        width: 250px !important;
        min-width: 0 !important;
        height: 56px !important;
        flex: 0 1 calc(100% - 74px) !important;
        max-width: calc(100% - 74px) !important;
    }

    .tf-header .logo-site img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        object-position: left center !important;
        transform: none !important;
    }

    .tf-header .mobile-menu.open-mb-menu,
    .tf-header .open-mb-menu.mobile-menu {
        display: inline-flex !important;
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        max-width: 48px !important;
        flex: 0 0 48px !important;
        margin-left: auto !important;
        position: absolute !important;
        right: 12px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 3 !important;
    }
}

@media (max-width: 420px) {
    .tf-header.header2 .header-inner {
        width: calc(100% - 20px) !important;
        height: 66px !important;
        padding: 7px 10px 7px 14px !important;
    }

    .tf-header .logo-site {
        height: 50px !important;
        max-width: calc(100% - 56px) !important;
    }

    .tf-header .mobile-menu.open-mb-menu,
    .tf-header .open-mb-menu.mobile-menu {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        max-width: 44px !important;
        flex-basis: 44px !important;
        right: 10px !important;
    }
}

/* =====================================================
   LIVE-UPLOAD FINAL POLISH - NAV, PLATFORM CARDS, CTA
   ===================================================== */
.platform-card-icon-img {
    width: 158px !important;
    height: 158px !important;
    display: block !important;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 0 !important;
    clip-path: none !important;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.16)) !important;
}

.section-features-premium .card-speaker {
    width: 158px !important;
    height: 158px !important;
    top: -90px !important;
    z-index: 20 !important;
}

.section-features-premium .card-speaker-icon,
.section-features-premium .card-speaker-icon.whatsapp-glow,
.section-features-premium .card-speaker-icon.instagram-glow,
.section-features-premium .card-speaker-icon.facebook-glow {
    width: 158px !important;
    height: 158px !important;
    overflow: visible !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.card-speaker-icon i {
    display: none !important;
}

@media (min-width: 992px) {
    .tf-header {
        top: calc(24px + var(--promo-height, 0px)) !important;
    }

    .tf-header.header2 .header-inner {
        width: min(760px, calc(100% - 64px)) !important;
        max-width: 760px !important;
        height: 64px !important;
        padding: 7px 10px 7px 16px !important;
        gap: 8px !important;
    }

    .tf-header .logo-site {
        width: 154px !important;
        min-width: 154px !important;
        height: 42px !important;
        flex: 0 0 154px !important;
    }

    .tf-header.header2 .nav-menu-main {
        gap: 13px !important;
    }

    .tf-header.header2 .nav-menu-main .item-link {
        font-size: 14px !important;
    }

    .tf-header.header2 .header-inner>.tf-btn.d-lg-flex {
        min-width: 118px !important;
        height: 42px !important;
        padding: 0 14px !important;
        font-size: 0.86rem !important;
    }

    .tf-header .mobile-menu.open-mb-menu,
    .tf-header .open-mb-menu.mobile-menu,
    .tf-header .mobile-menu {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        min-width: 0 !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
    }

    .section-pakistan .mt-50 {
        margin-top: 64px !important;
    }
}

@media (max-width: 991px) {
    .section-features-premium .row.g-4 {
        row-gap: 92px !important;
    }

    .section-features-premium .col-lg-4 {
        margin-bottom: 0 !important;
    }

    .section-features-premium .feature-card-template {
        margin-top: 104px !important;
        margin-bottom: 0 !important;
        padding-top: 98px !important;
    }

    .section-features-premium .card-speaker {
        top: -82px !important;
        width: 132px !important;
        height: 132px !important;
    }

    .section-features-premium .card-speaker-icon,
    .section-features-premium .card-speaker-icon.whatsapp-glow,
    .section-features-premium .card-speaker-icon.instagram-glow,
    .section-features-premium .card-speaker-icon.facebook-glow {
        width: 132px !important;
        height: 132px !important;
    }

    .section-features-premium .platform-card-icon-img {
        width: 132px !important;
        height: 132px !important;
    }
}

@media (max-width: 480px) {
    .section-features-premium .row.g-4 {
        row-gap: 86px !important;
    }

    .section-features-premium .feature-card-template {
        margin-top: 96px !important;
        padding-top: 90px !important;
    }

    .section-features-premium .card-speaker {
        top: -72px !important;
        width: 118px !important;
        height: 118px !important;
    }

    .section-features-premium .card-speaker-icon,
    .section-features-premium .card-speaker-icon.whatsapp-glow,
    .section-features-premium .card-speaker-icon.instagram-glow,
    .section-features-premium .card-speaker-icon.facebook-glow {
        width: 118px !important;
        height: 118px !important;
    }

    .section-features-premium .platform-card-icon-img {
        width: 118px !important;
        height: 118px !important;
    }
}

/* =====================================================
   ABOUT PAGE CARD SPACING POLISH
   ===================================================== */
.section-about-us .col-left {
    justify-content: flex-start !important;
    gap: 28px !important;
    min-height: 520px !important;
    padding: 50px 32px 0 !important;
}

.section-about-us .col-left>.position-relative {
    width: 100% !important;
    max-width: 590px !important;
    padding: 0 12px !important;
}

.section-about-us .about-card-heading {
    color: #fff !important;
    font-size: clamp(34px, 3.3vw, 52px) !important;
    line-height: 1.06 !important;
    margin: 0 auto 28px !important;
    letter-spacing: 0 !important;
    text-shadow: 0 14px 32px rgba(0, 0, 0, 0.28) !important;
}

.section-about-us .col-left .sub {
    margin-bottom: 20px !important;
}

.section-about-us .col-left .title {
    margin-bottom: 28px !important;
}

.section-about-us .col-left .tf-btn {
    margin-bottom: 8px !important;
}

.section-about-us .col-left img {
    margin-top: auto !important;
}

@media (max-width: 991px) {
    .section-about-us .col-xxl-7.col-lg-6 {
        margin-bottom: 34px !important;
    }

    .section-about-us .col-left {
        min-height: auto !important;
        gap: 22px !important;
        padding: 32px 14px 0 !important;
        margin-top: 0 !important;
        margin-bottom: 28px !important;
    }

    .section-about-us .col-left>.position-relative {
        padding: 0 8px !important;
    }

    .section-about-us .about-card-heading {
        font-size: clamp(30px, 7.4vw, 44px) !important;
        margin-bottom: 24px !important;
    }

    .section-about-us .mission-box {
        margin-top: 0 !important;
    }
}

@media (max-width: 480px) {
    .section-about-us .col-xxl-7.col-lg-6 {
        margin-bottom: 30px !important;
    }

    .section-about-us .col-left {
        padding-top: 34px !important;
        margin-bottom: 32px !important;
    }

    .section-about-us .col-left .sub {
        margin-bottom: 16px !important;
        white-space: normal !important;
    }

    .section-about-us .about-card-heading {
        font-size: clamp(28px, 8.2vw, 36px) !important;
        margin-bottom: 20px !important;
    }

    .section-about-us .col-left .title {
        margin-bottom: 22px !important;
    }
}

/* =====================================================
   ABOUT PAGE TOOLS ANIMATION RESPONSIVE FIX
   ===================================================== */
.section-tools.v2 {
    overflow: hidden !important;
}

.tool-wrap .tool-image-box {
    max-width: 980px !important;
    margin: 46px auto 42px !important;
    min-height: 560px !important;
    height: auto !important;
    display: grid !important;
    grid-template-columns: 150px minmax(320px, 1fr) 150px !important;
    grid-template-rows: repeat(3, 150px) !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 28px 80px !important;
    isolation: isolate !important;
}

.tool-wrap .tool-icon {
    position: static !important;
    transform: none !important;
    width: 140px !important;
    height: 140px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 16px 12px 14px !important;
    background: #fff !important;
    border: 1px solid rgba(57, 151, 223, 0.12) !important;
    border-radius: 24px !important;
    box-shadow: 0 22px 52px rgba(23, 33, 45, 0.12), 0 -3px 0 #e9e9e9 inset !important;
    z-index: 4 !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.tool-wrap .tool-icon:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 28px 62px rgba(23, 33, 45, 0.16), 0 -3px 0 #e9e9e9 inset !important;
}

.tool-wrap .tool-icon-svg {
    display: block !important;
    width: 62px !important;
    height: 62px !important;
    color: #fff !important;
    flex: 0 0 auto !important;
    padding: 10px !important;
    border-radius: 18px !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16) !important;
}

.tool-wrap .tool-icon i,
.tool-wrap .tool-icon strong {
    display: none !important;
    font-size: 36px !important;
    line-height: 1 !important;
}

.tool-wrap .tool-icon span {
    max-width: 100% !important;
    color: #3a2f2f !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.1 !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
}

.tool-wrap .tool-icon-instagram .tool-icon-svg,
.tool-wrap .tool-icon-wordpress .tool-icon-svg {
    width: 68px !important;
    height: 68px !important;
}

.tool-wrap .tool-icon-woocommerce span {
    font-size: 13px !important;
}

.tool-wrap .tool-icon-whatsapp .tool-icon-svg {
    background: linear-gradient(135deg, #25d366, #128c7e) !important;
}

.tool-wrap .tool-icon-instagram .tool-icon-svg {
    background: radial-gradient(circle at 28% 105%, #feda75 0 18%, #fa7e1e 32%, #d62976 55%, #962fbf 76%, #4f5bd5 100%) !important;
}

.tool-wrap .tool-icon-messenger .tool-icon-svg {
    background: linear-gradient(135deg, #00b2ff, #006aff 54%, #a033ff) !important;
}

.tool-wrap .tool-icon-shopify .tool-icon-svg {
    background: linear-gradient(135deg, #95bf47, #5e8e3e) !important;
}

.tool-wrap .tool-icon-wordpress .tool-icon-svg {
    background: linear-gradient(135deg, #2c9ccf, #21759b) !important;
}

.tool-wrap .tool-icon-woocommerce .tool-icon-svg {
    background: linear-gradient(135deg, #b978c6, #7f54b3) !important;
}

.tool-wrap .side-line {
    display: none !important;
}

.tool-wrap .image-center {
    position: static !important;
    transform: none !important;
    grid-column: 2 !important;
    grid-row: 1 / 4 !important;
    align-self: center !important;
    justify-self: center !important;
    z-index: 5 !important;
}

.tool-wrap .image-center .hover-img {
    padding: 34px 62px !important;
    border-radius: 26px !important;
    border: 1px solid rgba(57, 151, 223, 0.12) !important;
    box-shadow: 0 28px 64px rgba(23, 33, 45, 0.16), 0 -4px 0 rgba(23, 33, 45, 0.12) inset !important;
}

.tool-wrap .img-item-1 {
    grid-column: 1 !important;
    grid-row: 1 !important;
}

.tool-wrap .img-item-2 {
    grid-column: 1 !important;
    grid-row: 2 !important;
}

.tool-wrap .img-item-3 {
    grid-column: 1 !important;
    grid-row: 3 !important;
}

.tool-wrap .img-item-4 {
    grid-column: 3 !important;
    grid-row: 1 !important;
}

.tool-wrap .img-item-5 {
    grid-column: 3 !important;
    grid-row: 2 !important;
}

.tool-wrap .img-item-6 {
    grid-column: 3 !important;
    grid-row: 3 !important;
}

@media (min-width: 992px) {
    .tf-header.header2 .nav-menu-main {
        gap: 18px !important;
    }

    .tf-header.header2 .nav-menu-main .item-link {
        font-size: 16px !important;
    }
}

@media (max-width: 991px) {
    .tool-wrap .tool-image-box {
        max-width: 760px !important;
        min-height: 430px !important;
        grid-template-columns: 118px minmax(260px, 1fr) 118px !important;
        grid-template-rows: repeat(3, 118px) !important;
        gap: 20px 46px !important;
        margin: 38px auto 40px !important;
    }

    .tool-wrap .tool-icon {
        width: 118px !important;
        height: 118px !important;
        border-radius: 20px !important;
        gap: 6px !important;
    }

    .tool-wrap .tool-icon i,
    .tool-wrap .tool-icon strong {
        font-size: 28px !important;
    }

    .tool-wrap .tool-icon-svg {
        width: 48px !important;
        height: 48px !important;
        padding: 8px !important;
    }

    .tool-wrap .tool-icon-instagram .tool-icon-svg,
    .tool-wrap .tool-icon-wordpress .tool-icon-svg {
        width: 52px !important;
        height: 52px !important;
    }

    .tool-wrap .tool-icon span {
        font-size: 12px !important;
    }

    .tool-wrap .image-center .hover-img {
        padding: 24px 38px !important;
    }

    .tool-wrap .image-center h2 {
        font-size: 2.35rem !important;
    }
}

@media (max-width: 767px) {
    .tool-wrap .tool-image-box {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        grid-template-rows: auto auto auto !important;
        gap: 14px !important;
        height: auto !important;
        max-width: 390px !important;
        min-height: auto !important;
        padding: 0 16px !important;
        margin: 34px auto 34px !important;
    }

    .tool-wrap .image-center {
        position: static !important;
        grid-column: 1 / -1 !important;
        grid-row: 1 !important;
        transform: none !important;
        width: auto !important;
        margin: 0 auto 6px !important;
    }

    .tool-wrap .img-item {
        position: static !important;
        transform: none !important;
        margin: 0 auto !important;
    }

    .tool-wrap .img-item-1 {
        grid-column: 1 !important;
        grid-row: 2 !important;
    }

    .tool-wrap .img-item-2 {
        grid-column: 2 !important;
        grid-row: 2 !important;
    }

    .tool-wrap .img-item-3 {
        grid-column: 3 !important;
        grid-row: 2 !important;
    }

    .tool-wrap .img-item-4 {
        grid-column: 1 !important;
        grid-row: 3 !important;
    }

    .tool-wrap .img-item-5 {
        grid-column: 2 !important;
        grid-row: 3 !important;
    }

    .tool-wrap .img-item-6 {
        grid-column: 3 !important;
        grid-row: 3 !important;
    }

    .tool-wrap .side-line {
        display: none !important;
    }

    .tool-wrap .tool-icon {
        width: 96px !important;
        height: 96px !important;
        padding: 12px 8px !important;
    }

    .tool-wrap .tool-icon-svg {
        width: 38px !important;
        height: 38px !important;
        padding: 7px !important;
    }

    .tool-wrap .tool-icon-instagram .tool-icon-svg,
    .tool-wrap .tool-icon-wordpress .tool-icon-svg {
        width: 42px !important;
        height: 42px !important;
    }

    .tool-wrap .tool-icon span {
        font-size: 11.5px !important;
    }
}

@media (max-width: 420px) {
    .tool-wrap .tool-image-box {
        gap: 12px !important;
        max-width: 360px !important;
        padding: 0 8px !important;
    }

    .tool-wrap .tool-icon {
        width: 88px !important;
        height: 88px !important;
    }

    .tool-wrap .image-center .hover-img {
        padding: 16px 24px !important;
    }

    .tool-wrap .image-center h2 {
        font-size: 2rem !important;
    }
}

/* =====================================================
   ABOUT PAGE TOOLS - FINAL CONNECTOR LAYOUT
   ===================================================== */
.tool-wrap .tool-image-box {
    position: relative !important;
    display: block !important;
    max-width: 1120px !important;
    width: min(1120px, calc(100% - 48px)) !important;
    height: 530px !important;
    min-height: 530px !important;
    margin: 48px auto 46px !important;
    padding: 0 !important;
}

.tool-wrap .tool-icon {
    position: absolute !important;
    width: 132px !important;
    height: 132px !important;
    padding: 18px 12px 15px !important;
    background: #fff !important;
    border: 1px solid rgba(57, 151, 223, 0.12) !important;
    border-radius: 24px !important;
    box-shadow: 0 24px 58px rgba(22, 35, 48, 0.12), 0 -3px 0 #e8edf2 inset !important;
    color: #3997df !important;
    z-index: 4 !important;
    transform: none !important;
}

.tool-wrap .tool-icon-svg {
    width: 56px !important;
    height: 56px !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: currentColor !important;
    stroke: currentColor !important;
}

.tool-wrap .tool-icon-instagram .tool-icon-svg,
.tool-wrap .tool-icon-wordpress .tool-icon-svg {
    width: 64px !important;
    height: 64px !important;
}

.tool-wrap .tool-icon span {
    color: #171717 !important;
    font-size: 15px !important;
    font-weight: 650 !important;
    line-height: 1.08 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
}

.tool-wrap .tool-icon-whatsapp {
    color: #25d366 !important;
}

.tool-wrap .tool-icon-instagram {
    color: #e4405f !important;
}

.tool-wrap .tool-icon-messenger {
    color: #00a8ff !important;
}

.tool-wrap .tool-icon-shopify {
    color: #7ab648 !important;
}

.tool-wrap .tool-icon-wordpress {
    color: #21759b !important;
}

.tool-wrap .tool-icon-woocommerce {
    color: #96588a !important;
}

.tool-wrap .tool-icon-woocommerce span {
    font-size: 13px !important;
}

.tool-wrap .tool-icon-whatsapp .tool-icon-svg,
.tool-wrap .tool-icon-instagram .tool-icon-svg,
.tool-wrap .tool-icon-messenger .tool-icon-svg,
.tool-wrap .tool-icon-shopify .tool-icon-svg,
.tool-wrap .tool-icon-wordpress .tool-icon-svg,
.tool-wrap .tool-icon-woocommerce .tool-icon-svg {
    background: transparent !important;
    box-shadow: none !important;
}

.tool-wrap .img-item-1 {
    top: 8px !important;
    left: 8px !important;
}

.tool-wrap .img-item-2 {
    top: 50% !important;
    left: 0 !important;
    transform: translateY(-50%) !important;
}

.tool-wrap .img-item-3 {
    bottom: 8px !important;
    left: 8px !important;
}

.tool-wrap .img-item-4 {
    top: 8px !important;
    right: 8px !important;
}

.tool-wrap .img-item-5 {
    top: 50% !important;
    right: 0 !important;
    transform: translateY(-50%) !important;
}

.tool-wrap .img-item-6 {
    bottom: 8px !important;
    right: 8px !important;
}

.tool-wrap .image-center {
    position: absolute !important;
    top: 51% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    grid-column: auto !important;
    grid-row: auto !important;
    z-index: 5 !important;
}

.tool-wrap .image-center .hover-img {
    padding: 30px 58px !important;
    border-radius: 24px !important;
    border: 1px solid rgba(57, 151, 223, 0.12) !important;
    box-shadow: 0 26px 62px rgba(24, 24, 27, 0.18), 0 -4px 0 rgba(24, 24, 27, 0.12) inset !important;
}

.tool-wrap .img-item-2 {
    left: -160px !important;
}

.tool-wrap .img-item-5 {
    right: -160px !important;
}

.tool-wrap .side-line {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.tool-wrap .side-line svg {
    overflow: visible !important;
}

.tool-wrap .side-line path {
    stroke: rgba(57, 151, 223, 0.65) !important;
    stroke-width: 2.8 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    filter: drop-shadow(0 2px 8px rgba(57, 151, 223, 0.15)) !important;
}

.tool-wrap .side-line circle {
    fill: #3997df !important;
    filter: drop-shadow(0 3px 12px rgba(57, 151, 223, 0.4)) !important;
}

.tool-wrap .line-1 {
    top: 74px !important;
    left: 72px !important;
}

.tool-wrap .line-2 {
    top: 50% !important;
    left: 112px !important;
    width: calc(50% - 116px) !important;
}

.tool-wrap .line-3 {
    bottom: 74px !important;
    left: 72px !important;
}

.tool-wrap .line-4 {
    top: 74px !important;
    right: 72px !important;
}

.tool-wrap .line-5 {
    top: 50% !important;
    right: 112px !important;
    width: calc(50% - 116px) !important;
}

.tool-wrap .line-6 {
    bottom: 74px !important;
    right: 72px !important;
}

@media (max-width: 991px) {
    .tool-wrap .tool-image-box {
        width: min(760px, calc(100% - 30px)) !important;
        height: 410px !important;
        min-height: 410px !important;
    }

    .tool-wrap .tool-icon {
        width: 104px !important;
        height: 104px !important;
        border-radius: 20px !important;
        padding: 13px 8px 12px !important;
    }

    .tool-wrap .tool-icon-svg {
        width: 42px !important;
        height: 42px !important;
    }

    .tool-wrap .tool-icon-instagram .tool-icon-svg,
    .tool-wrap .tool-icon-wordpress .tool-icon-svg {
        width: 48px !important;
        height: 48px !important;
    }

    .tool-wrap .tool-icon span {
        font-size: 12px !important;
    }

    .tool-wrap .image-center .hover-img {
        padding: 23px 36px !important;
    }

    .tool-wrap .image-center h2 {
        font-size: 2.25rem !important;
    }

    .tool-wrap .line-1,
    .tool-wrap .line-3 {
        left: 58px !important;
    }

    .tool-wrap .line-4,
    .tool-wrap .line-6 {
        right: 58px !important;
    }

    .tool-wrap .line-2 {
        left: 94px !important;
        width: calc(50% - 98px) !important;
    }

    .tool-wrap .line-5 {
        right: 94px !important;
        width: calc(50% - 98px) !important;
    }
}

@media (max-width: 767px) {
    .tool-wrap .tool-image-box {
        width: min(390px, calc(100% - 22px)) !important;
        height: auto !important;
        min-height: 0 !important;
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        grid-template-rows: auto auto auto !important;
        gap: 16px !important;
    }

    .tool-wrap .image-center,
    .tool-wrap .img-item {
        position: static !important;
        transform: none !important;
    }

    .tool-wrap .image-center {
        grid-column: 1 / -1 !important;
        grid-row: 1 !important;
        justify-self: center !important;
        margin-bottom: 4px !important;
    }

    .tool-wrap .img-item-1 {
        grid-column: 1 !important;
        grid-row: 2 !important;
    }

    .tool-wrap .img-item-2 {
        grid-column: 2 !important;
        grid-row: 2 !important;
    }

    .tool-wrap .img-item-3 {
        grid-column: 3 !important;
        grid-row: 2 !important;
    }

    .tool-wrap .img-item-4 {
        grid-column: 1 !important;
        grid-row: 3 !important;
    }

    .tool-wrap .img-item-5 {
        grid-column: 2 !important;
        grid-row: 3 !important;
    }

    .tool-wrap .img-item-6 {
        grid-column: 3 !important;
        grid-row: 3 !important;
    }

    .tool-wrap .tool-icon {
        width: 100% !important;
        max-width: 104px !important;
        height: 98px !important;
        margin: 0 auto !important;
    }

    .tool-wrap .side-line {
        display: block !important;
    }

    .tool-wrap .side-line svg {
        display: none !important;
    }

    .tool-wrap .tool-image-box::before,
    .tool-wrap .tool-image-box::after {
        content: "" !important;
        position: absolute !important;
        left: 13% !important;
        right: 13% !important;
        height: 3px !important;
        background: rgba(57, 151, 223, 0.72) !important;
        border-radius: 999px !important;
        z-index: 1 !important;
    }

    .tool-wrap .tool-image-box::before {
        top: calc(50% + 4px) !important;
    }

    .tool-wrap .tool-image-box::after {
        top: calc(100% - 58px) !important;
    }
}

@media (max-width: 420px) {
    .tool-wrap .tool-icon span {
        font-size: 10.5px !important;
    }
}

/* =====================================================
   ABOUT PAGE TOOLS - SIMPLE ICON IMAGE FINAL
   ===================================================== */
.tool-wrap .tool-icon {
    gap: 12px !important;
    transition: none !important;
}

.tool-wrap .tool-icon:hover {
    transform: none !important;
    box-shadow: 0 24px 58px rgba(22, 35, 48, 0.12), 0 -3px 0 #e8edf2 inset !important;
}

.tool-wrap .tool-icon-img {
    display: block !important;
    width: 62px !important;
    height: 62px !important;
    object-fit: contain !important;
    object-position: center !important;
    filter: drop-shadow(0 10px 18px rgba(23, 33, 45, 0.08)) !important;
}

.tool-wrap .tool-icon-img-lg {
    width: 70px !important;
    height: 70px !important;
}

.tool-wrap .tool-icon-svg {
    display: none !important;
}

.tool-wrap .tool-icon span {
    font-size: 15px !important;
    font-weight: 650 !important;
    color: #161616 !important;
}

.tool-wrap .side-line {
    z-index: 1 !important;
}

.tool-wrap .side-line path {
    stroke: rgba(57, 151, 223, 0.82) !important;
    stroke-width: 3.2 !important;
}

.tool-wrap .line-1,
.tool-wrap .line-3 {
    left: 68px !important;
}

.tool-wrap .line-4,
.tool-wrap .line-6 {
    right: 68px !important;
}

.tool-wrap .line-2 {
    left: 118px !important;
    width: calc(50% - 118px) !important;
}

.tool-wrap .line-5 {
    right: 118px !important;
    width: calc(50% - 118px) !important;
}

@media (max-width: 991px) {
    .tool-wrap .tool-icon-img {
        width: 48px !important;
        height: 48px !important;
    }

    .tool-wrap .tool-icon-img-lg {
        width: 54px !important;
        height: 54px !important;
    }

    .tool-wrap .line-2 {
        left: 96px !important;
        width: calc(50% - 100px) !important;
    }

    .tool-wrap .line-5 {
        right: 96px !important;
        width: calc(50% - 100px) !important;
    }
}

@media (max-width: 767px) {
    .tool-wrap .tool-icon-img {
        width: 42px !important;
        height: 42px !important;
    }

    .tool-wrap .tool-icon-img-lg {
        width: 48px !important;
        height: 48px !important;
    }

    .tool-wrap .tool-icon span {
        font-size: 11px !important;
    }
}

/* Final small position/icon tune requested */
.tool-wrap .img-item-2 {
    left: -52px !important;
}

.tool-wrap .img-item-5 {
    right: -52px !important;
}

.tool-wrap .tool-icon,
.tool-wrap .tool-icon:hover,
.tool-wrap .image-center,
.tool-wrap .image-center:hover,
.tool-wrap .image-center .hover-img,
.tool-wrap .image-center .hover-img:hover {
    transition: none !important;
    animation: none !important;
}

.tool-wrap .tool-icon:hover {
    transform: translateY(-50%) !important;
}

.tool-wrap .img-item-1:hover,
.tool-wrap .img-item-3:hover,
.tool-wrap .img-item-4:hover,
.tool-wrap .img-item-6:hover {
    transform: none !important;
}

.tool-wrap .tool-icon-img {
    width: 54px !important;
    height: 54px !important;
}

.tool-wrap .tool-icon-img-lg {
    width: 58px !important;
    height: 58px !important;
}

.tool-wrap .line-2 {
    left: 86px !important;
    width: calc(50% - 86px) !important;
}

.tool-wrap .line-5 {
    right: 86px !important;
    width: calc(50% - 86px) !important;
}

@media (max-width: 991px) {
    .tool-wrap .img-item-2 {
        left: -22px !important;
    }

    .tool-wrap .img-item-5 {
        right: -22px !important;
    }

    .tool-wrap .tool-icon-img {
        width: 42px !important;
        height: 42px !important;
    }

    .tool-wrap .tool-icon-img-lg {
        width: 48px !important;
        height: 48px !important;
    }

    .tool-wrap .line-2 {
        left: 78px !important;
        width: calc(50% - 78px) !important;
    }

    .tool-wrap .line-5 {
        right: 78px !important;
        width: calc(50% - 78px) !important;
    }
}

@media (max-width: 767px) {

    .tool-wrap .img-item-2,
    .tool-wrap .img-item-5,
    .tool-wrap .tool-icon:hover {
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }

    .tool-wrap .tool-icon-img {
        width: 34px !important;
        height: 34px !important;
    }

    .tool-wrap .tool-icon-img-lg {
        width: 38px !important;
        height: 38px !important;
    }
}

/* Final tools section fit polish */
.section-tools.v2 {
    padding-bottom: 92px !important;
}

.tool-wrap .tool-image-box {
    height: 480px !important;
    min-height: 480px !important;
    margin-top: 34px !important;
    margin-bottom: 26px !important;
}

.tool-wrap .img-item-1,
.tool-wrap .img-item-4 {
    top: 0 !important;
}

.tool-wrap .img-item-3,
.tool-wrap .img-item-6 {
    bottom: 0 !important;
}

.tool-wrap .line-1,
.tool-wrap .line-4 {
    top: 60px !important;
}

.tool-wrap .line-3,
.tool-wrap .line-6 {
    bottom: 60px !important;
}

.section-tools.v2 .tool-wrap>.tf-btn {
    margin-top: 0 !important;
}

.tool-wrap .tool-icon,
.tool-wrap .tool-icon:hover,
.tool-wrap .image-center .hover-img,
.tool-wrap .image-center .hover-img:hover {
    transition: none !important;
    animation: none !important;
}

.tool-wrap .tool-icon:hover {
    box-shadow: 0 24px 58px rgba(22, 35, 48, 0.12), 0 -3px 0 #e8edf2 inset !important;
}

.tool-wrap .img-item-2:hover,
.tool-wrap .img-item-5:hover {
    transform: translateY(-50%) !important;
}

.tool-wrap .img-item-1:hover,
.tool-wrap .img-item-3:hover,
.tool-wrap .img-item-4:hover,
.tool-wrap .img-item-6:hover {
    transform: none !important;
}

@media (max-width: 991px) {
    .tool-wrap .tool-image-box {
        height: 390px !important;
        min-height: 390px !important;
        margin-top: 30px !important;
        margin-bottom: 24px !important;
    }

    .tool-wrap .line-1,
    .tool-wrap .line-4 {
        top: 52px !important;
    }

    .tool-wrap .line-3,
    .tool-wrap .line-6 {
        bottom: 52px !important;
    }
}

@media (max-width: 767px) {
    .section-tools.v2 {
        padding-bottom: 64px !important;
    }

    .tool-wrap .tool-image-box {
        height: auto !important;
        min-height: 0 !important;
        margin-top: 26px !important;
        margin-bottom: 24px !important;
    }
}

/* --- Features Center Blue Brand Override --- */
.features-center {
    background: linear-gradient(180deg, #3997DF 0%, #00c6ff 100%) !important;
    box-shadow: 0px -3px 0px 0px rgba(0, 0, 0, 0.0588235294) inset, 
                0px 1px 0px 0px rgba(255, 255, 255, 0.6) inset, 
                0px 3.44px 5.57px 0px rgba(0, 0, 0, 0.0862745098), 
                0px 22.91px 37.08px 0px rgba(57, 151, 223, 0.16), 
                0px 76px 123px 0px rgba(57, 151, 223, 0.05), 
                0px 5.05px 8.18px 0px rgba(57, 151, 223, 0.1), 
                0px 16.98px 27.47px 0px rgba(57, 151, 223, 0.05), 
                0px 56px 83px 0px rgba(57, 151, 223, 0.25), 
                0px 14px 34px 0px rgba(57, 151, 223, 0.25), 
                0px 1px 2px 0px rgba(57, 151, 223, 0.4) !important;
}