/* ZEBRONET professional visual refresh
   Loaded after the original theme so existing content and functionality remain intact. */

:root {
    --zeb-navy: #071a33;
    --zeb-navy-2: #0c2749;
    --zeb-blue: #086ad8;
    --zeb-blue-dark: #0455b3;
    --zeb-cyan: #35b7ee;
    --zeb-sky: #eaf5ff;
    --zeb-ink: #172033;
    --zeb-body: #526078;
    --zeb-muted: #718096;
    --zeb-line: #dce7f3;
    --zeb-soft: #f5f9fd;
    --zeb-white: #ffffff;
    --zeb-success: #24c875;
    --zeb-radius-sm: 12px;
    --zeb-radius: 20px;
    --zeb-radius-lg: 30px;
    --zeb-shadow-sm: 0 10px 30px rgba(7, 26, 51, 0.08);
    --zeb-shadow: 0 22px 60px rgba(7, 26, 51, 0.12);
    --zeb-shadow-hover: 0 28px 75px rgba(7, 26, 51, 0.17);
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    color: var(--zeb-body) !important;
    background: var(--zeb-white);
    font-family: "Segoe UI Variable", "Segoe UI", Inter, Arial, sans-serif !important;
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::selection {
    color: var(--zeb-white);
    background: var(--zeb-blue);
}

a {
    transition: color .22s ease, background-color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

img {
    max-width: 100%;
}

p,
.text,
.sub-heading,
.section-under-heading,
.testimonial-slider__text,
.footer-widget__list li,
.footer-widget__list a {
    line-height: 1.75;
}

.heading,
h1, h2, h3, h4, h5, h6 {
    color: var(--zeb-ink);
    font-family: "Segoe UI Variable Display", "Segoe UI", Inter, Arial, sans-serif !important;
    letter-spacing: -0.025em;
}

.heading {
    font-weight: 750 !important;
}

.text-color-primary {
    color: var(--zeb-blue) !important;
}

.container {
    max-width: 1200px;
}

/* Top contact strip */
.site-topbar {
    position: relative;
    z-index: 1001;
    color: rgba(255, 255, 255, .88);
    background: linear-gradient(90deg, var(--zeb-navy), var(--zeb-navy-2));
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.site-topbar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-topbar__contact,
.site-topbar__social {
    display: flex;
    align-items: center;
}

.site-topbar__contact {
    gap: 24px;
}

.site-topbar__contact a,
.site-topbar__social a {
    color: rgba(255, 255, 255, .86) !important;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .015em;
}

.site-topbar__contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-topbar__contact a:hover,
.site-topbar__social a:hover {
    color: var(--zeb-white) !important;
}

.site-topbar__contact i {
    color: var(--zeb-cyan);
}

.site-topbar__social {
    gap: 7px;
}

.site-topbar__social a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.site-topbar__social a:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-1px);
}

/* Header and navigation */
.header-area,
.header-bottom-wrap,
.header {
    min-height: 82px !important;
}

.header-area {
    position: relative;
    z-index: 1000;
}

.header-bottom-wrap {
    border-bottom: 1px solid rgba(7, 26, 51, .06);
    transition: box-shadow .25s ease, transform .25s ease, background-color .25s ease;
}

.header-bottom-wrap.is-sticky {
    background: rgba(255, 255, 255, .96) !important;
    box-shadow: 0 12px 38px rgba(7, 26, 51, .10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header__logo a {
    display: inline-flex;
    align-items: center;
}

.header__logo img {
    width: 160px;
    height: 48px;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.navigation-menu > ul {
    display: flex;
    align-items: center;
    gap: 2px;
}

.navigation-menu > ul > li {
    margin: 0 !important;
}

.navigation-menu > ul > li > a {
    position: relative;
    padding: 30px 10px !important;
    color: #24334c !important;
    font-size: 14px;
    font-weight: 650 !important;
    letter-spacing: -.01em;
}

.navigation-menu > ul > li > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 20px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--zeb-blue), var(--zeb-cyan));
    transform: translateX(-50%);
    transition: width .22s ease;
}

.navigation-menu > ul > li:hover > a,
.navigation-menu > ul > li.is-active > a {
    color: var(--zeb-blue) !important;
}

.navigation-menu > ul > li:hover > a::after,
.navigation-menu > ul > li.is-active > a::after {
    width: 28px;
}

.header-contact-button {
    min-height: 46px;
    padding: 0 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--zeb-white) !important;
    background: linear-gradient(135deg, var(--zeb-blue), #0b85e8);
    border: 1px solid transparent;
    border-radius: 13px;
    box-shadow: 0 12px 28px rgba(8, 106, 216, .24);
    font-size: 13px;
    font-weight: 750;
    white-space: nowrap;
}

.header-contact-button:hover {
    color: var(--zeb-white) !important;
    background: linear-gradient(135deg, var(--zeb-blue-dark), var(--zeb-blue));
    box-shadow: 0 16px 35px rgba(8, 106, 216, .32);
    transform: translateY(-2px);
}

.header-contact-button i {
    font-size: 11px;
}

.mobile-navigation-icon {
    width: 46px !important;
    height: 46px !important;
    padding: 0 !important;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--zeb-soft) !important;
    border: 1px solid var(--zeb-line) !important;
    border-radius: 13px;
    cursor: pointer;
}

