/********** Template CSS **********/
:root {
    --primary: #FF6F0F;
    --secondary: #FFF0E6;
    --light: #F8F8F9;
    --dark: #001D23;
    --clr-primary: #ea3503;
    --clr-primary-dark: #c42d02;
    --clr-primary-light: #ff6b35;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    display: none;
}

::selection {
    background: #ff5e00;
    color: #fff;
}
.logo-3d {
    font-size: 40px;
    font-weight: 800;
    color: #FF6F0F;
    letter-spacing: 3px;
    text-transform: uppercase;

    /* 3D Effect */
    text-shadow:
        1px 1px 0 #d7410b,
        2px 2px 0 #0a58ca,
        3px 3px 0 #985208,
        4px 4px 6px rgba(0, 0, 0, 0.3);

    /* Smooth look */
    transition: 0.3s ease;
}

/* Hover Animation */
.logo-3d:hover {
    transform: translateY(-5px) scale(1.05);
    text-shadow:
        2px 2px 0 #0b5ed7,
        4px 4px 0 #0a58ca,
        6px 6px 0 #084298,
        8px 8px 15px rgba(0, 0, 0, 0.4);
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    color: var(--primary);
    background: transparent;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.navbar {
    background-color: #F8F8F9;
    box-shadow:
        0 6px 12px rgba(231, 111, 5, 0.109),
        0 12px 25px rgba(221, 89, 7, 0.063);

    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.top-bar {
    height: 45px;
    background-color: #1f1f1fd1;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

/* Logo */
.brand-logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;

    /* Clarity */
    image-rendering: -webkit-optimize-contrast;
    filter: brightness(1.1) contrast(1.15) saturate(1.1);

    /* 3D effect */
    transform: perspective(600px) rotateX(10deg) rotateY(-10deg);

    /* Smooth animation */
    animation: rotate3D 8s linear infinite;
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* 3D rotation animation */
@keyframes rotate3D {
    0% {
        transform: perspective(600px) rotateX(10deg) rotateY(-10deg) rotate(0deg);
    }

    100% {
        transform: perspective(600px) rotateX(10deg) rotateY(-10deg) rotate(360deg);
    }
}

/* Hover enhancement */
.brand-logo-img:hover {
    transform: perspective(600px) rotateX(0deg) rotateY(0deg) scale(1.1);
    filter: brightness(1.2) contrast(1.2) saturate(1.2);
}

/* Text block */
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

/* Brand name */
.brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.brand-name span {
    color: #000;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #0c0c0c;
    font-weight: 500;
    outline: none;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    position: relative;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

/* Show line only for active */
.navbar .navbar-nav .nav-link.active::after {
    width: 100%;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: var(--light);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*** Header ***/
#header-carousel {
    overflow: hidden;
}

#header-carousel .carousel-item {
    height: 100vh;
    min-height: 700px;
    position: relative;
}

/* VIDEO */
.carousel-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

/* OVERLAY */
/* CAPTION CONTAINER */
.carousel-caption {
    position: absolute;
    inset: 0;
    z-index: 2;
    margin-top: 55px !important;
    display: flex;
    justify-content: center;
    /* horizontal center */
    align-items: center;
    /* vertical center */
    text-align: center;
}

.content-col {
    max-width: 700px;
    margin: auto;
}

/* OVERLAY LAYER */
.carousel-caption::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(to bottom,
            rgba(0, 29, 35, 0.532) 0%,
            /* strong at bottom */
            rgba(0, 29, 35, 0.678) 40%,
            rgba(0, 29, 35, 0.722) 70%,
            rgba(0, 29, 35, 0) 100%
            /* transparent at top */
        );
}

/* CONTENT ABOVE OVERLAY */
.carousel-caption .container {
    position: relative;
    z-index: 2;
}

/* Allow clicks to pass through overlay */
.carousel-caption {
    pointer-events: none;
}

/* But allow content inside to be clickable */
.carousel-caption .container,
.carousel-caption .content-box,
.carousel-caption a,
.carousel-caption button {
    pointer-events: auto;
}

/* CONTENT */
.content-col {
    z-index: 3;
}

/* TEXT ANIMATION */
.animate-text {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

.animate-text-delay {
    opacity: 0;
    animation: fadeUp 1.5s ease forwards;
}

.animate-btn {
    opacity: 0;
    animation: fadeUp 2s ease forwards;
}

@keyframes fadeUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

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

/* 3D IMAGE */
.side-img {
    max-width: 50%;
    animation: float3D 5s ease-in-out infinite, fadeImg 5s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

@keyframes float3D {
    0% {
        transform: translateY(0) rotateY(0);
    }

    50% {
        transform: translateY(-25px) rotateY(10deg) scale(1.05);
    }

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

@keyframes fadeImg {

    0%,
    100% {
        opacity: 0.85;
    }

    50% {
        opacity: 1;
    }
}


/* DOT BASE */
.carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    background-color: rgb(255, 255, 255) !important;
    border: none;
    margin: 0 6px;
    opacity: 1;
    transition: all 0.3s ease;
}

/* ACTIVE DOT */
.carousel-indicators .active {
    background-color: #e15e00 !important;
    transform: scale(1.4);
}

@media (max-width: 1000px) {

    #header-carousel .carousel-item {
        height: 70vh;
    }

    .carousel-caption {
        text-align: center;
        justify-content: center;
        background: rgba(0, 29, 35, 0.75);
    }

    .carousel-caption .row {
        flex-direction: column;
        align-items: center;
    }

    .content-col {
        width: 100%;
    }

    .side-img {
        display: none;
    }

    .carousel-video {
        width: 150%;
        height: 150%;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 10px 18px !important;
        font-size: 15px !important;
    }

    .carousel-caption p {
        font-size: 15px !important;
    }

    .carousel-caption h1 {
        font-size: 24px !important;
    }

    .carousel-img{
        height: 250px;
        width: 250px;
    }

    .code-editor-3d {
        width: 300px !important;
        height: 200px !important;
        margin-bottom: 10px !important;
    }

}


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

    #header-carousel .carousel-item {
        height: 50vh;
    }

    .carousel-caption {
        text-align: center;
        justify-content: center;
        background: rgba(0, 29, 35, 0.75);
    }

    .carousel-caption .row {
        flex-direction: column;
        align-items: center;
    }

    .content-col {
        width: 100%;
    }

    .side-img {
        display: none;
    }

    .carousel-video {
        width: 150%;
        height: 150%;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 10px 18px !important;
        font-size: 15px !important;
    }

    .carousel-caption p {
        font-size: 14px !important;
    }

    .carousel-caption h1 {
        font-size: 22px !important;
    }

    .carousel-img{
        height: 200px;
        width: 200px;
    }

    .code-editor-3d {
        width: 300px !important;
        height: 200px !important;
        margin-bottom: 10px !important;
    }

}

/*** Header — Slides ***/

/* Slide 2 — Digital Tree */
.tree-canvas-wrap {
    position: relative;
    width: 360px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#okiTreeCanvas {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    filter: drop-shadow(0 0 12px rgba(59, 158, 255, 0.25));
}

.tree-icon-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.t-icon {
    position: absolute;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: rgba(254, 232, 207, 0.88);
    opacity: 0;
    transform: scale(0.4);
    transition: opacity 0.5s ease, transform 0.5s ease;
    backdrop-filter: blur(4px);
}

.t-icon.visible {
    opacity: 1;
    transform: scale(1);
}

.t-icon.pulse {
    animation: tIconPulse 2.5s ease-in-out infinite;
}

@keyframes tIconPulse {

    0%,
    100% {
        box-shadow: 0 0 8px currentColor;
    }

    50% {
        box-shadow: 0 0 22px currentColor, 0 0 45px currentColor;
    }
}

.t-icon-label {
    position: absolute;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-align: center;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

/* ── TREE RESPONSIVE ── */
.tree-canvas-wrap {
    position: relative;
    width: 360px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .tree-canvas-wrap {
        width: 260px;
        height: 260px;
    }

    #okiTreeCanvas {
        width: 260px !important;
        height: 260px !important;
    }

    .t-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .t-icon-label {
        font-size: 7px;
        bottom: -12px;
    }
}

@media (max-width: 768px) {
    .tree-canvas-wrap {
        width: 200px;
        height: 200px;
        margin-bottom: 1rem;
    }

    #okiTreeCanvas {
        width: 200px !important;
        height: 200px !important;
    }

    .t-icon {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .t-icon-label {
        display: none;
        /* too cramped at small sizes */
    }

    .tree-icon-layer {
        transform-origin: top left;
    }
}

@media (max-width: 480px) {
    .tree-canvas-wrap {
        width: 270px;
        height: 270px;
    }

    #okiTreeCanvas {
        width: 270px !important;
        height: 270px !important;
    }

    .t-icon {
        width: 32px;
        height: 32px;
        font-size: 10px;
    }
}

