﻿:root {
    --logo-black: rgb(100 95 100); --dark-black:rgb(59 57 59); --primary-black:#20282d; --dark-red:hsl(356.79deg 75.1% 48.82%); --yellow:rgb(244 137 36); --light-red:rgb(223 69 57); --linear-gradient:linear-gradient(135deg,hsl(356.79deg 75.1% 48.82%),rgb(244, 137, 36));
    --color-primary: #20282D;
    --color-secondary: #1F1F25;
    --color-blue: #0b4df5;
    --color-sky: #82b440;
    --color-body: #5D666F;
    --color-heading-1: #1C2539;
    --color-title: #141416;
    --color-heading-dark: #141416;
    --transition: .3s;
    --bg-dark-1: #1E1E20;
    --color-white: #fff;
    --color-border: #DDD8F9;
    --border-width: 1px;
    --radius: 10px;
    --color-success: #3EB75E;
    --color-danger: #FF0003;
    --color-warning: #FF8F3C;
    --color-info: #1BA2DB;
    --color-facebook: #3B5997;
    --color-twitter: #1BA1F2;
    --color-youtube: #ED4141;
    --color-linkedin: #0077B5;
    --color-pinterest: #E60022;
    --color-instagram: #C231A1;
    --color-vimeo: #00ADEF;
    --color-twitch: #6441A3;
    --color-discord: #7289da;
    --p-light: 300;
    --p-regular: 400;
    --p-medium: 500;
    --p-semi-bold: 600;
    --p-bold: 700;
    --p-extra-bold: 800;
    --p-black: 900;
    --s-light: 300;
    --s-regular: 400;
    --s-medium: 500;
    --s-semi-bold: 600;
    --s-bold: 700;
    --s-extra-bold: 800;
    --s-black: 900;
    --transition: 0.3s;
    --font-primary: "Aeonik", sans-serif;
    --font-medium: "6500595b785e358dcc2a2f3a_AeonikMedium", sans-serif;
    --font-secondary: "Aeonik", sans-serif;
    --font-3: "fontawesome";
    --font-size-b1: 16px;
    --font-size-b2: 16px;
    --font-size-b3: 22px;
    --line-height-b1: 26px;
    --line-height-b2: 26px;
    --line-height-b3: 1.7;
    --h1: 60px;
    --h2: 48px;
    --h3: 30px;
    --h4: 26px;
    --h5: 24px;
    --h6: 18px;
}

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    font-size: 10px;
    overflow: hidden;
    overflow-y: auto;
    scroll-behavior: auto !important;
}