.mobile-navigation-icon i,
.mobile-navigation-icon i::before,
.mobile-navigation-icon i::after {
    background-color: var(--zeb-navy) !important;
}

/* General section rhythm */
.section-space--ptb_100 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
}

.section-space--pt_100 {
    padding-top: 110px !important;
}

.section-space--pb_100 {
    padding-bottom: 110px !important;
}

.section-space--ptb_120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
}

.section-title-wrap {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 52px;
}

.section-title-wrap .heading {
    margin-bottom: 0;
    font-size: clamp(32px, 3vw, 46px);
    line-height: 1.18;
}

.section-sub-title {
    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 7px 14px 7px 31px;
    color: var(--zeb-blue) !important;
    background: var(--zeb-sky);
    border: 1px solid rgba(8, 106, 216, .12);
    border-radius: 999px;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: .11em;
    line-height: 1.3;
    text-transform: uppercase;
}

.section-sub-title::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--zeb-blue), var(--zeb-cyan));
    box-shadow: 0 0 0 4px rgba(8, 106, 216, .10);
    transform: translateY(-50%);
}

/* Buttons */
.ht-btn,
.ht-btn.ht-btn-md,
button.ht-btn,
input[type="submit"].ht-btn {
    min-height: 52px;
    padding: 0 26px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 14px !important;
    color: var(--zeb-white) !important;
    background: linear-gradient(135deg, var(--zeb-blue), #0c85e7) !important;
    box-shadow: 0 14px 32px rgba(8, 106, 216, .24);
    font-size: 15px;
    font-weight: 750;
    letter-spacing: -.01em;
}

.ht-btn:hover,
.ht-btn.ht-btn-md:hover,
button.ht-btn:hover,
input[type="submit"].ht-btn:hover {
    color: var(--zeb-white) !important;
    background: linear-gradient(135deg, var(--zeb-blue-dark), var(--zeb-blue)) !important;
    box-shadow: 0 18px 40px rgba(8, 106, 216, .32);
    transform: translateY(-2px);
}

/* Home hero */
.infotechno-hero {
    position: relative;
    min-height: 660px !important;
    height: auto !important;
    padding: 76px 0 72px;
    background:
        radial-gradient(circle at 85% 25%, rgba(53, 183, 238, .16), transparent 28%),
        radial-gradient(circle at 10% 85%, rgba(8, 106, 216, .10), transparent 30%),
        linear-gradient(135deg, #f7fbff 0%, #edf7ff 48%, #f9fcff 100%) !important;
    overflow: hidden;
}

.infotechno-hero::before,
.infotechno-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.infotechno-hero::before {
    width: 420px;
    height: 420px;
    top: -250px;
    right: -110px;
    border: 70px solid rgba(8, 106, 216, .045);
}

.infotechno-hero::after {
    width: 220px;
    height: 220px;
    left: -130px;
    bottom: -70px;
    background: rgba(53, 183, 238, .08);
}

.infotechno-hero > .container,
.infotechno-hero > .container > .row {
    position: relative;
    z-index: 1;
    min-height: 510px !important;
}

.infotechno-hero-text {
    max-width: 590px;
    min-height: 0 !important;
    padding-right: 24px;
}

.infotechno-hero-text::before {
    content: "Your Business, Our Solutions.";
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-bottom: 18px;
    padding: 5px 13px;
    color: var(--zeb-blue);
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(8, 106, 216, .15);
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(7, 26, 51, .05);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.infotechno-hero-text h1 {
    min-height: 0 !important;
    margin-bottom: 20px !important;
    color: var(--zeb-navy);
    font-size: clamp(44px, 4.2vw, 66px) !important;
    font-weight: 780 !important;
    line-height: 1.08 !important;
    letter-spacing: -.045em;
}

.infotechno-hero-text p {
    max-width: 560px;
    min-height: 0 !important;
    margin-bottom: 0;
    color: #4c5d75 !important;
    font-size: 18px;
    line-height: 1.75;
}

.infotechno-hero-inner-images {
    min-height: 520px !important;
    height: 520px !important;
    isolation: isolate;
}

.infotechno-hero-inner-images::before {
    content: "";
    position: absolute;
    inset: 52px 40px 25px 45px;
    z-index: -1;
    border: 1px solid rgba(8, 106, 216, .10);
    border-radius: 42% 58% 51% 49% / 45% 38% 62% 55%;
    background: linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(226, 243, 255, .74));
    box-shadow: 0 35px 80px rgba(7, 26, 51, .13);
}

.infotechno-inner-one {
    opacity: .80;
}

.infotechno-inner-two img {
    filter: drop-shadow(0 25px 35px rgba(7, 26, 51, .12));
}

/* SEO audit callout */
.seo-audit-cta {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding: 56px 20px !important;
    background: var(--zeb-navy) !important;
    overflow: hidden;
}

.seo-audit-cta::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -270px;
    right: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(53, 183, 238, .35), transparent 68%);
}

.seo-audit-cta-inner {
    position: relative;
    max-width: 1160px !important;
    padding: 34px 38px !important;
    border-radius: 24px !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .055)) !important;
    border: 1px solid rgba(255, 255, 255, .16) !important;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .18) !important;
    backdrop-filter: blur(8px);
}

.seo-audit-badge {
    color: #b9fbd7 !important;
    background: rgba(36, 200, 117, .12) !important;
    border-color: rgba(36, 200, 117, .28) !important;
}