/* Particles canvas */
#heroParticles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* Floating Tech Badges */
.hero-badge {
    position: absolute;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    letter-spacing: 0.04em;
    animation: heroBadgePop 3s ease-in-out infinite;
    z-index: 5;
}

.hero-badge.pulse-live {
    animation: heroBadgeLive 1.8s ease-in-out infinite;
}

@keyframes heroBadgePop {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: .88;
    }

    50% {
        transform: translateY(-6px) scale(1.06);
        opacity: 1;
    }
}

@keyframes heroBadgeLive {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(56, 214, 140, 0.5);
        transform: translateY(0) scale(1);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(56, 214, 140, 0);
        transform: translateY(-5px) scale(1.06);
    }
}

/* ── Dot-grid canvas background ── */
#okispl-about {
    position: relative;
    overflow: hidden;
    background: #fffbf8;
}

/* Animated SVG dot-grid overlay */
.dot-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
}

/* Floating accent blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    animation: floatBlob 10s ease-in-out infinite alternate;
}

.blob-1 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #fee4db 0%, transparent 70%);
    top: -80px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, #fef0e9 0%, transparent 70%);
    bottom: -60px;
    right: -80px;
    animation-delay: 3s;
}

@keyframes floatBlob {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(30px, 20px) scale(1.1);
    }
}

/* ── Animated dot-ring corner ornament ── */
.corner-dots {
    position: absolute;
    z-index: 2;
    display: grid;
    gap: 9px;
}

.corner-dots.top-left {
    top: -12px;
    left: -12px;
    grid-template-columns: repeat(5, 10px);
}

.corner-dots.bot-right {
    bottom: -12px;
    right: -12px;
    grid-template-columns: repeat(5, 10px);
}

.corner-dots span {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #eb6e25;
    opacity: 0;
    animation: dotPop 2s ease-in-out infinite;
}

/* stagger each dot */
.corner-dots span:nth-child(1) {
    animation-delay: 0.0s;
}

.corner-dots span:nth-child(2) {
    animation-delay: 0.1s;
}

.corner-dots span:nth-child(3) {
    animation-delay: 0.2s;
}

.corner-dots span:nth-child(4) {
    animation-delay: 0.3s;
}

.corner-dots span:nth-child(5) {
    animation-delay: 0.4s;
}

.corner-dots span:nth-child(6) {
    animation-delay: 0.5s;
}

.corner-dots span:nth-child(7) {
    animation-delay: 0.6s;
}

.corner-dots span:nth-child(8) {
    animation-delay: 0.7s;
}

.corner-dots span:nth-child(9) {
    animation-delay: 0.8s;
}

.corner-dots span:nth-child(10) {
    animation-delay: 0.9s;
}

.corner-dots span:nth-child(11) {
    animation-delay: 1.0s;
}

.corner-dots span:nth-child(12) {
    animation-delay: 1.1s;
}

.corner-dots span:nth-child(13) {
    animation-delay: 1.2s;
}

.corner-dots span:nth-child(14) {
    animation-delay: 1.3s;
}

.corner-dots span:nth-child(15) {
    animation-delay: 1.4s;
}

.corner-dots span:nth-child(16) {
    animation-delay: 1.5s;
}

.corner-dots span:nth-child(17) {
    animation-delay: 1.6s;
}

.corner-dots span:nth-child(18) {
    animation-delay: 1.7s;
}

.corner-dots span:nth-child(19) {
    animation-delay: 1.8s;
}

.corner-dots span:nth-child(20) {
    animation-delay: 1.9s;
}

.corner-dots span:nth-child(21) {
    animation-delay: 2.0s;
}

.corner-dots span:nth-child(22) {
    animation-delay: 2.1s;
}

.corner-dots span:nth-child(23) {
    animation-delay: 2.2s;
}

.corner-dots span:nth-child(24) {
    animation-delay: 2.3s;
}

.corner-dots span:nth-child(25) {
    animation-delay: 2.4s;
}

@keyframes dotPop {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 0.9;
        transform: scale(1);
    }
}

/* ── Floating tech-icon badges ── */
.tech-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #f0e7e2;
    border-radius: 40px;
    padding: 6px 14px 6px 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #693119;
    box-shadow: 0 4px 20px rgba(235, 116, 37, 0.1);
    z-index: 5;
    animation: badgeFloat 4s ease-in-out infinite alternate;
    white-space: nowrap;
}

.tech-badge i {
    color: #eb7725;
    font-size: 1rem;
}

.tech-badge.b1 {
    top: 18px;
    left: 20px;
    animation-delay: 0s;
}

.tech-badge.b2 {
    bottom: 55px;
    left: 10px;
    animation-delay: 1.5s;
}

.tech-badge.b3 {
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    animation-delay: 0.8s;
}

@keyframes badgeFloat {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

.tech-badge.b3 {
    transform: translateY(calc(-50% + 0px));
}

.tech-badge.b3:hover {
    transform: translateY(calc(-50% - 5px));
}

/* ── Glowing blue line accent ── */
.glow-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 60%;
    background: linear-gradient(90deg, #eb5a25, transparent);
    border-radius: 2px;
    z-index: 3;
    animation: growLine 3s ease-in-out infinite alternate;
}

@keyframes growLine {
    from {
        width: 30%;
    }

    to {
        width: 70%;
    }
}

/* ── Image frame ── */
.img-frame {
    position: relative;
    min-height: 420px;
}

.img-frame::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 85%;
    height: 85%;
    border: 3px solid #eb7725;
    border-radius: 6px;
    z-index: 1;
    animation: borderPulse 3s ease-in-out infinite;
}

@keyframes borderPulse {

    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 0.9;
    }
}

/* ── Quote card ── */
.quote-card {
    background: linear-gradient(135deg, #fff3ef 0%, #fff 100%);
    border-left: 5px solid #eb6725;
    border-radius: 0 12px 12px 0;
    transition: box-shadow 0.3s;
}

.quote-card:hover {
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
}

/* ── Stats strip ── */
.stat-strip {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
}

.stat-item {
    text-align: center;
}

.stat-item .num {
    font-size: 1.7rem;
    font-weight: 800;
    color: #eb6725;
    line-height: 1;
}

.stat-item .lbl {
    font-size: 0.73rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

/* Heading Animation */
.heading-animated {
    animation: slideUp 1s ease-in-out;
}

/* Underline Animation */
.heading-underline {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ff6a00, #cf035b);
    border-radius: 10px;
    animation: expandLine 1.5s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

@keyframes expandLine {
    from {
        width: 0;
    }

    to {
        width: 90px;
    }
}
@media (max-width: 991px) {

    /* Center all right-column text content */
    #okispl-about .col-lg-6:last-child {
        text-align: center;
    }

    /* Center USP bullets — keep icon+text left-aligned internally */
    #okispl-about .col-lg-6:last-child ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #okispl-about .col-lg-6:last-child ul li {
        text-align: left;
        max-width: 340px;
        width: 100%;
    }

    /* Center CTA buttons */
    #okispl-about .col-lg-6:last-child .d-flex.gap-3 {
        justify-content: center;
    }

    /* Center quote card text */
    .quote-card {
        text-align: left; /* keep quote readable left-aligned */
    }
}
/* Container with 3D perspective */
.tech-stack-container {
    padding: 0.5rem 0;
    perspective: 1200px;
}

