/* ── Preloader CSS Start ── */
:root {
    --pre-spinner: #2264dc;
    /* spinner border color */
    --pre-theme: #000942;
    /* text + loading label */
    --pre-header: #2264dc;
    /* animated letter color */
    --pre-bg: #ffffff;
    /* panel wipe background */
}
.default-padding-top {
    padding-top: 40px !important;
}
/* ── Preloader Wrapper ── */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
    cursor: default;
}

/* ── Animation Center Block ── */
.preloader .animation-preloader {
    position: relative;
    z-index: 1000;
    text-align: center;
}

/* ── Spinner ── */
.preloader .animation-preloader .spinner {
    width: 9em;
    height: 9em;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--pre-spinner);
    margin: 0 auto 3.5em auto;
    animation: spinner 1s infinite linear;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ── Text COZENTUS ── */
.preloader .animation-preloader .txt-loading {
    font-size: 5em;
    font-weight: bold;
    font-family: sans-serif;
    text-align: center;
    user-select: none;
    line-height: 1;
}

/* ── Each Letter ── */
.preloader .animation-preloader .txt-loading .letters-loading {
    color: var(--pre-theme);
    position: relative;
    display: inline-block;
}

/* ── Letter flip animation ── */
.preloader .animation-preloader .txt-loading .letters-loading::before {
    content: attr(data-text-preloader);
    position: absolute;
    top: -3px;
    left: 0;
    color: var(--pre-theme);
    opacity: 0;
    transform: rotateY(-90deg);
    animation: letters-loading 4s infinite;
}

/* ── Stagger each letter ── */
.letters-loading:nth-child(1)::before {
    animation-delay: 0s;
}

.letters-loading:nth-child(2)::before {
    animation-delay: 0.2s;
}

.letters-loading:nth-child(3)::before {
    animation-delay: 0.4s;
}

.letters-loading:nth-child(4)::before {
    animation-delay: 0.6s;
}

.letters-loading:nth-child(5)::before {
    animation-delay: 0.8s;
}

.letters-loading:nth-child(6)::before {
    animation-delay: 1s;
}

.letters-loading:nth-child(7)::before {
    animation-delay: 1.2s;
}

.letters-loading:nth-child(8)::before {
    animation-delay: 1.4s;
}

/* ── Letter Keyframe ── */
@keyframes letters-loading {
    0% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    33% {
        opacity: 1;
        transform: rotateY(0deg);
    }

    66% {
        opacity: 1;
        transform: rotateY(0deg);
    }

    100% {
        opacity: 0;
        transform: rotateY(90deg);
    }
}

/* ── Loading Label ── */
.preloader p {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--pre-theme);
    margin-top: 16px;
}

/* ── Background Panel Wipe ── */
.preloader .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    font-size: 0;
}

.preloader .loader .row {
    height: 100%;
    margin: 0;
}

.preloader .loader .loader-section {
    padding: 0;
}

.preloader .loader .loader-section .bg {
    background-color: var(--pre-bg);
    height: 100%;
    width: 100%;
    transition: width 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

/* ── Loaded State — fade out animation ── */
.preloader.loaded .animation-preloader {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.preloader.loaded .loader-section .bg {
    width: 0 !important;
    transition: width 0.7s 0.3s cubic-bezier(0.1, 0.1, 0.1, 1);
    /* ✅ fixed typo */
}

/* ── Preloader CSS End ── */
/* ── Fix Navbar color CSS Start ── */
nav.navbar.validnavs.navbar-fixed {
    position: absolute;
    background: #fff !important;
}
nav.navbar.validnavs {
    margin: 0px 0 !important;
}
#smooth-content {
    margin-top: 80px;
}
/* ── Fix Navbar color CSS End ── */
/* Show .mobile-only only on small screens */
.mobile-only {
    display: none !important;
}

/* Color fields red/green dynamically depending on validation state */
input.error,
select.error {
    border-color: #e74c3c !important; /* Soft elegant red */
    background-color: rgba(231, 76, 60, 0.02);
}

input.valid,
select.valid {
    border-color: #2ecc71 !important; /* Soft elegant green */
}

/* Style error messages */
.alert-error {
    font-size: 13px;
    color: #e74c3c;
    margin-top: 5px;
    display: block;
}

/* Category tags styling for blogs */
.blog-one-meta ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}
.blog-one-meta ul li a {
    display: inline-block;
    background: var(--bg-gradient);
    color: var(--white);
    font-weight: 400;
    line-height: 1.2;
    padding: 7px 10px;
    border-radius: 7px;
    padding-top: 7px;
    font-size: 13px;
}

