body {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;

    h1 {
        font-family: "Roboto", sans-serif;
        font-optical-sizing: auto;
        font-weight: 800;
        font-style: normal;
        font-variation-settings:
            "wdth" 100;
    }

    p {
        font-family: "Roboto", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        font-variation-settings:
            "wdth" 100;
    }
}

.theme-pd {
    padding: 100px 0px !important;
}

.vaxa-fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.gradient-pattern {
    background: linear-gradient(-45deg,
            #0d6efd,
            #6610f2,
            #6f42c1,
            #d63384,
            #fd7e14,
            #20c997);
    background-size: 400% 400%;
    animation: gradientMove 8s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.gradient-pattern-01 {
    background: linear-gradient(135deg,
            #1e3c72,
            #2a5298,
            #00c6ff,
            #0072ff,
            #7928ca);
    background-size: 300% 300%;
    /* animation: gradientMove 10s ease infinite; */
}

@keyframes gradient {
    0% {
        background-position: 51% 0%;
    }

    50% {
        background-position: 50% 100%;
    }

    100% {
        background-position: 51% 0%;
    }
}

.text-white {
    color: #fff !important;
}

.text-white:hover {
    color: #fff !important;
}

.logo-img {
    width: 230px;
    height: 60px;
    padding: 20px 0px;
}

.navbar {
    padding: 0px;
}

.mega-menu {
    border-radius: unset;
    margin-top: unset !important;
    border: unset;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* .navbar .nav-link {
    color: #6c757d;
}

.navbar .nav-link:visited {
    color: #6c757d;
}

.navbar .nav-link {
    color: #6c757d !important;
    border: none !important;
} */

.navbar .dropdown-menu {
    background: #fff !important;
}

.navbar-toggler-icon {
    /* background-color: #6c757d; */
}

.dropdown-item {
    color: #6c757d;
}

.theme-text-color {
    color: #0094e0;
}

.background-white {
    background: #fff !important;
}

.mt-banner {
    margin-top: 76px !important;
}

/* Start : Vaxa Theme Buttton */

/* Theme Button */

.vaxa-btn {
    display: inline-block;
    padding: 14px 38px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(135deg,
            rgba(13, 110, 253, 1),
            rgba(13, 110, 253, 0.9));
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.35);
}

/* Hover lift */
.vaxa-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(13, 110, 253, 0.55);
}

/* Light sweep effect */
.vaxa-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -70%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}

.vaxa-btn:hover::before {
    left: 130%;
}

/* Optional pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.6);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(13, 110, 253, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

.vaxa-btn.animate {
    animation: pulse 2.8s infinite;
}

/* End : Vaxa Theme Buttton */

/* Start : Vaxa Main Banner*/

.vaxa-banner-wrapper {
    position: relative;
    width: 100%;
    height: 80vh;
    /* full screen height */
    overflow: hidden;
}

/* Image & Video same position */
.vaxa-banner-wrapper img,
.vaxa-banner-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hide video initially */
.vaxa-banner-wrapper video {
    display: none;
}

/* Dark overlay */
.vaxa-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

/* Text content */
.vaxa-banner-content {
    position: relative;
    z-index: 3;
    color: #fff;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
    text-align: left;
}

.vaxa-banner-content h1,
.vaxa-banner-content p {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.vaxa-banner-content p {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vaxa-banner-content.animate h1,
.vaxa-banner-content.animate p {
    opacity: 0;
    transform: translateY(30px);
}

.vaxa-banner-content.animate.active h1,
.vaxa-banner-content.animate.active p {
    animation: fadeUp 1s ease forwards;
}

.vaxa-banner-content.animate.active p {
    animation-delay: 0.4s;
}

/* End : Vaxa Main Banner*/

/* Start : Vaxa AI Section*/

.vaxa-ai-section {
    position: relative;
    overflow: hidden;
    background: rgb(241, 244, 250);
    min-height: 80vh;
    padding: 30px 0;
}

/* Container */
.vaxa-ai-section .container {
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

/* Floating Background Elements */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg,
            rgba(102, 126, 234, 0.1),
            rgba(0, 123, 255, 0.1));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 1s;
    border-radius: 30%;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 10%;
    right: 20%;
    animation-delay: 2s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.shape-5 {
    width: 40px;
    height: 40px;
    top: 70%;
    left: 5%;
    animation-delay: 4s;
    border-radius: 10px;
}

.shape-6 {
    width: 90px;
    height: 90px;
    bottom: 40%;
    right: 2%;
    animation-delay: 5s;
}

/* Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #667eea, transparent);
    border-radius: 50%;
    animation: particleFloat 4s linear infinite;
}

.p1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.p2 {
    top: 50%;
    right: 15%;
    animation-delay: 0.5s;
}

.p3 {
    bottom: 30%;
    left: 25%;
    animation-delay: 1s;
}

.p4 {
    top: 70%;
    right: 30%;
    animation-delay: 1.5s;
}

.p5 {
    bottom: 20%;
    left: 60%;
    animation-delay: 2s;
}

.p6 {
    top: 15%;
    left: 80%;
    animation-delay: 2.5s;
}

.p7 {
    bottom: 50%;
    right: 20%;
    animation-delay: 3s;
}

.p8 {
    top: 40%;
    left: 20%;
    animation-delay: 3.5s;
}

.p9 {
    bottom: 10%;
    left: 40%;
    animation-delay: 0.2s;
}

.p10 {
    top: 85%;
    right: 10%;
    animation-delay: 2.8s;
}

/* Typography & Content */
.text-black {
    color: #000 !important;
}

.position-relative {
    position: relative;
}

.z-2 {
    z-index: 2;
}

.overflow-hidden {
    overflow: hidden;
}

h3.display-6.fw-normal {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h6.display-6.fw-bold {
    /* font-size: clamp(1.75rem, 5vw, 3rem); */
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(90deg, #000000, #4dabf7, #000000);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-flow 9s linear infinite;
}

.gradient-text-green {
    background: linear-gradient(90deg, #000000, #0c642a, #000000);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-flow 9s linear infinite;
}

.lead {
    font-size: clamp(1rem, 3vw, 1.25rem);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.home-a {
    font-size: 1.1rem !important;
    font-weight: 400 ! important;
    padding: 6px 24px !important;
}

/* Image */
.img-fluid {
    width: 100%;
    height: auto;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes gradient-flow {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

/* Extra Small (iPhone SE, 320px+) */
@media (max-width: 575px) {
    .vaxa-ai-section {
        min-height: 80vh;
        /* padding: 30px 0; */
    }

    .vaxa-ai-section .container {
        padding: 0 12px;
    }

    .vaxa-ai-section .row {
        text-align: center;
    }

    .vaxa-ai-section .col-lg-6:last-child {
        order: -1;
        /* padding-top: 20px; */
    }

    .vaxa-ai-section .img.img-fluid {
        max-height: 250px;
    }

    .home-a {
        font-size: 1rem !important;
        padding: 12px 30px;
    }

    .bi-arrow-right {
        margin-left: 8px;
        font-size: 1.1rem;
    }

    /* Hide heavy animations */
    .particles {
        display: none;
    }

    .shape {
        opacity: 0.4;
    }
}

/* Small (iPhone 12/13/14, 375-480px) */
@media (max-width: 767px) {
    .shape-1 {
        width: 50px;
        height: 50px;
    }

    .shape-2 {
        width: 80px;
        height: 80px;
    }

    .shape-3 {
        width: 40px;
        height: 40px;
    }

    .shape-4 {
        width: 60px;
        height: 60px;
    }

    .shape-5 {
        width: 25px;
        height: 25px;
    }

    .shape-6 {
        width: 55px;
        height: 55px;
    }

    .particle {
        width: 3px;
        height: 3px;
    }
}

/* Tablet Portrait (iPad Mini, 768px) */
@media (min-width: 768px) and (max-width: 991px) {
    .vaxa-ai-section {
        min-height: 70vh;
        padding: 50px 0;
    }

    .row {
        align-items: center;
    }

    .col-lg-6 {
        margin-bottom: 0;
    }

    img.img-fluid {
        max-height: 350px;
    }

    h3.display-6.fw-normal {
        font-size: 2rem;
    }

    h6.display-6.fw-bold {
        font-size: 2.25rem;
    }
}

/* Tablet Landscape (iPad Pro, 1024px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .vaxa-ai-section {
        padding: 70px 0;
    }

    img.img-fluid {
        max-height: 450px;
    }
}

/* Landscape iPhone */
@media (max-height: 500px) and (orientation: landscape) {
    .vaxa-ai-section {
        min-height: 100vh;
        /* padding: 20px 0; */
    }


}

/* High DPI Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .shape {
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    }

    img.img-fluid {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* End : AI Section */

/* Start : Our Services Grid */

.our-services {
    background: rgb(241, 244, 250);
    padding-bottom: 100px;
}

/* Dark overlay */
.vaxa-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}


.service-grid {
    display: grid;
    gap: clamp(20px, 3vw, 24px);
    /* Desktop: 3 columns */
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(200px, auto);
}

/* Base Service Card */
.service-card {
    border-radius: 18px;
    padding: clamp(20px, 3vw, 30px);
    position: relative;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Light & Dark variants */


.service-card.horizontal.dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom left,
            rgba(138, 43, 226, 0.45) 5%,
            rgba(255, 105, 180, 0.35) 25%,
            rgba(255, 0, 80, 0.25) 50%,
            rgba(0, 0, 0, 0.85) 90%);
    z-index: 0;
    border-radius: 18px;
}

.service-card.horizontal>* {
    position: relative;
    z-index: 1;
}

.service-card:hover .image-content img {
    transform: scale(1.05);
}

/* Vertical Card */
.service-card.vertical {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(25px, 4vw, 35px);
    color: #fff;
    background: #0b0b0b;
}

.service-card.vertical .image-vertical {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 18px;
}

.service-card.vertical .image-vertical img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card.vertical:hover .image-vertical img {
    transform: scale(1.05);
}

.service-card.vertical>*:not(.image-vertical) {
    position: relative;
    z-index: 1;
}

/* Typography inside cards */
.service-card h4 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin: 0 0 8px;
    font-weight: 600;
}

.service-card p {
    font-size: clamp(13px, 2vw, 15px);
    margin: 0 0 12px;
    opacity: 0.9;
}

/* ===============================
   UNIVERSAL SERVICE CARD
================================ */
.service-card-new {
    position: relative;
    border-radius: 20px;
    padding: 40px 30px;
    overflow: hidden;
    background: #111;
    color: #fff;
    transition: all 0.4s ease;
    z-index: 0;
    /* default gradient fallback */
    --g1: #0d6efd;
    --g2: #7928ca;
    --g3: #ff0080;
    --g4: #00c6ff;
}

/* Animated Gradient Background */
.service-card-new .service-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(135deg,
            var(--g1),
            var(--g2),
            var(--g3),
            var(--g4));
    background-size: 300% 300%;
    animation: gradientMove 8s ease infinite;
    opacity: 0.15;
}

/* Animation */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* CONTENT */
.service-card-new .service-content {
    position: relative;
    z-index: 2;
}

/* ICON */
.service-card-new .icon-box {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--g1), var(--g2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: 0.4s;
}

/* ===============================
   ICON BACKGROUND GRADIENTS
================================ */

.enterprise-service {
    --g1: #0d6efd;
    --g2: #00c6ff;
}

.cloud-service {
    --g1: #28a745;
    /* primary green */
    --g2: #20c997;
    /* soft mint green */
}

.analytics-service {
    --g1: #7928ca;
    --g2: #ff0080;
}

.etl-service {
    --g1: #fd7e14;
    --g2: #ffc107;
}

/* TEXT */
.service-card-new h4 {
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card-new p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* LINK BUTTON */
.service-card-new .service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    position: relative;
}

.service-card-new .service-btn::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(90deg, var(--g2), var(--g3));
    transition: 0.4s;
}

/* .service-card-new .service-btn:hover::after {
    width: 100%;
} */

/* HOVER EFFECT */
.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.service-card-new:hover .icon-box {
    transform: rotate(-8deg) scale(1.1);
}

.text-content {
    flex: 1;
    padding-right: clamp(15px, 3vw, 30px);
    text-align: left;
}

.text-content h4 {
    margin: 8px 0 12px;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
}

.text-content p {
    margin: 0 0 12px;
    font-size: clamp(13px, 2vw, 14px);
    opacity: 0.85;
}

.image-content {
    flex: 0 0 auto;
}

.image-content img {
    width: clamp(200px, 25vw, 270px);
    height: clamp(180px, 22vw, 250px);
    border-radius: 14px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card.horizontal {
        grid-column: span 1;
        grid-row: span 1;
        flex-direction: column;
        text-align: center;
        min-height: 280px;
    }

    .text-content {
        padding-right: 0;
        margin-bottom: 20px;
        text-align: center;
    }

    .service-card.vertical {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .vaxa-service-bg {
        padding: 40px 0;
    }

    .containers {
        padding: 0 15px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        grid-auto-rows: minmax(240px, auto);
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card.horizontal,
    .service-card.vertical {
        grid-column: span 1;
        grid-row: span 1;
    }

    .service-card.horizontal {
        flex-direction: column;
        text-align: center;
        min-height: 260px;
    }

    .text-content {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .image-content img {
        width: 100%;
        max-width: 280px;
        height: 200px;
    }

    .service-card.vertical {
        min-height: 280px;
    }
}

@media (max-width: 480px) {
    /* .logo-img {
        width: 158px;
        height: 55px;
        padding: 20px 0px;
    } */

    .vaxa-service-title {
        margin-bottom: 2rem;
    }

    .service-card {
        padding: 20px 18px;
    }

    .icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .service-icon {
        font-size: 22px;
    }

    .service-card h4 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 14px;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .service-grid {
        grid-auto-rows: minmax(180px, auto);
    }
}

/* End : Vaxa Services */

/* Start : Vaxa Products */
.our-products {
    margin-top: 50px;
}

.product-card {
    position: relative;
    height: 460px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* FRONT */
.card-front {
    position: relative;
    height: 100%;
}

.card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bottom dark gradient */
.card-front::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0));
}

/* Bottom content */
.card-front-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: #fff;
    z-index: 2;
}

.card-front-content h5 {
    margin-bottom: 5px;
}

.card-front-content p {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.card-front-content a {
    font-size: 14px;
    font-weight: 600;
    color: #0d6efd;
    text-decoration: none;
}

.card-front-content a:hover {
    text-decoration: underline;
}

/* Back side */
.card-back {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(13, 110, 253, 1),
            rgba(13, 110, 253, 0.9));
    color: #fff;
    padding: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* bottom align */
    text-align: left;
}

.card-back::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0));
}

.card-back * {
    position: relative;
    z-index: 2;
}

.card-back a {
    font-size: 45px !important;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

/* Hover behavior (unchanged) */
.product-card:hover .card-front {
    opacity: 0;
}

.product-card:hover .card-back {
    opacity: 1;
    transform: translateY(0);
}

/* End : Vaxa Products */

/* Start : vaxa-btn-round */
.vaxa-btn-round-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}


.vaxa-btn-round {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    margin: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    background: none;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
}

/* Attractive Gradient Colors */
.vaxa-btn-round:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50px;
    /* background: linear-gradient(135deg, #ff4757, #c62729); */
    background: linear-gradient(135deg, rgba(13, 110, 253, 1), rgba(13, 110, 253, 0.9));
    width: 42px;
    height: 42px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

/* Initial Blue Text */
.vaxa-btn-round span {
    color: #fff;
    /* Deep Blue */
    letter-spacing: 0.02em;
    position: relative;
    z-index: 2;
}

/* Hover: White Text + Vibrant Background */
.vaxa-btn-round:hover:before {
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, #ff4757, #c62729); */
    background: linear-gradient(135deg, rgba(13, 110, 253, 1), rgba(13, 110, 253, 0.9));
    box-shadow: 0 8px 30px rgba(13, 110, 253, 0.5);
}

.vaxa-btn-round:hover span {
    color: #fff !important;
    /* WHITE TEXT ON HOVER */
}


.vaxa-btn-round:active {
    transform: scale(0.96);
}

/* End : Button Css*/

/* Start : Get In Touch */

.vaxa-get-in-touch {
    background-color: #fafafa;
}


.vaxa-get-in-touch-feature {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.vaxa-get-in-touch-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.vaxa-get-in-touch-icon i {
    color: #0d6efd !important;
}

.transition-all {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lh-1-2 {
    line-height: 1.2;
}

@media (max-width: 768px) {
    .vaxa-get-in-touch-feature {
        margin-bottom: 1.5rem;
        padding: 2rem 1rem;
        margin-left: 0;
        margin-right: 0;
    }
}

/* vaxa-get-in-touch */
/* SECTION BACKGROUND */
.vaxa-get-in-touch {
    background: linear-gradient(120deg,
            #f8f9ff,
            #f1f4ff,
            #fff6f9);
}

/* GRADIENT TEXT */
.gradient-text-01 {
    background: linear-gradient(90deg, #0d6efd, #7928ca, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* SUBTITLE */
.section-subtitle {
    max-width: 650px;
    color: #6c757d;
    font-size: 1.05rem;
}

/* BUTTON */
.vaxa-btn-gradient {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #0d6efd, #7928ca, #ff0080);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s ease;
}

.vaxa-btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(121, 40, 202, 0.35);
}

/* CARDS */
.touch-card {
    height: 100%;
    padding: 40px 30px;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.touch-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.touch-card p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* GRADIENT VARIANTS */
.gradient-card-1 {
    background: linear-gradient(135deg, #0d6efd, #00c6ff);
}

.gradient-card-2 {
    background: linear-gradient(135deg, #7928ca, #ff0080);
}

/* ICON */
.icon-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

/* HOVER EFFECT */
.touch-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

/* tally block */

.tally-service-section .theme-text-color {
    color: #246da8 !important;
}

.tally-features-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.mobile-image-container {
    position: relative;
    /* height: 600px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-frame {
    width: 560px;
    /* height: 380px; */
    background: #1a1a2e;
    border-radius: 40px;
    padding: 12px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    transform: translateX(100px);
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-frame.animate-slide-in {
    transform: translateX(0);
    opacity: 1;
}

.mobile-screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: #0f3460;
}

.mobile-screen img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.mobile-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1a1a2e;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.mobile-buttons {
    position: absolute;
    left: -2px;
    top: 120px;
    width: 4px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.mobile-frame.animate-slide-in~.floating-element {
    opacity: 1;
    transform: translateX(0);
}

.floating-element {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    opacity: 0;
    /* animation: float 3s ease-in-out infinite; */
}

.element-1 {
    top: -20px;
    right: 30px;
    transform: translateX(50px);
    animation-delay: 0.1s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.element-2 {
    bottom: 100px;
    right: 60px;
    transform: translateX(50px);
    animation-delay: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.element-3 {
    top: 200px;
    left: 30px;
    transform: translateX(-50px);
    animation-delay: 0.5s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* footer */
.footer-bottom {
    background-color: #f1f3f5;
    padding: 20px 0;
    border-top: 1px solid #aeb1b4;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.company-info h2 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.company-info h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #3498db, #6c63ff);
}

.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.contact-item i {
    color: #3498db;
    margin-right: 10px;
    margin-top: 3px;
    font-size: 18px;
}

.contact-item a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav h4 {
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.footer-nav h4:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #3498db, #6c63ff);
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-nav ul li a:hover {
    color: #3498db;
    transform: translateX(5px);
}

.services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-tag {
    background-color: #fff;
    border: 1px solid #e9ecef;
    color: #555;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 13px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.service-tag:hover {
    background-color: #3498db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.2);
}

.social-icons {
    display: flex;
    justify-content: start;
    gap: 15px;
    flex-wrap: wrap;
    padding-bottom: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    color: #555;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.social-icon.facebook:hover {
    background-color: #1877f2;
    color: white;
    border-color: #1877f2;
}

.social-icon.twitter:hover {
    background-color: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.social-icon.linkedin:hover {
    background-color: #0077b5;
    color: white;
    border-color: #0077b5;
}

.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    color: white;
    border-color: transparent;
}

.social-icon.youtube:hover {
    background-color: #ff0000;
    color: white;
    border-color: #ff0000;
}


/* blogs */
.vaxa-blogs {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: visible;
}

.vaxa-blogs-title h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.vaxa-blogs-title .lead {
    font-size: 1rem;
}

.blog-row {
    position: sticky;
    top: 25vh;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto 15vh auto;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center top;
    will-change: transform, opacity, filter;
    z-index: 1;
}

/* --- Tablet and Mobile Responsive Logic --- */

@media (max-width: 992px) {
    .vaxa-fixed-top {
        position: unset;
    }

    .mt-banner {
        margin-top: 0px !important;
    }

    .containers {
        grid-template-columns: 1fr !important;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .blog-image-section {
        width: 100%;
    }

    .image-container {
        border-radius: 30px 30px 0 0 !important;
        height: 250px;
    }

    .blog-image {
        height: 42vh !important;
        object-fit: cover !important;
    }

    .blog-content-section {
        width: 100%;
    }

    .blog-content-card {
        border-radius: 0 0 30px 30px !important;
        box-shadow: none;
    }

    .content-inner {
        padding: 20px;
    }


    .blog-row {
        position: relative !important;
        top: 0 !important;
        margin-bottom: 40px !important;
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
        max-width: 95%;
    }

    .features-row {
        flex-direction: row !important;
    }

    .feature-box {
        width: 100%;
        height: auto !important;
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 15px;
    }

    .feature-box i,
    .feature-box p {
        display: none !important;
    }

    .cta-section {
        flex-wrap: nowrap !important;
        width: 100%;
    }

    .blog-footer {
        font-size: 0.75rem !important;
        white-space: nowrap;
    }

    .cta {
        padding: 0 !important;
        background: none !important;
        margin: 0 !important;
        text-decoration: none;
    }

    .cta:before {
        display: none !important;
    }

    .cta span {
        font-size: 0.85rem !important;
        color: #e12323 !important;
        font-weight: 500 !important;
        white-space: nowrap;
    }

    .cta svg {
        stroke: #e12323 !important;
        width: 16px;
        height: 16px;
    }

}


@media (max-width: 576px) {
    .features-row {
        flex-direction: column;
    }

    .feature-box {
        height: auto;
        padding: 15px;
    }

    .blog-title {
        font-size: 1.2rem !important;
    }
}

.containers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 30px;
    background: none !important;
    box-shadow: none !important;
    gap: 0;
}

.blog-image-section,
.blog-content-section {
    flex: 1;
}

.blog-row:nth-child(2) {
    z-index: 1;
}

.blog-row:nth-child(3) {
    z-index: 2;
}

.blog-row:nth-child(4) {
    z-index: 3;
}

.image-container {
    height: 100%;
    border-radius: 30px 0 0 30px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    position: relative;
    background: #fff;
}

.polygon-bg {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50%;
    height: 120%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    clip-path: polygon(20% 0%, 100% 0%, 100% 75%, 55% 100%, 0% 65%, 0% 20%);
    opacity: 0.1;
    z-index: 1;
}

.floating-icons {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
}

.float-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.blog-image {
    width: 100%;
    height: 62vh;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-container:hover .blog-image {
    transform: scale(1.05);
}


.blog-content-section {
    flex: 1;
}

.blog-content-card {
    height: 100%;
    background: white;
    border-radius: 0 30px 30px 0;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.blog-content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gradient-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transition: height 0.4s ease;
    z-index: 2;
    height: 4px;
}

.content-inner {
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Compact Content */
.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.blog-meta .badge {
    font-size: 0.7rem;
    padding: 0.4em 0.8em;
}

.meta-text {
    font-size: 0.75rem;
    color: #6c757d;
}

.blog-title {
    font-size: 1.25rem !important;
    line-height: 1.3;
    margin: 0;
    font-weight: 700;
}

.blog-text {
    font-size: 0.9rem !important;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
    text-align: justify;

    hyphens: auto;
    word-break: break-word;
}

/* Compact Features */
.features-row {
    display: flex;
    gap: 1rem;
}

.feature-box {
    flex: 1;
    padding: 16px 12px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-box:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.feature-box i {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.feature-box h6 {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.feature-box p {
    font-size: 0.7rem;
    margin: 0;
    color: #6c757d;
}

.icon-primary {
    color: #667eea;
}

.icon-success {
    color: #11998e;
}

/* CTA */
.cta-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.blog-footer {
    font-size: 0.8rem;
    color: #6c757d;
}

.cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    margin: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    background: none;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
}

/* Attractive Gradient Colors */
.cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50px;
    /* background: linear-gradient(135deg, #ff4757, #c62729); */
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    width: 48px;
    height: 48px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    /* box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4); */
    box-shadow: 0 8px 30px rgba(51, 19, 197, 0.5);
}

/* Initial Blue Text */
.cta span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #222223;
    /* Deep Blue */
    letter-spacing: 0.02em;
    position: relative;
    z-index: 2;
}

.cta svg {
    position: relative;
    margin-left: 8px;
    fill: none;
    stroke: #222223;
    /* Deep Blue */
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.5;
    transform: translateX(-4px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}


.cta:hover:before {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    box-shadow: 0 8px 30px rgba(51, 19, 197, 0.5);
}

.cta:hover span {
    color: white !important;
}

.cta:hover svg {
    transform: translateX(4px);
    stroke: white !important;
}

.cta:active {
    transform: scale(0.96);
}

.cta svg path {
    transition: stroke 0.3s ease;
}



/* Start : CSS for All the child pages */

.glass-card {
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
    transition: .4s ease;
}

.glass-card:hover {
    transform: translateY(-6px);
}

.icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.dark-section {
    background: var(--dark-bg);
    color: #fff;
}

/* End : CSS for All the child pages */


/* pos css */

.hero-section {
    min-height: 90vh;
}

.subheading {
    font-size: 1.1rem;
    font-weight: 500;
    color: #6c757d;
    /* Bootstrap muted */
}

.main-heading {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 2rem;
    }
}


/* ==================================================
   Floating Food Shapes (Custom)
================================================== */
.shape {
    position: absolute;
    animation: floatUpDown 4s ease-in-out infinite;
}

.shape img {
    width: 35px;
    height: 35px;
}

/* Shape positions */
.shape1 {
    top: 5%;
    left: 5%;
}

.shape2 {
    top: 10%;
    right: 8%;
}

.shape3 {
    bottom: 12%;
    left: 15%;
}

.shape4 {
    bottom: 10%;
    right: 20%;
}

.shape5 {
    top: 12%;
    left: 20%;
}

.shape7 {
    bottom: 18%;
    left: 25%;
}

.shape8 {
    bottom: 18%;
    right: 12%;
}

/* Floating animation */
@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.vx-functionlity-block {
    background: linear-gradient(rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.6)),
        url(./../../img/main-dask-bg.jpg) center / cover no-repeat;
    padding: 80px 0;
}

.hero {
    background: linear-gradient(120deg, #f9fafc, #e6f4ea);
    text-align: center;
}

.hero h1 {
    font-weight: 800;
    color: #1F4C32;
}

.hero p {
    max-width: 780px;
    margin: auto;
    color: #555;
}

.vx-story-block {
    background-color: #222;
}

.avatar-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.overlay {
    position: relative;
}

.middle {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,
            rgba(23, 23, 23, 1) 15%,
            rgba(0, 0, 0, 0) 100%);
    border-radius: 10px;
}

.middle .text {
    position: absolute;
    bottom: 10px;
    padding: 0 20px;
    font-weight: 600;
}


/* ==================================================
   POS Image Animation
================================================== */
.animate-up-down {
    animation: floatUpDown 3s ease-in-out infinite;
}

.btn-primary-custom {
    background-color: #1F4C32;
    color: #ffffff;
    border-radius: 10px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #173b27;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(31, 76, 50, 0.35);
}

.btn-primary-custom:focus {
    box-shadow: none;
}


/* ==================================================
   Feature Cards
================================================== */
.feature-card {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.textnew {
    color: linear-gradient(90deg, #cf2222, #b92670 37.36%, #0089d7 63%, #4b61ad 95.5%);
}

.our-service {
    background: scroll;
}

.services-section {
    padding: 6rem 0;
    background-color: #0f0f0f;
}

.services-section h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-section p {
    color: #ccc;
    font-family: 'Inter', sans-serif;
    margin-bottom: 2rem;
    max-width: 420px;
}

.vx-pos-card {
    height: 100%;
    padding: 32px;
    border-radius: 18px;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vx-pos-card h4 {
    font-weight: 700;
    margin-bottom: 16px;
}

.vx-pos-card p {
    margin: 0;
    line-height: 1.6;
    opacity: 0.95;
}

/* Hover Effect */
.vx-pos-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* Gradient Themes */
.vx-pos-red {
    background: linear-gradient(135deg, #ff6a5b, #e84c3d);
}

.vx-pos-blue {
    background: linear-gradient(135deg, #4b6cb7, #182848);
}

.vx-pos-sky {
    background: linear-gradient(135deg, #6fb1fc, #4364f7);
}

.vx-pos-purple {
    background: linear-gradient(135deg, #8e6db8, #6a4a9e);
}

.vx-service-card {
    background-color: #1F4C32;
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
}

.vx-service-card:hover {
    background-color: #2d4135;
}

.vx-service-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #bbb;
}

.vx-service-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 0.5rem;
    color: #fff;
}

.vx-service-card p {
    font-family: 'Inter', sans-serif;
    color: #ccc;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    line-height: 1.6;
}

.service-img {
    margin-top: 1.5rem;
}

.service-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
    transform: translateY(70px);
}

.vx-service-card:hover .service-img img {
    transform: scale(1.05);
    transform: translateY(-30px);
}

@media (max-width: 992px) {
    .services-section h2 {
        font-size: 2.3rem;
    }

    .service-card {
        margin-bottom: 2rem;
    }
}

.poslayot img {
    max-height: 600px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.466),
            rgba(0, 0, 0, 0.55));
}

.hero-content {
    position: relative;
    color: #fff;
    max-width: 700px;
    padding: 20px;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #d4a373;
    font-size: 26px;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-desc {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 25px;
}

.hero-banner {
    position: relative;
    height: 420px;
    background: url(./../../img/f.1\ \(2\).jpg) center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}


.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7a00, #ff9a3c);
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 14px;
}

/* Section */
.career-section {
    padding: 80px 0;
}

/* Timeline Wrapper */
.timeline {
    position: relative;
    width: 100%;
    margin: auto;
    padding: 40px 0;
}

/* Center Line */
.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 3px;
    height: 100%;
    background: #ff7a00;
    transform: translateX(-50%);
}

/* Timeline Item */
.timeline-item {
    width: 50%;
    padding: 20px 40px;
    position: relative;
}

/* Left Side */
.timeline-item.left {
    left: 0;
    text-align: right;
}

/* Right Side */
.timeline-item.right {
    left: 50%;
}

/* Timeline Dot */
.timeline-item::before {
    content: "";
    position: absolute;
    top: 40px;
    width: 18px;
    height: 18px;
    background: #ff7a00;
    border-radius: 50%;
    border: 4px solid #fff;
    z-index: 2;
}

/* Dot Position */
.timeline-item.left::before {
    right: -9px;
}

.timeline-item.right::before {
    left: -9px;
}

/* Card */
.timeline-content {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f1f1;
    transition: 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-6px);
}

/* Date */
.date {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
    font-weight: 500;
}

/* Title */
.timeline-content h3 {
    font-weight: 700;
    margin-bottom: 5px;
}

/* Company */
.timeline-content h6 {
    font-weight: 600;
    color: #ff7a00;
    margin-bottom: 15px;
}

.timeline-content h6 span {
    color: #888;
    font-weight: 400;
}

/* Paragraph */
.timeline-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* Tags */
.tags span {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 20px;
    border: 1px solid #ff7a00;
    color: #ff7a00;
    margin: 5px 5px 0 0;
}

/* Responsive */
@media (max-width: 768px) {

    .timeline::before {
        left: 8px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 30px;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
        text-align: left;
    }

    .timeline-item::before {
        left: 0;
    }
}

/* Header Wrapper */
.tally-header {
    max-width: 760px;
    margin: auto;
}

/* Small top badge */
.section-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    background: rgba(255, 122, 0, 0.12);
    color: #ff7a00;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

/* Main Heading */
.section-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
}

/* Gradient Text */
.gradient-text-01 {
    background: linear-gradient(135deg, #ff7a00, #ff9a3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Center Divider */
.heading-divider {
    width: 80px;
    height: 4px;
    border-radius: 20px;
    margin: 18px auto;
    background: linear-gradient(135deg, #ff7a00, #ff9a3c);
}

/* Subtext */
.tally-header .lead {
    font-weight: 500;
    color: #333;
}

/* Gradient palette per step */
.timeline-item:nth-child(1) .timeline-content {
    border-left: 5px solid #ff7a00;
    background: linear-gradient(135deg, #fff7f0, #ffffff);
}

.timeline-item:nth-child(2) .timeline-content {
    border-left: 5px solid #6a5cff;
    background: linear-gradient(135deg, #f2f1ff, #ffffff);
}

.timeline-item:nth-child(3) .timeline-content {
    border-left: 5px solid #00b894;
    background: linear-gradient(135deg, #ecfffa, #ffffff);
}

.timeline-item:nth-child(4) .timeline-content {
    border-left: 5px solid #ff4d6d;
    background: linear-gradient(135deg, #fff0f4, #ffffff);
}