/* Grid Layout */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* ================= CARD ================= */
.tech-card {
    position: relative;
    height: 140px;
    border-radius: 18px;
    /*border: 3px dashed #fdd1b1ec;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    overflow: hidden;

    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* 🔥 INNER DEPTH */
    box-shadow:
        inset 4px 4px 8px rgba(0, 0, 0, 0.478),
        /* bottom shadow */
        inset -4px -4px 8px rgba(255, 255, 255, 0.05),
        /* top light */
        0 10px 15px rgba(0, 0, 0, 0.4);
    /* outer depth */
}

/* Show border on hover */
.tech-card:hover::after {
    opacity: 1;
}

/* Shine effect */
.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 234, 213, 0.396), transparent);
    transition: 0.6s;
}

/* ===== HOVER EFFECT (CLEAN 3D) ===== */
.tech-card:hover {
    transform: rotateY(-10deg) scale(1.06);

    /* Outer + Inner depth */
    box-shadow:
        inset 3px 3px 4px rgba(0, 0, 0, 0.6),
        inset -3px -3px 4px rgba(255, 255, 255, 0.06),
        0 10px 15px rgba(0, 0, 0, 0.306),
        0 0 10px rgba(241, 144, 99, 0.5);
}

.tech-card:hover::before {
    left: 100%;
}

.tech-card:hover::after {
    opacity: 1;
}

/* ================= ICON ================= */
.tech-icon img {
    width: 82px;
    height: 72px;

    background: transparent;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    color: #fff;

    transition: all 0.4s ease;
}


/* ================= TEXT ================= */
.tech-name {
    margin-top: 10px;
    font-weight: 600;
    font-size: 18px;
    font-family: MV Boli;

    background: linear-gradient(90deg, #450133, #221937, #001f50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    letter-spacing: 0.5px;

    /* 3D Depth */
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.104),
        0 6px 12px rgba(0, 0, 0, 0.091);

    transition: all 0.3s ease;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 640px) {
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 1rem;
    }

    .tech-card {
        height: 120px;
        padding: 1rem;
    }

    .tech-icon img {
        width: 62px;
        height: 56px;
        font-size: 20px;
    }

    .tech-name {
        font-size: 16px;
    }
}

/* ================= ENTRY ANIMATION ================= */
.tech-card {
    animation: slideUp 0.6s ease-out backwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

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

/* Stagger */
.tech-card:nth-child(1) {
    animation-delay: 0.05s;
}

.tech-card:nth-child(2) {
    animation-delay: 0.1s;
}

.tech-card:nth-child(3) {
    animation-delay: 0.15s;
}

.tech-card:nth-child(4) {
    animation-delay: 0.2s;
}

.tech-card:nth-child(5) {
    animation-delay: 0.25s;
}

.tech-card:nth-child(6) {
    animation-delay: 0.3s;
}

.tech-card:nth-child(7) {
    animation-delay: 0.35s;
}

.tech-card:nth-child(8) {
    animation-delay: 0.4s;
}

.tech-card:nth-child(9) {
    animation-delay: 0.45s;
}

.tech-card:nth-child(10) {
    animation-delay: 0.5s;
}

/* Section spacing */
.why-section {
    margin-top: 20px;
    perspective: 1200px;
}

/* Card */
.why-card {
    position: relative;
    padding: 30px 20px;
    border-radius: 18px;

    background: linear-gradient(135deg, #fff0e6b3, #ffe5d8a5, #ffd1beb7);
    backdrop-filter: blur(12px);

    border: 3px dashed rgba(255, 202, 158, 0.543);

    text-align: center;
    height: 100%;

    transform-style: preserve-3d;
    transition: all 0.4s ease;

    /* 🔥 INNER DEPTH */
    box-shadow:
        inset 4px 4px 10px rgba(0, 0, 0, 0.15),
        inset -4px -4px 10px rgba(255, 255, 255, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.2);
}

.why-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;

    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 60%);
    opacity: 0.6;

    pointer-events: none;
}

/* Gradient border glow */
.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;

    background: linear-gradient(120deg, #f19263b8, #8a5cf696, #ec489a98);

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    opacity: 0;
    transition: 0.4s;
}

/* Hover */
.why-card:hover {
    transform: rotateX(10deg) scale(1.05);

    box-shadow:
        inset 2px 2px 6px rgba(0, 0, 0, 0.2),
        inset -2px -2px 6px rgba(255, 255, 255, 0.5),
        0 20px 40px rgba(0, 0, 0, 0.35),
        0 0 20px rgba(246, 187, 92, 0.5);
}

.why-card:hover::before {
    opacity: 1;
}

/* Icon */
.why-icon {
    font-size: 30px;
    margin-bottom: 15px;
    color: #f46b02;
    transition: 0.4s;
}

.why-card:hover .why-icon {
    transform: translateZ(40px) scale(1.2);
    color: #c94d00;
}

/* Title */
.why-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #0f172a;
    transition: 0.3s;
}

.why-card:hover h5 {
    transform: translateZ(25px);
}

.why-desc {
    font-size: 15px;
    line-height: 1.8;
}

.highlight {
    color: #042b78;
    font-weight: 700;
}

/* Text */
.why-card p {
    font-size: 14px;
    color: #64748b;
}

/* Wrapper */
.clients-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Track */
.clients-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scrollClients 95s linear infinite;
    will-change: transform;
}

/* Card */
.client-card {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    /* IMPORTANT: prevents cards from squishing */

    min-width: 280px;
    padding: 30px 40px;
    background: linear-gradient(145deg, #fae8da, #fde9d7ad, #ffe6dadd);
    border: 3px dashed rgba(254, 154, 92, 0.482);
    transform-style: preserve-3d;
    transition: all 0.5s ease;

    box-shadow:
        inset 6px 6px 12px rgba(0, 0, 0, 0.15),
        inset -6px -6px 12px rgba(255, 255, 255, 0.6),
        0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Logo */
.client-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Name */
.client-card span {
    font-weight: 600;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #001347;
    font-size: 16px;
    white-space: normal;
    max-width: 170px;
}

/* Hover */
.client-card:hover {
    transform: rotateY(-12deg) scale(1.02);
    box-shadow:
        inset 3px 3px 8px rgba(0, 0, 0, 0.2),
        inset -3px -3px 8px rgba(255, 255, 255, 0.7),
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(255, 234, 201, 0.512);
}

.client-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #f9741634, #fcd6b56f, #faddca78);
    z-index: -1;
    opacity: 0;
    transition: 0.4s;
}

.client-card:hover::before {
    opacity: 0.6;
}

/* Animation — translateX(-50%) works ONLY when both halves are identical */
@keyframes scrollClients {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.clients-wrapper:hover .clients-track {
    animation-play-state: paused;
}

.clients-wrapper::before,
.clients-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
}

/*
.clients-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.clients-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}*/


/* HEADER */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

/* ITEMS */
.culture-item {
    break-inside: avoid;
    margin-bottom: 15px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;

    /* ✨ Glass + Depth */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);

    /* ✨ Soft border glow */
    border: 1px solid rgba(255, 255, 255, 0.1);

    /* ✨ Shadow for depth */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);

    /* ✨ Smooth animation */
    transition: all 0.4s ease;
}

/* IMAGE */
.culture-item img {
    width: 100%;
    height: 200px;
    /* fixed small height */
    object-fit: cover;
    /* keeps image nicely cropped */
    display: block;
    transition: transform 0.6s ease;
}

/* HOVER ZOOM */
.culture-item:hover img {
    transform: scale(1.08);
}

/* OVERLAY */
/* OVERLAY CONTAINER */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(241, 113, 49, 0.81),
            rgba(0, 0, 0, 0.689));
    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;

    padding: 20px;
    opacity: 0;
    transition: all 0.4s ease;
}

/* SHOW ON HOVER */
.culture-item:hover .overlay {
    opacity: 1;
}

