﻿/* ================================================================
   Multilayers Tech — Complete Brand Color System for O-Tech Template
   ================================================================
   Deep Navy:        #070D2F  — dark backgrounds, headings, strong contrast
   Tech Blue:        #0B7DFF  — primary brand, CTAs, links, interactive
   Deep Blue:        #0552CC  — accent, gradients, depth
   White:            #FFFFFF  — backgrounds, text on dark
   Soft Background:  #F7F9FF  — section backgrounds, cards, dividers
   Muted Gray:       #697089  — secondary text, icons, borders, disabled
   Gradient:         #0B7DFF → #0552CC (light blue to deep blue)
   ================================================================ */

/* ── CSS Custom Properties ── */
:root {
    /* Core brand */
    --vl-theme-color:       #0B7DFF;
    --vl-theme-color-2:     #0552CC;
    --vl-theme-color-4:     #0B7DFF;
    --vl-black:             #070D2F;
    --vl-cmn-black:         #070D2F;
    --vl-heading-color:     #070D2F;

    /* Extended palette */
    --ml-navy:              #070D2F;
    --ml-blue:              #0B7DFF;
    --ml-purple:            #0552CC;
    --ml-white:             #FFFFFF;
    --ml-soft-bg:           #F7F9FF;
    --ml-muted:             #697089;
    --ml-gradient:          linear-gradient(85deg, #0B7DFF 0%, #0552CC 100%);
    --ml-gradient-rev:      linear-gradient(85deg, #0552CC 0%, #0B7DFF 100%);
    --ml-gradient-dark:     linear-gradient(135deg, #070D2F 0%, #0a1a4a 60%, #0B7DFF 130%);

    /* Override O-Tech template gradient variable */
    --vl-gradient-1:        linear-gradient(85deg, #0B7DFF 0%, #0552CC 100%);
    --vl-gradient-2:        linear-gradient(85deg, #0552CC 0%, #0B7DFF 100%);
}

/* ================================================================
   TYPOGRAPHY â€” Montserrat (display) + Inter (body)
   ================================================================ */
body,
p, span, li, td, th,
input, textarea, select, button,
.vl-section-description,
.vl-section-description-2 {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6,
.vl-section-title,
.vl-section-title-2,
.vl-section-heading,
.vl-section-heading-2,
.vl-section-subtitle-5,
.vl-section-subtitle-6,
.vl-footer-widget-title,
.vl-hero-title {
    font-family: 'Montserrat', sans-serif;
    color: #070D2F;
}
.theme-btn {
    font-family: 'Montserrat', sans-serif;
}

/* Hero / dark-bg headings stay white */
.vl-hero-area h1,
.vl-hero-area h2,
.vl-hero-area h3,
.vl-hero-area-4 h1,
section[style*="070D2F"] h1,
section[style*="070D2F"] h2,
section[style*="070D2F"] h3,
section[style*="070D2F"] h4 {
    color: #fff;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.theme-btn {
    background: #0B7DFF !important;
    border-color: transparent;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
}
.theme-btn:hover,
.theme-btn:focus {
    background: #070D2F !important;
    border-color: transparent;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* Secondary button — solid blue, no border */
.theme-btn.theme-btn2 {
    background: #0B7DFF !important;
    border: none !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}
.theme-btn.theme-btn2:hover {
    background: #070D2F !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* Read-more link */
.readmore {
    color: #0B7DFF;
    font-weight: 600;
}
.readmore:hover {
    color: #0552CC;
}

/* ================================================================
   HEADER / NAV
   ================================================================ */
.vl-header-bg-4,
.vl-header-area .vl-header-bg-4 {
    background-color: rgba(7, 13, 47, 0.96);
    backdrop-filter: blur(8px);
}
.vl-header-area.vl-sticky-header,
.vl-header-area.sticky-header {
    background-color: #070D2F;
    box-shadow: 0 2px 20px rgba(7,13,47,.25);
}

/* Nav links */
.vl-main-menu nav ul li a {
    color: #fff;
}
.vl-main-menu nav ul li a:hover,
.vl-main-menu nav ul li.active > a {
    color: #0B7DFF;
}

/* Normal header: outer transparent, only inner pill has bg (original template) */
.vl-header-area {
    background: transparent !important;
}
.vl-header-bg-4,
.vl-header-area .vl-header-bg-4 {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
}

/* Sticky header: full bar dark navy, inner pill transparent */
.vl-header-area.header-sticky {
    background: rgba(7, 13, 47, 0.96) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}
.header-sticky .vl-header-bg-4 {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Sub-menu */
.vl-main-menu .sub-menu {
    background-color: #070D2F;
    border-top: 2px solid #0B7DFF;
}
.vl-main-menu .sub-menu li a {
    color: #d0d8f0;
}
.vl-main-menu .sub-menu li a:hover {
    color: #0B7DFF;
    padding-left: 20px;
}

/* Hamburger toggle — no border/bg */
.vl-offcanvas-toggle {
    color: #fff;
}
.vl-header-action-item,
.vl-header-action-item button,
.vl-header-action-item .vl-offcanvas-toggle {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Header row vertical padding */
.vl-header-bg-4 .row.align-items-center {
    padding-top: 14px;
    padding-bottom: 14px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
    .vl-header-bg-4 .row.align-items-center {
        padding-top: 6px;
        padding-bottom: 6px;
    }
}

/* ================================================================
   OFFCANVAS SIDEBAR
   ================================================================ */
.vl-offcanvas.vl-offcanvas-bg-1 {
    background-color: #070D2F;
}

/* Close button — white X */
.vl-offcanvas-close-toggle {
    color: #fff !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    font-size: 1.4rem;
    line-height: 1;
    padding: 4px;
    transition: color .2s;
}
.vl-offcanvas-close-toggle:hover {
    color: #0B7DFF !important;
}

.vl-offcanvas-sm-title {
    color: #fff;
}

/* Nav links — cleaner style */
.vl-offcanvas-menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.vl-offcanvas-menu nav ul li {
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.vl-offcanvas-menu nav ul li:last-child {
    border-bottom: none;
}
.vl-offcanvas-menu nav ul li a {
    color: #c8d4f0;
    display: flex;
    align-items: center;
    padding: 13px 4px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .01em;
    text-decoration: none;
    transition: color .2s, padding-left .2s;
}
.vl-offcanvas-menu nav ul li a:hover,
.vl-offcanvas-menu nav ul li.active a {
    color: #0B7DFF;
    padding-left: 8px;
}
.vl-offcanvas-info-box-text a {
    color: #c8d4f0;
}

.vl-offcanvas-social a {
    background: rgba(11,125,255,.15);
    color: #0B7DFF;
    border-color: rgba(11,125,255,.3);
}
.vl-offcanvas-social a:hover {
    background: var(--ml-gradient);
    color: #fff;
    border-color: transparent;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.vl-hero-area,
.vl-hero-area-4 {
    background-color: #070D2F;
    padding-top: 190px !important;
}
.vl-section-subtitle-5 {
    color: #0B7DFF;
}
.vl-hero-counter-box span.counter,
.vl-hero-counter-box span {
    color: #fff;
}
.vl-hero-counter-box-title {
    color: rgba(255,255,255,.8);
}

/* ================================================================
   SECTION TITLES
   ================================================================ */
.vl-section-subheading h4,
.vl-section-subtitle-6 {
    color: #0B7DFF;
    position: relative;
}
.vl-section-subtitle-6::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--ml-gradient);
    vertical-align: middle;
    margin-right: 8px;
}
.vl-section-description,
.vl-section-description-2 {
    color: #697089;
}

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.vl-about-area {
    background-color: #fff;
}
@media (max-width: 991px) {
    .vl-about-area .vl-about-img-1 img {
        width: 100% !important;
        height: auto !important;
        border-radius: 16px !important;
    }
    .vl-about-area .vl-about-img-2 img {
        height: 150px !important;
        width: 150px !important;
        margin-top: 16px !important;
        float: none !important;
    }
    .vl-about-area .vl-about-imgs.mr-60 {
        margin-right: 0 !important;
    }
}
.vl-about-icon-box-4 {
    background: #F7F9FF;
    border: 1px solid #e4e8f7;
    transition: .3s;
}
.vl-about-icon-box-4:hover {
    background: #fff;
    border-color: #0B7DFF;
    box-shadow: 0 8px 30px rgba(11,125,255,.12);
}
.vl-about-icon-box-4-title a {
    color: #070D2F;
}
.vl-about-icon-box-4-title a:hover {
    color: #0B7DFF;
}
.vl-about-icon-box-4-content4 p {
    color: #697089;
}
.vl-about-poligon-shap img {
    filter: hue-rotate(200deg) saturate(1.5);
}

/* ================================================================
   SERVICES SECTION
   ================================================================ */
.vl-service-area,
.vl-service-area.vl-gray-bg-4 {
    background-color: #F7F9FF !important;
}
.vl-service-icon-box-4 {
    background: #fff;
    border: 1px solid #e4e8f7;
    transition: border-color .3s, box-shadow .3s, transform .3s;
}
.vl-service-icon-box-4:hover {
    border-color: #0B7DFF;
    box-shadow: 0 12px 40px rgba(11,125,255,.14);
    transform: translateY(-4px);
}
.vl-service-icon-box-4-title a {
    color: #070D2F;
    font-weight: 700;
}
.vl-service-icon-box-4-title a:hover {
    color: #0B7DFF;
}
.vl-service-icon-box-4-content4 p {
    color: #697089;
    font-size: 15px;
    line-height: 1.7;
}

/* ================================================================
   CASE STUDIES / GALLERY
   ================================================================ */
.vl-gallery {
    background-color: #fff;
}
.vl-gallery-testimonial-2-image img { height: auto !important; object-fit: unset !important; }
.vl-gallery-testimonial-2-title {
    font-size: 15px !important;
    line-height: 22px !important;
}
.vl-gallery-testimonial-2-title a {
    color: #070D2F;
}
.vl-gallery-testimonial-2-title a:hover {
    color: #0B7DFF;
}
.vl-gallery-poligon {
    background-image: url('/assets-web/img/icons/vl-poligon-2.1.svg');
}
.vl-gallery-poligon a {
    color: #fff;
}

/* Owl nav arrows */
.owl-theme .owl-nav [class*='owl-'] {
    background: var(--ml-gradient);
    color: #fff;
}
.owl-theme .owl-nav [class*='owl-']:hover {
    background: var(--ml-gradient-rev);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #0B7DFF;
}

/* ================================================================
   BLOG / NEWS SECTION
   ================================================================ */
.vl-blog,
.vl-blog.vl-gray-bg-4 {
    background-color: #F7F9FF !important;
}
.vl-blog-box {
    background: #fff;
    border: 1px solid #e4e8f7;
    transition: box-shadow .3s, transform .3s;
}
.vl-blog-box:hover {
    box-shadow: 0 12px 40px rgba(11,125,255,.12);
    transform: translateY(-4px);
}
.vl-blog-box-title a {
    color: #070D2F;
    font-weight: 700;
}
.vl-blog-box-title a:hover {
    color: #0B7DFF;
}

/* ================================================================
   FAQ SECTION
   ================================================================ */
.vl-faq {
    background-color: #fff;
}
.accordion-item.vl-faq-item {
    border: 1px solid #e4e8f7;
    border-radius: 8px;
    overflow: hidden;
}
.accordion-button.vl-faq-btn {
    background: #fff;
    color: #070D2F;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: none;
}
.accordion-button.vl-faq-btn:not(.collapsed) {
    background: var(--ml-gradient);
    color: #fff;
    box-shadow: none;
}
.accordion-button.vl-faq-btn:not(.collapsed)::after {
    filter: brightness(10);
}
.accordion-body.vl-faq-body {
    color: #697089;
    line-height: 1.8;
    background: #F7F9FF;
}

/* ================================================================
   TESTIMONIAL SECTION
   ================================================================ */
.vl-testimonial.vl-testimonial-bg-2 {
    background-color: #070D2F;
}
.vl-testimonial-box.vl-testimonial-box-4 {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
}
.vl-testimonial-box-auth-title a {
    color: #fff;
}
.vl-testimonial-box-auth-title a:hover {
    color: #0B7DFF;
}
.vl-testimonial-box-icon a {
    color: #0B7DFF;
}

/* ================================================================
   FOOTER
   ================================================================ */
.vl-footer,
.vl-footer.vl-gray-bg-4,
section.vl-footer,
.vl-footer.vl-gray-bg-4,
.vl-testimonial.vl-gray-bg-4 ~ footer .vl-footer {
    background-color: #f7f9ff !important;
}
.vl-footer-widget-title {
    color: #070D2F;
}
.vl-footer-content-4 p {
    color: #697089;
    font-size: 14px;
}
.vl-footer-menu-4 ul li a {
    color: #697089;
    font-size: 14px;
    transition: color .2s, padding-left .2s;
}
.vl-footer-menu-4 ul li a:hover {
    background: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #0B7DFF !important;
    color: #0B7DFF !important;
    padding-left: 6px;
}
.vl-footer-widget-3.ml-40 {
    margin-left: 16px !important;
}
.vl-footer-social-4 ul li a {
    background: rgba(11,125,255,.12);
    color: #0B7DFF;
    border-color: rgba(11,125,255,.25);
    transition: .3s;
}
.vl-footer-social-4 ul li a:hover {
    background: var(--ml-gradient);
    color: #fff;
    border-color: transparent;
}
.vl-footer-border-top {
    border-top: 1px solid rgba(7,13,47,.1);
}
.vl-footer-copyright-text-4 p {
    color: #697089;
}
.vl-footer-copyright-menu ul li a {
    color: #697089;
}
.vl-footer-copyright-menu ul li a:hover {
    color: #0B7DFF;
}

/* ================================================================
   BREADCRUMB / PAGE TITLE AREA
   ================================================================ */
.vl-breadcrumb-area,
.vl-page-title-area {
    background-color: #070D2F;
}
.vl-breadcrumb-title,
.vl-page-title {
    color: #fff;
}
.breadcrumb-item a {
    color: #0B7DFF;
}
.breadcrumb-item.active {
    color: #697089;
}

/* ================================================================
   BACK TO TOP
   ================================================================ */
.scroll-top,
#back-top {
    background: var(--ml-gradient);
    color: #fff;
    border: none;
}
.scroll-top:hover,
#back-top:hover {
    background: var(--ml-gradient-rev);
}

/* ================================================================
   SECTION ALTERNATING BACKGROUNDS
   ================================================================ */
.vl-gray-bg-4 {
    background-color: #F7F9FF !important;
}

/* Testimonial stays dark */
.vl-testimonial.vl-gray-bg-4 {
    background-color: #070D2F !important;
}

/* ================================================================
   PRICING (if used)
   ================================================================ */
.vl-pricing-box {
    background: #F7F9FF;
    border: 1px solid #e4e8f7;
}
.vl-pricing-box.active {
    background: var(--ml-gradient);
    border-color: transparent;
}
.vl-pricing-box.active .price-title,
.vl-pricing-box.active .price-number,
.vl-pricing-box.active p,
.vl-pricing-box.active .vl-icon-content p {
    color: #fff;
}
.vl-pricing-box .vl-icon span {
    background: var(--ml-gradient);
    color: #fff;
}

/* ================================================================
   FORMS & INPUTS
   ================================================================ */
input:focus,
textarea:focus,
select:focus {
    border-color: #0B7DFF;
    box-shadow: 0 0 0 3px rgba(11,125,255,.15);
    outline: none;
}

/* ================================================================
   COUNTERS
   ================================================================ */
.counter,
.vl-count-number {
    color: #0B7DFF;
    font-weight: 700;
}

/* ================================================================
   RTL SUPPORT (Arabic) — comprehensive
   ================================================================ */

/* ── General text alignment ── */
html[dir="rtl"] body { text-align: right; }

/* ── Section subtitle decoration line ── */
html[dir="rtl"] .vl-section-subtitle-6::before {
    margin-right: 0;
    margin-left: 8px;
}

/* ── NAV: fl-left utility ── */
.fl-left { float: left; }

/* ── Language switch button (desktop + mobile) ── */
.vl-lang-switch-btn {
    white-space: nowrap;
    font-family: 'Cairo', 'Montserrat', sans-serif !important;
}

/* Mobile lang item — full width like CTA */
li.vl-lang-mobile-item {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
li.vl-lang-mobile-item .theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

/* ── Language toggle (mobile offcanvas) ── */
li.vl-lang-toggle-mobile {
    display: flex !important;
    align-items: center;
    gap: 4px;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
li.vl-lang-toggle-mobile .vl-lang-btn {
    font-size: 14px !important;
    padding: 5px 14px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 6px;
    color: #c8d4f0 !important;
}
li.vl-lang-toggle-mobile .vl-lang-btn:hover {
    border-color: #0B7DFF;
    background: rgba(11,125,255,.12);
    color: #fff !important;
}
li.vl-lang-toggle-mobile .vl-lang-btn.vl-lang-active {
    background: #0B7DFF;
    border-color: #0B7DFF;
    color: #fff !important;
}
li.vl-lang-toggle-mobile .vl-lang-sep {
    color: rgba(255,255,255,.2);
    font-size: 13px;
}


/* ── NAV: hamburger toggle align ── */
html[dir="rtl"] .vl-header-action-item.text-end { text-align: left !important; }

/* ── NAV: sub-menu drop from right side ── */
html[dir="rtl"] .vl-main-menu .has-dropdown .sub-menu {
    left: 0;
    right: auto;
}
html[dir="rtl"] .vl-main-menu .sub-menu li a:hover {
    padding-left: 0;
    padding-right: 20px;
}

/* ── NAV: offcanvas link indent flipped ── */
html[dir="rtl"] .vl-offcanvas-menu nav ul li a {
    padding-left: 4px;
    padding-right: 4px;
    transition: color .2s, padding-right .2s;
}
html[dir="rtl"] .vl-offcanvas-menu nav ul li a:hover,
html[dir="rtl"] .vl-offcanvas-menu nav ul li.active a {
    padding-left: 4px;
    padding-right: 8px;
}

/* ── ARROWS — flip fa-arrow-right in RTL (all FontAwesome weight prefixes) ── */
html[dir="rtl"] .fa-arrow-right,
html[dir="rtl"] i[class*="fa-arrow-right"] {
    display: inline-block;
    transform: scaleX(-1);
}

/* ── BUTTONS: theme-btn span RTL fix ── */
html[dir="rtl"] .theme-btn {
    padding: 8px 20px 8px 8px;
}
html[dir="rtl"] .theme-btn span {
    margin-left: 0;
    margin-right: 6px;
    transform: rotate(45deg);
}

/* ── ABOUT: vl-about-content-4 margin reset ── */
html[dir="rtl"] .vl-about-content-4 {
    margin-right: 0 !important;
    margin-left: auto;
    padding-right: 0 !important;
    padding-left: 0 !important;
}
html[dir="rtl"] .vl-about-imgs.mr-60 {
    margin-right: 0 !important;
    margin-left: 60px !important;
}

/* ── FAQ: accordion button direction ── */
html[dir="rtl"] .accordion-button.vl-faq-btn,
html[dir="rtl"] .vl-accordion-item-2 .accordion-button {
    text-align: right;
    padding-right: 24px;
    padding-left: 60px;
}
html[dir="rtl"] .vl-accordion-item-2 button span {
    right: auto;
    left: 20px;
}

/* ── CTA: subscribe button absolute position flipped ── */
html[dir="rtl"] .vl-cta-mail-btn {
    right: auto !important;
    left: 0 !important;
}
html[dir="rtl"] .vl-cta-mail input[type=email] {
    padding-right: 16px !important;
    padding-left: 185px !important;
}
html[dir="rtl"] .vl-cta-bg-4 {
    padding-left: 0;
    padding-right: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    html[dir="rtl"] .vl-cta-bg-4 {
        padding-left: 0;
        padding-right: 40px;
    }
}
@media (max-width: 575px) {
    html[dir="rtl"] .vl-cta-bg-4 {
        padding: 15px;
    }
    html[dir="rtl"] .vl-cta-mail input[type=email] {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}
html[dir="rtl"] .vl-cta-wrapper-title {
    text-align: right;
}

/* ── FOOTER: contact icon spacing ── */
html[dir="rtl"] .vl-footer-contact-icon.me-3 {
    margin-right: 0 !important;
    margin-left: 1rem !important;
}

/* ── FOOTER: widget-3 margin ── */
html[dir="rtl"] .vl-footer-widget-3.ml-40 {
    margin-left: 0 !important;
    margin-right: 16px !important;
}

/* ── FOOTER: menu hover indent ── */
html[dir="rtl"] .vl-footer-menu-4 ul li a {
    transition: color .2s, padding-right .2s;
}
html[dir="rtl"] .vl-footer-menu-4 ul li a:hover {
    padding-left: 0 !important;
    padding-right: 6px !important;
}

/* ── FOOTER BOTTOM: copyright ── */
html[dir="rtl"] .vl-footer-copyright-text-4 { text-align: right; }
html[dir="rtl"] .vl-footer-copyright-menu { text-align: left; }
html[dir="rtl"] .vl-footer-copyright-menu ul li {
    margin-left: 0;
    padding-left: 0;
    margin-right: 17px;
    padding-right: 17px;
}
html[dir="rtl"] .vl-footer-copyright-menu ul li:first-child {
    margin-right: 0;
    padding-right: 0;
}
html[dir="rtl"] .vl-footer-copyright-menu ul li::before {
    left: auto;
    right: 0;
}
/* ── FOOTER: contact text alignment ── */
html[dir="rtl"] .vl-footer-contact-text { text-align: right; }

/* ── SERVICE BOX: icon spacing ── */
html[dir="rtl"] .vl-service-box-icon {
    margin-right: 0 !important;
    margin-left: 16px !important;
}

/* ── ABOUT ICON BOX: full RTL fix ── */
html[dir="rtl"] .vl-about-icon,
html[dir="rtl"] .vl-about-icon-2 {
    margin-right: 0 !important;
    margin-left: 0 !important;
    flex-shrink: 0;
}
/* shadow circle: mirror left→right */
html[dir="rtl"] .vl-about-icon::after,
html[dir="rtl"] .vl-about-icon-2::after {
    left: auto;
    right: 0;
}
/* icon dot: mirror left:50%→right:50% so it aligns with the shadow */
html[dir="rtl"] .vl-about-icon span,
html[dir="rtl"] .vl-about-icon-2 span {
    left: auto;
    right: 50%;
}
html[dir="rtl"] .vl-about-icon-content {
    margin-left: 0;
    margin-right: 36px;
    text-align: right;
}
html[dir="rtl"] .vl-about-icon-title,
html[dir="rtl"] .vl-about-icon-desc {
    text-align: right;
}
/* mobile: box stacks (display:block), drop the side margin */
@media (max-width: 575px) {
    html[dir="rtl"] .vl-about-icon-content {
        margin-right: 0;
        margin-left: 0;
        margin-top: 30px;
    }
}

/* ── HERO COUNTER: flip sides in RTL ── */
html[dir="rtl"] .vl-hero-counter-box {
    padding-right: 0;
    padding-left: 45px;
    border-right: none;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 0;
    margin-left: 45px;
}
html[dir="rtl"] .vl-hero-counter-box:last-child {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
}

/* ── WHATSAPP / inline icon me-2 ── */
html[dir="rtl"] .fa-whatsapp.me-2,
html[dir="rtl"] i.me-2 {
    margin-right: 0 !important;
    margin-left: .5rem !important;
}

/* ── d-flex rows: keep icon on start side in RTL ── */
html[dir="rtl"] .vl-about-icon-box.d-flex,
html[dir="rtl"] .vl-about-icon-box-4.d-flex {
    flex-direction: row;
}

/* ── LEGAL: blockquote border + list padding ── */
html[dir="rtl"] .vl-block-quote {
    border-left: none;
    border-right: 4px solid #0B7DFF;
    padding-left: 20px;
    padding-right: 32px;
}
html[dir="rtl"] .vl-legal-content ul {
    padding-left: 0;
    padding-right: 20px;
}
html[dir="rtl"] .vl-legal-content h3::before {
    margin-right: 0;
    margin-left: 10px;
}
html[dir="rtl"] .vl-service-details-content-check ul { padding-right: 0; }

/* ── SECTION CHECK LIST ── */
html[dir="rtl"] .vl-block-check h3 { text-align: right; }

/* ── CTA half-circle decoration ── */
html[dir="rtl"] .vl-cta-half-circle img {
    right: auto !important;
    left: -80px !important;
    transform: scaleX(-1);
}

/* ── BREADCRUMB separator ── */
html[dir="rtl"] .breadcrumb-item + .breadcrumb-item::before {
    float: right;
    padding-right: 0;
    padding-left: .5rem;
    content: "\\";
}

/* ── BREADCRUMB ── */
html[dir="rtl"] .vl-breadcrumb { text-align: right; }
html[dir="rtl"] .vl-breadcrumb-list { justify-content: flex-end; }

/* ── CONTACT PAGE: widget icon spacing ── */
html[dir="rtl"] .vl-contact-iner-widget-1-icon.mr-16 {
    margin-right: 0 !important;
    margin-left: 16px !important;
}
/* Contact info widget: ml-50 → mr-50 */
html[dir="rtl"] .vl-contact-iner-widget.ml-50 {
    margin-left: 0 !important;
    margin-right: 50px !important;
}
/* Contact form submit button: fl-right → fl-left */
html[dir="rtl"] .vl-about-inner-btn.fl-right {
    float: left !important;
}
/* Form inputs: text right-aligned, placeholder right */
html[dir="rtl"] input[type="text"],
html[dir="rtl"] input[type="email"],
html[dir="rtl"] input[type="tel"],
html[dir="rtl"] input[type="search"],
html[dir="rtl"] textarea {
    text-align: right;
    direction: rtl;
}

/* ── ARABIC FONT — Cairo for all text, preserving icon fonts ── */
html[dir="rtl"] body,
html[dir="rtl"] p,
html[dir="rtl"] h1, html[dir="rtl"] h2,
html[dir="rtl"] h3, html[dir="rtl"] h4,
html[dir="rtl"] h5, html[dir="rtl"] h6,
html[dir="rtl"] a, html[dir="rtl"] span,
html[dir="rtl"] li, html[dir="rtl"] label,
html[dir="rtl"] input, html[dir="rtl"] textarea,
html[dir="rtl"] button, html[dir="rtl"] select {
    font-family: 'Cairo', sans-serif;
    letter-spacing: 0;
}
/* Headings use Cairo Bold in RTL */
html[dir="rtl"] h1, html[dir="rtl"] h2,
html[dir="rtl"] h3, html[dir="rtl"] h4 {
    font-weight: 700;
}
/* FontAwesome icons must keep their font — Cairo must not override them */
html[dir="rtl"] i[class*="fa-"]:not(.fab):not(.fa-brands),
html[dir="rtl"] .fa, html[dir="rtl"] .fas,
html[dir="rtl"] .far, html[dir="rtl"] .fal,
html[dir="rtl"] .fad {
    font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free",
                 "Font Awesome 5 Pro", "Font Awesome 5 Free" !important;
}
/* Brand icons need the Brands font specifically */
html[dir="rtl"] .fab,
html[dir="rtl"] .fa-brands,
html[dir="rtl"] i.fa-brands {
    font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands" !important;
}
/* Info box icon gap: flip margin to left in RTL (icon sits on right in RTL flex) */
html[dir="rtl"] .vl-offcanvas-info-box-icon span {
    margin-right: 0;
    margin-left: 15px;
}
/* ================================================================
   GLOBAL GRADIENT OVERRIDE — replace old purple with brand blue
   ================================================================ */
:root {
    --vl-gradient-1: linear-gradient(85deg, #0B7DFF 0%, #0552CC 100%) !important;
    --vl-gradient-2: linear-gradient(85deg, #0B7DFF 0%, #0552CC 100%) !important;
}

/* About/CTA block button wrapper */
.vl-herobtn.vl-aboutbtn,
.vl-cta-mail-btn .vl-herobtn.vl-aboutbtn {
    background: #0B7DFF !important;
    text-align: center;
    justify-content: center;
}

/* CTA section title — reduce from template's 48px */
.vl-cta-wrapper-title {
    font-size: 32px !important;
    line-height: 42px !important;
}
@media (max-width: 575px) {
    .vl-cta-wrapper-title { font-size: 26px !important; line-height: 36px !important; }
}


/* CTA half-circle decoration */
.vl-cta-half-circle img {
    position: absolute;
    right: -80px;
    top: 118px !important;
    z-index: -1;
}

/* CTA subscribe form — keep button on one line */
.vl-cta-mail {
    position: relative;
}
.vl-cta-mail input[type=email] {
    padding-right: 180px;
    width: 100%;
    box-sizing: border-box;
}
.vl-cta-mail-btn {
    position: absolute;
    top: 59% !important;
    right: 0px !important;
    transform: translateY(-50%);
}
@media (max-width: 575px) {
    .vl-cta-mail { display: flex; flex-direction: column; gap: 12px; }
    .vl-cta-mail input[type=email] { padding-right: 16px; width: 100%; }
    .vl-cta-mail-btn { position: static; transform: none; width: 100%; }
    .vl-cta-mail-btn .vl-herobtn,
    .vl-cta-mail-btn button.theme-btn { width: 100% !important; justify-content: center; }
}
.vl-cta-mail-btn .theme-btn,
.vl-cta-mail-btn button.theme-btn {
    white-space: nowrap !important;
    width: auto !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    font-size: 14px !important;
    min-height: unset !important;
}


/* Slick sliders always LTR — step numbers and carousel order must not reverse */
.slick-slider,
.slick-list,
.slick-track {
    direction: ltr !important;
}
.slick-slide {
    direction: ltr !important;
    text-align: left;
}
html[dir="rtl"] .slick-slide {
    text-align: right;
}

/* Progress / scroll-to-top ring */
.progress-wrap svg.progress-circle path {
    stroke: #0B7DFF !important;
}
.progress-wrap::after {
    color: #0B7DFF !important;
}

/* ================================================================
   PRELOADER
   ================================================================ */
.preloader {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #070D2F 0%, #0a1650 60%, #0d2070 100%) !important;
}
.loading-container {
    margin: 0 !important;
    position: relative;
    flex-shrink: 0;
}
#loading-icon {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: auto !important;
    height: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}
#loading-icon img {
    height: 40px !important;
    width: 40px !important;
    display: block;
}

/* ================================================================
   PURPLE ELIMINATION — replace all #5038C9 / #2E0797 / #726EFC
   ================================================================ */

/* Inner action button (contact form, about tabs) */
.vl-iner-btn {
    background: #0B7DFF !important;
    color: #fff !important;
}
.vl-iner-btn:hover {
    color: #fff !important;
}

/* Fix: template applies width:36px, height:36px, transform:rotate(-45deg) to ALL
   .vl-iner-btn and .theme-btn spans. This squashes the text label into a 36px box
   and rotates it. Only the named label/spinner spans need resetting — the icon span
   (last span with no class) keeps the template's circle style. */
.vl-iner-btn .btn-label,
.vl-iner-btn .btn-spinner,
.theme-btn .cta-btn-label,
.theme-btn .cta-btn-spin,
.theme-btn .btn-label,
.theme-btn .btn-spinner {
    transform: none !important;
    background: transparent !important;
    background-image: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: inherit !important;
    width: auto !important;
    height: auto !important;
    line-height: inherit !important;
    border-radius: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: inline !important;
    vertical-align: middle;
}

/* Fix icon color inside buttons (template uses purple gradient; override to white) */
button.theme-btn span:last-child {
    background: rgba(255,255,255,0.15) !important;
}
button.theme-btn span:last-child i,
button.vl-iner-btn span:last-child i {
    background: none !important;
    -webkit-text-fill-color: #fff !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
}
/* Hover state — label and icon turn blue on white background (generic theme-btn2) */
button.theme-btn2:hover .cta-btn-label,
button.theme-btn2:hover .btn-label {
    -webkit-text-fill-color: #0B7DFF !important;
    color: #0B7DFF !important;
}
button.theme-btn2:hover span:last-child {
    background: rgba(11,125,255,0.12) !important;
}
button.theme-btn2:hover span:last-child i {
    -webkit-text-fill-color: #0B7DFF !important;
}

/* CTA Subscribe button — lock: no hover/focus color or bg change */
#cta-subscribe-btn,
#cta-subscribe-btn:hover,
#cta-subscribe-btn:focus {
    background: #0B7DFF !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}
#cta-subscribe-btn:hover .cta-btn-label,
#cta-subscribe-btn:focus .cta-btn-label {
    -webkit-text-fill-color: #fff !important;
    color: #fff !important;
}
#cta-subscribe-btn:hover span:last-child,
#cta-subscribe-btn:focus span:last-child {
    background: rgba(255,255,255,0.15) !important;
}
#cta-subscribe-btn:hover span:last-child i,
#cta-subscribe-btn:focus span:last-child i {
    -webkit-text-fill-color: #fff !important;
}

/* CTA email input — no hover/focus outline change */
.vl-cta-mailform input[type=email]:hover,
.vl-cta-mailform input[type=email]:focus {
    border-color: inherit !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Section subtitle badge style 7 (used on contact page) */
.vl-section-subtitle-7 {
    background: #E6F0FF !important;
    color: #0B7DFF !important;
}

/* Section subtitle gradient text (style without bg chip) */
.vl-section-subtitle {
    background: linear-gradient(85deg, #0B7DFF 0%, #0552CC 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Contact widget hover — uses --vl-theme-color-4 which we set to blue above */
/* Fallback hardcode in case variable isn't picked up */
.vl-contact-iner-widget-1:hover {
    background: #0B7DFF !important;
}

/* About inner btn active state */
.vl-about-inner-btn.active-btn .vl-iner-btn {
    color: #0B7DFF !important;
    background: #fff !important;
}

/* Any element that still shows old purple hex — catch-all for links / text */
a[style*="5038C9"],
span[style*="5038C9"],
div[style*="5038C9"] {
    color: #0B7DFF !important;
}

/* ================================================================
   LEGAL PAGES
   ================================================================ */
.vl-legal-area {
    background: #F7F9FF;
}
.vl-legal-box {
    background: #fff;
    border: 1px solid #e4e8f7;
    border-radius: 12px;
    padding: 60px 72px;
    box-shadow: 0 4px 30px rgba(7,13,47,.06);
}
.vl-legal-content {
    color: #697089;
    line-height: 1.95;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}
.vl-legal-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #070D2F;
    margin: 0 0 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e4e8f7;
}
.vl-legal-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #070D2F;
    margin: 40px 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.vl-legal-content h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background: linear-gradient(180deg, #0B7DFF 0%, #0552CC 100%);
    border-radius: 2px;
    flex-shrink: 0;
}
.vl-legal-content p {
    margin-bottom: 18px;
}
.vl-legal-content ul {
    padding-left: 20px;
    margin-bottom: 18px;
}
.vl-legal-content ul li {
    margin-bottom: 8px;
}
.vl-legal-content a {
    color: #0B7DFF;
    font-weight: 500;
    text-decoration: none;
}
.vl-legal-content a:hover {
    color: #0552CC;
    text-decoration: underline;
}
@media (max-width: 991px) {
    .vl-legal-box { padding: 48px 48px; }
}
@media (max-width: 575px) {
    .vl-legal-box { padding: 32px 24px; }
    .vl-legal-content h2 { font-size: 1.3rem; }
}

/* ================================================================
   SERVICES PAGE HERO
   ================================================================ */
.vl-services-hero {
    background: linear-gradient(135deg, #070D2F 0%, #0a1a4a 60%, #0B7DFF 130%);
}
.vl-services-cta-strip {
    background: linear-gradient(85deg, #070D2F 0%, #0B7DFF 60%, #0552CC 100%);
}
.vl-services-cta-strip p {
    opacity: .85;
}
.vl-service-icon-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}
.vl-section-description-constrained {
    max-width: 600px;
    margin: 0 auto;
}
.vl-services-cta-title {
    font-size: 1.8rem;
    font-weight: 700;
}
.vl-services-cta-btn {
    background: #fff !important;
    color: #070D2F !important;
    -webkit-text-fill-color: #070D2F !important;
}
.vl-services-cta-btn:hover {
    background: #F7F9FF !important;
}
.vl-white-70 {
    color: rgba(255,255,255,.7);
}
.vl-theme-color {
    color: #0B7DFF;
}
.vl-nowrap {
    white-space: nowrap;
}
.breadcrumb.vl-breadcrumb-transparent {
    background: transparent;
}

/* ================================================================
   LEGAL PAGE HEADER ELEMENTS
   ================================================================ */
.vl-legal-badge {
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
}
.vl-legal-page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #070D2F;
    margin: 0;
}

/* ================================================================
   ALERT / NOTIFICATION BANNERS (web forms)
   ================================================================ */
.vl-form-alert {
    border-radius: 8px;
    padding: 14px 18px;
    font-size: .95rem;
}
.vl-cta-alert {
    border-radius: 6px;
    padding: 10px 16px;
    font-size: .9rem;
}

/* ================================================================
   CTA SUBSCRIBE SPINNER
   ================================================================ */
@keyframes ctaSpin { to { transform: rotate(360deg); } }
.cta-btn-spin {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: ctaSpin .7s linear infinite;
    vertical-align: middle;
    margin-right: 4px;
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.vl-breadcrumb-bg {
    background-image: url('/assets-web/img/banner/vl-breadcrumb-bg.png');
    background-size: cover;
    background-position: center top;
}

/* Brand section */
.vl-gradient-2 {
    background: #070D2F !important;
}
.vl-brand-area.vl-gradient-2 {
    margin-bottom: 60px;
}
.vl-brand-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff !important;
    line-height: 1.4;
}
.vl-brand-logo {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}
.vl-brand-logo img {
    width: auto !important;
    max-width: 140px !important;
    height: 50px !important;
    object-fit: contain !important;
    opacity: .75;
    filter: brightness(0) invert(1);
    transition: opacity .2s;
}
.vl-brand-logo img:hover {
    opacity: 1;
}
.vl-brand-logo-text {
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    opacity: .75;
    letter-spacing: .02em;
    display: block;
    text-align: center;
}

/* Work process subtitle */
.vl-section-subtitle-8 {
    color: #0B7DFF;
    font-size: .875rem;
    font-weight: 700;
    letter-spacing: .06em;
}

/* Testimonial person avatar placeholder */
.vl-test-thumb-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--ml-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
}
.vl-test-aut-logo-text {
    color: #697089;
    font-size: .85rem;
    font-weight: 600;
}

/* ================================================================
   CASE STUDY CARD IMAGE
   ================================================================ */
.cs-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.cs-single-img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 10px;
}
.cs-results-card {
    background: rgba(var(--primary-rgb), .05);
}

/* ================================================================
   HOME PAGE — HERO IMAGES (fallback if template images absent)
   ================================================================ */
.vl-about-large4 img { border-radius: 12px; }
.vl-about-sm-2 img { border-radius: 8px; }
.vl-about-poligon-shap { position: absolute; bottom: 0; right: 0; }
.vl-about-poligon-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}
.vl-about-poligon-title p { color: rgba(255,255,255,.85); font-size: .9rem; }
.vl-semi { font-weight: 800; font-size: 2rem; }
.desc-4 { color: rgba(255,255,255,.7); }
.vl-hero-img-4 img { border-radius: 16px; }
.vl-hero-img-4-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(7,13,47,.85);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 16px 20px;
    color: #fff;
    max-width: 280px;
}
.vl-hero-img-4-title { font-size: 1rem; font-weight: 700; color: #fff; }
.vl-hero-img-4-grup { display: flex; align-items: center; gap: 12px; }
.vl-hero-img-4-grup img { width: 60px; height: 30px; object-fit: contain; }
.vl-hero-img-4-grup-content h4 { font-size: .9rem; color: #fff; margin: 0; }

/* ================================================================
   HOME PAGE — FAQ ACCORDION (O-Tech vl-accordion-item-2 style)
   ================================================================ */
.vl-faq-iner { background-color: #fff; }
.vl-faq-iner-title h3 { color: #070D2F; font-family: 'Montserrat', sans-serif; font-weight: 800; }
.vl-accordion-item.vl-accordion-item-2 {
    border: 1px solid #e4e8f7;
    border-radius: 8px;
    overflow: hidden;
}
.vl-accordion-item-2 .accordion-button {
    background: #F7F9FF;
    color: #070D2F;
    font-weight: 600;
    font-size: .98rem;
    font-family: 'Montserrat', sans-serif;
    box-shadow: none;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.vl-accordion-item-2 .accordion-button:not(.collapsed) {
    background: var(--ml-gradient);
    color: #fff;
    border-radius: 8px 8px 0 0;
}
.vl-accordion-item-2 .accordion-button::after { display: none; }
.vl-accordion-item-2 .accordion-button span { flex-shrink: 0; opacity: .7; }
.vl-accordion-item-2 .accordion-button:not(.collapsed) span { opacity: 1; color: #fff; }
.vl-accordion-item-2 .accordion-body {
    background: #fff !important;
    color: #697089 !important;
    font-size: .95rem;
    line-height: 1.8;
    padding: 16px 20px;
}
.vl-accordion-item-2 .accordion-body p { margin: 0; color: #697089 !important; }

/* ================================================================
   ABOUT PAGE — MISSION / VISION BOXES
   ================================================================ */
.ml-about-box {
    background: #fff;
    border-radius: 12px;
    border-top: 4px solid transparent;
    border-image: var(--ml-gradient) 1;
    border-image-slice: 1;
    padding: 36px 32px;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(11,125,255,.08);
}
.ml-about-box-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--ml-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0;
}
.ml-about-box h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #070D2F;
    margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif;
}
.ml-about-box p {
    font-size: .95rem;
    color: #697089;
    line-height: 1.8;
    margin: 0;
    flex: 1;
}

/* ================================================================
   SERVICE DETAIL PAGE
   ================================================================ */
.vl-service-deatil { background: #fff; }
.vl-service-details-larg-img img { border-radius: 12px; }
.vl-text-cmn-blck { color: #070D2F; }
.vl-text-para { color: #697089; }
.vl-service-details-cat {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    border-top: 1px solid #e4e8f7;
    border-bottom: 1px solid #e4e8f7;
}
.vl-service-details-cat-single h3 { color: #070D2F; font-family: 'Montserrat', sans-serif; font-weight: 700; }
.vl-service-details-cat-single p { color: #697089; }
.vl-service-box-icon { flex-shrink: 0; margin-right: 16px; }
.vl-service-box-icon span img { width: 48px; height: 48px; object-fit: contain; }
.vl-service-box-content h3 a { color: #070D2F; font-weight: 700; }
.vl-service-box-content h3 a:hover { color: #0B7DFF; }
.vl-service-box-content p { color: #697089; font-size: .9rem; }
.service-description ul { padding-left: 20px; color: #697089; }
.service-description ul li { margin-bottom: 8px; line-height: 1.7; }
.service-description p { color: #697089; line-height: 1.8; margin-bottom: 16px; }

/* WhatsApp CTA button */
.theme-btn-whatsapp {
    background: #25D366 !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}
.theme-btn-whatsapp:hover {
    background: #1ebe57 !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* Service detail CTA gap */
.vl-service-detail-cta { padding: 0 0 16px; }

/* ================================================================
   CASE STUDY DETAIL PAGE
   ================================================================ */
.vl-block-content h3 { color: #070D2F; font-family: 'Montserrat', sans-serif; font-weight: 800; }
.vl-block-content p { color: #697089; line-height: 1.9; }
.vl-block-content div.vl-text-para p { color: #697089; line-height: 1.9; }

@media (max-width: 767px) {
    .vl-breadcrumb-img,
    .vl-hero-shape-4,
    .vl-breadcrumb-fan { display: none; }
    .vl-breadcrumb-bg { padding-top: 100px !important; padding-bottom: 20px !important; }

}
/* ================================================================
   CASE STUDIES CARDS
   ================================================================ */
.vl-gallery-testimonial-2-con { padding: 10px !important; }

/* Hover overlay uses brand gradient instead of dark */
.vl-gallery-testimonial-2:hover:after { background: linear-gradient(135deg, rgba(11,125,255,.7), rgba(104,23,255,.7)); }

/* Service / case study detail large image — natural height */
.vl-service-details-larg-img img { height: auto !important; object-fit: unset !important; }

/* ================================================================
   BRAND PAGINATION
   ================================================================ */
.vl-pagination { display: flex; justify-content: center; margin-top: 20px; }
.vl-pagination-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}
.vl-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: #070D2F;
    background: #F7F9FF;
    border: 1.5px solid #e4e8f7;
    text-decoration: none;
    transition: all .25s;
    cursor: pointer;
}
.vl-page-link:hover {
    background: linear-gradient(135deg, #0B7DFF, #0552CC);
    color: #fff;
    border-color: transparent;
}
.vl-page-item.active .vl-page-link {
    background: linear-gradient(135deg, #0B7DFF, #0552CC);
    color: #fff;
    border-color: transparent;
}
.vl-page-item.disabled .vl-page-link {
    opacity: .4;
    cursor: not-allowed;
    pointer-events: none;
}
.vl-page-prev,
.vl-page-next {
    font-size: 13px;
    background: #070D2F;
    color: #fff;
    border-color: #070D2F;
}
.vl-page-prev:hover,
.vl-page-next:hover {
    background: linear-gradient(135deg, #0B7DFF, #0552CC);
    border-color: transparent;
}

.vl-block-quote {
    padding: 32px 36px;
    border-left: 4px solid #0B7DFF;
}
.vl-block-quote p { color: #697089; font-style: italic; line-height: 1.9; }
.vl-block-grid { }
.vl-block-check { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.vl-block-check h3 {
    font-size: .95rem;
    font-weight: 600;
    color: #070D2F;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
}
.vl-block-check h3 span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--ml-gradient);
    color: #fff;
    font-size: .75rem;
    flex-shrink: 0;
    margin-top: 1px;
}
@media (max-width: 576px) {
    .vl-block-check { grid-template-columns: 1fr; }
}
.vl-service-details-content-check ul { list-style: none; padding: 0; margin: 0; }
.vl-service-details-content-check ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #070D2F;
    margin-bottom: 12px;
}
.vl-service-details-content-check ul li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--ml-gradient);
    color: #fff;
    font-size: .75rem;
    flex-shrink: 0;
}

/* ================================================================
   SERVICES PAGE — section spacing & gray card variant
   ================================================================ */
.vl-service-area,
.vl-service-area.vl-gray-bg-4 { margin-top: 20px; }
.vl-service-icon-box-4-bg {
    background: #F7F9FF !important;
}
.vl-service-icon-box-4-bg:hover {
    background: #fff !important;
}

/* ================================================================
   CASE STUDY CARDS — poligon "Read More" overlay
   ================================================================ */
.vl-gallery-poligon h3 a {
    color: #070D2F !important;
    font-size: 13px !important;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .02em;
}
.vl-gallery-poligon h3 a:hover { color: #0B7DFF !important; }
.vl-gallery-poligon .blu-bg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0B7DFF;
    color: #fff;
}

/* ================================================================
   SERVICES PAGE — equal height cards
   ================================================================ */
.vl-service-area .row { align-items: stretch; }
.vl-service-area [class*="col-"] { display: flex; }
.vl-service-icon-box-4 {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.vl-service-icon-box-4-content4 {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.vl-service-icon-box-4-content4 .readmore { margin-top: auto; }