.seo-audit-cta h2 {
    font-size: clamp(28px, 3vw, 40px) !important;
    letter-spacing: -.035em;
}

.seo-audit-cta p {
    color: #c8d6e7 !important;
}

.seo-audit-btn {
    min-width: 220px !important;
    min-height: 56px !important;
    border-radius: 14px !important;
    color: #063a23 !important;
}

/* Card systems: products, services and benefits */
.feature-images-wrapper.bg-gray,
.bg-gray,
.bg-gray-3 {
    background-color: var(--zeb-soft) !important;
}

.feature-images-wrapper {
    position: relative;
}

.feature-images-wrapper .row > [class*="col-"] {
    display: flex;
}

.feature-images-wrapper .ht-box-images,
.feature-images-wrapper .image-box-wrap {
    width: 100%;
}

.ht-box-images.style-01 .image-box-wrap,
.ht-box-images.style-09 .image-box-wrap,
.ht-box-images.style-04,
.ht-box-images.style-06 .image-box-wrap {
    position: relative;
    height: 100%;
    padding: 34px 30px !important;
    background: var(--zeb-white) !important;
    border: 1px solid rgba(8, 106, 216, .11) !important;
    border-radius: var(--zeb-radius) !important;
    box-shadow: var(--zeb-shadow-sm) !important;
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.ht-box-images.style-01 .image-box-wrap::before,
.ht-box-images.style-09 .image-box-wrap::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--zeb-blue), var(--zeb-cyan));
    opacity: 0;
    transition: opacity .25s ease;
}

.ht-box-images.style-01 .image-box-wrap:hover,
.ht-box-images.style-09 .image-box-wrap:hover,
.ht-box-images.style-04:hover,
.ht-box-images.style-06 .image-box-wrap:hover {
    border-color: rgba(8, 106, 216, .23) !important;
    box-shadow: var(--zeb-shadow-hover) !important;
    transform: translateY(-7px);
}

.ht-box-images.style-01 .image-box-wrap:hover::before,
.ht-box-images.style-09 .image-box-wrap:hover::before {
    opacity: 1;
}

.ht-box-images.style-01 .box-image,
.ht-box-images.style-09 .box-image {
    width: 82px;
    height: 82px;
    margin: 0 auto 24px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(145deg, #eff8ff, #e0f1ff);
    box-shadow: inset 0 0 0 1px rgba(8, 106, 216, .08);
}

.ht-box-images.style-01 .box-image img,
.ht-box-images.style-09 .box-image img {
    max-width: 58px;
    max-height: 58px;
    object-fit: contain;
}

.ht-box-images .content .heading,
.ht-box-images .content .card-heading {
    margin-bottom: 13px !important;
    color: var(--zeb-ink) !important;
    font-size: 20px !important;
    font-weight: 750 !important;
    line-height: 1.3 !important;
}

.ht-box-images .content .text {
    color: var(--zeb-body) !important;
    font-size: 15px;
    line-height: 1.75;
}

.ht-box-images .circle-arrow {
    margin-top: 22px;
}

.ht-box-images .circle-arrow a,
.more-arrow-link a {
    color: var(--zeb-blue) !important;
}

.ht-box-images .circle-arrow a:hover,
.more-arrow-link a:hover {
    color: var(--zeb-blue-dark) !important;
}

/* Home company / numbered list section */
.infotechno-section-bg-01 {
    position: relative;
    background:
        linear-gradient(rgba(255,255,255,.96), rgba(255,255,255,.96)),
        url("../images/patterns/mitech-home-infotechno-section-company-bg.webp") center/cover no-repeat !important;
}

.infotechno-section-bg-01 .heading {
    font-size: clamp(34px, 3.2vw, 48px);
    line-height: 1.2;
}

.ht-list.style-auto-numbered-02 .list-item {
    position: relative;
    margin-bottom: 18px !important;
    padding: 25px 26px 25px 82px !important;
    background: var(--zeb-white);
    border: 1px solid var(--zeb-line);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(7, 26, 51, .055);
}

.ht-list.style-auto-numbered-02 .list-item:hover {
    border-color: rgba(8, 106, 216, .22);
    box-shadow: var(--zeb-shadow-sm);
    transform: translateX(4px);
}

.ht-list.style-auto-numbered-02 .marker {
    left: 24px !important;
    top: 25px !important;
    color: var(--zeb-white) !important;
    background: linear-gradient(135deg, var(--zeb-blue), var(--zeb-cyan));
    border-radius: 13px;
    box-shadow: 0 10px 24px rgba(8, 106, 216, .23);
}

.ht-list.style-auto-numbered-02 .title,
.ht-list.style-auto-numbered-02 .list-title {
    color: var(--zeb-ink) !important;
    font-size: 18px !important;
    font-weight: 750 !important;
}

/* Breadcrumbs and page banners */
.breadcrumb-area {
    position: relative;
    padding: 88px 0 !important;
    background:
        radial-gradient(circle at 80% 30%, rgba(53, 183, 238, .20), transparent 25%),
        linear-gradient(135deg, var(--zeb-navy) 0%, #0b315d 58%, #0b4f87 100%) !important;
    overflow: hidden;
}

.breadcrumb-area::before,
.breadcrumb-area::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.breadcrumb-area::before {
    width: 330px;
    height: 330px;
    top: -230px;
    left: -80px;
    border: 58px solid rgba(255,255,255,.045);
}

.breadcrumb-area::after {
    width: 150px;
    height: 150px;
    right: 10%;
    bottom: -95px;
    background: rgba(255,255,255,.05);
}

.breadcrumb_box {
    position: relative;
    z-index: 1;
}

.breadcrumb-title {
    margin: 0;
    color: var(--zeb-white) !important;
    font-size: clamp(38px, 4vw, 56px) !important;
    font-weight: 780 !important;
    line-height: 1.12;
    letter-spacing: -.045em;
}

.about-banner-wrap {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    background-position: center !important;
    overflow: hidden;
}

.about-banner-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 26, 51, .90) 0%, rgba(7, 26, 51, .72) 52%, rgba(7, 26, 51, .28) 100%);
}