/* TEXT STYLING */
.overlay h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.overlay p {
    font-size: 13px;
    opacity: 0.85;
    margin: 5px 0 10px;
}

/* PLUS ICON */
.plus-icon {
    width: 35px;
    height: 35px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    transition: 0.3s;
}

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

    .overlay h5 {
        font-size: 16px;
    }

    .overlay p {
        font-size: 12px;
        margin: 4px 0 8px;
    }

    .plus-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .overlay {
        padding: 12px;
    }

    .overlay h5 {
        font-size: 14px;
        line-height: 1.3;
    }

    .overlay p {
        font-size: 11px;
        line-height: 1.4;
        margin: 3px 0 6px;
    }

    .plus-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

/* Extra Small Devices */
@media (max-width: 400px) {

    .overlay h5 {
        font-size: 13px;
    }

    .overlay p {
        font-size: 10px;
    }

    .plus-icon {
        width: 25px;
        height: 25px;
        font-size: 11px;
    }
}

/* ICON HOVER */
.plus-icon:hover {
    background: #000;
    color: #fff;
    transform: scale(1.1);
}

.culture-item:hover::after {
    opacity: 1;
}

/* ✨ PREMIUM HOVER SHADOW */
.culture-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .culture-item img {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
        /* still 2 columns to reduce scroll */
    }

    .culture-item img {
        height: 120px;
        /* smaller images */
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
}

.btn-gradient {
    background: linear-gradient(90deg, #07215dd7, #c73703);
    color: #fff;
    border: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(75, 126, 162, 0.35);
}

/* Hover Effect ✨ */
.btn-gradient:hover {
    background: linear-gradient(90deg, #c73703, #07215dd7);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 25px rgba(75, 126, 162, 0.35);
    color: #fff;
}

/* Zoom animation */
@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}

/* Map container */
.map-box {
    position: relative;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #000000, #1f1e1e, #21201f);
    padding: 2px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
    transition: 0.4s ease;
}

/* Iframe styling */
.map-box iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.form-floating>.form-control {
    border-radius: 12px;
    border: 1px dashed #4e546256;
    padding: 15px;
    background: rgba(255, 245, 234, 0.8);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1),
        inset -2px -2px 5px rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    color: #000;
}

.form-floating>.form-control:focus {
    box-shadow: 0 0 10px rgba(254, 120, 79, 0.8);
    transform: translateY(-2px);
}

.form-floating label {
    color: #49505a;
    font-weight: 500;
}

textarea.form-control {
    resize: none;
}

.btn-3d {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fe7e4f, #ff6600);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Lift */
.btn-3d:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.35);
}

/* Click Effect */
.btn-3d:active {
    transform: scale(0.96);
    box-shadow: inset 3px 3px 8px rgba(0, 0, 0, 0.3);
}

/* Shine Effect */
.btn-3d::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.525);
    transform: skewX(-25deg);
    transition: 0.5s;
}

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

/* Icon animation */
.btn-3d i {
    transition: transform 0.3s ease;
}

.btn-3d:hover i {
    transform: translateX(3px);
}

/* Optional glow */
.btn-3d:hover {
    box-shadow: 0 0 15px rgba(254, 146, 79, 0.8),
        0 15px 25px rgba(0, 0, 0, 0.35);
}

/* Fix SweetAlert2 Icon Display - Override Bootstrap conflicts */
.swal2-container {
    z-index: 2000 !important;
}

.swal2-popup {
    border-radius: 0.5rem !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}


/* Success Icon - Green Checkmark */
.swal2-icon.swal2-success {
    border-color: #10b948 !important;
    background-color: transparent !important;
}

.swal2-icon.swal2-success .swal2-success-ring {
    border-color: #10b964 !important;
}

.swal2-icon.swal2-success .swal2-success-fix {
    background-color: transparent !important;
}

.swal2-icon.swal2-success [class*='swal2-success-line'] {
    background-color: #10b981 !important;
    height: 4px !important;
}

/* Error Icon - Red X */
.swal2-icon.swal2-error {
    border-color: #ce0000 !important;
    background-color: transparent !important;
}

.swal2-icon.swal2-error .swal2-x-mark {
    color: #df0505 !important;
}

.swal2-icon.swal2-error [class*='swal2-x-mark-line'] {
    background-color: #dd0000 !important;
}

/* Warning Icon - Yellow Exclamation */
.swal2-icon.swal2-warning {
    border-color: #f59e0b !important;
    background-color: transparent !important;
}

.swal2-icon.swal2-warning [class*='swal2-x-mark-line'] {
    background-color: #f59e0b !important;
}

.swal2-title {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.75rem !important;
    color: #212529 !important;
}

.swal2-html-container {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    color: #6c757d !important;
    margin: 0.5rem 0 !important;
}

.swal2-confirm {
    border-radius: 0.375rem !important;
    font-weight: 500 !important;
    padding: 0.375rem 1.5rem !important;
    font-size: 0.9rem !important;
    transition: all 0.2s ease !important;
    margin-top: 0.5rem !important;
}

.alert-sm {
    font-size: 0.9rem !important;
    border-radius: 0.375rem !important;
}

/* Remove any Bootstrap form styling that might conflict */
.swal2-popup * {
    box-sizing: border-box !important;
}

/* ===== ABOUT SECTION CSS ===== */
.about-divider {
    width: 48px;
    height: 3px;
    background: var(--bs-primary);
    border-radius: 4px;
}

.journey-text {
    font-size: 8px;
    font-weight: 600;
    color: #c8c8c8de;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.3;
    display: inline-block;
    position: relative;
    opacity: 0.9;
}

/* subtle glowing pulse */
.journey-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #eb8f25, transparent);
    animation: glowLine 2s infinite;
}

@keyframes glowLine {
    0% {
        opacity: 0;
        transform: scaleX(0.5);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }

    100% {
        opacity: 0;
        transform: scaleX(0.5);
    }
}

.about-title {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    line-height: 1.35;
}

.about-text {
    position: relative;
}


/* ===== LAPTOP JOURNEY CSS ===== */
.laptop-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
}

.screen-outer {
    width: 100%;
    background: #1a1f3c;
    border-radius: 16px 16px 0 0;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2.5px solid #2d3561;
}

.screen-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.d-red {
    background: #ff5f57;
}

.d-yellow {
    background: #febc2e;
}

.d-green {
    background: #28c840;
}

.screen-inner {
    background: #0d1129;
    border-radius: 10px;
    overflow: hidden;
}

.terminal-header {
    background: #1a1f3c;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #2d3561;
}

.terminal-title {
    color: #6b7db3;
    font-size: 11px;
    font-family: monospace;
}

.journey-content {
    padding: 16px;
    height: 280px;
    overflow: hidden;
}