body {
    font-size: var(--font-size-b1);
    line-height: var(--line-height-b1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Aeonik", sans-serif;
    color: var(--color-body);
    font-weight: var(--p-regular);
    position: relative;
    /* overflow-x: hidden; */
    margin: 0;
    background: #fff;
}


body::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0.05;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
address,
p,
pre,
blockquote,
menu,
ol,
ul,
table,
hr {
    margin: 0;
    margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    word-break: break-word;
    font-family: "Aeonik", sans-serif;
    line-height: 1.4074;
    font-weight: 400 !important;
    color: var(--color-heading-1);
}

h1,
.h1 {
    font-size: var(--h1);
    line-height: 1.3;
    font-weight: 700;
}

h2,
.h2 {
    font-size: var(--h2);
    line-height: 1.1;
}

h3,
.h3 {
    font-size: var(--h3);
    line-height: 1.2;
}

h4,
.h4 {
    font-size: var(--h4);
    line-height: 1.2;
}

h5,
.h5 {
    font-size: var(--h5);
    line-height: 1.2;
}

h6,
.h6 {
    font-size: var(--h6);
    line-height: 1.2;
}

    h1 a,
    h2 a,
    h3 a,
    h4 a,
    h5 a,
    h6 a,
    .h1 a,
    .h2 a,
    .h3 a,
    .h4 a,
    .h5 a,
    .h6 a {
        color: inherit;
    }

.bg-color-tertiary h1,
.bg-color-tertiary h2,
.bg-color-tertiary h3,
.bg-color-tertiary h4,
.bg-color-tertiary h5,
.bg-color-tertiary h6,
.bg-color-tertiary .h1,
.bg-color-tertiary .h2,
.bg-color-tertiary .h3,
.bg-color-tertiary .h4,
.bg-color-tertiary .h5,
.bg-color-tertiary .h6 {
    color: #fff;
}

.bg-color-tertiary p {
    color: #6c7279;
}

.bg-color-tertiary a {
    color: #6c7279;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h1,
    .h1 {
        font-size: 38px;
    }

    h2,
    .h2 {
        font-size: 32px;
    }

    h3,
    .h3 {
        font-size: 28px;
    }

    h4,
    .h4 {
        font-size: 24px;
    }

    h5,
    .h5 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    h1,
    .h1 {
        font-size: 34px;
    }

    h2,
    .h2 {
        font-size: 28px;
    }

    h3,
    .h3 {
        font-size: 24px;
    }

    h4,
    .h4 {
        font-size: 20px;
    }

    h5,
    .h5 {
        font-size: 20px;
    }
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
    font-weight: var(--s-bold);
}

h4,
.h4,
h5,
.h5 {
    font-weight: var(--s-bold);
}

h6,
.h6 {
    font-weight: var(--s-bold);
}

p {
    font-size: var(--font-size-b2);
    line-height: var(--line-height-b2);
    font-weight: var(--p-regular);
    color: var(--color-body);
    margin: 0 0 40px;
}

@media only screen and (max-width: 767px) {
    p {
        margin: 0 0 20px;
        font-size: 16px;
        line-height: 28px;
    }
}

p.b1 {
    font-size: var(--font-size-b1);
    line-height: var(--line-height-b1);
}

p.b3 {
    font-size: var(--font-size-b3);
    line-height: var(--line-height-b3);
}

p.has-large-font-size {
    line-height: 1.5;
    font-size: 36px;
}

p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px;
}

p.has-small-font-size {
    font-size: 13px;
}

p.has-very-light-gray-color {
    color: var(--color-white);
}

p.has-background {
    padding: 20px 30px;
}

p.b1 {
    font-size: var(--font-size-b1);
    line-height: var(--line-height-b1);
}

p.b2 {
    font-size: var(--font-size-b2);
    line-height: var(--line-height-b2);
}

p.b3 {
    font-size: var(--font-size-b3);
    line-height: var(--line-height-b3);
}

p:last-child {
    margin-bottom: 0;
}

.b1 {
    font-size: var(--font-size-b1);
    line-height: var(--line-height-b1);
}

.b2 {
    font-size: var(--font-size-b2);
    line-height: var(--line-height-b2);
}

.b3 {
    font-size: var(--font-size-b3);
    line-height: var(--line-height-b3);
}

.b4 {
    font-size: var(--font-size-b4);
    line-height: var(--line-height-b4);
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0 0 20px;
    width: 100%;
}

    table a,
    table a:link,
    table a:visited {
        text-decoration: none;
    }

cite,
.wp-block-pullquote cite,
.wp-block-pullquote.is-style-solid-color blockquote cite,
.wp-block-quote cite {
    color: var(--color-heading);
}

var {
    font-family: "Aeonik", sans-serif;
}

/*---------------------------
	List Style 
---------------------------*/
ul,
ol {
    padding-left: 18px;
}

ul {
    list-style: square;
    margin-bottom: 30px;
    padding-left: 20px;
}

    ul.liststyle.bullet li {
        font-size: 18px;
        line-height: 30px;
        color: var(--color-body);
        position: relative;
        padding-left: 30px;
    }

@media only screen and (max-width: 767px) {
    ul.liststyle.bullet li {
        padding-left: 19px;
    }
}