.about-banner-wrap .container {
    position: relative;
    z-index: 1;
}

.about-banner-wrap h1 {
    font-size: clamp(42px, 4vw, 60px);
    font-weight: 780;
    letter-spacing: -.045em;
}

.about-banner-wrap h5 {
    max-width: 720px;
    color: rgba(255,255,255,.84) !important;
    line-height: 1.7;
}

/* About page */
.feature-large-images-wrapper .heading,
.about-delivering-wrapper .heading {
    line-height: 1.22;
}

.feature-large-images-wrapper .large-image-box,
.feature-large-images-wrapper .main-content,
.about-delivering-wrapper .delivering-optimal-wrap {
    border-radius: var(--zeb-radius);
}

.feature-large-images-wrapper .main-content {
    padding: 34px !important;
    background: var(--zeb-white);
    border: 1px solid var(--zeb-line);
    box-shadow: var(--zeb-shadow-sm);
}

.ht-box-icon.style-02,
.delivering-optimal-wrap {
    height: 100%;
    padding: 27px !important;
    background: var(--zeb-white);
    border: 1px solid var(--zeb-line);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(7, 26, 51, .06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.ht-box-icon.style-02:hover,
.delivering-optimal-wrap:hover {
    border-color: rgba(8,106,216,.20);
    box-shadow: var(--zeb-shadow);
    transform: translateY(-5px);
}

.fun-fact-wrapper.bg-theme-default {
    position: relative;
    background: linear-gradient(135deg, var(--zeb-navy), #0a3c70) !important;
    overflow: hidden;
}

.fun-fact-wrapper.bg-theme-default::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -220px;
    top: -260px;
    border-radius: 50%;
    border: 70px solid rgba(255,255,255,.045);
}

.fun-fact--two {
    position: relative;
    z-index: 1;
    padding: 25px 10px;
}

.fun-fact__count,
.fun-fact__text {
    color: var(--zeb-white) !important;
}

.fun-fact__count {
    font-weight: 800;
}

.fun-fact__text {
    color: rgba(255,255,255,.78) !important;
    letter-spacing: .02em;
}

/* Testimonials */
.testimonial-slider-area {
    position: relative;
}

.testimonial-slider__single {
    height: 100%;
    padding: 34px !important;
    background: var(--zeb-white) !important;
    border: 1px solid var(--zeb-line) !important;
    border-radius: var(--zeb-radius) !important;
    box-shadow: var(--zeb-shadow-sm) !important;
}

.testimonial-subject {
    color: var(--zeb-ink) !important;
    font-size: 18px !important;
    font-weight: 750 !important;
}

.testimonial-slider__text {
    position: relative;
    color: var(--zeb-body) !important;
    font-size: 15px;
}

.testimonial-slider__media img {
    border: 3px solid var(--zeb-white);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(7, 26, 51, .12);
}

.testimonial-slider__author .name {
    color: var(--zeb-ink) !important;
}

.swiper-pagination-bullet-active {
    background: var(--zeb-blue) !important;
}

/* Contact callout shared across pages */
.infotechno-contact-us-bg,
.contact-us-area.infotechno-contact-us-bg,
.contact-us-section-wrappaer.infotechno-contact-us-bg {
    position: relative;
    background:
        radial-gradient(circle at 12% 20%, rgba(53,183,238,.14), transparent 25%),
        linear-gradient(135deg, var(--zeb-navy), #0b3768) !important;
    overflow: hidden;
}

.infotechno-contact-us-bg::after {
    content: "";
    position: absolute;
    width: 410px;
    height: 410px;
    right: -220px;
    bottom: -250px;
    border: 65px solid rgba(255,255,255,.045);
    border-radius: 50%;
}

.infotechno-contact-us-bg .container {
    position: relative;
    z-index: 1;
}

.infotechno-contact-us-bg .heading,
.infotechno-contact-us-bg .call-us a,
.infotechno-contact-us-bg .talk-heading,
.infotechno-contact-us-bg h2,
.infotechno-contact-us-bg h3,
.infotechno-contact-us-bg h6 {
    color: var(--zeb-white) !important;
}

.infotechno-contact-us-bg .sub-heading,
.infotechno-contact-us-bg p,
.infotechno-contact-us-bg .text {
    color: rgba(255,255,255,.75) !important;
}

.infotechno-contact-us-bg .call-us a:hover {
    color: var(--zeb-cyan) !important;
}

/* Services and products pages */
.feature-images-wrapper:not(.bg-gray) {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.feature-images-wrapper .section-under-heading {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: var(--zeb-body) !important;
    font-size: 17px;
}

/* Careers */
.careers-experts-wrapper {
    background:
        radial-gradient(circle at 90% 10%, rgba(53,183,238,.09), transparent 20%),
        linear-gradient(180deg, #ffffff, #f7fbff);
}

.careers-experts-wrapper .section-title-wrap {
    max-width: 900px;
}

.job-description {
    margin-bottom: 26px;
    padding: 30px 32px !important;
    background: var(--zeb-white);
    border: 1px solid var(--zeb-line);
    border-left: 5px solid var(--zeb-blue);
    border-radius: 18px;
    box-shadow: var(--zeb-shadow-sm);
}

.job-description h5 {
    color: var(--zeb-navy);
    font-size: 21px;
    font-weight: 780;
}

.job-description h6 {
    margin-top: 20px;
    color: var(--zeb-blue);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.job-description ul,
.job-description ol {
    padding-left: 20px;
}

.job-description li {
    margin-bottom: 7px;
    color: var(--zeb-body);
}

/* Contact page */
.page-contact .contact-us-section-wrappaer {
    position: relative;
    background:
        radial-gradient(circle at 10% 15%, rgba(53,183,238,.08), transparent 20%),
        linear-gradient(180deg, #ffffff, #f7fbff);
}

.contact-form-wrap {
    padding: 38px !important;
    background: var(--zeb-white);
    border: 1px solid var(--zeb-line);
    border-radius: 24px;
    box-shadow: var(--zeb-shadow);
}

.contact-inner {
    margin-bottom: 18px !important;
}

.contact-inner input,
.contact-inner textarea,
.contact-inner select {
    min-height: 56px;
    padding: 14px 17px !important;
    color: var(--zeb-ink) !important;
    background: #f8fbfe !important;
    border: 1px solid #d7e4f1 !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.contact-inner textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-inner input:focus,
.contact-inner textarea:focus,
.contact-inner select:focus {
    background: var(--zeb-white) !important;
    border-color: var(--zeb-blue) !important;
    box-shadow: 0 0 0 4px rgba(8,106,216,.10) !important;
}

.contact-inner input::placeholder,
.contact-inner textarea::placeholder {
    color: #8290a5;
}

.contact-us-info-wrappaer .single-contact-list {
    height: 100%;
    padding: 31px !important;
    background: var(--zeb-white);
    border: 1px solid var(--zeb-line);
    border-radius: 18px;
    box-shadow: var(--zeb-shadow-sm);
}

.contact-us-info-wrappaer .single-contact-list .icon {
    color: var(--zeb-blue) !important;
}

.contact-us-info-wrappaer .heading {
    color: var(--zeb-ink) !important;
}

.cta-image-area_one {
    position: relative;
    overflow: hidden;
}

.cta-image-area_one::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7,26,51,.88), rgba(7,26,51,.58));
}

.cta-image-area_one .container {
    position: relative;
    z-index: 1;
}

.cta-image-area_one .heading,
.cta-image-area_one p,
.cta-image-area_one .text-color-primary {
    color: var(--zeb-white) !important;
}

/* Footer */
.footer-area-wrapper {
    position: relative;
    color: rgba(255,255,255,.70);
    background:
        radial-gradient(circle at 10% 10%, rgba(53,183,238,.11), transparent 22%),
        linear-gradient(145deg, #061426, #081c34 56%, #0a294b) !important;
}

.footer-accent-line {
    height: 4px;
    background: linear-gradient(90deg, var(--zeb-blue), var(--zeb-cyan), var(--zeb-blue));
}

.footer-area {
    padding-top: 80px !important;
    padding-bottom: 60px !important;
}

.footer-widget__logo {
    display: inline-flex;
    padding: 10px 14px;
    background: var(--zeb-white);
    border-radius: 12px;
}

.footer-widget__title {
    position: relative;
    padding-bottom: 12px;
    color: var(--zeb-white) !important;
    font-size: 17px !important;
    font-weight: 750 !important;
}

.footer-widget__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--zeb-blue), var(--zeb-cyan));
}

.footer-widget__list li,
.footer-widget__list a,
.footer-widget__list .text-black,
.footer-widget__list .font-weight--bold {
    color: rgba(255,255,255,.69) !important;
}

.footer-widget__list li {
    margin-bottom: 9px;
}

.footer-widget__list a:hover,
.footer-widget__list .hover-style-link:hover {
    color: var(--zeb-white) !important;
    padding-left: 4px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-list i {
    width: 18px;
    margin-top: 6px;
    color: var(--zeb-cyan);
    text-align: center;
}

.footer-contact-list a:hover {
    padding-left: 0 !important;
}

.footer-copyright-area {
    padding: 22px 0 !important;
    border-top: 1px solid rgba(255,255,255,.10);
}

.footer-copyright-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.copyright-text {
    color: rgba(255,255,255,.58) !important;
    font-size: 13px;
}

.footer-copyright-area .ht-social-networks {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-copyright-area .ht-social-networks .item {
    margin: 0 !important;
}

.footer-copyright-area .social-link {
    width: 36px !important;
    height: 36px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.76) !important;
    background: rgba(255,255,255,.07) !important;
    border: 1px solid rgba(255,255,255,.10);
}

.footer-copyright-area .social-link:hover {
    color: var(--zeb-white) !important;
    background: var(--zeb-blue) !important;
    border-color: var(--zeb-blue);
    transform: translateY(-3px);
}

/* Floating WhatsApp */
.whatsapp-popup {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1000;
    width: 66px;
    min-width: 66px;
    height: 66px;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--zeb-white);
    background: linear-gradient(145deg, #2ee574, #16a956) !important;
    border: 3px solid rgba(255,255,255,.92) !important;
    border-radius: 50% !important;
    box-shadow: 0 15px 34px rgba(19, 151, 76, .36), 0 0 0 1px rgba(37,211,102,.18) !important;
    cursor: pointer;
    isolation: isolate;
    overflow: visible;
    transition: bottom .35s ease, transform .25s ease, box-shadow .25s ease, background .25s ease !important;
}

/* Rotating outer border */
.whatsapp-popup::before {
    content: "";
    position: absolute;
    inset: -9px;
    z-index: -1;
    border: 2px solid rgba(37,211,102,.55);
    border-top-color: #ffffff;
    border-right-color: rgba(255,255,255,.18);
    border-radius: 50%;
    animation: zebWhatsAppSpin 3.2s linear infinite;
    pointer-events: none;
}

/* Soft expanding pulse */
.whatsapp-popup::after {
    content: "";
    position: absolute;
    inset: -5px;
    z-index: -2;
    border: 2px solid rgba(37,211,102,.48);
    border-radius: 50%;
    animation: zebWhatsAppPulse 2.1s ease-out infinite;
    pointer-events: none;
}

.whatsapp-popup:hover,
.whatsapp-popup:focus-visible {
    color: var(--zeb-white);
    background: linear-gradient(145deg, #34ef7d, #119447) !important;
    box-shadow: 0 20px 44px rgba(19, 151, 76, .46), 0 0 0 5px rgba(37,211,102,.10) !important;
    transform: translateY(-4px) scale(1.04);
}

.whatsapp-popup:active {
    transform: translateY(-1px) scale(.97);
}

.whatsapp-popup__icon-wrap {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 28%, rgba(255,255,255,.22), transparent 42%);
}

.whatsapp-popup__label {
    position: absolute;
    right: 80px;
    top: 50%;
    width: max-content;
    padding: 9px 13px;
    color: #ffffff;
    background: #0b2746;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 10px;
    box-shadow: 0 10px 26px rgba(2,16,33,.24);
    font-size: 13px;
    font-weight: 750;
    line-height: 1;
    opacity: 0;
    visibility: hidden;
    transform: translate(8px, -50%);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    pointer-events: none;
}

.whatsapp-popup__label::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    width: 11px;
    height: 11px;
    background: #0b2746;
    border-top: 1px solid rgba(255,255,255,.14);
    border-right: 1px solid rgba(255,255,255,.14);
    transform: translateY(-50%) rotate(45deg);
}

.whatsapp-popup:hover .whatsapp-popup__label,
.whatsapp-popup:focus-visible .whatsapp-popup__label {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
}

.whatsapp-icon-popup {
    width: 32px !important;
    height: 32px !important;
    filter: brightness(0) invert(1);
    transform: none !important;
}

/* Keep floating controls above the copyright/social row when the footer enters view. */
body.footer-is-visible .whatsapp-popup {
    bottom: 106px;
}

body.footer-is-visible .scroll-top {
    right: 100px !important;
    bottom: 108px !important;
}

@keyframes zebWhatsAppSpin {
    to { transform: rotate(360deg); }
}

@keyframes zebWhatsAppPulse {
    0% { opacity: .62; transform: scale(.96); }
    72%, 100% { opacity: 0; transform: scale(1.30); }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-popup::before,
    .whatsapp-popup::after {
        animation: none !important;
    }
}

/* Scroll to top */
.scroll-top {
    right: 24px !important;
    bottom: 94px !important;
    width: 45px !important;
    height: 45px !important;
    color: var(--zeb-white) !important;
    background: var(--zeb-navy) !important;
    border-radius: 13px !important;
    box-shadow: 0 12px 28px rgba(7,26,51,.22);
}

.scroll-top:hover {
    background: var(--zeb-blue) !important;
    transform: translateY(-2px);
}

/* Mobile off-canvas */
.mobile-menu-overlay {
    background: rgba(7, 26, 51, .58) !important;
    backdrop-filter: blur(5px);
}

.mobile-menu-overlay__inner {
    max-width: 390px !important;
    background: var(--zeb-white) !important;
    box-shadow: -25px 0 80px rgba(7,26,51,.20);
}

.mobile-menu-overlay__header {
    padding: 19px 22px !important;
    border-bottom: 1px solid var(--zeb-line);
}

.mobile-menu-overlay__header .logo img {
    width: 150px;
    height: auto;
}

.mobile-navigation-close-icon {
    width: 42px;
    height: 42px;
    padding: 0;
    background: var(--zeb-soft) !important;
    border: 1px solid var(--zeb-line) !important;
    border-radius: 12px;
}

.mobile-menu-overlay__body {
    padding: 18px 24px 32px !important;
}

.offcanvas-navigation > ul > li {
    border-bottom: 1px solid #edf2f7 !important;
}

.offcanvas-navigation > ul > li > a {
    padding: 15px 2px !important;
    color: var(--zeb-ink) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}

.offcanvas-navigation > ul > li > a:hover {
    color: var(--zeb-blue) !important;
    padding-left: 6px !important;
}

.mobile-menu-contact {
    margin-top: 28px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--zeb-soft);
    border: 1px solid var(--zeb-line);
    border-radius: 17px;
}

.mobile-menu-contact > a:not(.mobile-menu-cta) {
    color: var(--zeb-body) !important;
    font-size: 13px;
    font-weight: 650;
}

.mobile-menu-contact > a:not(.mobile-menu-cta) i {
    width: 20px;
    color: var(--zeb-blue);
}

.mobile-menu-cta {
    min-height: 48px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--zeb-white) !important;
    background: linear-gradient(135deg, var(--zeb-blue), #0c85e7);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 750;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(53,183,238,.48) !important;
    outline-offset: 3px;
}

/* Desktop fit adjustments */
@media only screen and (max-width: 1199px) {
    .navigation-menu > ul > li > a {
        padding-left: 7px !important;
        padding-right: 7px !important;
        font-size: 13px;
    }

    .header-contact-button {
        display: none;
    }

    .header-right {
        gap: 12px;
    }
}

@media only screen and (max-width: 991px) {
    .site-topbar__contact {
        gap: 16px;
    }

    .header-area,
    .header-bottom-wrap,
    .header {
        min-height: 74px !important;
    }

    .header__navigation {
        display: none !important;
    }

    .mobile-navigation-icon {
        display: inline-flex !important;
    }

    .infotechno-hero {
        min-height: 620px !important;
        padding: 64px 0;
    }

    .infotechno-hero > .container,
    .infotechno-hero > .container > .row {
        min-height: auto !important;
    }

    .infotechno-hero-text {
        padding-right: 0;
    }

    .infotechno-hero-text h1 {
        font-size: 44px !important;
    }

    .infotechno-hero-inner-images {
        min-height: 420px !important;
        height: 420px !important;
    }

    .footer-widget {
        margin-bottom: 42px;
    }
}

@media only screen and (max-width: 767px) {
    .site-topbar__inner {
        min-height: 34px;
    }

    .site-topbar__contact {
        width: 100%;
        justify-content: center;
        gap: 18px;
    }

    .site-topbar__contact a {
        font-size: 11px;
    }

    .site-topbar__contact a span {
        display: none;
    }

    .site-topbar__contact a:first-child span {
        display: inline;
    }

    .site-topbar__gcc,
    .site-topbar__social {
        display: none !important;
    }

    .header-area,
    .header-bottom-wrap,
    .header {
        min-height: 70px !important;
    }

    .header__logo img {
        width: 146px;
        height: auto;
    }

    .section-space--ptb_100,
    .section-space--ptb_120 {
        padding-top: 76px !important;
        padding-bottom: 76px !important;
    }

    .section-space--pt_100 {
        padding-top: 76px !important;
    }

    .section-space--pb_100 {
        padding-bottom: 76px !important;
    }

    .section-title-wrap {
        margin-bottom: 37px;
    }

    .section-title-wrap .heading {
        font-size: 31px;
    }

    .infotechno-hero {
        min-height: 0 !important;
        padding: 58px 0 36px;
        text-align: center;
    }

    .infotechno-hero-text {
        max-width: 100%;
        margin-top: 0 !important;
    }

    .infotechno-hero-text::before {
        margin-left: auto;
        margin-right: auto;
    }

    .infotechno-hero-text h1 {
        font-size: 39px !important;
        line-height: 1.12 !important;
    }

    .infotechno-hero-text p {
        font-size: 16px;
    }

    .hero-button {
        margin-top: 25px !important;
    }

    .infotechno-hero-inner-images {
        min-height: 310px !important;
        height: 310px !important;
        margin-top: 35px;
    }

    .infotechno-hero-inner-images::before {
        inset: 30px 18px 10px;
    }

    .seo-audit-cta {
        padding: 42px 15px !important;
    }

    .seo-audit-cta-inner {
        padding: 27px 23px !important;
    }

    .seo-audit-cta h2 {
        font-size: 29px !important;
    }

    .ht-box-images.style-01 .image-box-wrap,
    .ht-box-images.style-09 .image-box-wrap {
        padding: 29px 24px !important;
    }

    .breadcrumb-area {
        padding: 66px 0 !important;
    }

    .breadcrumb-title {
        font-size: 38px !important;
    }

    .about-banner-wrap {
        min-height: 410px;
        text-align: center;
    }

    .about-banner-wrap::before {
        background: rgba(7,26,51,.80);
    }

    .contact-form-wrap {
        margin-top: 25px;
        padding: 27px 22px !important;
    }

    .contact-input {
        display: block !important;
    }

    .job-description {
        padding: 25px 22px !important;
    }

    .footer-area {
        padding-top: 62px !important;
        padding-bottom: 24px !important;
    }

    .footer-copyright-inner {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-popup {
        right: 17px;
        bottom: 18px;
        width: 58px;
        min-width: 58px;
        height: 58px;
    }

    .whatsapp-popup::before {
        inset: -7px;
    }

    .whatsapp-popup__label {
        display: none;
    }

    .whatsapp-icon-popup {
        width: 29px !important;
        height: 29px !important;
    }

    .scroll-top {
        right: 19px !important;
        bottom: 88px !important;
    }

    body.footer-is-visible .whatsapp-popup {
        bottom: 112px;
    }

    body.footer-is-visible .scroll-top {
        right: 84px !important;
        bottom: 116px !important;
    }
}

@media only screen and (max-width: 420px) {
    .site-topbar__contact a:first-child span {
        max-width: 145px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .infotechno-hero-text h1 {
        font-size: 34px !important;
    }

    .section-title-wrap .heading {
        font-size: 28px;
    }

    .infotechno-hero-inner-images {
        min-height: 280px !important;
        height: 280px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* Fine-tuning for existing theme components */
.navigation-menu > ul > li > a span {
    white-space: nowrap;
}

.ht-box-images .circle-arrow {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 46px !important;
    height: 46px !important;
    margin: 24px auto 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.ht-box-images .circle-arrow .middle-dot {
    display: none !important;
}

.ht-box-images .circle-arrow a {
    position: static !important;
    width: 46px !important;
    height: 46px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    color: var(--zeb-white) !important;
    background: linear-gradient(135deg, var(--zeb-blue), #0c85e7) !important;
    border-radius: 50% !important;
    box-shadow: 0 12px 28px rgba(8,106,216,.24);
}

.ht-box-images .circle-arrow a:hover {
    color: var(--zeb-white) !important;
    background: linear-gradient(135deg, var(--zeb-blue-dark), var(--zeb-blue)) !important;
    transform: translateY(-2px);
}

.infotechno-contact-us-bg .btn--secondary,
.infotechno-contact-us-bg .contact-us-button a {
    min-height: 50px;
    padding: 0 25px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--zeb-white) !important;
    background: linear-gradient(135deg, var(--zeb-blue), #0c85e7) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 13px !important;
    box-shadow: 0 14px 30px rgba(0,0,0,.18);
    font-weight: 750;
}

.infotechno-contact-us-bg .btn--secondary:hover,
.infotechno-contact-us-bg .contact-us-button a:hover {
    color: var(--zeb-white) !important;
    background: linear-gradient(135deg, #0c85e7, var(--zeb-cyan)) !important;
    transform: translateY(-2px);
}

@media only screen and (max-width: 1099px) {
    .header__navigation {
        display: none !important;
    }

    .mobile-navigation-icon {
        display: inline-flex !important;
    }
}

.header__logo {
    width: auto !important;
    max-width: none !important;
    flex: 0 0 auto !important;
}

.header-right {
    min-width: 0;
    margin-left: auto;
    flex: 0 1 auto;
}

@media only screen and (max-width: 1399px) {
    .header-contact-button {
        display: none;
    }
}

.breadcrumb-area .breadcrumb_box p,
.breadcrumb-area .breadcrumb_box h4,
.breadcrumb-area .breadcrumb_box h5,
.breadcrumb-area .breadcrumb_box .sub-title,
.breadcrumb-area .breadcrumb_box .breadcrumb-subtitle {
    margin-top: 12px;
    color: rgba(255,255,255,.76) !important;
}

html.mobile-menu-open,
html.mobile-menu-open body {
    overflow: hidden;
}

/* Refined animated home hero artwork */
.infotechno-hero-inner-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infotechno-inner-one.hero-visual-orbit,
.infotechno-inner-two.hero-visual-main {
    position: absolute !important;
    inset: 0 !important;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infotechno-inner-one.hero-visual-orbit {
    z-index: 0;
    opacity: 1;
    pointer-events: none;
}

.infotechno-inner-two.hero-visual-main {
    z-index: 2;
}

.hero-visual-orbit img {
    width: 108%;
    max-width: none;
    height: 108%;
    object-fit: contain;
    animation: zebHeroOrbit 24s linear infinite;
    transform-origin: 50% 50%;
}

.hero-visual-main img {
    width: 108%;
    max-width: none;
    height: 108%;
    object-fit: contain;
    filter: drop-shadow(0 28px 34px rgba(7, 26, 51, .16));
    animation: zebHeroFloat 5.5s ease-in-out infinite;
}

.infotechno-hero-inner-images::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 17%;
    right: 14%;
    bottom: 5%;
    height: 13%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(7, 26, 51, .20) 0%, rgba(7, 26, 51, 0) 72%);
    filter: blur(9px);
    animation: zebHeroShadow 5.5s ease-in-out infinite;
}

@keyframes zebHeroFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -13px, 0); }
}

@keyframes zebHeroShadow {
    0%, 100% { transform: scale(.94); opacity: .52; }
    50% { transform: scale(1.02); opacity: .34; }
}

@keyframes zebHeroOrbit {
    from { transform: rotate(0deg) scale(1); }
    to { transform: rotate(360deg) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-visual-orbit img,
    .hero-visual-main img,
    .infotechno-hero-inner-images::after {
        animation: none !important;
    }
}

@media only screen and (max-width: 991px) {
    .hero-visual-main img,
    .hero-visual-orbit img {
        width: 102%;
        height: 102%;
    }
}

@media only screen and (max-width: 767px) {
    .hero-visual-main img {
        width: 110%;
        height: 110%;
    }

    .hero-visual-orbit img {
        width: 112%;
        height: 112%;
    }

    .infotechno-hero-inner-images::after {
        left: 15%;
        right: 12%;
        bottom: 2%;
    }
}