.step {
    display: flex;
    gap: 12px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.step.visible {
    opacity: 1;
    transform: translateX(0);
}

.step-line {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    border: 2px solid transparent;
}

.step-dot.active {
    background: #eb8f25;
    border-color: #ad3806;
    box-shadow: 0 0 12px rgba(235, 143, 37, 0.5);
}

.step-dot.done {
    background: #1a1f3c;
    border-color: #eb8f25;
    color: #eb8f25;
}

.connector {
    width: 2px;
    flex: 1;
    background: linear-gradient(#eb8f25, #2d3561);
    min-height: 14px;
    margin: 2px 0;
}

.step-body {
    padding-bottom: 14px;
    flex: 1;
}

.step-year {
    font-size: 12px;
    color: #eb8f25;
    font-family: monospace;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.step-title {
    font-size: 15px;
    color: #e8eaf6;
    font-weight: 600;
    margin: 2px 0;
}

.step-desc {
    font-size: 13px;
    color: #6b7db3;
    line-height: 1.1;
    font-family: cursive;
}

.step-tag {
    display: inline-block;
    background: rgba(235, 143, 37, 0.12);
    color: #eb8f25;
    border: 0.5px solid rgba(235, 143, 37, 0.3);
    border-radius: 4px;
    font-size: 9px;
    padding: 2px 8px;
    margin-top: 4px;
}

.cursor {
    display: inline-block;
    width: 7px;
    height: 13px;
    background: #eb8f25;
    animation: blink 1s infinite;
    vertical-align: middle;
    border-radius: 1px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

.laptop-base {
    width: 100%;
    background: linear-gradient(#2d3561, #1a1f3c);
    height: 18px;
    border-radius: 0 0 8px 8px;
}

.notch {
    width: 120px;
    height: 10px;
    background: #0d1129;
    border-radius: 0 0 10px 10px;
    margin: 0 auto;
}

.laptop-stand {
    width: 80px;
    height: 14px;
    background: linear-gradient(#2d3561, #1a1f3c);
    margin: 0 auto;
    border-radius: 0 0 6px 6px;
}

.typing {
    font-size: 10px;
    color: #eb8f25;
    font-family: monospace;
    margin-top: 6px;
}

.laptop-foot {
    width: 160px;
    height: 8px;
    background: #2d3561;
    margin: 4px auto 0;
    border-radius: 4px;
}

.stats-row {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    width: 100%;
}

.stat-chip {
    flex: 1;
    background: #1a1f3c;
    border: 0.5px solid #2d3561;
    border-radius: 8px;
    padding: 6px 8px;
    text-align: center;
}

.stat-num {
    font-size: 16px;
    font-weight: 700;
    color: #eb8f25;
    font-family: monospace;
}

.stat-lbl {
    font-size: 9px;
    color: #d0d8ed;
    margin-top: 1px;
}

.progress-bar-wrap {
    margin-top: 8px;
    background: #1a1f3c;
    border-radius: 4px;
    height: 3px;
    width: 100%;
}

.progress-bar-fill {
    height: 3px;
    background: linear-gradient(90deg, #ad3806, #eb8f25);
    width: 0;
    transition: width 3s ease;
    border-radius: 4px;
}

@media (max-width: 576px) {
    .journey-content {
        height: 300px;
        padding: 12px;
    }

    .step-title {
        font-size: 12px;
    }

    .step-desc {
        font-size: 10px;
    }
}

/* Journey Step Positioning */
.step {
    display: flex;
    gap: 12px;
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: absolute;
    width: calc(100% - 32px);
}

.step.show {
    opacity: 1;
    transform: translateX(0);
}

.step.hide {
    opacity: 0;
    transform: translateX(24px);
}

/* Step indicator dots */
.step-indicators {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 8px 0 4px;
}

.ind-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2d3561;
    transition: background 0.3s, transform 0.3s;
}

.ind-dot.active {
    background: #eb8f25;
    transform: scale(1.4);
}

/* Step progress bar */
.step-progress {
    margin-top: 8px;
    height: 2px;
    background: #1a1f3c;
    border-radius: 2px;
    overflow: hidden;
}

.step-progress-bar {
    height: 2px;
    background: linear-gradient(90deg, #ad3806, #eb8f25);
    width: 0;
}

/* Stat chip glow */
.stat-chip {
    transition: border-color 0.3s, box-shadow 0.3s;
}

.stat-chip.glow {
    border-color: #eb8f25;
    box-shadow: 0 0 8px rgba(235, 143, 37, 0.2);
}

/* journey-content must be position:relative */
.journey-content {
    position: relative;
}

.step-quote {
    margin-top: 6px;
    font-size: 12px;
    font-style: italic;
    color: #9aa8d6;
    line-height: 1.4;
    position: relative;
    padding-left: 12px;
    opacity: 0.9;
}

/* quote symbol */
.step-quote::before {
    content: "“";
    position: absolute;
    left: 0;
    top: -2px;
    color: #eb8f25;
    font-size: 14px;
    font-weight: bold;
}

/* subtle glow on active step */
.step.show .step-quote {
    color: #cbd5ff;
    text-shadow: 0 0 6px rgba(235, 143, 37, 0.2);
}


/* ===== 3D USP CARDS ===== */
/* GRID */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* CARD */
.usp-card {
    background: linear-gradient(135deg, #fff0e9 70%, #fcae609a 30%);
    border-radius: 18px;
    padding: 1.6rem;
    position: relative;
    overflow: hidden;
    border: 1px dashed rgba(251, 191, 14, 0.64);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08);

    transition: all 0.4s ease;
}

.usp-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.15);
}

/* TOP ACCENT LINE ✨ */
.usp-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #f9830d, #ff5a02);
    opacity: 0.9;
}

/* HEADER */
.usp-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.usp-header h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

/* ICON */
.usp-icon {
    width: 45px;
    height: 45px;
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #eef2ff, #e0e7ff);

    box-shadow:
        0 6px 15px rgba(99, 102, 241, 0.25);

    transition: 0.3s;
}

.usp-card:hover .usp-icon {
    transform: scale(1.1) rotate(3deg);
}

/* COLORS */
.blue {
    background: #ecf3ff;
}

.green {
    background: #f1fff9;
}

.orange {
    background: #fff9f0;
}

.purple {
    background: #f6f3ff;
}

/* BASE BADGE */
.usp-sub {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
    margin-top: 3px;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
}

/* COLORS (BADGE STYLE) */
.usp-sub.blue {
    background: #E6F1FB;
    color: #185FA5;
}

.usp-sub.green {
    background: #E1F5EE;
    color: #0F6E56;
}

.usp-sub.orange {
    background: #FAEEDA;
    color: #854F0B;
}

.usp-sub.purple {
    background: #EEEDFE;
    color: #534AB7;
}

/* HOVER EFFECT */
.usp-sub:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* DESCRIPTION */
.usp-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* TAGS */
.usp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.usp-tags span {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #ffffff;
    color: #334155;
    font-weight: 500;
    transition: 0.25s;
}

.usp-tags span:hover {
    transform: translateY(-2px);
    background: #e2e8f0;
}

/* BORDER ANIMATION BASE */
.usp-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #f9830d, #ff5a02);
    transition: width 0.4s ease;
}

/* HOVER EFFECT */
.usp-card:hover::after {
    width: 100%;
}

.usp-card::after,
.usp-card::before {
    content: "";
    position: absolute;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #f9830d, #ff5a02);
    transition: width 0.4s ease;
}

.usp-card::before {
    top: 0;
}

.usp-card::after {
    bottom: 0;
}

.usp-card:hover::before,
.usp-card:hover::after {
    width: 100%;
}

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

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

@media (max-width: 576px) {
    .usp-grid {
        grid-template-columns: 1fr;
    }
}

/* GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD - PREMIUM 3D GLASS */
.stat-card {
    display: flex;
    gap: 16px;
    padding: 1.6rem 1.8rem;
    border-radius: 20px;

    border: 1px solid rgba(44, 43, 42, 0.38);

    /* 3D Depth */
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* 🌈 COLOR OVERLAY */
.stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.149),
            rgba(249, 209, 166, 0.6));
    z-index: 1;
}

/* Ensure content is above overlay */
.stat-content {
    position: relative;
    z-index: 2;
}


/* LEFT ACCENT LINE */
.stat-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(to bottom, #054482, #60a5fa);
    transition: 0.4s;
}

/* HOVER EFFECT */
.stat-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.15),
        0 15px 25px rgba(0, 0, 0, 0.08);
}

/* GLOW ON HOVER */
.stat-card:hover::after {
    width: 8px;
    filter: brightness(1.2);
}

.stat-card:hover {
    transform: scale(1.01);
}

/* TEXT */
.stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 900;
    color: #060606;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    display: flex;
    gap: 4px;
}

.stat-desc {
    font-size: 11px;
    color: #64748b;
    margin-top: 6px;
}

/* PROGRESS */
.progress {
    height: 6px;
    background: #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 10px;
}

.bar {
    height: 100%;
    width: 0%;
    border-radius: 20px;
    transition: width 1.5s ease;
}

/* COLOR THEMES WITH ACCENT MATCH */