.blog-style-two .thumb img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}
.blog-style-two .thumb .myimg {
    height: 200px;
    width: 100%;
    object-fit: cover;
}
.blog-style-two h5 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.my-custom-blog-heading {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* Enhances to 2 lines for all modern browsers */
@supports (-webkit-line-clamp: 2) {
    .blog-style-two h5 {
        white-space: initial;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .my-custom-blog-heading {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}
/* ── Blog Meta & Social Alignment ── */
.blog-content .info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.breadcrumb-area {
    padding: 80px 0;
    padding-top: 80px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* ── Services Section: 10px gap between each box Home Page ── */
.service-style-one-items .row.gutter-zero {
    gap: 10px;
}

/* Adjust column flex-basis to account for the gap so 3 columns still fit per row */
.service-style-one-items .row.gutter-zero > [class*="col-"] {
    flex: 0 0 calc(33.3333% - 7px);
    max-width: calc(33.3333% - 7px);
}

/* ── Fix: Restore all 4 borders on every service box ──
   The theme removes borders on certain sides (nth-child rules) to create a
   shared-border grid look. With gaps between boxes, each box needs its own
   full border on all 4 sides. ── */
.service-style-one-item {
    border: 2px solid #e7e7e7 !important;
    border-radius: 20px;
    padding: 40px !important;
}

/* Override ALL nth-child border-removal rules from the theme */
.col-lg-4.col-md-6.service-style-one-single:nth-child(2n) .service-style-one-item,
.col-lg-4.col-md-6.service-style-one-single:nth-child(3) .service-style-one-item,
.col-lg-4.col-md-6.service-style-one-single:nth-child(4) .service-style-one-item,
.col-lg-4.col-md-6.service-style-one-single:nth-child(5) .service-style-one-item,
.col-lg-4.col-md-6.service-style-one-single:nth-child(6) .service-style-one-item {
    border: 2px solid #e7e7e7 !important;
}

/* Also ensure the community card (last box) has a matching border */
.col-lg-4.col-md-6.community-card:nth-child(6) {
    border: 2px solid #e7e7e7 !important;
    border-radius: 20px;
}

.feature-style-one .icon img {
    height: 45px;
    margin-bottom: 40px !important;
}
.service-style-one-item img {
    height: 45px;
    margin-bottom: 30px;
}
.site-heading2 {
    margin-bottom: 150px;
    overflow: hidden;
}
.funfact-style-one-area2 {
    position: relative;
}
.blog-style-two-box2 {
    padding: 0px;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid var(--white);
    border-radius: 15px;
}

/*=== Services Page Css ========== **/
.banner-two-content h2 {
    font-size: 80px !important;
    line-height: 1;
}
.services-style-seven-item .accordion-body {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr !important;
    grid-row-gap: 30px;
    grid-column-gap: 50px;
    padding: 30px;
    align-items: center;
}
.site-heading2 {
    margin-bottom: 50px;
    overflow: hidden;
}

#backToTop {
    position: fixed;
    right: 25px;
    bottom: 85px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #0056b3;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

#backToTop:hover {
    transform: translateY(-5px);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.banner-one-content h2 {
    font-size: 62px !important;
    margin-bottom: 35px;
}

/**Domain Capability**/
.banner-style-three-info h2 {
    font-size: 45px !important;
    margin-bottom: 25px;
    color: #ffffff;
}
.banner-style-three-info h4 {
    color: #ffffff;
}
.banner-style-three-info p {
    font-size: 16px !important;
    color: #ffffff;
}
.inner-service-page h2 {
    font-size: 42px !important;
    margin-bottom: 25px;
    color: #000662;
}
.inner-service-page h4 {
    color: #60616c;
}
.inner-service-page p {
    font-size: 16px !important;
    color: #60616c;
}
.about-style-three-thumb {
    padding-left: 0% !important;
    position: relative;
    z-index: 1;
    padding-bottom: 0% !important;
    margin-left: 0px !important;
}

.domain-capablity .video-button-v1 {
    display: inline-block;
    position: absolute;
    top: 40%;
    left: 40%;
    height: 120px;
    width: 120px;
    line-height: 120px;
    background: var(--color-primary);
    border-radius: 50%;
    font-size: 30px;
    font-weight: 100;
    color: var(--white);
    display: flex;
    text-align: center;
    justify-content: center;
}
.domain-capablity .video-button-v1 i {
    font-weight: 100;
    color: var(--white);
    line-height: 120px;
}
.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #000;
    background: transparent
        url(
            data:image/svg + xml,
            %3csvgxmlns="http://www.w3.org/2000/svg"viewBox="0 0 16 16"fill="%23000"%3e%3cpathd="M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z"/%3e%3c/svg%3e
        )
        center / 1em auto no-repeat;
    border: 0;
    border-radius: 0.25rem;
    opacity: 0.5;
    text-align: right;
    float: right;
    cursor: pointer;
    color: red;
}
.domain-capablity .services-style-seven-item .accordion-body {
    display: grid;
    grid-template-columns: 2.5fr 1.5fr !important;
    grid-row-gap: 30px;
    grid-column-gap: 50px;
    padding: 30px;
    align-items: center;
}
.domain-capablity .thumb {
    height: 250px;
    width: 100%;
}
.domain-capablity .thumb img {
    height: 100%;
    width: 100%;
    object-fit: fill;
}
.domain-capablity .info {
    margin-top: 20px;
}

/* ── Navbar: Black background SIRF video slide pe ── */
/*.navbar-video-active.no-background,
.navbar-video-active.navbar-fixed.no-background {
    background: #000 !important;
    box-shadow: none;
    transition: background 0.3s ease;
}*/

/* ── Homepage Carousel: navbar fixed hai, margin nahi chahiye ── */
.homepage-carousel.swiper {
    margin-top: 0;
}

/* ── Banner Slider Overlay Box  Start── */
.banner-box {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 75dvh; /* fixed height taaki iframe ka container collapse na ho */
}
.banner-box img {
    display: block;
    width: 100%;
    height: 80vh;
    object-fit: cover;
}
/* ── YouTube iframe full-width cover technique ── */
.banner-box iframe {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 56.25vw; /* 16:9 ratio — fills full width */
    min-height: 650px;
    min-width: calc(650px * 16 / 9);
    border: none;
    pointer-events: none;
}
.banner-content-left {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 950px;
    height: 400px;
    /*
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    */
    border-radius: 12px;
    padding: 40px 45px;
    display: flex;
    flex-direction: column;
    justify-content: left;
    /*box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);*/
    z-index: 2;
    animation: bannerFadeUp 0.8s ease both;
}
.banner-content-left h1 {
    line-height: 1.2;
    font-family: "Sora", sans-serif;
    letter-spacing: 0;
    margin: 0;
    margin-bottom: 15px;
    font-weight: 500;
    color: #ffffff;
    font-size: 62px;
    text-align: left;
}

.banner-content-left p {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 0;
    text-align: left;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 950px;
    height: 400px;
    /*
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    */
    border-radius: 12px;
    padding: 40px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);
    */
    z-index: 2;
    animation: bannerFadeUp 0.8s ease both;
}
@keyframes bannerFadeUp {
    from {
        opacity: 0;
        transform: translate(-50%, calc(-50% + 30px));
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}
.banner-content h1 {
    line-height: 1.2;
    font-family: "Sora", sans-serif;
    letter-spacing: 0;
    margin: 0;
    margin-bottom: 15px;
    font-weight: 500;
    color: #ffffff;
    font-size: 62px;
    text-align: center;
}

.banner-content p {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 0;
    text-align: center;
}

.banner-content-right {
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
    width: 950px;
    height: 400px;
    /*
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    */
    border-radius: 12px;
    padding: 40px 45px;
    display: flex;
    flex-direction: column;
    justify-content: right;
    /*
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);
    */
    z-index: 2;
    animation: bannerFadeUp 0.8s ease both;
}
.banner-content-right h1 {
    line-height: 1.2;
    font-family: "Sora", sans-serif;
    letter-spacing: 0;
    margin: 0;
    margin-bottom: 15px;
    font-weight: 500;
    color: #ffffff;
    font-size: 62px;
    text-align: right;
}

.banner-content-right p {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 0;
    text-align: right;
}
/* Letter animation */
.banner-content-left h1 strong .char,
.banner-content h1 strong .char,
.banner-content-right h1 strong .char {
    background-image: linear-gradient(90deg, #7476ff 0%, #89c7fe 50%, #7476ff 100%);

    background-size: 300% auto;

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;
}
.word {
    display: inline-block;
    white-space: nowrap;
}

.char {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
}
.animated-title {
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
}

.animated-title.animate .char {
    animation:
        letterReveal 0.5s ease forwards,
        gradientMove 4s linear infinite;
}
.animated-title .char {
    color: #ffffff;
}

.animated-title strong .char {
    background-image: linear-gradient(90deg, #7476ff, #89c7fe, #7476ff);

    background-size: 300% auto;

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;
}

@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}
@keyframes letterReveal {
    from {
        opacity: 0;
        transform: translateY(50px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.banner-content-left p,
.banner-content p,
.banner-content-right p {
    opacity: 0;
}

/* Active slide paragraph animation */

.animated-paragraph {
    opacity: 0;
}

.swiper-slide-active .animated-paragraph {
    animation: paragraphReveal 1s ease forwards;
    animation-delay: 1.8s;
}

@keyframes paragraphReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.button-animation {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
}

.button-animation.animate {
    animation: buttonReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes buttonReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    60% {
        transform: translateY(-5px) scale(1.03);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
/* ── Banner Slider Overlay Box  End */
.parent-sevice-domain-capability .service-style-one-item {
    border: 2px solid #e7e7e7 !important;
    border-radius: 20px;
    /*height: 250px !important;*/
    background: #ffffff;
    padding: 40px !important;
}
.parent-sevice-domain-capability .testimonial-style-four-item {
    background: #ffffff00; /*var(--white);
    padding: 30px !important;
    border-radius: 10px;
    border: 1px solid #f3f3ff;
    */
}
.parent-sevice-domain-capability .testimonial-style-four-item {
    background: #ffffff00;
    padding: 5px;
    border-radius: 0px;
    border: 0px solid #f3f3ff;
}
.parent-sevice-domain-capability .testimonial-style-four-item .thumb {
    height: 96px;
    width: 190px;
}
.parent-sevice-domain-capability .testimonial-style-four-item .thumb img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.chat-bot-thumb {
    position: relative;
    margin-top: 10px !important;
}

.about-style-one-info {
    height: 100%;
    background: var(--bg-gray);
    padding: 40px !important;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.card-style-one-item {
    position: relative;
    padding: 40px !important;
    border-radius: 10px;
    display: inline-block;
}
/* ═══════════════════════════════════
   3. Our Story Section
   ═══════════════════════════════════ */
.cz-our-story {
    padding: 40px 0 40px;
    background: #eeeeee;
    position: relative;
}

.cz-desc-wide {
    font-size: 16px;
    color: #64748b;
    line-height: 1.85;
    margin-top: 18px;
}

.cz-story-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 45px rgba(14, 48, 92, 0.08);
    height: 100%;
    text-align: left;
    transition: var(--cz-transition);
    border: 1px solid rgba(15, 64, 112, 0.12);
    position: relative;
    overflow: hidden;
}

.cz-story-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(21, 121, 158, 1), rgba(34, 100, 220, 1));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s ease;
}

.cz-story-card:hover::after {
    transform: scaleX(1);
}

.cz-story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 75px rgba(14, 48, 92, 0.12);
}

.cz-story-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
}

.cz-story-card-content {
    flex: 1;
}

@media (max-width: 767px) {
    .cz-story-card-inner {
        display: flex;
    }

    .cz-story-icon-box {
        margin-bottom: 12px;
    }
}

.cz-story-icon-box {
    width: 85px;
    height: 85px;
    border-radius: 22px;
    /*background: rgba(21, 121, 158, 0.08);
    box-shadow: inset 0 12px 20px rgba(15, 64, 112, 0.08);*/
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 5px;
    margin-bottom: 12px;
}

.cz-story-icon-inner {
    width: 100%;
    height: 100%;
    /*background: linear-gradient(135deg, #15799e 0%, #2493d1 100%);*/
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.cz-story-icon-inner i {
    font-size: 26px;
    color: #fff;
}

.cz-story-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #102a43;
    margin-bottom: 12px;
}

.cz-story-card p {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin: 0;
}

.default-padding-2 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}
.default-padding-200 {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
}
.default-margin {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
}

.testimonial-style-four-left-carousel2 .swiper-wrapper {
    transition-timing-function: linear !important;
}

/*=== About Us CSS Start =====*/
.banner-style-three-info h2 strong,
.cz-our-story h2 {
    font-size: 42px !important;
    text-transform: capitalize;
}

.cz-story-card:hover {
    transform: translateY(0px) !important;
    box-shadow: rgba(14, 48, 92, 0.12) 0px 25px 75px;
}

.team-style-two-item .thumb {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 400px;
}

.team-style-two-item .thumb img {
    height: 100%;
    object-fit: contain;
}

/** Teams Slider CSS */
/* ── Thumb container must be relative ── */
.team-style-two-item .thumb {
    position: relative;
    overflow: hidden;
}

.team-style-two-item .thumb img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

/* ── Text overlay ── */
.team-style-two-item .thumb .text-overlay {
    position: absolute;
    bottom: -100%;
    /* hidden below by default */
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 15px 38px 15px 20px;
    transition: bottom 0.4s ease;
    z-index: 2;
}

.team-style-two-item .thumb .text-overlay p {
    color: #ffffff;
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 12;
    /* max 4 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Slide up on hover ── */
.team-style-two-item:hover .thumb .text-overlay {
    bottom: 0;
}

/* ── Subtle zoom on image ── */
.team-style-two-item:hover .thumb img {
    transform: scale(1.05);
}

/* ── Keep social overlay above text overlay ── */
.team-style-two-item .thumb .social-overlay {
    z-index: 3;
}

.project-style-two-items h2 {
    font-size: 42px;
}

.project-style-two-items p {
    perspective: 400px;
    font-size: 22px;
}

/** Blogs Customized CSS **/
.blog-area.single .item .blog-item-box span {
    background: none !important;
    color: #000662 !important;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0px 0px !important;
    text-transform: capitalize !important;
}

/*=== About Us Css End*/
.blog-inner-content ul {
    padding-left: 0;
    margin-bottom: 15px;
    list-style: none;
}

.blog-inner-content ul li {
    margin-top: 10px;
    position: relative;
    z-index: 1;
    padding-left: 25px;
    font-size: 15px;
    color: var(--color-heading);
}

.blog-inner-content ul li::after {
    position: absolute;
    left: 0;
    top: 8px;
    content: "";
    background-image: url(../img/icon/arrow-standard.png);
    height: 10px;
    width: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.blog-inner-content .main-btn {
    position: relative;
    padding: 12px 2em;
    background: #2264dc;
    outline: none;
    border: none;
    display: inline-block;
    max-width: -moz-max-content;
    max-width: max-content;
    transition: 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.blog-area.single .item .blog-item-box .blog-inner-content .main-btn span {
    color: #fff !important;
    text-transform: capitalize !important;
}

.process-style-one-items-1 {
    display: flex;
    position: relative;
    z-index: 1;
    padding: 40px 40px;
    backdrop-filter: blur(30px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px 30px 0 0;
}
.tablet-only {
    display: none !important;
}
#meetingModalHeader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}
.meetingModalInnerHeader {
    background: #fff;
    width: 90%;
    max-width: 860px;
    max-height: 90vh;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}
/* =============  Media Query ====================================*/
@media (min-width: 1024px) {
    .banner-style-three-area {
        height: 75vh;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .banner-style-three-area1 {
        height: 40vh !important;
        padding-top: 170px;
    }

    .brand-style-one-carousel {
        max-width: 100%;
        margin: auto;
    }
}
.breadcrumb-area .container {
    margin-top: 108px !important;
}
@media (min-width: 1600px) {
    .breadcrumb-area {
        max-width: 100%;
        margin: auto;
        border-radius: 0px !important;
        margin-top: 82px !important;
    }
    .banner-style-three-area {
        height: 75vh !important;
        padding-top: 50px;
    }
}

/* Portrait and Landscape (1024x1366) */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
    .navbar-brand > img {
        display: block;
        height: 30px;
        width: 150px;
        object-fit: contain;
    }
    nav.navbar ul.nav > li > a {
        padding: 28px 12px;
        font-weight: 600;
        font-size: 11px;
        text-transform: uppercase;
    }
    .tablet-only {
        display: inline-block !important;
    }
    h1 {
        font-size: 30px;
        font-weight: 600;
    }
    h2 {
        font-size: 28px;
        font-weight: 600;
    }
    h3 {
        font-size: 24px;
        font-weight: 600;
    }
    h4 {
        font-size: 22px;
        font-weight: 500;
    }
    h5 {
        font-size: 20px;
        font-weight: 400;
    }
    p {
        font-size: 15px;
        font-weight: 400;
    }
    .banner-box {
        position: relative;
        overflow: hidden;
        display: block;
        width: 100%;
        height: 45vh;
    }
    .banner-content-left {
        position: absolute;
        top: 60%;
        left: 35%;
        transform: translate(-50%, -50%);
        width: 950px;
        height: 400px;
        border-radius: 12px;
        padding: 40px 45px;
        display: flex;
        flex-direction: column;
        justify-content: left;
        z-index: 2;
        animation: bannerFadeUp 0.8s ease both;
    }
    .banner-content {
        position: absolute;
        top: 60%;
        left: 45%;
        transform: translate(-50%, -50%);
        width: 950px;
        height: 400px;
        border-radius: 12px;
        padding: 40px 45px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        z-index: 2;
        animation: bannerFadeUp 0.8s ease both;
    }
    .banner-content-left h1 {
        line-height: 1.2;
        font-family: "Sora", sans-serif;
        letter-spacing: 0;
        margin: 0;
        margin-bottom: 15px;
        font-weight: 500;
        color: #ffffff;
        font-size: 40px;
        text-align: left;
    }
    .banner-content-left p {
        font-size: 18px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.7;
        margin-bottom: 0;
        text-align: left;
    }

    .banner-content h1 {
        line-height: 1.2;
        font-family: "Sora", sans-serif;
        letter-spacing: 0;
        margin: 0;
        margin-bottom: 15px;
        font-weight: 500;
        color: #ffffff;
        font-size: 40px;
        text-align: center;
    }
    .banner-content p {
        font-size: 18px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.7;
        margin-bottom: 0;
        text-align: center;
    }
    .btn {
        display: inline-block;
        padding: 10px 26px;
        background: var(--color-primary);
        font-size: 15px;
        font-weight: 400;
        border-radius: 8px;
        position: relative;
        z-index: 1;
        padding-top: 15px;
        color: var(--white);
        box-shadow: none !important;
        border: none;
        overflow: hidden;
    }
    .card-style-one-item {
        position: relative;
        padding: 40px !important;
        border-radius: 10px;
        display: inline-block;
        height: 100%;
    }
    .funfact-style-one-item .js-counter {
        display: flex;
        align-items: center;
        font-size: 36px;
        line-height: 1;
        font-weight: 600;
    }
    .funfact-style-one-item h4 {
        margin-top: 36px;
    }
    h4 {
        font-size: 22px;
        font-weight: 600;
    }
    .funfact-style-one-item p {
        font-size: 15px;
    }
    ul.project-tags li {
        display: inline-block;
        background: var(--bg-gradient);
        position: relative;
        z-index: 1;
        overflow: hidden;
        border-radius: 8px;
        padding: 3px 12px;
        padding-bottom: 2px;
        font-size: 12px;
    }
    .project-style-two-items h2 {
        font-size: 28px;
    }
    .project-style-two-items p {
        perspective: 400px;
        font-size: 15px;
    }
    .banner-style-three-area {
        height: fit-content;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .banner-style-three-info h2 {
        font-size: 28px !important;
        margin-bottom: 25px;
        color: #ffffff;
    }
    .banner-style-three-info h2 strong,
    .cz-our-story h2 {
        font-size: 28px !important;
        text-transform: capitalize;
    }
    .project-style-two-items h2 {
        font-size: 28px;
    }
    .project-style-two-items p {
        perspective: 400px;
        font-size: 15px;
    }
    .title {
        font-size: 28px;
    }
    .inner-service-page h2 {
        font-size: 28px !important;
        margin-bottom: 25px;
        color: #000662;
    }
    .inner-service-page p {
        font-size: 16px !important;
        color: #60616c;
    }
    .breadcrumb-area h1 {
        display: block;
        font-weight: 600;
        margin-top: -10px;
        font-size: 30px;
    }
    .cz-ai-center h2 {
        font-size: 28px;
        line-height: 40px;
        color: #0c1b3a;
        font-weight: 600;
    }
}

/* Portrait and Landscape (834x1194) */
@media only screen and (min-device-width: 834px) and (max-device-width: 1194px) and (-webkit-min-device-pixel-ratio: 2) {
    .navbar-brand > img {
        display: block;
        height: 30px;
        width: 150px;
        object-fit: contain;
    }
    nav.navbar ul.nav > li > a {
        padding: 28px 12px;
        font-weight: 600;
        font-size: 11px;
        text-transform: uppercase;
    }
    .tablet-only {
        display: inline-block !important;
    }
    h1 {
        font-size: 30px;
        font-weight: 600;
    }
    h2 {
        font-size: 28px;
        font-weight: 600;
    }
    h3 {
        font-size: 24px;
        font-weight: 600;
    }
    h4 {
        font-size: 22px;
        font-weight: 500;
    }
    h5 {
        font-size: 20px;
        font-weight: 400;
    }
    p {
        font-size: 15px;
        font-weight: 400;
    }
    .banner-box {
        position: relative;
        overflow: hidden;
        display: block;
        width: 100%;
        height: 40dvh;
    }
    .banner-content-left {
        position: absolute;
        top: 60%;
        left: 45%;
        transform: translate(-50%, -50%);
        width: 950px;
        height: 400px;
        border-radius: 12px;
        padding: 40px 45px;
        display: flex;
        flex-direction: column;
        justify-content: left;
        z-index: 2;
        animation: bannerFadeUp 0.8s ease both;
    }
    .banner-content-right {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 950px;
        height: 400px;
        border-radius: 12px;
        padding: 40px 45px;
        display: flex;
        flex-direction: column;
        justify-content: right;
        z-index: 2;
        animation: bannerFadeUp 0.8s ease both;
    }
    .banner-content-left h1 {
        line-height: 1.2;
        font-family: "Sora", sans-serif;
        letter-spacing: 0;
        margin: 0;
        margin-bottom: 15px;
        font-weight: 500;
        color: #ffffff;
        font-size: 35px;
        text-align: left;
    }
    .banner-content-left p {
        font-size: 16px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.7;
        margin-bottom: 0;
        text-align: left;
    }

    .banner-content h1 {
        line-height: 1.2;
        font-family: "Sora", sans-serif;
        letter-spacing: 0;
        margin: 0;
        margin-bottom: 15px;
        font-weight: 500;
        color: #ffffff;
        font-size: 35px;
        text-align: center;
    }
    .banner-content p {
        font-size: 16px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.7;
        margin-bottom: 0;
        text-align: center;
    }
    .btn {
        display: inline-block;
        padding: 10px 26px;
        background: var(--color-primary);
        font-size: 15px;
        font-weight: 400;
        border-radius: 8px;
        position: relative;
        z-index: 1;
        padding-top: 15px;
        color: var(--white);
        box-shadow: none !important;
        border: none;
        overflow: hidden;
    }
    .card-style-one-item {
        position: relative;
        padding: 40px !important;
        border-radius: 10px;
        display: inline-block;
        height: 100%;
    }
    .funfact-style-one-item .js-counter {
        display: flex;
        align-items: center;
        font-size: 36px;
        line-height: 1;
        font-weight: 600;
    }
    .funfact-style-one-item h4 {
        margin-top: 36px;
    }
    h4 {
        font-size: 22px;
        font-weight: 600;
    }
    .funfact-style-one-item p {
        font-size: 15px;
    }
    .banner-style-three-area {
        height: 45vh;
        padding-top: 80px;
        padding-bottom: 50px;
    }
    .banner-style-three-info h2 {
        font-size: 28px !important;
        margin-bottom: 25px;
        color: #ffffff;
    }
    .banner-style-three-info h2 strong,
    .cz-our-story h2 {
        font-size: 28px !important;
        text-transform: capitalize;
    }
    .project-style-two-items h2 {
        font-size: 28px;
    }
    .project-style-two-items p {
        perspective: 400px;
        font-size: 15px;
    }
    .title {
        font-size: 28px;
    }
    #meetingModalHeader {
        display: none;
        position: fixed !important;
        top: -323px !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 999999 !important;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(4px);
        align-items: center;
        justify-content: center;
    }
    .meetingModalInnerHeader {
        background: #fff;
        width: 90%;
        max-width: 860px;
        max-height: 50vh;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
    }
    .inner-service-page h2 {
        font-size: 28px !important;
        margin-bottom: 25px;
        color: #000662;
    }
    .inner-service-page p {
        font-size: 16px !important;
        color: #60616c;
    }
    .mfp-iframe-scaler iframe {
        position: absolute;
        display: block;
        top: -320px;
        left: 0;
        width: 100%;
        height: 100%;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
        background: #000;
    }
    .breadcrumb-area .container {
        margin-top: 108px !important;
    }
    .breadcrumb-area h1 {
        display: block;
        font-weight: 600;
        margin-top: -10px;
        font-size: 30px;
    }
    .cz-ai-center h2 {
        font-size: 28px;
        line-height: 40px;
        color: #0c1b3a;
        font-weight: 600;
    }
}

/* Tablet Landscape / Small Laptop*/
@media screen and (min-width: 1021px) and (max-width: 1360px) {
    .navbar-brand > img {
        display: block;
        height: 30px;
        width: 150px;
        object-fit: contain;
    }
    nav.navbar ul.nav > li > a {
        padding: 28px 12px;
        font-weight: 600;
        font-size: 11px;
        text-transform: uppercase;
    }
    .tablet-only {
        display: inline-block !important;
    }
    h1 {
        font-size: 22px;
        font-weight: 600;
    }
    h2 {
        font-size: 20px;
        font-weight: 600;
    }
    h3 {
        font-size: 18px;
        font-weight: 600;
    }
    h4 {
        font-size: 16px;
        font-weight: 500;
    }
    h5 {
        font-size: 14px;
        font-weight: 400;
    }
    p {
        font-size: 12px;
        font-weight: 400;
    }
    #smooth-content {
        margin-top: 0px;
    }
    .banner-box {
        position: relative;
        overflow: hidden;
        display: block;
        width: 100%;
        height: 50vh;
    }
    .banner-content-left {
        position: absolute;
        top: 70%;
        left: 45%;
        transform: translate(-50%, -50%);
        width: 950px;
        height: 400px;
        border-radius: 12px;
        padding: 40px 45px;
        display: flex;
        flex-direction: column;
        justify-content: left;
        z-index: 2;
        animation: bannerFadeUp 0.8s ease both;
    }
    .banner-content-right {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 950px;
        height: 400px;
        border-radius: 12px;
        padding: 40px 45px;
        display: flex;
        flex-direction: column;
        justify-content: right;
        z-index: 2;
        animation: bannerFadeUp 0.8s ease both;
    }
    .banner-content-left h1 {
        line-height: 1.2;
        font-family: "Sora", sans-serif;
        letter-spacing: 0;
        margin: 0;
        margin-bottom: 15px;
        font-weight: 500;
        color: #ffffff;
        font-size: 35px;
        text-align: left;
    }
    .banner-content-left p {
        font-size: 16px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.7;
        margin-bottom: 0;
        text-align: left;
    }

    .banner-content h1 {
        line-height: 1.2;
        font-family: "Sora", sans-serif;
        letter-spacing: 0;
        margin: 0;
        margin-bottom: 15px;
        font-weight: 500;
        color: #ffffff;
        font-size: 35px;
        text-align: center;
    }
    .banner-content p {
        font-size: 16px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.7;
        margin-bottom: 0;
        text-align: center;
    }
    .btn {
        display: inline-block;
        padding: 10px 26px;
        background: var(--color-primary);
        font-size: 15px;
        font-weight: 400;
        border-radius: 8px;
        position: relative;
        z-index: 1;
        padding-top: 15px;
        color: var(--white);
        box-shadow: none !important;
        border: none;
        overflow: hidden;
    }
    .card-style-one-item {
        position: relative;
        padding: 40px !important;
        border-radius: 10px;
        display: inline-block;
        height: 100%;
    }
    .funfact-style-one-item .js-counter {
        display: flex;
        align-items: center;
        font-size: 36px;
        line-height: 1;
        font-weight: 600;
    }
    .funfact-style-one-item h4 {
        margin-top: 36px;
    }
    h4 {
        font-size: 22px;
        font-weight: 600;
    }
    .funfact-style-one-item p {
        font-size: 15px;
    }
    .banner-style-three-area {
        height: fit-content;
        padding-top: 80px;
        padding-bottom: 50px;
    }
    /*
    .banner-style-three-area,
    .banner-style-three-area div {
        align-items: center !important;
    }*/
    .banner-style-three-info h2 {
        font-size: 28px !important;
        margin-bottom: 25px;
        color: #ffffff;
    }
    .banner-style-three-info h2 strong,
    .cz-our-story h2 {
        font-size: 28px !important;
        text-transform: capitalize;
    }
    .project-style-two-items h2 {
        font-size: 20px;
    }
    .project-style-two-items p {
        perspective: 400px;
        font-size: 15px;
    }
    .title {
        font-size: 20px;
    }
    .inner-service-page h2 {
        font-size: 20px !important;
        margin-bottom: 25px;
        color: #000662;
    }
    .inner-service-page p {
        font-size: 16px !important;
        color: #60616c;
    }
    #meetingModalHeader {
        display: none;
        position: fixed !important;
        top: -323px !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 999999 !important;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(4px);
        align-items: center;
        justify-content: center;
    }
    .meetingModalInnerHeader {
        background: #fff;
        width: 90%;
        max-width: 860px;
        max-height: 50vh;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
    }
    .inner-service-page h2 {
        font-size: 28px !important;
        margin-bottom: 25px;
        color: #000662;
    }
    .inner-service-page p {
        font-size: 16px !important;
        color: #60616c;
    }

    .mfp-iframe-scaler iframe {
        position: absolute;
        display: block;
        top: 5px;
        left: 0;
        width: 100%;
        height: 100%;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
        background: #000;
    }
    .breadcrumb-area h1 {
        display: block;
        font-weight: 600;
        margin-top: -10px;
        font-size: 22px;
    }
    .cz-ai-center h2 {
        font-size: 20px;
        line-height: 40px;
        color: #0c1b3a;
        font-weight: 600;
    }
}

/*Tablet Portrait */
@media screen and (min-width: 768px) and (max-width: 1020px) {
    .navbar-brand > img {
        display: block;
        height: 30px;
        width: 150px;
        object-fit: contain;
    }
    nav.navbar ul.nav > li > a {
        padding: 28px 12px;
        font-weight: 600;
        font-size: 11px;
        text-transform: uppercase;
    }

    .tablet-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
    }
    h1 {
        font-size: 22px;
        font-weight: 600;
    }
    h2 {
        font-size: 20px;
        font-weight: 600;
    }
    h3 {
        font-size: 18px;
        font-weight: 600;
    }
    h4 {
        font-size: 16px;
        font-weight: 500;
    }
    h5 {
        font-size: 14px;
        font-weight: 400;
    }
    p {
        font-size: 12px;
        font-weight: 400;
    }
    #smooth-content {
        margin-top: -14px;
    }
    .banner-box {
        position: relative;
        overflow: hidden;
        display: block;
        width: 100%;
        height: 65dvh;
    }
    .banner-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 765px;
        height: 400px;
        border-radius: 12px;
        padding: 40px 45px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        z-index: 2;
        animation: bannerFadeUp 0.8s ease both;
    }
    .banner-content-left {
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 765px;
        height: 400px;
        border-radius: 12px;
        padding: 40px 45px;
        display: flex;
        flex-direction: column;
        justify-content: left;
        z-index: 2;
        animation: bannerFadeUp 0.8s ease both;
    }
    .banner-content-right {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 950px;
        height: 400px;
        border-radius: 12px;
        padding: 40px 45px;
        display: flex;
        flex-direction: column;
        justify-content: right;
        z-index: 2;
        animation: bannerFadeUp 0.8s ease both;
    }
    .banner-content-left h1 {
        line-height: 1.2;
        font-family: "Sora", sans-serif;
        letter-spacing: 0;
        margin: 0;
        margin-bottom: 15px;
        font-weight: 500;
        color: #ffffff;
        font-size: 35px;
        text-align: left;
    }
    .banner-content-left p {
        font-size: 16px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.7;
        margin-bottom: 0;
        text-align: left;
    }

    .banner-content h1 {
        line-height: 1.2;
        font-family: "Sora", sans-serif;
        letter-spacing: 0;
        margin: 0;
        margin-bottom: 15px;
        font-weight: 500;
        color: #ffffff;
        font-size: 35px;
        text-align: center;
    }
    .banner-content p {
        font-size: 16px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.7;
        margin-bottom: 0;
        text-align: center;
    }
    .btn {
        display: inline-block;
        padding: 9px 20px;
        background: var(--color-primary);
        font-size: 15px;
        font-weight: 400;
        border-radius: 8px;
        position: relative;
        z-index: 1;
        padding-top: 8px;
        color: var(--white);
        box-shadow: none !important;
        border: none;
        overflow: hidden;
    }
    ul.project-tags li {
        display: inline-block;
        background: var(--bg-gradient);
        position: relative;
        z-index: 1;
        overflow: hidden;
        border-radius: 8px;
        padding: 3px 12px;
        padding-bottom: 2px;
        font-size: 11px;
        line-height: 25px;
    }
    .card-style-one-item {
        position: relative;
        padding: 40px !important;
        border-radius: 10px;
        display: inline-block;
        height: 100%;
        width: 100%;
    }
    .funfact-style-one-item .js-counter {
        display: flex;
        align-items: center;
        font-size: 36px;
        line-height: 1;
        font-weight: 600;
    }
    .funfact-style-one-item h4 {
        margin-top: 36px;
    }
    h4 {
        font-size: 22px;
        font-weight: 600;
    }
    .funfact-style-one-item p {
        font-size: 15px;
    }
    .banner-style-three-area {
        height: fit-content;
        padding-top: 80px;
        padding-bottom: 50px;
    }
    .banner-style-three-info h2 {
        font-size: 28px !important;
        margin-bottom: 25px;
        color: #ffffff;
    }
    .banner-style-three-info h2 strong,
    .cz-our-story h2 {
        font-size: 28px !important;
        text-transform: capitalize;
    }
    .project-style-two-items h2 {
        font-size: 28px;
    }
    .project-style-two-items p {
        perspective: 400px;
        font-size: 15px;
    }
    .title {
        font-size: 28px;
    }
    /*
    .chat-bot-thumb {
        display: block;
        margin-top: 30px !important;
    }*/
    .chat-bot-thumb .illustration {
        height: 300px !important;
        padding: 20px 10px;
    }

    .illustration img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }
    #meetingModalHeader {
        display: none;
        position: fixed !important;
        top: -323px !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 999999 !important;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(4px);
        align-items: center;
        justify-content: center;
    }
    .meetingModalInnerHeader {
        background: #fff;
        width: 90%;
        max-width: 860px;
        max-height: 50vh;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
    }
    .inner-service-page h2 {
        font-size: 28px !important;
        margin-bottom: 25px;
        color: #000662;
    }
    .inner-service-page p {
        font-size: 16px !important;
        color: #60616c;
    }
    .mfp-container {
        text-align: center;
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: -150px;
        padding: 0 8px;
        box-sizing: border-box;
    }
    /*
    .mfp-iframe-scaler iframe {
        position: absolute;
        display: block;
        top: -150px;
        left: 0;
        width: 100%;
        height: 100%;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
        background: #000;
    }*/
    .project-style-one-item h3 {
        font-size: 18px;
    }
    .project-style-one-item h3 {
        margin-bottom: 25px;
        line-height: 1.3;
        font-size: 18px;
    }
    .breadcrumb-area {
        padding: 80px 0 !important;
    }
    .breadcrumb-area h1 {
        display: block;
        font-weight: 600;
        margin-top: -10px;
        font-size: 22px;
    }
    .breadcrumb-area .container {
        margin-top: 8px !important;
    }
    .cz-ai-center h2 {
        font-size: 20px;
        line-height: 40px;
        color: #0c1b3a;
        font-weight: 600;
    }
}

/* ── Mobile ── */
@media (max-width: 767px) {
    .breadcrumb-area h1 {
        font-size: 30px !important;
    }
    h1 {
        font-size: 30px;
        font-weight: 600;
    }
    h2 {
        font-size: 26px;
        font-weight: 600;
    }
    h3 {
        font-size: 22px;
        font-weight: 600;
    }
    h4 {
        font-size: 20px;
        font-weight: 500;
    }
    h5 {
        font-size: 18px;
        font-weight: 400;
    }
    /* ── Home Page  Start ── */
    /* ── Banner Slider Overlay Box  Start ── */
    .banner-content {
        width: calc(100% - 40px);
        height: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 25px 22px;
    }
    .banner-content h1 {
        font-size: 22px;
    }
    .banner-content p {
        font-size: 13px;
    }
    .banner-box img {
        height: 420px;
    }
    .banner-content-left {
        width: calc(100% - 40px);
        height: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 25px 22px;
    }
    .banner-content-left h1 {
        font-size: 22px;
    }

    .banner-content-left p {
        font-size: 13px;
    }
    .banner-content-right {
        width: calc(100% - 40px);
        height: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 25px 22px;
    }
    .banner-content-right h1 {
        font-size: 22px;
    }

    .banner-content-right p {
        font-size: 13px;
    }

    /* ── Banner Slider Overlay Box  End ── */

    #smooth-content {
        margin-top: -35px;
    }

    .banner-box {
        position: relative;
        overflow: hidden;
        display: block;
        width: 100%;
        height: 40dvh;
    }
    .btn {
        display: inline-block;
        padding: 10px 15px;
        background: var(--color-primary);
        font-size: 13px;
        font-weight: 500;
        border-radius: 8px;
        position: relative;
        z-index: 1;
        padding-top: 11px;
        color: var(--white);
        box-shadow: none !important;
        border: none;
        overflow: hidden;
    }
    .funfact-style-one-item .js-counter {
        display: flex;
        align-items: center;
        font-size: 30px;
        line-height: 1;
        font-weight: 600;
    }
    .process-style-one-item h2 {
        font-size: 35px !important;
    }

    /* ──Home Page  End ── */

    /*-- About Us Start -- */
    .banner-style-three-info h2 {
        font-size: 24px !important;
        margin-bottom: 25px;
        color: #ffffff;
    }
    .banner-style-three-info h2 strong,
    .cz-our-story h2 {
        font-size: 26px !important;
    }
    .project-style-two-items h2 {
        font-size: 26px;
    }

    .project-style-two-items p {
        perspective: 400px;
        font-size: 16px;
    }
    ul.project-tags li {
        display: inline-block;
        background: var(--bg-gradient);
        position: relative;
        z-index: 1;
        overflow: hidden;
        border-radius: 8px;
        padding: 3px 12px;
        padding-bottom: 2px;
        font-size: 12px;
    }
    .bg-dark .btn-style-one.btn-border {
        border-color: rgba(255, 255, 255, 0.4);
        color: var(--white);
        background: transparent;
        padding: 10px 15px;
    }
    .language-support-info {
        padding: 10px 15px;
    }
    .testimonial-style-two-area .content {
        padding: 10px 15px;
    }
    .team-style-two-item .thumb {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        height: 260px;
    }
    .team-style-two-item .info {
        margin-top: 1px;
        padding: 10px 15px;
        text-align: center;
    }

    .team-style-two-item .thumb .text-overlay {
        position: absolute;
        bottom: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 60%, transparent 100%);
        display: flex;
        align-items: flex-end;
        padding: 15px 50px 15px 34px;
        transition: bottom 0.4s ease;
        z-index: 2;
    }
    .cz-section-heading {
        padding: 10px 15px;
    }
    .banner-style-three-area .row div {
        height: auto;
        padding: 10px 15px;
    }
    /* -- About Us End -- */

    .mobile-only {
        display: block !important;
    }
    .preloader .animation-preloader .spinner {
        width: 6em;
        height: 6em;
        margin: 0 auto 1.5em auto;
    }

    .preloader .animation-preloader .txt-loading {
        font-size: 2.5em;
    }

    .preloader p {
        font-size: 11px;
        letter-spacing: 5px;
    }
    .service-style-one-items .row.gutter-zero > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .blog-content .info {
        flex-direction: column;
        align-items: flex-start;
    }
    .blog-content .info .social {
        margin-top: 10px;
    }
    .site-heading {
        margin-bottom: 20px;
        overflow: hidden;
        padding: 5px 20px;
    }
    .blog-area.full-blog.single .item .info {
        padding: 0;
        box-shadow: inherit;
        margin-top: 20px;
    }
    .domain-capablity .services-style-seven-item .accordion-body {
        display: flex;
        flex-direction: column;
    }
    .domain-capablity .services-style-seven-item button.accordion-button {
        grid-template-columns: 2fr 30px;
    }
    .domain-capablity .services-style-seven-item button.accordion-button {
        border: none;
        box-shadow: none;
        background: transparent;
        padding: 20px 20px;
        border-radius: 0;
        font-size: 18px;
        display: grid;
        align-items: center;
        gap: 50px;
        justify-content: space-between;
        color: black;
    }
    .domain-capablity .info {
        margin-top: 20px;
    }
    .banner-style-three-area1 {
        height: 30vh;
        padding-top: 51px;
    }
    .breadcrumb-area {
        padding: 40px 0 !important;
    }
    .breadcrumb-area .container {
        margin-top: 0px !important;
    }
}