ul.liststyle.bullet li::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: var(--color-body);
    left: 0;
    top: 10px;
}

ul.liststyle.bullet li + li {
    margin-top: 8px;
}

ul li {
    font-size: var(--font-size-b1);
    line-height: var(--line-height-b1);
    margin-top: 10px;
    margin-bottom: 10px;
    color: var(--color-body);
}

    ul li a {
        text-decoration: none;
        color: var(--color-gray);
    }

        ul li a:hover {
            color: var(--color-primary);
        }

ul ul {
    margin-bottom: 0;
}

ol {
    margin-bottom: 30px;
}

    ol li {
        font-size: var(--font-size-b1);
        line-height: var(--line-height-b1);
        color: var(--color-body);
        margin-top: 10px;
        margin-bottom: 10px;
    }

        ol li a {
            color: var(--color-heading);
            text-decoration: none;
        }

            ol li a:hover {
                color: var(--color-primary);
            }

    ol ul {
        padding-left: 30px;
    }

.typo-title-area .title {
    margin-top: 0;
}

.paragraph-area p.disc {
    margin-bottom: 20px;
    color: #fff;
}

@media only screen and (max-width: 1199px) {
    h1 {
        font-size: 1.3;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h1 {
        font-size: 54px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h1 {
        font-size: 40px;
        line-height: 1.4;
    }
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 30px;
        line-height: 1.3;
    }
}

@media only screen and (max-width: 575px) {
    h1 {
        font-size: 28px;
        line-height: 1.3;
    }
}

@media only screen and (max-width: 479px) {
    h1 {
        font-size: 26px;
        line-height: 1.3;
    }
}

@media only screen and (max-width: 1199px) {
    h2 {
        font-size: 54px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h2 {
        font-size: 44px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h2 {
        font-size: 36px;
        line-height: 1.4;
    }
}

@media only screen and (max-width: 767px) {
    h2 {
        font-size: 32px;
        line-height: 1.4;
    }
}

@media only screen and (max-width: 575px) {
    h2 {
        font-size: 32px;
        line-height: 1.4;
    }
}

@media only screen and (max-width: 479px) {
    h2 {
        font-size: 26px;
        line-height: 1.4;
    }
}

@media only screen and (max-width: 1199px) {
    h3 {
        font-size: 40px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h3 {
        font-size: 36px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h3 {
        font-size: 30px;
        line-height: 56px;
    }
}

@media only screen and (max-width: 767px) {
    h3 {
        font-size: 30px;
        line-height: 45px;
    }
}

@media only screen and (max-width: 575px) {
    h3 {
        font-size: 24px;
        line-height: 36px;
    }
}

@media only screen and (max-width: 479px) {
    h3 {
        font-size: 22px;
        line-height: 30px;
    }
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
video {
    display: inline-block;
}

    audio:not([controls]) {
        display: none;
        height: 0;
    }

[hidden] {
    display: none;
}

a {
    color: var(--color-heading);
    text-decoration: none;
    outline: none;
}

    a:hover,
    a:focus,
    a:active {
        text-decoration: none;
        outline: none;
        color: var(--color-primary);
    }

    a:focus {
        outline: none;
    }

address {
    margin: 0 0 24px;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

mark {
    background: var(--color-primary);
    color: #ffffff;
}

code,
kbd,
pre,
samp {
    font-size: var(--font-size-b3);
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    color: var(--color-primary);
}

kbd,
ins {
    color: #ffffff;
}

pre {
    font-family: "Raleway", sans-serif;
    font-size: var(--font-size-b3);
    margin: 10px 0;
    overflow: auto;
    padding: 20px;
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
    color: var(--color-body);
    background: var(--color-lighter);
}

small {
    font-size: smaller;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

dl {
    margin-top: 0;
    margin-bottom: 10px;
}

dd {
    margin: 0 15px 15px;
}

dt {
    font-weight: bold;
    color: var(--color-heading);
}

menu,
ol,
ul {
    margin: 16px 0;
    padding: 0 0 0 40px;
}

nav ul,
nav ol {
    list-style: none;
    list-style-image: none;
}

li > ul,
li > ol {
    margin: 0;
}

ol ul {
    margin-bottom: 0;
}

img {
    -ms-interpolation-mode: bicubic;
    border: 0;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 0;
}

form {
    margin: 0;
}

fieldset {
    border: 1px solid var(--color-border);
    margin: 0 2px;
    min-width: inherit;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
    white-space: normal;
}

button,
input,
select,
textarea {
    font-size: 100%;
    margin: 0;
    max-width: 100%;
    vertical-align: baseline;
}

button,
input {
    line-height: normal;
}

    button,
    html input[type=button],
    input[type=reset],
    input[type=submit] {
        -webkit-appearance: button;
        -moz-appearance: button;
        appearance: button;
        cursor: pointer;
    }

        button[disabled],
        input[disabled] {
            cursor: default;
        }


.sticky-left {
    position: sticky;
    top: 20px;
}

.pt-80 {
    padding-top: 80px;
    position: relative;
}

.pb-80 {
    padding-bottom: 80px;
}

.about-us-bg-img {
    background-image: url("../new-images/why-choose-us/Untitled design (44).png");
}

.shape-top-middle {
    position: absolute;
    left: 46%;
    animation: upDown 4s ease forwards infinite;
}

    .shape-top-middle img {
        height: 100px;
    }

@keyframes upDown {
    0% {
        transform: translateY(0);
        opacity: .8;
    }

    50% {
        transform: translateY(14px);
        opacity: 0.6;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.feature-split-section {
    padding: 100px 0;
    background: #fff;
    padding-bottom: 0 !important;
}

.overlap-why{
    margin-bottom: 80px;
}
/* IMAGE STACK */
.image-stack {
    position: relative;
    max-width: 520px;
}

.image-large img {
    width: 100%;
    height: 550px;
    border-radius: 18px;
}

.image-small {
    position: absolute;
    top: 60px;
    right: -60px;
    width: 220px;
    /* animation */
    animation: floating 6s ease-in-out infinite;
}

    .image-small img {
        width: 100%;
        border-radius: 14px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

/* floating animation */
@keyframes floating {
    0% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-18px) translateX(6px);
    }

    100% {
        transform: translateY(0) translateX(0);
    }
}

/*moving truck */
.truck-wrap {
    width: 100%; /* your image size */
    /*animation: moveTruck 6s ease-in-out infinite;*/
}

    .truck-wrap img {
        width: 220px;
        display: block;
    }

@keyframes moveTruck {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(120px); /* move right */
    }

    100% {
        transform: translateX(0); /* come back */
    }
}

/* decorative blank box */
.image-blank {
    position: absolute;
    bottom: -56px;
    left: -33px;
    width: 160px;
    height: 160px;
    z-index: 3;
    pointer-events: none;
}

.image-blank {
    position: absolute;
    bottom: -40px;
    right: -40px;
    animation: rotate360 14s linear infinite;
}

/* CONTENT */
.feature-content {
    padding-left: 40px;
}

    .feature-content .subtitle {
        color: #5b5bff;
        font-weight: 500;
        display: inline-block;
        margin-bottom: 14px;
    }

    .feature-content h2 {
        font-size: 38px;
        font-weight: 700;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .feature-content p {
        color: #6b7280;
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 30px;
    }

/* BUTTON */
.btn-primary-modern {
    display: inline-block;
    background: #4f46e5;
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-primary-modern:hover {
        background: #4338ca;
        transform: translateY(-2px);
    }
@media (max-width: 991px) {
    .image-small,
    .image-blank {
        display: none;
    }

    .feature-content {
        padding-left: 0;
        margin-top: 40px;
    }

        .feature-content h2 {
            font-size: 30px;
        }
}







/* LEFT IMAGE CARD */
.why-alpha-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    max-height: 520px;
}

    .why-alpha-image img {
        width: 100%;
        height: 520px;
        object-fit: cover;
        border-radius: 18px;
    }

/* IMAGE OVERLAY */
.image-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    color: #fff;
}

.overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient( 135deg, var(--dark-red), var(--yellow) );
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.overlay-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

/* RIGHT CONTENT CARDS */
.why-item {
    padding: 28px 32px;
    border-radius: 16px;
    background: #f7f9fc;
    border: 1px solid #abadafb0;
    opacity: 0.45;
    transition: all 0.35s ease;
}

.why-item + .why-item {
    margin-top: 22px;
}
    .why-item.active {
        opacity: 1;
        background: #f1f1f1;
        border: 2px solid #fbe2ab7b; 
        box-shadow: 0 6px 14px rgba(255, 255, 255, 0.6), 0 18px 40px rgba(147, 131, 131, 0.36);
    }


    /* Badge inside card */
    .why-item .badge {
        background: linear-gradient( 135deg, var(--dark-red), var(--yellow) );
        color: #fff;
        padding: 6px 14px;
        border-radius: 999px;
        font-size: 12px;
        margin-bottom: 12px;
        display: inline-block;
    }

    .why-item h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .why-item p {
        color: #5f6c76;
    }

/* Sticky offset */
.sticky-left {
    position: sticky;
    top: 120px;
}
/* pill / chip points under text */
.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.feature-tags span {
    display:block;
    max-width:auto;
    background: #ffffff;
    color: #000000;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 999px;
    line-height: 1.5;
/*    white-space: nowrap;*/
}
.image-small {
    position: absolute;
    top: -33px;
    right: -60px;
    width: 220px;
}
.image-blank {
    position: absolute;
    bottom: -71px;
    right: 40px;
    width: 140px;
    height: 140px;
    border-radius: 16px;
    animation: rotate360 10s linear infinite;
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* overlapping css */
/* SECTION BACKGROUND */
.case-stack-section {
    position: relative;
    padding: 140px 0;
    background-image: url("../new-images/why-choose-us/Untitled design (41).png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

    /* DARK OVERLAY (VERY IMPORTANT) */
    .case-stack-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(212deg, rgb(42 42 43 / 67%), rgb(36 37 38 / 57%));
        z-index: 0;
    }



/* KEEP CONTENT ABOVE OVERLAY */
.case-stack-wrapper {
    position: relative;
    z-index: 2;
}


/* CARD */
.case-card {
    position: sticky;
    top: 80px;
    margin-bottom: 60px;
    z-index: 1;
}

/* CARD BODY */
.case-content {
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    border-radius: 28px;
    padding: 30px 40px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.18);
    transform: scale(0.97);
    transition: transform 0.4s ease;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
}

/* ACTIVE FEEL */
.case-card:nth-child(1) {
    z-index: 1;
}

.case-card:nth-child(2) {
    z-index: 2;
}

.case-card:nth-child(3) {
    z-index: 3;
}

/* TYPOGRAPHY */
.case-tag {
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #6b7280;
}

.case-content h2 {
    font-size: 42px;
    margin: 14px 0;
    color: #0f172a;
}

.case-content p {
    max-width: 520px;
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
}

.meta {
    display: flex;
    gap: 10px;
    margin: 24px 0;
    color: #334155;
}

.case-btn {
    display: inline-block;
    margin-top: 24px;
    background: linear-gradient( 135deg, var(--dark-red), var(--yellow) );
    color: #fff;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
}
.case-stack-spacer {
    height: 240px;
}
.case-card:nth-child(1) {
    top: 120px;
}

.case-card:nth-child(2) {
    top: 140px;
}

.case-card:nth-child(3) {
    top: 160px;
}

@media (max-width: 991px) {
    .case-stack-section {
        background-attachment: scroll;
    }
}
.image-overlay {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
}
/* ============================= */
/* CASE CARD – TEXT + IMAGE LAYOUT */
/* ============================= */

.case-content.case-with-image {
    display: flex;
    align-items: center;
    gap: 48px;
}

/* LEFT TEXT */
.case-text {
    flex: 0 0 55%;
}

/* RIGHT IMAGE */
.case-image {
    flex: 0 0 45%;
    position: relative;
    padding: 30px 40px;
}

.case-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

/* ============================= */
/* MOBILE FIX */
/* ============================= */
@media (max-width: 991px) {
    .case-content.case-with-image {
        flex-direction: column;
    }

    .case-text,
    .case-image {
        flex: 100%;
    }

    .case-image img {
        height: 260px;
    }
}
/* Custom Cursor */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border: 2px solid transparent;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #ff3b30, #ff8c00);
    background-clip: padding-box;
    transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease;
    z-index: 9999999;
}

    /* Hover expand */
    .cursor.hover {
        width: 50px;
        height: 50px;
        opacity: 0.7;
    }

.cursor {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    pointer-events: none;
    position: fixed;
    transform: translate(-50%, -50%);
    z-index: 999999;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #ff3b30, #ff8c00) border-box;
    border: 2px solid transparent;
    transition: width 0.25s ease, height 0.25s ease;
}

    .cursor.hover {
        width: 50px;
        height: 50px;
    }

.rts-section-gapBottom {
    padding: 120px 0;
}


.easy-contact-left-funfacts-8 .signle-contact .main-contact span {
    font-size: 14px;
}


.easy-contact-left-funfacts-8 .signle-contact .main-contact a {
font-size: 16px;
color: #fff;
}

.case-text h2.title.rts-text-anime-style-1
{
    font-size: 40px;
}
.title-area-between-9 .bg-content.title-big {
    font-size: 120px !important;
}
.axp-rmc-whychoose-zone {
    padding: 120px 0;
    background-color: #f5f2f2!important;
}

.consulting-section {
  padding: 80px 0;
  background: #fff;
}

.container {
  max-width: 1366px;
  margin: auto;
  padding: 0 20px;
}

.consulting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* BADGE */
.experience-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #f25c05;
  color: #fff;
  padding: 20px 24px;
  border-radius: 14px;
  text-align: center;
}

.experience-badge h3 {
  font-size: 36px;
  margin: 0;
  line-height: 1;
}

.experience-badge span {
  font-size: 14px;
  display: block;
  margin-top: 6px;
}

/* CONTENT */
.content-box .sub-text {
  color: #777;
  font-size: 14px;
  margin-bottom: 12px;
  display: block;
}

.content-box h2 {
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 30px;
}

/* FEATURES */
.feature {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.feature .icon {
  width: 44px;
  height: 44px;
  background: #1f2933;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.feature h4 {
  margin: 0 0 6px;
  font-size: 18px;
}

.feature p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #f25c05;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .consulting-grid {
    grid-template-columns: 1fr;
  }

  .content-box h2 {
    font-size: 32px;
  }
}
/* Wrapper replaces container */
.consulting-wrapper {
  max-width: 1366px;
  margin: auto;
  padding: 0 24px;
}

/* Image box */
.image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  border-radius: 20px;
}

/* Experience badge */
.experience-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #f25c05;
  color: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  text-align: center;
  animation: floatBadge 3s ease-in-out infinite;
}

.experience-badge h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
}

.experience-badge span {
  font-size: 14px;
}

/* Floating badge */
@keyframes floatBadge {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Rotating circle */
.image-blank {
  position: absolute;
  bottom: -40px;
  right: -40px;
  animation: rotate360 14s linear infinite;
}

@keyframes rotate360 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.image-box {
  position: relative;
  border-radius: 20px;
  overflow: visible !important; /* 🔥 THIS FIXES VISIBILITY */
}
.image-box > img {
  width: 100%;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}
.image-blank {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  z-index: 3; /* 🔥 ABOVE IMAGE */
  pointer-events: none;
}

.image-blank img {
  width: 100%;
  height: auto;
  animation: rotate360 18s linear infinite;
}
@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.experience-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: #ff5a00;
  color: #fff;
  padding: 18px 22px;
  border-radius: 12px;
  z-index: 4; /* 🔥 TOP LAYER */
  text-align: center;
}

.experience-badge h3 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
}

.experience-badge span {
  font-size: 14px;
  display: block;
}
@media (max-width: 768px) {
  .image-blank {
    width: 110px;
    height: 110px;
    bottom: -25px;
    right: -25px;
  }

  .experience-badge {
    top: -10px;
    left: -10px;
    padding: 12px 14px;
  }
}
.image-blank {
  outline: 2px dashed red;
}
.our-story {
  padding: 80px 0;
  background: #fff;
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1366px;
  margin: auto;
  padding: 0 20px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.story-content .pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #cce7f5;
  color: #0b6aa2;
  font-size: 13px;
  margin-bottom: 20px;
}

.story-content h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #263238;
}

.story-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #5f6b72;
  margin-bottom: 18px;
}