/* BLUE */
.blue::after {
    background: linear-gradient(to bottom, #2563eb, #60a5fa);
}

.blue .stat-number {
    color: #2563eb;
}

.blue .bar {
    background: linear-gradient(90deg, #2563eb, #60a5fa);
}

/* GREEN */
.green::after {
    background: linear-gradient(to bottom, #059649, #34d346);
}

.green .stat-number {
    color: #059649;
}

.green .bar {
    background: linear-gradient(90deg, #059649, #34d346);
}

/* OLIVE */
.olive::after {
    background: linear-gradient(to bottom, #0f8691, #16b1cc);
}

.olive .stat-number {
    color: #0f8691;
}

.olive .bar {
    background: linear-gradient(90deg, #0f8691, #16b1cc);
}

/* ORANGE */
.orange::after {
    background: linear-gradient(to bottom, #ea0c8a, #fb3c95);
}

.orange .stat-number {
    color: #ea0c8a;
}

.orange .bar {
    background: linear-gradient(90deg, #ea0c8a, #fb3c95);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* PERSPECTIVE (parent) */
.col-lg-3 {
    perspective: 1200px;
}

/* CARD */
.service-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 0;
    text-align: center;
    border: 2px dashed rgba(218, 106, 49, 0.211);
    height: 100%;
    position: relative;
    overflow: hidden;

    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;

    background: radial-gradient(circle at 20% 20%, rgba(243, 131, 11, 0.466), transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(255, 140, 0, 0.248), transparent 70%);

    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
}

/* SINGLE HOVER (merged properly) */
.service-card:hover {
    transform: rotateY(-6deg) translateY(-10px) scale(1.03);
    box-shadow:
        0 25px 50px rgba(232, 92, 10, 0.18),
        0 12px 20px rgba(0, 0, 0, 0.1);
}

/* LIGHT GLOW EFFECT */
.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(211, 123, 7, 0.25), transparent 70%);
    opacity: 0;
    transition: 0.4s;
    z-index: 1;
}

.service-card:hover::after {
    opacity: 1;
}

/* INNER WRAPPER */
.card-inner {
    position: relative;
    padding: 25px 20px;
    z-index: 2;
    height: 100%;
}

/* ICON */
.service-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #060e77, #093999);
    color: #fff;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;

    transition: all 0.3s ease;
}

/* TITLE */
.service-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #f7520c;
    transition: all 0.3s ease;
}

/* OVERLAY */
.overlay-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(186, 9, 118, 0.818), rgba(244, 159, 0, 0.824));
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px dashed #eb69053d;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.4s ease;
    z-index: 3;
}

/* TEXT */
.overlay-content p {
    font-size: 14px;
    line-height: 1.6;
}

/* HOVER SHOW OVERLAY */
.service-card:hover .overlay-content {
    opacity: 1;
    transform: translateY(0);
}

/* HIDE DEFAULT CONTENT SMOOTHLY */
.service-card:hover .icon {
    opacity: 0;
    transform: translateY(-15px) scale(0.8);
}

.service-card:hover h5 {
    opacity: 0;
    transform: translateY(-10px);
}

.process-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1s0px;
    padding: 40px 20px;
    background-color: #f7efe5;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Center line */
.process-line {
    position: absolute;
    top: 70px;
    left: 5%;
    width: 90%;
    height: 4px;
    background: linear-gradient(to right, #b82b00, #f04b05);
    z-index: 0;
}

.process-step {
    position: relative;
    text-align: center;
    flex: 1;
    z-index: 1;
    transition: 0.3s;
}

.process-step:hover {
    transform: translateY(-8px);
}

/* Icon */
.process-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #042b78;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #042b78;
    transition: 0.3s;
}

.process-step:hover .process-icon {
    background: #f04b05;
    color: #fff;
    transform: scale(1.1);
}

/* Title */
.process-step h5 {
    color: #042b78;
    font-weight: 600;
}

.process-step:hover h5 {
    color: #f04b05;
}

/* Responsive (Mobile → Vertical Timeline) */
@media (max-width: 768px) {

    .process-wrapper {
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    /* Vertical center line */
    .process-line {
        width: 4px;
        height: 100%;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .process-step {
        position: relative;
        text-align: center;
        background-color: #fff;
        margin-bottom: 40px;
    }

    /* 🔥 KEY FIX: Pull icon over the line */
    .process-icon {
        position: relative;
        z-index: 2;
        background: #fff;
    }
}

/* Card base */
.industry-item {
    background: linear-gradient(135deg, #fcae605e 30%, #fffaf7 30%);
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #f04b05;
}

/* Soft gradient glow background */
.industry-item::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at top right, rgba(240, 76, 5, 0.259), transparent 60%);
    top: -50%;
    right: -50%;
    transition: 0.4s;
}

/* Hover effect */
.industry-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.industry-item:hover::before {
    top: -30%;
    right: -30%;
}

/* Icon styling */
.industry-item i {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #042b78, #0a4dbe);
    color: #fff !important;
    font-size: 1.8rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(4, 43, 120, 0.2);
}

/* Icon hover */
.industry-item:hover i {
    background: linear-gradient(135deg, #f04b05, #ff7a3d);
    transform: rotate(10deg) scale(1.1);
}

/* Title */
.industry-item h5 {
    font-weight: 600;
    color: #e24903;
    margin-bottom: 10px;
    transition: 0.3s;
}

.industry-item:hover h5 {
    color: #042b78;
}

/* Text */
.industry-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #515862;
}

/* Optional subtle bottom line */
.industry-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 3px;
    background: #f04b05;
    transition: 0.4s;
    transform: translateX(-50%);
}

.industry-item:hover::after {
    width: 60%;
}

/* Accordion container spacing */
.accordion-item {
    border: none;
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

/* Hover lift */
.accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Header button */
.accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: #042b78;
    background: #f8faff;
    border: none;
    padding: 18px 20px;
    transition: all 0.3s ease;
}

/* Remove Bootstrap arrow */
.accordion-button::after {
    display: none;
}

/* Custom icon ( + / - ) */
.accordion-button::before {
    content: "+";
    font-size: 1.3rem;
    font-weight: bold;
    margin-right: 15px;
    color: #f04b05;
    transition: 0.3s;
}

/* When open */
.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #bb340c, #e85003);
    color: #fff;
}

/* Change + to - */
.accordion-button:not(.collapsed)::before {
    content: "−";
    color: #fff;
}

/* Body */
.accordion-body {
    background: #ffffff;
    padding: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    border-top: 1px solid #eee;
}

/* Smooth collapse animation */
.accordion-collapse {
    transition: all 0.3s ease;
}

/* ===== CAREER SECTION CSS ===== */
.about-divider {
    width: 48px;
    height: 3px;
    background: var(--bs-primary);
    border-radius: 4px;
}

.career-badge {
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    font-family: cursive;
}

/* Perk Cards */
.career-perk-card {
    background: #f8faff;
    border: 1px solid #e2e8f4;
    border-radius: 12px;
    padding: 14px 16px;
    transition: box-shadow 0.25s, transform 0.25s;
}

.career-perk-card:hover {
    box-shadow: 0 6px 24px rgba(10, 37, 124, 0.08);
    transform: translateY(-3px);
}

.career-perk-icon {
    font-size: 22px;
    margin-bottom: 6px;
}

.career-perk-title {
    font-size: 14px;
    font-weight: 700;
    color: #0a257c;
    margin-bottom: 2px;
}

.career-perk-desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
}

/* CTA Button */
.career-cta-btn {
    border-radius: 8px;
    font-size: 0.92rem;
    transition: transform 0.2s;
}

.career-cta-btn:hover {
    transform: translateX(4px);
}

/* Terminal Wrap */
.career-terminal-wrap {
    background: #1a1f3c;
    border-radius: 16px;
    overflow: hidden;
    border: 2.5px solid #2d3561;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.career-term-bar {
    background: #141832;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid #2d3561;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.d-red {
    background: #ff5f57;
}

.d-yellow {
    background: #febc2e;
}

.d-green {
    background: #28c840;
}

.career-term-title {
    color: #6b7db3;
    font-size: 11px;
    font-family: monospace;
    margin-left: 6px;
}

/* Role Cards */
.career-term-body {
    padding: 14px;
    position: relative;
    height: 320px;
    overflow: hidden;
}