/* RIGHT CARD */
.story-stats {
  background: #d4221269;
  border-radius: 24px;
  padding: 24px;
}

.stats-inner {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
}

.stats-header span {
  font-size: 12px;
  letter-spacing: 2px;
  color: #8a9aa5;
}

.stats-header p {
  font-size: 18px;
  margin: 6px 0 24px;
  color: #44525a;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.stat-card {
  padding: 20px;
  border-radius: 16px;
  font-size: 14px;
}

.stat-card h3 {
  font-size: 32px;
  margin-bottom: 8px;
}

.stat-card h3 span {
  font-size: 16px;
}

.stat-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

/* CARD COLORS */
.stat-card.light {
  background: #f4f8fb;
}

.stat-card.soft {
  background: #edf7f8;
}

.stat-card.accent {
  background: #36b3a8;
  color: #fff;
}

.stat-card.dark {
  background: #263238;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-content h2 {
    font-size: 34px;
  }
}
/* OUR STORY – ALPHA */
.our-story {
  position: relative;
}

.alpha-glance-wrapper {
  background: #000000;
  padding: 24px;
  border-radius: 20px;
}

.alpha-glance-header .bg-content.small {
  font-size: 12px;
  opacity: 0.6;
  color: white;
}

/* CARD BASE */
.alpha-stat {
  position: relative;
  height: 180px;
  perspective: 1000px;
  overflow: hidden;
}

/* FLIP WRAPPER */
.alpha-stat .flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

/* AUTO FLIP */
.alpha-stat.is-flipped .flip-inner {
  transform: rotateY(180deg);
}

/* FRONT & BACK */
.alpha-stat .flip-front,
.alpha-stat .flip-back {
  position: absolute;
  inset: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backface-visibility: hidden;
  border-radius: 14px;
}

/* BACK SIDE */
.alpha-stat .flip-back {
  transform: rotateY(180deg);
}
.title-style-two .bg-content
 {
    font-size: 90px;
    position: absolute;
    font-weight: 900;
    letter-spacing: 0;
    left: -8px;
 }

/* DARK CARD FIX */
.alpha-stat.dark .flip-front,
.alpha-stat.dark .flip-back {
  background: #1f2a2f;
  color: #fff;
}
 .gradient-color{
    background: #fff;
    border-radius: 20px;
}
/* LIGHT CARD FIX */
.alpha-stat:not(.dark) .flip-front,
.alpha-stat:not(.dark) .flip-back {
  background: #ffffff;
}

/* TEXT SAFETY */
.alpha-stat p {
  font-size: 16px;
  line-height: 1.4;
  margin: 6px 0 0;
}
/*.alpha-stat:hover .flip-inner {
  transform: rotateY(0deg) !important;
}*/
/* ================================================= */
/* FIX TEXT COLOR FOR FLIP CARDS (FINAL & SAFE FIX) */
/* ================================================= */