.career-role-card {
    position: absolute;
    width: calc(100% - 28px);
    background: #0d1129;
    border: 1px solid #2d3561;
    border-radius: 10px;
    padding: 12px 14px;
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.career-role-card.show {
    opacity: 1;
    transform: translateX(0);
}

.career-role-card.hide {
    opacity: 0;
    transform: translateX(24px);
}

.career-role-card.active-role {
    opacity: 1;
    transform: translateX(0);
}

.career-role-top {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.career-role-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 1px;
}

.career-role-title {
    font-size: 15px;
    color: #e8eaf6;
    font-weight: 700;
    line-height: 1.2;
}

.career-role-meta {
    font-size: 11px;
    color: #6b7db3;
    font-family: monospace;
    margin-top: 2px;
}

.career-role-badge {
    margin-left: auto;
    background: rgba(235, 143, 37, 0.15);
    color: #eb8f25;
    border: 0.5px solid rgba(235, 143, 37, 0.4);
    border-radius: 5px;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.new-badge {
    background: rgba(40, 200, 100, 0.12) !important;
    color: #28c864 !important;
    border-color: rgba(40, 200, 100, 0.35) !important;
}

.career-role-desc {
    font-size: 12px;
    color: #6b7db3;
    line-height: 1.5;
    margin-bottom: 8px;
}

.career-role-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.role-tag {
    background: rgba(10, 37, 124, 0.2);
    color: #8ea4e8;
    border: 0.5px solid rgba(10, 37, 124, 0.4);
    border-radius: 4px;
    font-size: 10px;
    padding: 2px 8px;
    font-family: monospace;
}

/* Indicators */
.career-indicators {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 8px 0 10px;
}

.career-ind {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2d3561;
    transition: background 0.3s, transform 0.3s;
}

.career-ind.active {
    background: #eb8f25;
    transform: scale(1.4);
}

/* Stats Row */
.career-stats-row {
    display: flex;
    gap: 8px;
}

.career-stat {
    flex: 1;
    background: #1a1f3c;
    border: 0.5px solid #2d3561;
    border-radius: 8px;
    padding: 8px;
    text-align: center;
}

.career-stat-num {
    font-size: 15px;
    font-weight: 700;
    color: #eb8f25;
    font-family: monospace;
}

.career-stat-lbl {
    font-size: 9px;
    color: #d0d8ed;
    margin-top: 2px;
}

/* Term section label */
.career-term-section-label {
    font-size: 10px;
    font-family: monospace;
    color: #eb8f25;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 700;
}

/* Skill Bars */
.career-skill-bars {
    margin: 10px 0 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.skill-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    color: #6b7db3;
    font-family: monospace;
}

.skill-bar-row span:first-child {
    width: 90px;
    flex-shrink: 0;
    color: #9aa8d6;
}

.skill-bar-row span:last-child {
    width: 30px;
    text-align: right;
    color: #eb8f25;
    flex-shrink: 0;
}

.skill-bar-track {
    flex: 1;
    height: 4px;
    background: #1a1f3c;
    border-radius: 4px;
    overflow: hidden;
}

.skill-bar-fill {
    height: 4px;
    background: linear-gradient(90deg, #ad3806, #eb8f25);
    border-radius: 4px;
    width: 0;
    transition: width 1s ease;
}

.career-role-card.show .skill-bar-fill,
.career-role-card.active-role .skill-bar-fill {
    width: var(--bar-width, 0%);
}

@media (max-width: 576px) {
    .career-term-body {
        height: 260px;
    }

    .career-role-title {
        font-size: 13px;
    }

    .career-role-desc {
        font-size: 11px;
    }
}

/* ===== OPEN POSITIONS SECTION ===== */
.ops-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e8f0fe, #dbeafe);
    color: #0a257c;
    border-radius: 999px;
    padding: 6px 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    border: 1px solid #bfdbfe;
}

.ops-main-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
}

.ops-title-highlight {
    color: #f95700;
    position: relative;
}

.ops-stats-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.btn-okispl-primary {
    background-color: #042b78;
    border: #fdfeff;
    color: #fff;
}

.btn-okispl-primary:hover {
    border: 1px solid #042b78 !important;
    background-color: #ffffff;
    color: #042b78 !important;
}

.ops-stat-item {
    text-align: center;
}

.ops-stat-num {
    font-size: 28px;
    font-weight: 1000;
    color: #0a257c;
}

.ops-stat-lbl {
    font-size: 11px;
    color: #758294;
    font-weight: 700;
    letter-spacing: .06em;
}

/* Filter Buttons */
.ops-fb {
    padding: 4px 10px;
    border-radius: 999px;
    border: 1.5px solid #88909b;
    background: #e8f3ff;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all .2s;
}

.ops-fb:hover,
.ops-fb.on {
    background: #e74e01;
    color: #fff;
    border-color: #0a257c;
}

/* Job Card */
.op-card {
    background: linear-gradient(135deg, #fff1ec, #e8f1ff);
    border-radius: 20px;
    border: 2px dashed #d5e2ff;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}

.op-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(10, 37, 124, .1);
}

.op-card-stripe {
    height: 5px;
}

.op-card-body {
    padding: 20px 22px 0;
}

.op-icon-ring {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: #fff6f4;
    border: 2px solid #fdbe92;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

/* Status Badges */
.op-sb {
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 999px;
    letter-spacing: .05em;
}

.sb-hiring {
    background: #dcfce7;
    color: #166534;
}

.sb-draft {
    background: #fef3c7;
    color: #92400e;
}

.sb-urgent {
    background: #fee2e2;
    color: #991b1b;
}

.sb-new {
    background: #dbeafe;
    color: #1d4ed8;
}

.op-type-tag {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 5px;
    background: #fad998;
    color: #2a313b;
}

.op-job-title {
    font-size: 18px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.25;
}

.op-dept-lbl {
    font-size: 12px;
    color: #0a257c;
    font-weight: 700;
}

.op-meta-pill {
    font-size: 12px;
    color: #475569;
    background: #ffffff;
    border-radius: 7px;
    padding: 5px 10px;
    border: 1px solid #c3c8cf;
}

.op-open-badge {
    background: #fffcf8;
    color: #d85e1d;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid #fee6bf;
}

.op-ddl-txt {
    font-size: 11px;
    color: #33383f;
}

.op-ddl-txt b {
    color: #ef4444;
}

.op-desc {
    font-size: 13px;
    color: #272e38;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.op-skill-tag {
    background: #eef2ff;
    color: #3730a3;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border: 1px solid #e0e7ff;
}

/* Card Footer */
.op-card-foot {
    padding: 14px 22px 20px;
    border-top: 1px solid #dfdedcd6;
    margin-top: 16px;
}

.op-detail-btn {
    background: transparent;
    border: 1.5px solid #e76e04;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 700;
    color: #e76e04;
    cursor: pointer;
    transition: all .2s;
}

.op-detail-btn:hover {
    border-color: #0a257c;
    color: #0a257c;
}

/* Apply CTA Button */
.op-apply-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e74e01, #030f80);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 16px;
    cursor: pointer;
    transition: all .2s;
}

.op-apply-cta:hover {
    background: linear-gradient(135deg, #030f80, #e74e01);
    transform: scale(1.04);
}

.op-cta-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, .15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.op-cta-txt {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1;
}

.op-cta-txt span {
    font-size: 14px;
    opacity: .7;
    font-weight: 600;
    margin-bottom: 2px;
}

.op-cta-txt strong {
    font-size: 13px;
    font-weight: 800;
}

/* Hidden col */
.op-col.hidden {
    display: none !important;
}

/* ===== MODAL ===== */
.op-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.op-modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.op-modal {
    background: #fff;
    border-radius: 24px;
    width: 100%;
    max-width: 580px;
    max-height: 95vh;
    overflow-y: auto;
    transform: translateY(30px) scale(.97);
    transition: all .3s;
    box-shadow: 0 32px 80px rgba(10, 37, 124, .2);
    position: relative;
}

.op-modal-overlay.open .op-modal {
    transform: translateY(0) scale(1);
}

.op-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(205, 196, 196, 0.641);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 15px;
    cursor: pointer;
    color: #f8fbff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    z-index: 2;
}

.op-modal-close:hover {
    background: #fee2e2;
    color: #ef4444;
}

.op-modal-role-strip {
    position: relative;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 24px 24px 0 0;

    /* Gradient base */
    background: linear-gradient(135deg, #c54201, #020d63);

    /* Glass effect */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* Subtle shadow */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

    /* Smooth transition */
    overflow: hidden;
}

/* Shine effect on hover */
.op-modal-role-strip:hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);

    animation: shine 1s ease;
}

/* Animations */
@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

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

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.spinner {
    width: 22px;
    height: 22px;
    border: 3px solid #e2e8f0;
    border-top: 3px solid #0a257c;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.op-modal-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.536);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.op-modal-role-name {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 2px;
}

.op-modal-role-dept {
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
    font-weight: 600;
}

.op-modal-meta-pill {
    background: rgba(255, 255, 255, 0.318);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
}

.op-modal-body {
    padding: 24px;
}

.op-modal-sec-label {
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.op-fl {
    font-size: 14px;
    font-weight: 700;
    color: #12297a;
    display: block;
    margin-bottom: 5px;
}

.op-finput {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #a8b3ce61;
    border-radius: 10px;
    font-size: 13px;
    color: #0f172a;
    background: #f8faff;
    outline: none;
    transition: border-color .2s;
    font-family: inherit;
}

.op-finput:focus {
    border-color: #0a257c86;
    background: #fff;
}

.op-ftextarea {
    resize: vertical;
    min-height: 90px;
}

.op-upload-zone {
    border: 2px dashed #1a417493;
    border-radius: 12px;
    padding: 22px;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s;
    background: #f8faff;
}

.op-upload-zone:hover {
    border-color: #e83701;
}

.op-upload-zone strong {
    font-size: 13px;
    color: #e83701;
    display: block;
    margin-top: 6px;
}

.op-upload-zone p {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 4px;
}

.op-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #ca4304, #0c308d);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: background .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.op-submit-btn:hover {
    background: linear-gradient(135deg, #0c308d, #ca4304);
}

.op-submit-btn:active {
    transform: scale(.98);
}

@media (max-width: 576px) {
    .ops-stats-row {
        gap: 20px;
    }

    .ops-main-title {
        font-size: 1.7rem;
    }

    .op-modal-role-strip {
        flex-direction: column;
        text-align: center;
    }
}

/* ── Testimonials Section ── */
.testimonials-outer {
    position: relative;
    overflow: hidden;
    padding: 10px 0 20px;
}

.testimonials-fade-left,
.testimonials-fade-right {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.testimonials-fade-left {
    left: 0;
    background: linear-gradient(to right, #f8f9ff 0%, rgba(248, 249, 255, 0.6) 60%, transparent 100%);
}

.testimonials-fade-right {
    right: 0;
    background: linear-gradient(to left, #f8f9ff 0%, rgba(248, 249, 255, 0.6) 60%, transparent 100%);
}

.testimonials-wrapper {
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    padding: 12px 0;
}

.testimonials-wrapper:active {
    cursor: grabbing;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    width: max-content;
    padding: 8px 12px 24px;
}

/* ── Card ── */
.testimonial-card {
    background: linear-gradient(135deg, #cddcffc7, #fdf4e2, #faeae5, #cddcffc7);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-top: 3px solid transparent;
    border-radius: 20px;
    padding: 28px 26px 24px;
    width: 300px;
    flex-shrink: 0;
    box-shadow:
        0 4px 6px rgba(99, 102, 241, 0.04),
        0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-top-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Animated Rotating Border Effect */
.testimonial-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 20px;
}

/* Rotating Gradient Border */
.testimonial-card::after {
    content: '';
    position: absolute;
    width: 220%;
    height: 220%;
    top: -60%;
    left: -60%;
    background: conic-gradient(from 0deg,
            #f86700,
            #fa9405,
            #ece6ff,
            #ebfaff,
            #091061);
    animation: rotateBorder 6s linear infinite;
    z-index: -2;
}

/* Inner Card Layer */
.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ebf7fb, #fdf4e2, #faeae5, #cddcffc7);
    z-index: -1;
}

/* Rotation Animation */
@keyframes rotateBorder {
    100% {
        transform: rotate(360deg);
    }
}

/* Hover Effect */
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 12px 24px rgba(99, 102, 241, 0.12),
        0 24px 54px rgba(0, 0, 0, 0.14);
}

/* ── Stars ── */
.testimonial-stars {
    display: flex;
    margin-bottom: 14px;
    color: #fbbf24;
    font-size: 20px;
    text-shadow:
        0 0 6px rgba(251, 191, 36, 0.7),
        0 2px 4px rgba(0, 0, 0, 0.25);
}


/* ── Text ── */
.testimonial-text {
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 22px;
    font-style: italic;
}

/* ── Author row ── */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(241, 156, 99, 0.27);
}

/* Rounded-square avatar instead of circle */
.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: 0.5px;

    /* Attractive Gradient Background */
    background: linear-gradient(135deg, #f5565c, #f68e72, #916be9);

    color: #fff;

    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.12),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.testimonial-name {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Indigo accent on role */
.testimonial-role {
    font-size: 11.5px;
    color: #fa8241;
    margin: 3px 0 0;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ── Responsive ── */
@media (max-width: 576px) {
    .testimonial-card {
        width: 255px;
        padding: 22px 18px 18px;
    }

    .testimonial-card::before {
        font-size: 70px;
    }

    .testimonials-fade-left,
    .testimonials-fade-right {
        width: 50px;
    }
}

/*** Footer ***/
.footer {
    margin-top: auto;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgb(255, 255, 255);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

/* Footer logo */
.footer-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;

    animation: spinLogo 8s linear infinite;
}

/* Rotation animation */
@keyframes spinLogo {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.insta-real {
    background: radial-gradient(circle at 30% 107%,
            #fdf497 0%,
            #fdf497 5%,
            #fd5949 45%,
            #d6249f 60%,
            #285AEB 90%);
    color: white !important;
}

.social-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 6px 15px rgba(255, 254, 254, 0.2);
    opacity: 0.9;
}

/* ── Validation state styles ── */
.op-finput.is-invalid {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.op-finput.is-valid {
    border-color: #22c55e !important;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.op-field-error,
.op-resume-error,
.op-agree-error {
    animation: errFade 0.2s ease;
}

@keyframes errFade {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

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

/* ── Contact form validation states ── */
.form-floating .form-control.is-invalid {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-floating .form-control.is-valid {
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.cf-error {
    font-size: 11.5px;
    animation: cfSlide 0.2s ease;
}

@keyframes cfSlide {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

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

/* ── Hero Buttons ── */
.btn-hero-primary,
.btn-hero-outline {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 0.4px;
}

/* ── Primary: animated gradient fill ── */
.btn-hero-primary {
    color: #fff;
    border: none;
    background: linear-gradient(135deg, #FF6F0F, #c94a00, #FF6F0F);
    background-size: 200% auto;
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 4px 20px rgba(255, 111, 15, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 10px 30px rgba(255, 111, 15, 0.55);
    color: #fff;
    text-decoration: none;
}

.btn-hero-primary:active {
    transform: translateY(0) scale(0.98);
}

/* Shimmer sweep on hover */
.btn-hero-primary .btn-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.55s ease;
}

.btn-hero-primary:hover .btn-hero-bg {
    transform: translateX(100%);
}

@keyframes gradientShift {
    0% {
        background-position: 0% center;
    }

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

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

/* ── Outline: animated border + fill on hover ── */
.btn-hero-outline {
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15), 0 8px 24px rgba(0, 0, 0, 0.2);
    color: #fff;
    text-decoration: none;
}

.btn-hero-outline:active {
    transform: translateY(0) scale(0.98);
}

/* Animated dashed border pulse */
.btn-hero-border {
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

/* Text layer always on top */
.btn-hero-text {
    position: relative;
    z-index: 2;
}