/* LIGHT CARDS → BLACK TEXT */
.alpha-stat:not(.dark) .flip-front,
.alpha-stat:not(.dark) .flip-back {
  background: #ffffff;
}

.alpha-stat:not(.dark) .flip-front *,
.alpha-stat:not(.dark) .flip-back * {
  color: var(--color-heading-1) !important;
}

/* DARK CARDS → WHITE TEXT */
.alpha-stat.dark .flip-front,
.alpha-stat.dark .flip-back {
  background: #1f2a2f;
}

.alpha-stat.dark .flip-front *,
.alpha-stat.dark .flip-back * {
  color: #ffffff !important;
}

/* Subtle text contrast control */
.alpha-stat.dark p {
  opacity: 0.85;
}

.alpha-stat:not(.dark) p {
  color: var(--color-body) !important;
}

/* Labels */
.alpha-stat .stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}
.backcolor{
    background: linear-gradient(135deg, #f7f7f8, #ececec);
    border-radius: 20px;
    padding: 20px;
}
.alpha-glance-header .bg-content.small
 {
    font-size: 12px;
    opacity: 0.6;
    color: #000000;
}
/* FLOATING TOOLBAR */





/* MOBILE DISABLE */
@media (max-width: 991px) {
    .header-float {
        display: none;
    }
}


@media (max-width: 1199px) {
      .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
}
@media (max-width: 1199px) {

  /* Keep header structure alive */
  .header-main-one-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* ❌ Hide desktop content */
  .nav-area,
  .button-area {
    display: none !important;
  }

  /* ✅ Show hamburger on right */
  .mobile-menu-btn {
    display: flex !important;
    flex-direction: column;
    gap: 6px;
    margin-left: auto;
    cursor: pointer;
  }

  .mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: #20282d;
  }
}



.alpha-glance-wrapper {
/*    background: linear-gradient(135deg, #ea9e69 0%, #f5b383 40%, #ff3c3c 100%);
    background: linear-gradient(135deg, #ea9e695c 0%, #f5c5a2c4 40%, #ed9696 100%);*/
    background: linear-gradient(135deg, #ea9e69e3 0%, #f5c5a2 40%, #e07171 100%);
    padding: 24px;
    border-radius: 20px;
}
.case-bottom-btn {
    text-align: center;
    margin-top: 60px;
}

.alpha-contact-btn {
    display: inline-block;
    position:relative;
    padding: 14px 40px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff9a1f, #ff3c3c);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s ease-in-out;
}

.alpha-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 60, 60, 0.3);
}


.alpha-stat {
    perspective: 1000px;
    height: 220px;
    cursor: pointer;
    position: relative; /* IMPORTANT */
}

/* INNER */
.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

/* HOVER */
.alpha-stat:hover .flip-inner {
    transform: rotateY(180deg);
}

/* BOTH SIDES */
.flip-front,
.flip-back {
    position: absolute;
    top: 0; /* 🔥 MISSING */
    left: 0; /* 🔥 MISSING */
    width: 100%;
    height: 100%;
    padding: 20px;
    border-radius: 16px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex; /* OPTIONAL FOR ALIGNMENT */
    flex-direction: column;
    justify-content: center;
}

/* FRONT */
.flip-front {
    background: #111;
    color: #fff;
    z-index: 2; /* IMPORTANT */
}

/* BACK */
.flip-back {
    background: #1e1e1e;
    color: #fff;
    transform: rotateY(180deg);
}

.alpha-stat h4{
    font-size:24px;
    margin-bottom:10px;

}
