﻿:root {
    --ehs-primary-green: #2D5016;
    --ehs-forest-green: #228B22;
    --ehs-emerald: #10B981;
    --ehs-sage: #87A878;
    --ehs-leaf-green: #4CAF50;
    --ehs-lime: #8BC34A;
    --ehs-mint: #A8D5BA;
    --ehs-earth-brown: #6B4423;
    --ehs-terracotta: #C1502E;
    --ehs-ochre: #CC7722;
    --ehs-sky-blue: #5BA8C4;
    --ehs-ocean: #006B7D;
    --ehs-dark-forest: #1B3A1F;
    --ehs-light-sage: #E8F4EA;
    --ehs-cream: #FAF8F3;
    --ehs-off-white: #F5F7F5;
    --ehs-text-dark: #2C3E2D;
    --ehs-text-medium: #4A5F4B;
    --ehs-text-light: #6B7F6C;
    --ehs-white: #FFFFFF;
    --ehs-gradient-nature: linear-gradient(135deg, #2D5016 0%, #228B22 50%, #4CAF50 100%);
    --ehs-gradient-earth: linear-gradient(135deg, #6B4423 0%, #CC7722 100%);
    --ehs-gradient-sky: linear-gradient(135deg, #5BA8C4 0%, #006B7D 100%);
    --ehs-gradient-fresh: linear-gradient(135deg, #10B981 0%, #8BC34A 100%);
    --ehs-shadow-soft: 0 4px 20px rgba(45, 80, 22, 0.08);
    --ehs-shadow-medium: 0 10px 40px rgba(45, 80, 22, 0.12);
    --ehs-shadow-strong: 0 20px 60px rgba(45, 80, 22, 0.15);
}

.xip-sol {
    background: linear-gradient(135deg, #f5f5f7 0%, #fafafa 100%);
    padding: 60px 0 80px;
}

    .xip-sol .content-wrapper {
        padding-right: 20px;
    }

    .xip-sol h6 {
        color: #b8b8b8;
        font-size: 14px;
        letter-spacing: 2px;
        margin-bottom: 15px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .xip-sol h2 {
        color: #1d1d1f;
        margin-bottom: 25px;
        font-size: 32px;
        font-weight: 700;
        line-height: 1.3;
    }

    .xip-sol p {
        font-size: 16px;
        font-weight: 500;
        color: #1d1d1f;
        line-height: 1.7;
        margin: 0 0 30px;
    }

    .xip-sol .img-wrapper {
        position: relative;
        animation: float 6s ease-in-out infinite;
    }

/* Liquid Glass Button - Gold Only */
.preview-more {
    position: relative;
    display: inline-block;
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(8, 61, 89, 0.9) 0%, rgba(8, 61, 89, 0.7) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(8, 61, 89, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .preview-more::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient( 45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70% );
        transform: rotate(45deg);
        transition: all 0.6s ease;
        opacity: 0;
    }

    .preview-more::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 50px;
        padding: 2px;
        background: linear-gradient(135deg, rgba(226, 185, 35, 0.8), rgba(255, 215, 0, 0.6));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .preview-more .btn-content {
        position: relative;
        z-index: 2;
        display: inline-block;
    }

    .preview-more:hover {
        color: #fff;
        background: linear-gradient(135deg, rgba(226, 185, 35, 0.95) 0%, rgba(255, 215, 0, 0.85) 100%);
        border-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 12px 48px rgba(226, 185, 35, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.5), inset 0 -2px 0 rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }

        .preview-more:hover::before {
            opacity: 1;
            left: 100%;
        }

        .preview-more:hover::after {
            opacity: 1;
        }

    .preview-more:active {
        transform: translateY(0);
        box-shadow: 0 6px 24px rgba(226, 185, 35, 0.3);
    }

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Responsive Breakpoints */

/* Large Desktop and TV Screens */

.xip-sol-bg {
    background: url(../img/stk-bg.png) no-repeat center;
    width: 100%;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    .xip-sol-bg::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(226, 185, 35, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        animation: float-gradient 20s ease-in-out infinite;
    }

@keyframes float-gradient {
}

/* Unique Title Left */
.unique-title-wrapper {
    position: relative;
    padding-left: 30px;
}

.title-accent {
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #e2b923 0%, #ffd700 100%);
    border-radius: 10px;
    animation: pulse-gold 3s ease-in-out infinite;
}

@keyframes pulse-gold {
}

.unique-title-wrapper h4 {
    font-size: 35px;
    font-weight: 700;
    letter-spacing: -1px;
    margin: 0 0 15px 0;
    color: #1d1d1f;
    line-height: 1.1;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
    text-transform: uppercase;
}

    .unique-title-wrapper h4 .highlight {
        background: linear-gradient(135deg, #e2b923 0%, #ffd700 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
        animation: gradient-shift 4s ease infinite;
    }

@keyframes gradient-shift {
}

.title-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #083d59 0%, transparent 100%);
    border-radius: 10px;
    animation: expand-line 2s ease-in-out infinite;
}

@keyframes expand-line {
}

/* Unique Content Right */
.unique-content-wrapper {
    position: relative;
    padding-left: 40px;
}

    .unique-content-wrapper::before {
        content: '"';
        position: absolute;
        left: 0;
        top: -10px;
        font-size: 120px;
        font-weight: 900;
        color: rgba(226, 185, 35, 0.08);
        line-height: 1;
        font-family: Georgia, serif;
    }

.content-decoration {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(8, 61, 89, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.unique-content-wrapper .ptext {
    font-size: 16px;
    font-weight: 500;
    color: #1d1d1f;
    line-height: 1.9;
    margin: 0;
    text-align: justify;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
    letter-spacing: -0.2px;
    position: relative;
    z-index: 2;
}

    .unique-content-wrapper .ptext::first-letter {
        font-size: 56px;
        font-weight: 800;
        float: left;
        line-height: 0.8;
        margin: 8px 10px 0 0;
        color: #e2b923;
    }

/* Plain Image Container - No Effects */
.unique-image-container {
    position: relative;
    margin: 0;
}

    .unique-image-container img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 20px;
    }

/* Utility Classes */
.mb-60 {
    margin-bottom: 60px;
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

/* Large Screens and TV */
/* Section Background */
.sol-sfef-bg {
    background: url(../img/stk-bg-center.png) no-repeat center;
    background-size: cover;
    background-color: #f8f9fa;
    width: 100%;
    position: relative;
}

    .sol-sfef-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(116, 94, 168, 0.03) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(116, 94, 168, 0.03) 100%);
        pointer-events: none;
        z-index: 0;
    }

    .sol-sfef-bg > .container {
        position: relative;
        z-index: 1;
    }

/* Utility Classes */
.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

/* Header Section */
.sol-sfef-header-row {
    margin-bottom: 20px;
}

.sol-sfef-title-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.sol-sfef-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(116, 94, 168, 0.1) 0%, rgba(116, 94, 168, 0.05) 100%);
    color: #745ea8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 20px;
    border: 1px solid rgba(116, 94, 168, 0.3);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.sol-sfef-main-title {
    font-size: 35px;
    font-weight: 700;
    color: #745ea8;
    margin: 15px 0 20px 0;
    letter-spacing: -0.5px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

.sol-sfef-title-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #745ea8 0%, transparent 100%);
    margin: 0 auto;
    border-radius: 10px;
    animation: pulse-width 3s ease-in-out infinite;
}

@keyframes pulse-width {
}

.sol-sfef-desc {
    font-size: 16px;
    font-weight: 500;
    color: #1d1d1f;
    line-height: 1.8;
    max-width: 80%;
    margin: 25px auto 0;
    text-align: center;
}

/* Feature Cards */
.sol-sfef-cards-row {
    position: relative;
}

.sol-sfef-feature-card {
    position: relative;
    padding: 35px 25px;
    background: #ffffff;
    border-radius: 24px;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.sol-sfef-card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 900;
    opacity: 0.05;
    line-height: 1;
    transition: all 0.4s ease;
    z-index: 0;
}

.sol-sfef-icon-wrapper {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

    .sol-sfef-icon-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
        transition: all 0.4s ease;
    }

.sol-sfef-card-content {
    position: relative;
    z-index: 2;
}

    .sol-sfef-card-content p {
        font-size: 15px;
        font-weight: 600;
        text-align: center;
        margin: 0;
        color: #1d1d1f;
        line-height: 1.6;
        transition: color 0.3s ease;
    }

.sol-sfef-card-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

/* Color Variants */
.sol-sfef-cyan {
    border-color: #bee2ca;
}

    .sol-sfef-cyan .sol-sfef-card-overlay {
        background: linear-gradient(135deg, #bee2ca 0%, #d4f1dd 100%);
    }

    .sol-sfef-cyan:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(190, 226, 202, 0.4);
    }

.sol-sfef-light-blue {
    border-color: #89d4e3;
}

    .sol-sfef-light-blue .sol-sfef-card-overlay {
        background: linear-gradient(135deg, #89d4e3 0%, #b3e5f0 100%);
    }

    .sol-sfef-light-blue:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(137, 212, 227, 0.4);
    }

.sol-sfef-green {
    border-color: #d4e05a;
}

    .sol-sfef-green .sol-sfef-card-overlay {
        background: linear-gradient(135deg, #d4e05a 0%, #e4ed8e 100%);
    }

    .sol-sfef-green:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(212, 224, 90, 0.4);
    }

.sol-sfef-light-purple {
    border-color: #c6b1d6;
}

    .sol-sfef-light-purple .sol-sfef-card-overlay {
        background: linear-gradient(135deg, #c6b1d6 0%, #ddd1e8 100%);
    }

    .sol-sfef-light-purple:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(198, 177, 214, 0.4);
    }

.sol-sfef-yellow {
    border-color: #fed961;
}

    .sol-sfef-yellow .sol-sfef-card-overlay {
        background: linear-gradient(135deg, #fed961 0%, #fff0a5 100%);
    }

    .sol-sfef-yellow:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(254, 217, 97, 0.4);
    }

.sol-sfef-brick-red {
    border-color: #f58967;
}

    .sol-sfef-brick-red .sol-sfef-card-overlay {
        background: linear-gradient(135deg, #f58967 0%, #f9b49a 100%);
    }

    .sol-sfef-brick-red:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(245, 137, 103, 0.4);
    }

.sol-sfef-cornflower-blue {
    border-color: #95c9ed;
}

    .sol-sfef-cornflower-blue .sol-sfef-card-overlay {
        background: linear-gradient(135deg, #95c9ed 0%, #c2dff5 100%);
    }

    .sol-sfef-cornflower-blue:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(149, 201, 237, 0.4);
    }

.sol-sfef-baby-blue {
    border-color: #deeaf7;
}

    .sol-sfef-baby-blue .sol-sfef-card-overlay {
        background: linear-gradient(135deg, #deeaf7 0%, #f0f6fb 100%);
    }

    .sol-sfef-baby-blue:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(222, 234, 247, 0.5);
    }

/* Universal Hover Effects */
.sol-sfef-feature-card:hover .sol-sfef-card-overlay {
    bottom: 0;
}

.sol-sfef-feature-card:hover .sol-sfef-card-number {
    opacity: 0.15;
    transform: scale(1.2) rotate(10deg);
}

.sol-sfef-feature-card:hover .sol-sfef-icon-wrapper {
    transform: scale(1.1) translateY(-5px);
}

    .sol-sfef-feature-card:hover .sol-sfef-icon-wrapper img {
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
    }

/* Section Background */
.sol-sbef-bg {
    background: linear-gradient(135deg, rgba(253, 205, 11, 0.05) 0%, rgba(165, 174, 89, 0.05) 50%, rgba(170, 218, 199, 0.05) 100%), url(../img/bg/backend-bg.webp) no-repeat center;
    background-size: cover;
    background-color: #fafbfc;
    width: 100%;
    position: relative;
    overflow: hidden;
}

    .sol-sbef-bg::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -15%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(170, 218, 199, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        animation: float-bubble 20s ease-in-out infinite;
    }

@keyframes float-bubble {
}

/* Header Section */
.sol-sbef-header {
    margin-bottom: 50px;
}

.sol-sbef-title-section {
    position: relative;
    padding-left: 25px;
}

.sol-sbef-label {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, rgba(253, 205, 11, 0.15) 0%, rgba(253, 205, 11, 0.08) 100%);
    color: #d4a900;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 20px;
    border: 1px solid rgba(253, 205, 11, 0.3);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.sol-sbef-accent-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #fdcd0b 0%, #a5ae59 50%, #aadac7 100%);
    border-radius: 10px;
    animation: pulse-line 3s ease-in-out infinite;
}

@keyframes pulse-line {
}

.sol-sbef-title {
    font-size: 35px;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.8px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
    text-transform: uppercase;
}

.sol-sbef-highlight {
    background: linear-gradient(135deg, #fdcd0b 0%, #a5ae59 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.sol-sbef-desc-wrapper {
    padding-left: 30px;
    position: relative;
}

    .sol-sbef-desc-wrapper::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 3px;
        height: 60px;
        background: linear-gradient(180deg, #fdcd0b 0%, transparent 100%);
        border-radius: 10px;
    }

.sol-sbef-description {
    font-size: 16px;
    font-weight: 500;
    color: #1d1d1f;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

/* Cards Grid - Asymmetric Layout */
.sol-sbef-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

.sol-sbef-feature-box {
    position: relative;
    padding: 30px 25px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 280px;
}

    .sol-sbef-feature-box.sol-sbef-large {
        grid-column: 1 / -1;
        min-height: 240px;
    }

.sol-sbef-box-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 40px;
    font-weight: 900;
    opacity: 0.08;
    line-height: 1;
    transition: all 0.4s ease;
}

.sol-sbef-box-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

    .sol-sbef-box-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
        transition: all 0.4s ease;
    }

.sol-sbef-feature-box p {
    font-size: 14px;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0;
    line-height: 1.5;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.sol-sbef-box-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

/* Color Variants */
.sol-sbef-yellow-dk {
    background: linear-gradient(135deg, #fdcd0b 0%, #f5c000 100%);
    border: 3px solid rgba(253, 205, 11, 0.5);
}

    .sol-sbef-yellow-dk:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 50px rgba(253, 205, 11, 0.4);
        border-color: #fdcd0b;
    }

.sol-sbef-navy-green {
    background: linear-gradient(135deg, #a5ae59 0%, #929c4a 100%);
    border: 3px solid rgba(165, 174, 89, 0.5);
}

    .sol-sbef-navy-green:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 50px rgba(165, 174, 89, 0.4);
        border-color: #a5ae59;
    }

.sol-sbef-tale {
    background: linear-gradient(135deg, #aadac7 0%, #92c9b3 100%);
    border: 3px solid rgba(170, 218, 199, 0.5);
}

    .sol-sbef-tale:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 50px rgba(170, 218, 199, 0.4);
        border-color: #aadac7;
    }

/* Hover Effects */
.sol-sbef-feature-box:hover .sol-sbef-box-number {
    opacity: 0.15;
    transform: scale(1.1) rotate(5deg);
}

.sol-sbef-feature-box:hover .sol-sbef-box-icon {
    transform: scale(1.15) translateY(-5px);
}

    .sol-sbef-feature-box:hover .sol-sbef-box-icon img {
        filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
    }

.sol-sbef-feature-box:hover .sol-sbef-box-glow {
    opacity: 1;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
}

/* Image Container */
.sol-sbef-image-container {
    position: relative;
    text-align: center;
    animation: float-image 6s ease-in-out infinite;
}

.sol-sbef-image-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    background: radial-gradient(circle, rgba(170, 218, 199, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

.sol-sbef-image-container img {
    width: 90%;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

@keyframes float-image {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Utility Classes */
.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}

/* Section Styling */
.xstk-app-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

    .xstk-app-section::before {
        content: '';
        position: absolute;
        top: -20%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(8, 61, 89, 0.05) 0%, transparent 70%);
        border-radius: 50%;
    }

.xstk-app-content {
    padding: 40px 0;
}

/* Header Section Above Image */
.xstk-app-header {
    margin-bottom: 30px;
}

.xstk-app-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(226, 185, 35, 0.08);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    color: #e2b923;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 24px;
    border: 0.5px solid rgba(226, 185, 35, 0.2);
    margin-bottom: 15px;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(226, 185, 35, 0.08), inset 0 0.5px 0 rgba(255, 255, 255, 0.6), inset 0 -0.5px 0 rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .xstk-app-label::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
        opacity: 0.8;
    }

    .xstk-app-label::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 24px;
        background: linear-gradient(135deg, rgba(226, 185, 35, 0.05) 0%, rgba(255, 215, 0, 0.03) 100%);
        pointer-events: none;
    }

    .xstk-app-label:hover {
        background: rgba(226, 185, 35, 0.12);
        border-color: rgba(226, 185, 35, 0.3);
        box-shadow: 0 6px 20px rgba(226, 185, 35, 0.12), inset 0 0.5px 0 rgba(255, 255, 255, 0.7), inset 0 -0.5px 0 rgba(0, 0, 0, 0.05);
        transform: translateY(-1px);
    }

.xstk-app-title {
    font-size: 30px;
    font-weight: 700;
    color: #7e6a0d;
    margin: 0 0 15px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

.xstk-app-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #6e6e73;
    line-height: 1.6;
    margin: 0;
}

/* App Mockup Below Header */
.xstk-app-mockup {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    animation: float-phone 6s ease-in-out infinite;
}

@keyframes float-phone {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.xstk-app-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(226, 185, 35, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 0;
}

.xstk-app-mockup img {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.15));
}

.xstk-app-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(226, 185, 35, 0.95) 0%, rgba(255, 215, 0, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(226, 185, 35, 0.3);
    z-index: 2;
    animation: pulse-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {
}

.xstk-app-badge svg {
    color: #fff;
    animation: rotate-star 4s linear infinite;
}

@keyframes rotate-star {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.xstk-app-badge span {
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Content Wrapper - Features Only */
.xstk-app-content-wrapper {
    padding-left: 40px;
}

/* Features Grid */
.xstk-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.xstk-feature-item {
    display: flex;
    gap: 18px;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e8e8ed;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    .xstk-feature-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #e2b923 0%, #083d59 100%);
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform 0.3s ease;
    }

    .xstk-feature-item:hover {
        transform: translateX(5px);
        border-color: #e2b923;
        box-shadow: 0 8px 24px rgba(226, 185, 35, 0.15);
    }

        .xstk-feature-item:hover::before {
            transform: scaleY(1);
            transform-origin: top;
        }

.xstk-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(226, 185, 35, 0.1) 0%, rgba(8, 61, 89, 0.05) 100%);
    border-radius: 12px;
    color: #e2b923;
    transition: all 0.3s ease;
}

.xstk-feature-item:hover .xstk-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(226, 185, 35, 0.2) 0%, rgba(8, 61, 89, 0.1) 100%);
}

.xstk-feature-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0 0 8px 0;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

.xstk-feature-content p {
    font-size: 14px;
    font-weight: 500;
    color: #6e6e73;
    line-height: 1.6;
    margin: 0;
}

/* Section */
.stk-showcase-section {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
}

    .stk-showcase-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 60%;
        background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
        z-index: 0;
    }

.stk-showcase-wrapper {
    position: relative;
    z-index: 1;
}

/* Badge - Inside Right Column */
.stk-showcase-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(226, 185, 35, 0.08);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    color: #e2b923;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 24px;
    border: 0.5px solid rgba(226, 185, 35, 0.2);
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(226, 185, 35, 0.08), inset 0 0.5px 0 rgba(255, 255, 255, 0.6), inset 0 -0.5px 0 rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 20px;
}

    .stk-showcase-badge::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
        opacity: 0.8;
    }

    .stk-showcase-badge::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 24px;
        background: linear-gradient(135deg, rgba(226, 185, 35, 0.05) 0%, rgba(255, 215, 0, 0.03) 100%);
        pointer-events: none;
    }

    .stk-showcase-badge:hover {
        background: rgba(226, 185, 35, 0.12);
        border-color: rgba(226, 185, 35, 0.3);
        box-shadow: 0 6px 20px rgba(226, 185, 35, 0.12), inset 0 0.5px 0 rgba(255, 255, 255, 0.7), inset 0 -0.5px 0 rgba(0, 0, 0, 0.05);
        transform: translateY(-1px);
    }

/* Left Visual Block */
.stk-visual-block {
    position: relative;
    padding: 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    border-radius: 32px;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .stk-visual-block::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(226, 185, 35, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        top: -100px;
        right: -100px;
    }

.stk-visual-content {
    position: relative;
    z-index: 2;
    animation: float-visual 8s ease-in-out infinite;
}

@keyframes float-visual {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.stk-visual-content img {
    width: 100%;
    max-width: 420px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
}

/* Floating Tags */
.stk-floating-tag {
    position: absolute;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 700;
    color: #1d1d1f;
    z-index: 3;
    animation: float-tag 4s ease-in-out infinite;
}

@keyframes float-tag {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.stk-tag-1 {
    top: 40px;
    left: 20px;
    animation-delay: 0s;
}

.stk-tag-2 {
    top: 50%;
    right: 20px;
    animation-delay: 0.5s;
}

.stk-tag-3 {
    bottom: 60px;
    left: 30px;
    animation-delay: 1s;
}

.stk-floating-tag .tag-icon {
    font-size: 14px;
}

/* Right Content Block */
.stk-content-block {
    padding: 0px 0 20px 40px;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}

.stk-main-heading {
    font-size: 35px;
    font-weight: 700;
    color: #433606;
    margin: 0 0 25px 0;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

/* Highlight Box */
.stk-highlight-box {
    display: flex;
    gap: 18px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(226, 185, 35, 0.08) 0%, rgba(226, 185, 35, 0.03) 100%);
    border-left: 4px solid #e2b923;
    border-radius: 16px;
    margin-bottom: 20px;
}

.highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e2b923 0%, #f5c000 100%);
    border-radius: 12px;
    color: #fff;
}

.highlight-text {
    font-size: 14px;
    line-height: 1.6;
    color: #1d1d1f;
}

    .highlight-text strong {
        display: block;
        font-size: 15px;
        font-weight: 800;
        margin-bottom: 5px;
        color: #083d59;
    }

/* Description */
.stk-description-text {
    margin-bottom: 25px;
}

    .stk-description-text p {
        font-size: 15px;
        font-weight: 500;
        color: #6e6e73;
        line-height: 1.7;
        margin: 0 0 14px 0;
    }

        .stk-description-text p:last-child {
            margin-bottom: 0;
        }

/* Quick Features */
.stk-features-quick {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.quick-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #f8f9fa;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #1d1d1f;
    border: 2px solid #e8e8ed;
    transition: all 0.3s ease;
}

    .quick-feature:hover {
        background: #fff;
        border-color: #e2b923;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(226, 185, 35, 0.15);
    }

.qf-icon {
    font-size: 16px;
}

/* CTA Button */
.stk-cta-area {
    margin-top: 5px;
}

.stk-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #083d59 0%, #0a5270 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 12px 40px rgba(8, 61, 89, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .stk-primary-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #e2b923 0%, #f5c000 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .stk-primary-btn span,
    .stk-primary-btn svg {
        position: relative;
        z-index: 1;
    }

    .stk-primary-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 50px rgba(226, 185, 35, 0.4);
    }

        .stk-primary-btn:hover::before {
            opacity: 1;
        }

        .stk-primary-btn:hover svg {
            transform: translateX(5px);
        }

/* Modal */
.stk-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

    .stk-modal:target {
        display: flex;
    }

.stk-modal-container {
    width: 90%;
    max-width: 650px;
    animation: modal-appear 0.3s ease;
}

@keyframes modal-appear {
}

.stk-modal-box {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
    position: relative;
}

.stk-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #1d1d1f;
    text-decoration: none;
    z-index: 10;
    transition: all 0.3s ease;
    line-height: 1;
}

    .stk-modal-close:hover {
        background: rgba(0, 0, 0, 0.2);
        transform: rotate(90deg);
    }

.stk-modal-title {
    padding: 30px 30px 20px;
    font-size: 26px;
    font-weight: 900;
    color: #1d1d1f;
    margin: 0;
    border-bottom: 2px solid #f0f0f0;
}

.stk-modal-body {
    padding: 30px;
}

    .stk-modal-body iframe {
        width: 100%;
        min-height: 500px;
        border: none;
    }

/* Large Screens (TV/Projector) */

/* Extra Large Screens */

/* Section */
.xgt-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #E9D5C8 -3.16%, #51478D 43.57%, #1C1831 98.48%);
    position: relative;
    overflow: hidden;
}

    .xgt-section::before {
        content: '';
        position: absolute;
        top: -200px;
        left: -200px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(226, 185, 35, 0.08) 0%, transparent 70%);
        border-radius: 50%;
    }

/* Header */
.mb-45 {
    margin-bottom: 45px;
}

.xgt-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(226, 185, 35, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #e2b923;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 20px;
    border: 0.5px solid rgba(226, 185, 35, 0.2);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.xgt-title {
    font-size: 27px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.xgt-intro {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Features List - Compact */
.xgt-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.xgt-item {
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

    .xgt-item:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(226, 185, 35, 0.3);
        transform: translateX(5px);
    }

.xgt-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(225, 225, 225, 0.15);
    border-radius: 50%;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.xgt-item:hover .xgt-icon {
    transform: scale(1.1);
    border: 1px solid #b3b3c5;
}

.xgt-content {
    flex: 1;
}

    .xgt-content h5 {
        font-size: 14px;
        font-weight: 600;
        color: #e3b925;
        margin: 0 0 5px 0;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

    .xgt-content p {
        font-size: 14px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.5;
        margin: 0;
    }

/* Visual */
.xgt-visual {
    position: relative;
    text-align: center;
    animation: float-img 6s ease-in-out infinite;
}

@keyframes float-img {
}

.xgt-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(226, 185, 35, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 0;
}

.xgt-visual img {
    width: 90%;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.3));
}

.xgt-float-badge {
    position: absolute;
    top: 25px;
    right: 10%;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 40px;
    border: 1px solid #9b9ba5;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    font-size: 13px;
    font-weight: 700;
    color: #d3ad2e;
    z-index: 2;
    animation: pulse-float 3s ease-in-out infinite;
}

@keyframes pulse-float {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Responsive */

/* Features & Benefits Section */
.stk-features-benefits-section {
    padding: 60px 0;
    background: #ffffff;
}

.sfb-main-title {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.5px;
    background: linear-gradient(268.47deg, #E6D3C4 0%, #5B4EA1 40%, #120F26 100% );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Feature/Benefit Cards */
.sfb-card {
    background: #ffffff;
    border: 2px solid #e8e8ed;
    border-radius: 24px;
    padding: 32px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .sfb-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #e2b923 0%, #f5c000 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .sfb-card:hover {
        border-color: #e2b923;
        box-shadow: 0 12px 40px rgba(226, 185, 35, 0.15);
        transform: translateY(-5px);
    }

        .sfb-card:hover::before {
            transform: scaleX(1);
        }

.sfb-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.sfb-header-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(226, 185, 35, 0.1) 0%, rgba(226, 185, 35, 0.05) 100%);
    border-radius: 16px;
    color: #e2b923;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sfb-card:hover .sfb-header-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(226, 185, 35, 0.2) 0%, rgba(226, 185, 35, 0.1) 100%);
}

.sfb-card-title {
    font-size: 25px;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0;
    line-height: 1.3;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

.sfb-intro-text {
    font-size: 15px;
    font-weight: 600;
    color: #083d59;
    line-height: 1.6;
    margin: 0 0 20px 0;
    padding: 16px;
    background: rgba(8, 61, 89, 0.05);
    border-radius: 12px;
    border-left: 3px solid #083d59;
}

.sfb-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .sfb-list li {
        font-size: 15px;
        font-weight: 500;
        color: #6e6e73;
        line-height: 1.7;
        margin-bottom: 14px;
        padding-left: 28px;
        position: relative;
    }

        .sfb-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #e2b923;
            font-weight: 800;
            font-size: 16px;
        }

        .sfb-list li:last-child {
            margin-bottom: 0;
        }

/* Compliance Section */
.stk-compliance-section {
    padding: 60px 0;
    background: #f8f8ff;
}

.sc-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1.3;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

.sc-subtitle {
    font-size: 17px;
    font-weight: 500;
    color: #6e6e73;
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

.sc-content-wrapper {
    margin-bottom: 50px;
}

/* Feature Items */
.sc-features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sc-feature-item {
    display: flex;
    gap: 18px;
    padding: 20px;
    background: rgb(255, 255, 255, 0.15);
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    transition: all 0.3s ease;
}

    .sc-feature-item:hover {
        border-color: #e2b923;
        box-shadow: 0 8px 32px rgba(226, 185, 35, 0.12);
        transform: translateX(8px);
    }

.sc-feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf1 100%);
    border-radius: 16px;
    padding: 12px;
    transition: all 0.3s ease;
}

.sc-feature-item:hover .sc-feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(226, 185, 35, 0.1) 0%, rgba(226, 185, 35, 0.05) 100%);
}

.sc-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sc-feature-content h5 {
    font-size: 17px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0 0 8px 0;
}

.sc-feature-content p {
    font-size: 14px;
    font-weight: 500;
    color: #6e6e73;
    line-height: 1.6;
    margin: 0;
}

/* Center Image */
.sc-center-image {
    position: relative;
    text-align: center;
    animation: float-center 6s ease-in-out infinite;
}

@keyframes float-center {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.sc-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(226, 185, 35, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

.sc-center-image img {
    width: 100%;
    max-width: 380px;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
}

/* Bottom Text */
.sc-bottom-text {
    padding: 32px;
    background: linear-gradient(135deg, rgba(226, 185, 35, 0.05) 0%, rgba(226, 185, 35, 0.02) 100%);
    border-left: 4px solid #e2b923;
    border-radius: 16px;
}

    .sc-bottom-text p {
        font-size: 16px;
        font-weight: 500;
        color: #1d1d1f;
        line-height: 1.8;
        margin: 0;
    }

/* ============================================================================
   RESPONSIVE BREAKPOINTS - COMPLETE
   ============================================================================ */

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) {
    .xip-sol {
        padding: 70px 0;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    .xip-sol {
        padding: 50px 0 60px;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
    .xip-sol {
        padding: 40px 0 50px;
    }

    .xstk-feature-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Mobile Portrait (320px - 575px) */
@media (max-width: 575px) {
    .xip-sol h2 {
        font-size: 20px;
        line-height: 1.4;
    }
}

/* Large Desktop & TV Screens (1600px+) */
@media (min-width: 1600px) {
    .xip-sol {
        padding: 80px 0 100px;
    }
}

/* Extra Large Screens (1920px+ TV/Projector) */
@media (min-width: 1920px) {
    .xip-sol {
        padding: 100px 0 120px;
    }
}
/* START - VMS Page with iOS 18 Liquid Glass Enhancement */

/* Hero Section - White with Kiosk Image */
.vms-hero-section {
    background: #ffffff;
    padding: 60px 0 75px;
    position: relative;
}

.vms-semi-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #b8b8b8;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.vms-hero-title {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 25px;
}

.vms-hero-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 30px;
}

    .vms-hero-subtitle strong,
    .vms-hero-subtitle b {
        color: #0f3d56;
        font-weight: 700;
    }

.vms-hero-image img {
    width: 100%;
    height: auto;
}

/* Button Style with Liquid Glass */
.vms-btn-primary {
    background: rgba(15, 61, 86, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(15, 61, 86, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

    .vms-btn-primary:hover {
        background: rgba(26, 95, 122, 0.9);
        backdrop-filter: blur(24px) saturate(200%);
        -webkit-backdrop-filter: blur(24px) saturate(200%);
        color: #ffffff;
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 12px 40px rgba(15, 61, 86, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.25);
    }

/* Industry Header Section with Liquid Glass */
.vms-industry-section {
    background: #f8f9fa;
    padding: 0 0 60px 0;
}

.vms-industry-header {
    background: linear-gradient(135deg, rgba(15, 61, 86, 0.95) 0%, rgba(26, 95, 122, 0.95) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px 50px;
    margin-top: 0;
    margin-bottom: 50px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.vms-industry-title {
    color: #e5c039;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vms-industry-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Ultra-Modern Industry Showcase with 3D Glass Morphism - 5 Cards in One Line */
.vms-industry-showcase {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    padding: 40px 0;
    perspective: 1500px;
}

.vms-showcase-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 50%, rgba(15, 61, 86, 0.03) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    cursor: pointer;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Animated Backdrop Effect */
.vms-card-backdrop {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(26, 95, 122, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: all 0.8s ease;
    animation: vms-backdrop-float 8s ease-in-out infinite;
}

@keyframes vms-backdrop-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(10%, -10%) rotate(120deg);
    }

    66% {
        transform: translate(-10%, 10%) rotate(240deg);
    }
}

.vms-showcase-card:hover .vms-card-backdrop {
    opacity: 1;
}

/* Card Header with Floating Icon */
.vms-card-header {
    background: linear-gradient(180deg, rgba(15, 61, 86, 0.08) 0%, rgba(26, 95, 122, 0.05) 100%);
    padding: 40px 20px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .vms-card-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(26, 95, 122, 0.5), transparent);
    }

    .vms-card-header::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 50% 0%, rgba(248, 197, 85, 0.05) 0%, transparent 70%);
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 0.6s ease;
    }

.vms-showcase-card:hover .vms-card-header::after {
    opacity: 1;
}

/* Icon Orb with Pulse Animation */
.vms-icon-orb {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(15, 61, 86, 0.2), inset 0 2px 8px rgba(255, 255, 255, 0.3);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.vms-orb-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(26, 95, 122, 0.4);
    animation: vms-orb-pulse 2s cubic-bezier(0.23, 1, 0.32, 1) infinite;
}

@keyframes vms-orb-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.vms-showcase-card:hover .vms-icon-orb {
    transform: translateY(-15px) scale(1.1) rotateY(10deg);
    box-shadow: 0 20px 60px rgba(15, 61, 86, 0.35), inset 0 2px 12px rgba(255, 255, 255, 0.4);
}

.vms-icon-orb img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    filter: drop-shadow(0 4px 16px rgba(15, 61, 86, 0.3));
    position: relative;
    z-index: 1;
}

.vms-showcase-card:hover .vms-icon-orb img {
    transform: scale(1.15) rotate(-10deg);
    filter: drop-shadow(0 8px 24px rgba(15, 61, 86, 0.5));
}

/* Card Body with Asymmetric Layout */
.vms-card-body {
    padding: 30px 20px 35px;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%);
}

.vms-card-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 65px;
    font-weight: 900;
    color: rgba(15, 61, 86, 0.05);
    line-height: 1;
    font-family: 'Arial Black', sans-serif;
    transition: all 0.6s ease;
    z-index: 0;
}

.vms-showcase-card:hover .vms-card-number {
    color: rgba(26, 95, 122, 0.1);
    transform: scale(1.2) translateX(5px);
}

.vms-card-body h2 {
    font-size: 18px;
    font-weight: 600;
    color: #0f3d56;
    margin-bottom: 15px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    letter-spacing: -0.3px;
}

.vms-showcase-card:hover .vms-card-body h2 {
    color: #1a5f7a;
    transform: translateX(3px);
}

/* Dynamic Animated Line */
.vms-card-line {
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(26, 95, 122, 0.8), rgba(248, 197, 85, 0.6));
    margin-bottom: 15px;
    border-radius: 3px;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 2px 12px rgba(26, 95, 122, 0);
    position: relative;
    z-index: 1;
}

.vms-showcase-card:hover .vms-card-line {
    width: 50px;
    box-shadow: 0 2px 12px rgba(26, 95, 122, 0.5);
}

.vms-card-body p {
    font-size: 13px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.vms-showcase-card:hover .vms-card-body p {
    color: #4a5c6d;
}

/* 3D Hover Effect */
.vms-showcase-card:hover {
    transform: translateY(-20px) translateZ(50px) rotateX(5deg);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 50%, rgba(15, 61, 86, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 0 1px rgba(26, 95, 122, 0.1);
}

/* Touchless Section */
.vms-touchless-section {
    background: #ffffff;
    padding: 0px;
}

.vms-touchless-title {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    color: #0f3d56;
    margin-bottom: 20px;
}

.vms-touchless-description {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 25px;
}

.vms-touchless-image img {
    width: 100%;
    height: auto;
}

/* Tab Section with Liquid Glass */
.vms-tab-section {
    background: #f5f7f9;
    padding: 60px 0px;
}

.vms-tab-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #0f3d56;
    margin-bottom: 40px;
    text-align: center;
}

.vms-nav-tabs {
    border: none;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

    .vms-nav-tabs .nav-item {
        margin: 0;
    }

    .vms-nav-tabs .nav-link {
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border: 1px solid rgba(208, 213, 221, 0.5);
        border-radius: 12px;
        padding: 12px 25px;
        color: #0f3d56;
        font-weight: 600;
        font-size: 15px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }

        .vms-nav-tabs .nav-link:hover {
            background: rgba(240, 242, 244, 0.8);
            backdrop-filter: blur(24px) saturate(200%);
            -webkit-backdrop-filter: blur(24px) saturate(200%);
            border-color: rgba(26, 95, 122, 0.4);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
        }

        .vms-nav-tabs .nav-link.active {
            background: rgba(15, 61, 86, 0.9);
            backdrop-filter: blur(24px) saturate(200%);
            -webkit-backdrop-filter: blur(24px) saturate(200%);
            color: #ffffff;
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 24px rgba(15, 61, 86, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }

.vms-tab-content-box {
    background: transparent;
    padding: 0;
}

.vms-tab-content-title {
    font-size: 26px;
    line-height: 1.4;
    font-weight: 700;
    color: #0f3d56;
    margin-bottom: 30px;
}

/* Feature Section */
.vms-feature-section {
    background: #ffffff;
    padding: 80px 0 60px;
}

.vms-feature-image-wrapper img {
    width: 100%;
    height: auto;
}

.vms-feature-subtitle {
    color: #1a5f7a;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .vms-feature-subtitle i {
        color: #e74c3c;
        animation: vms-heartbeat 1.5s ease-in-out infinite;
        transform-origin: center;
        display: inline-block;
    }

@keyframes vms-heartbeat {
    0%, 100% {
        transform: scale(1);
    }

    10% {
        transform: scale(1.15);
    }

    20% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.15);
    }

    40% {
        transform: scale(1);
    }
}

.vms-feature-main-title {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    color: #0f3d56;
    margin-bottom: 40px;
}

.vms-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    gap: 25px;
}

.vms-feature-number {
    font-size: 48px;
    font-weight: 700;
    color: #0f3d56;
    line-height: 1;
    flex-shrink: 0;
    min-width: 60px;
}

.vms-feature-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #0f3d56;
    margin-bottom: 10px;
}

.vms-feature-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
    margin: 0;
}

/* Flow Section with Enhanced iOS 18 Liquid Glass */
.vms-flow-section {
    background: linear-gradient(135deg, rgba(15, 61, 86, 0.95) 0%, rgba(26, 95, 122, 0.95) 100%);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    padding: 60px 50px 80px;
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 3px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

    .vms-flow-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -30%;
        width: 150%;
        height: 150%;
        background: radial-gradient(circle, rgba(248, 197, 85, 0.12) 0%, transparent 60%);
        animation: vms-flow-glow 15s linear infinite;
        pointer-events: none;
        mix-blend-mode: overlay;
    }

    .vms-flow-section::after {
        content: '';
        position: absolute;
        bottom: -40%;
        left: -30%;
        width: 140%;
        height: 140%;
        background: radial-gradient(circle, rgba(26, 95, 122, 0.15) 0%, transparent 60%);
        animation: vms-flow-glow 20s linear infinite reverse;
        pointer-events: none;
        mix-blend-mode: overlay;
    }

@keyframes vms-flow-glow {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.05);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.vms-flow-title {
    font-size: 35px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 20px rgba(248, 197, 85, 0.4), 0 4px 8px rgba(0, 0, 0, 0.2);
}

.vms-flow-description {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Flow Cards with Premium Liquid Glass */
.vms-flow-card {
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

    .vms-flow-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        transition: opacity 0.5s ease;
        border-radius: 24px;
    }

    .vms-flow-card::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        opacity: 0;
        transition: all 0.6s ease;
        pointer-events: none;
    }

    .vms-flow-card:hover {
        transform: translateY(-12px) scale(1.03);
        border-color: rgba(248, 197, 85, 0.5);
    }

        .vms-flow-card:hover::before {
            opacity: 1;
        }

        .vms-flow-card:hover::after {
            opacity: 0.6;
            transform: translate(25%, 25%) scale(1.5);
        }

    .vms-flow-card img {
        width: 90px;
        height: 90px;
        object-fit: contain;
        margin-bottom: 20px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        z-index: 1;
        filter: drop-shadow(0 8px 24px rgba(248, 197, 85, 0.35)) brightness(1.1);
    }

    .vms-flow-card:hover img {
        transform: scale(1.15) rotate(-5deg) translateY(-8px);
        filter: drop-shadow(0 16px 40px rgba(248, 197, 85, 0.5)) brightness(1.2) contrast(1.1);
    }

    .vms-flow-card h6 {
        font-size: 14px;
        font-weight: 500;
        color: #ffffff;
        margin: 0;
        position: relative;
        z-index: 1;
        line-height: 1.4;
    }

/* Features List Cards with Liquid Glass */
.vms-features-section {
    background: #ffffff;
    padding: 60px 40px!important;
    margin-bottom:30px;
}
.inst {
    display: flex;
    flex-direction: column;
    align-items: center; /* horizontal */
    justify-content: center; /* vertical */
    text-align: center;
    height: 100%; /* or a fixed height like 300px */
}

.vms-features-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(229, 229, 229, 0.5);
    border-radius: 20px;
    padding: 35px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* centering */
    display: flex;
    flex-direction: column;
}

    .vms-features-card img {
        display: block;
        max-width: 64px;
        height: auto;
        margin-bottom: 12px;
    }


    .vms-features-card:hover {
        transform: translateY(-4px);
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(24px) saturate(200%);
        -webkit-backdrop-filter: blur(24px) saturate(200%);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }

    .vms-features-card h4 {
        font-size: 22px;
        font-weight: 700;
        color: #0f3d56;
        margin-bottom: 25px;
    }

.vms-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .vms-features-list li {
        color: #1d1d1f;
        font-size: 16px;
        font-weight: 500;
        line-height: 36px;
        padding-left: 60px;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }

        .vms-features-list li:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .vms-features-list li::before {
            content: "\f00c";
            position: absolute;
            font-family: "Font Awesome 6 Free"; /* For FA6 */
            font-size: 16px;
            font-weight: 900; /* CRITICAL */
            color: #e2b923;
            left: 0;
            top: -2px;
            z-index: 1;
            width: 40px;
            height: 40px;
            line-height: 40px;
            background: #fff0e1;
            border-radius: 50%;
            text-align: center;
            display: inline-block;
            font-style: normal;
        }
        .vms-features-list li:hover::before {
            background: #e2b923;
            color: #fff;
            transform: scale(1.1);
        }

/* Benefits Section with Liquid Glass */
.vms-benefits-section {
    background: #f5f7f9;
    padding: 60px 0 80px;
}

.vms-benefits-header {
    background: linear-gradient(135deg, rgba(15, 61, 86, 0.95) 0%, rgba(26, 95, 122, 0.95) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    padding: 40px 50px;
    margin-bottom: 50px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.vms-benefits-title {
    color: #d2ab1c;
    font-size: 20px;
    font-weight: 600;
    margin: 10px auto;
}

.vms-benefit-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

    .vms-benefit-card:hover {
        transform: translateY(-8px) scale(1.02);
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(24px) saturate(200%);
        -webkit-backdrop-filter: blur(24px) saturate(200%);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }

    .vms-benefit-card img {
        width: 70px;
        height: 70px;
        object-fit: contain;
        margin-bottom: 20px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    }

    .vms-benefit-card:hover img {
        transform: scale(1.1) translateY(-4px);
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
    }

    .vms-benefit-card h5 {
        font-size: 18px;
        font-weight: 700;
        color: #0f3d56;
        line-height: 1.4;
        margin: 0;
    }




.vms-why-title {
    font-size: 32px;
    font-weight: 700;
    color: #0f3d56;
    margin-bottom: 15px;
    text-align: center;
}

.vms-why-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #5a6c7d;
    margin-bottom: 50px;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 1399px) {
    .vms-industry-showcase {
        gap: 20px;
    }
}

@media (max-width: 1199px) {
    .vms-industry-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .vms-hero-title {
        font-size: 32px;
    }

    .vms-touchless-title,
    .vms-feature-main-title,
    .vms-tab-main-title,
    .vms-flow-title,
    .vms-industry-header,
}

@media (max-width: 767px) {
    .vms-hero-section {
        padding: 50px 0 40px;
    }

    .vms-industry-header,
    .vms-industry-title,
    .vms-touchless-section,
    .img-hide {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .vms-industry-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Utility Classes */
.vms-text-center {
    text-align: center;
}

.vms-img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

/* END - VMS Solutions Page */

/* ===================================
   HEALTHCARE KIOSK SOFTWARE PAGE
   Unique iOS 18 Liquid Glass Design
   =================================== */

/* Hero Section */
.hk-hero-section {
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 50%, #f5f7fa 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

    .hk-hero-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(26, 95, 122, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        animation: hk-hero-float 20s ease-in-out infinite;
    }

    .hk-hero-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -15%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(248, 197, 85, 0.06) 0%, transparent 70%);
        border-radius: 50%;
        animation: hk-hero-float 25s ease-in-out infinite reverse;
    }

@keyframes hk-hero-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.hk-hero-content {
    padding-right: 40px;
    position: relative;
    z-index: 2;
}

.hk-semi-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #1a5f7a;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(26, 95, 122, 0.08);
    border-radius: 50px;
    border: 1px solid rgba(26, 95, 122, 0.15);
    position: relative;
    overflow: hidden;
}

    .hk-semi-title::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(26, 95, 122, 0.15), transparent);
        transition: left 0.5s ease;
    }

    .hk-semi-title:hover::before {
        left: 100%;
    }

.hk-hero-title {
    font-size: 38px;
    line-height: 1.15;
    font-weight: 700;
    background: linear-gradient(135deg, #0f3d56 0%, #1a5f7a 50%, #0f3d56 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

    .hk-hero-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #1a5f7a 0%, #f8c555 100%);
        border-radius: 2px;
        box-shadow: 0 4px 12px rgba(26, 95, 122, 0.3);
    }

.hk-hero-description {
    font-size: 16px;
    line-height: 1.9;
    color: #5a6c7d;
    margin-bottom: 35px;
    position: relative;
    padding-left: 20px;
}

    .hk-hero-description::before {
        content: '';
        position: absolute;
        left: 0;
        top: 8px;
        bottom: 8px;
        width: 4px;
        background: linear-gradient(180deg, #1a5f7a 0%, #f8c555 100%);
        border-radius: 2px;
    }

.hk-cta-wrapper {
    margin-top: 40px;
}

/* Enhanced Primary Button with Unique Glass Effect */
.hk-btn-primary {
    background: linear-gradient(135deg, rgba(15, 61, 86, 0.9) 0%, rgba(26, 95, 122, 0.85) 100%);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 16px 42px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 35px rgba(15, 61, 86, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

    .hk-btn-primary::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: radial-gradient(circle, rgba(248, 197, 85, 0.3) 0%, transparent 70%);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.6s ease, height 0.6s ease;
    }

    .hk-btn-primary:hover::before {
        width: 300px;
        height: 300px;
    }

    .hk-btn-primary:hover {
        background: linear-gradient(135deg, rgba(26, 95, 122, 0.95) 0%, rgba(15, 61, 86, 0.9) 100%);
        backdrop-filter: blur(30px) saturate(220%);
        -webkit-backdrop-filter: blur(30px) saturate(220%);
        color: #ffffff;
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 15px 50px rgba(15, 61, 86, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
        border-color: rgba(248, 197, 85, 0.4);
    }

.hk-hero-image {
    text-align: center;
    position: relative;
    z-index: 2;
}

    .hk-hero-image::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 120%;
        height: 120%;
        background: radial-gradient(circle, rgba(26, 95, 122, 0.08) 0%, transparent 60%);
        border-radius: 50%;
        z-index: -1;
        animation: hk-image-pulse 4s ease-in-out infinite;
    }

@keyframes hk-image-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
}

.hk-hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 50px rgba(0, 0, 0, 0.12));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hk-hero-image:hover img {
    transform: scale(1.05) translateY(-10px);
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.18));
}

/* How It Helps Section */
.hk-helps-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
}

.hk-helps-image {
    text-align: center;
    position: relative;
}

.hk-helps-content {
    padding-left: 40px;
}

.hk-helps-title {
    font-size: 30px;
    font-weight: 600;
    color: #0f3d56;
    margin-bottom: 25px;
    line-height: 1.25;
    position: relative;
    padding-bottom: 20px;
}

    .hk-helps-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, #1a5f7a 0%, #f8c555 100%);
        border-radius: 2px;
    }

.hk-helps-description {
    font-size: 17px;
    line-height: 1.85;
    color: #5a6c7d;
    margin-bottom: 35px;
    font-weight: 400;
}

.hk-helps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .hk-helps-list li {
        font-size: 15px;
        line-height: 1.8;
        color: #5a6c7d;
        padding: 10px 0 10px 45px;
        position: relative;
        border-left: 3px solid rgba(26, 95, 122, 0.1);
        margin-bottom: 2px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: linear-gradient(90deg, rgba(248, 249, 250, 0) 0%, rgba(248, 249, 250, 0.5) 100%);
    }

        .hk-helps-list li::before {
            content: '\f058';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 12px;
            top: 18px;
            color: #27ae60;
            font-size: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hk-helps-list li:hover {
            padding-left: 50px;
            color: #4a5c6d;
            border-left-color: #1a5f7a;
            background: linear-gradient(90deg, rgba(26, 95, 122, 0.05) 0%, rgba(248, 249, 250, 0.8) 100%);
        }

            .hk-helps-list li:hover::before {
                transform: scale(1.3) rotate(360deg);
                color: #1a5f7a;
            }

        .hk-helps-list li strong {
            color: #0f3d56;
            font-weight: 600;
            font-size: 16px;
        }

/* Clinical Support & Benefits Section with Unique Asymmetric Design */
.hk-clinical-section {
    background: #f5f5f7;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .hk-clinical-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(248, 197, 85, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

.hk-clinical-wrapper {
    position: relative;
    z-index: 2;
}

.hk-clinical-card {
    background: linear-gradient(135deg, rgba(15, 61, 86, 0.98) 0%, rgba(26, 95, 122, 0.95) 100%);
    backdrop-filter: blur(35px) saturate(200%);
    -webkit-backdrop-filter: blur(35px) saturate(200%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 35px;
    padding: 45px 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

    .hk-clinical-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 0deg at 50% 50%, rgba(248, 197, 85, 0.15) 0deg, transparent 60deg, transparent 300deg, rgba(248, 197, 85, 0.15) 360deg);
        animation: hk-clinical-rotate 20s linear infinite;
        pointer-events: none;
    }

@keyframes hk-clinical-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hk-clinical-card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(248, 197, 85, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.hk-clinical-title {
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    display: inline-block;
    padding-bottom: 15px;
}

    .hk-clinical-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, #f8c555 0%, rgba(248, 197, 85, 0) 100%);
        border-radius: 2px;
    }

.hk-clinical-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
    flex: 1;
    position: relative;
    z-index: 1;
}

    .hk-clinical-list li {
        font-size: 15px;
        line-height: 1.9;
        color: rgba(255, 255, 255, 0.95);
        padding: 14px 0 14px 35px;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

        .hk-clinical-list li:last-child {
            border-bottom: none;
        }

        .hk-clinical-list li::before {
            content: '\f192';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #f8c555;
            font-size: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hk-clinical-list li:hover {
            padding-left: 40px;
            color: #ffffff;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

            .hk-clinical-list li:hover::before {
                transform: scale(1.25) rotate(360deg);
            }

.hk-clinical-image {
    margin-top: auto;
    position: relative;
    z-index: 1;
}

    .hk-clinical-image img {
        width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
    }

/* Benefits Wrapper with Unique Card Design */
.hk-benefits-wrapper {
    padding: 0;
}

.hk-benefits-title {
    font-size: 38px;
    font-weight: 600;
    color: #0f3d56;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

    .hk-benefits-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #1a5f7a 0%, #f8c555 50%, #1a5f7a 100%);
        border-radius: 2px;
    }
/* Benefits Description */
.hk-benefits-description {
    font-size: 16px;
    line-height: 1.85;
    color: #5a6c7d;
    text-align: center;
    margin: 0 auto 40px;
    padding: 0 20px;
    position: relative;
}
/* Benefit Cards with Hexagonal Inspired Design */
.hk-benefit-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .hk-benefit-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at center, rgba(26, 95, 122, 0.08) 0%, transparent 70%);
        opacity: 0;
        transition: all 0.6s ease;
        transform: scale(0);
    }

    .hk-benefit-card:hover::before {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }

    .hk-benefit-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(248, 197, 85, 0.05) 0%, transparent 50%);
        opacity: 0;
        transition: opacity 0.5s ease;
        border-radius: 24px;
    }

    .hk-benefit-card:hover::after {
        opacity: 1;
    }

    .hk-benefit-card:hover {
        transform: translateY(-12px) scale(1.03);
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(30px) saturate(220%);
        -webkit-backdrop-filter: blur(30px) saturate(220%);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.7);
        border-color: rgba(26, 95, 122, 0.4);
    }

.hk-benefit-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.12));
    position: relative;
    z-index: 1;
}

.hk-benefit-card:hover .hk-benefit-icon {
    transform: scale(1.2) translateY(-10px) rotate(-8deg);
    filter: drop-shadow(0 12px 28px rgba(15, 61, 86, 0.25));
}

.hk-benefit-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #0f3d56;
    margin-bottom: 15px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.hk-benefit-card:hover .hk-benefit-card-title {
    color: #1a5f7a;
}

.hk-benefit-card-text {
    font-size: 14px;
    line-height: 1.75;
    color: #5a6c7d;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Deployment Section with Wave Background */
.hk-deployment-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    .hk-deployment-section::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%231a5f7a' fill-opacity='0.05' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat center bottom;
        background-size: cover;
        opacity: 0.8;
    }

.hk-deployment-title {
    font-size: 35px;
    font-weight: 700;
    color: #0f3d56;
    margin-bottom: 60px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    width: 100%;
}

    .hk-deployment-title::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 5%;
        right: 5%;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, rgba(26, 95, 122, 0.2) 20%, rgba(26, 95, 122, 0.2) 80%, transparent 100%);
        z-index: -1;
    }

    .hk-deployment-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, #1a5f7a 0%, #f8c555 50%, #1a5f7a 100%);
        border-radius: 2px;
    }

.hk-deployment-image {
    padding: 35px;
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.3) 0%, rgba(248, 197, 85, 0.3) 80%);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

    .hk-deployment-image:hover::before {
        opacity: 1;
    }

    .hk-deployment-image:hover {
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }

    .hk-deployment-image img {
        width: 100%;
        height: auto;
        border-radius: 20px;
    }

/* Health Checkup Section with Grid Animation */
.hk-checkup-section {
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 50%, #f5f7fa 100%);
    padding: 100px 0;
    position: relative;
}

.hk-checkup-title {
    font-size: 35px;
    font-weight: 600;
    color: #0f3d56;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.hk-checkup-description {
    font-size: 17px;
    line-height: 1.9;
    color: #5a6c7d;
    max-width: 950px;
    margin: 0 auto;
}

.hk-checkup-grid {
    display: flex;
    flex-wrap: wrap;
}

/* Checkup Cards with Staggered Animation */
.hk-checkup-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .hk-checkup-card::before {
        content: '';
        position: absolute;
        top: -100%;
        left: -100%;
        width: 300%;
        height: 300%;
        background: linear-gradient(45deg, transparent 30%, rgba(26, 95, 122, 0.08) 50%, transparent 70%);
        transition: all 0.8s ease;
        transform: rotate(45deg);
    }

    .hk-checkup-card:hover::before {
        left: 100%;
    }

    .hk-checkup-card:hover {
        transform: translateY(-15px) scale(1.05);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(30px) saturate(220%);
        -webkit-backdrop-filter: blur(30px) saturate(220%);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.7);
        border-color: rgba(26, 95, 122, 0.4);
    }

.hk-checkup-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 6px 16px rgba(15, 61, 86, 0.2));
    position: relative;
    z-index: 1;
}

.hk-checkup-card:hover .hk-checkup-icon {
    transform: scale(1.25) translateY(-12px) rotate(-10deg);
    filter: drop-shadow(0 15px 35px rgba(15, 61, 86, 0.35));
}

.hk-checkup-card-title {
    font-size: 16px;
    color: #0f3d56;
    margin: 0;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.hk-checkup-card:hover .hk-checkup-card-title {
    color: #1a5f7a;
}

/* Staggered Animation for Checkup Cards */
.hk-checkup-card:nth-child(1) {
    animation: hk-fade-in-up 0.6s ease 0.1s both;
}

.hk-checkup-card:nth-child(2) {
    animation: hk-fade-in-up 0.6s ease 0.2s both;
}

.hk-checkup-card:nth-child(3) {
    animation: hk-fade-in-up 0.6s ease 0.3s both;
}

.hk-checkup-card:nth-child(4) {
    animation: hk-fade-in-up 0.6s ease 0.4s both;
}

.hk-checkup-card:nth-child(5) {
    animation: hk-fade-in-up 0.6s ease 0.5s both;
}

.hk-checkup-card:nth-child(6) {
    animation: hk-fade-in-up 0.6s ease 0.6s both;
}

@keyframes hk-fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Large Desktop (1200px - 1599px) */
@media (max-width: 1399px) {
    .hk-hero-title {
        font-size: 42px;
    }

    .hk-helps-title,
    .hk-benefits-title,
    .hk-deployment-title,
}

/* Desktop/Laptop (992px - 1199px) */
@media (max-width: 1199px) {
    .hk-hero-title {
        font-size: 35px;
    }

    .hk-helps-title,
    .hk-benefits-title,
    .hk-deployment-title,
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .hk-hero-section,
    .hk-helps-section,
    .hk-clinical-section,
    .hk-deployment-section,
    .hk-helps-title,
    .hk-benefits-title,
    .hk-deployment-title,
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) {
    .hk-hero-section,
    .hk-helps-section,
    .hk-clinical-section,
    .hk-deployment-section,
    .hk-hero-description,
    .hk-helps-description,
    .hk-helps-title,
    .hk-benefits-title,
    .hk-deployment-title,
    .hk-benefit-card,
}

/* Small Mobile (320px - 575px) */
@media (max-width: 575px) {
    .hk-hero-section,
    .hk-helps-section,
    .hk-clinical-section,
    .hk-deployment-section,
    .hk-helps-title,
    .hk-benefits-title,
    .hk-deployment-title,
    .hk-benefit-icon,
    .hk-benefit-card-title,
}

/* END - Healthcare Kiosk Software Page */

.tel-bg {
    background: #eff0fb;
    border-radius: 20px;
    padding: 30px;
}

.food-ordering-kiosk-1 {
    background: #f5f5f7 !important;
}

    .food-ordering-kiosk-1 .sect-title {
        font-size: 40px !important;
        line-height: 50px;
        font-weight: 600;
        text-transform: capitalize;
        color: #1d1d1f;
    }

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .core-wrapper2 {
        padding-left: 0
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .core-wrapper2 {
        padding-left: 0
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .core-wrapper2 {
        padding-left: 0
    }
}

@media (max-width: 767px) {
    .core-wrapper2 {
        padding-left: 0
    }
}

.plan2 .plan-body {
    background: #083d59;
    border: 8px solid #e2b923;
    position: relative;
    z-index: 1;
    color: #fff;
    font-weight: 500;
    border-radius: 30px;
}

    .plan2 .plan-body .tag {
        color: #083d59;
        font-size: 12px;
        font-weight: 600;
        background: #e2b923;
        position: absolute;
        left: 50%;
        top: 50px;
        padding: 10px 20px;
        line-height: 1;
        z-index: 2;
        border-radius: 30px;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        -ms-border-radius: 30px;
        -o-border-radius: 30px
    }

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .plan2 .plan-body .tag {
        padding: 10px;
        left: 55%
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .plan2 .plan-body .tag {
        padding: 10px;
        left: 55%
    }
}

@media (max-width: 767px) {
    .plan2 .plan-body .tag {
        padding: 10px;
        left: 55%
    }
}

.plan-title {
    font-size: 24px;
    margin-bottom: 12px;
    color: #FFF;
}

.plan-body {
    background: #fff;
    padding: 45px 50px 42px;
    margin-top: 35px
}

.plan-header p {
    color: #FFF;
}

.plan-area .sect-title {
    color: #e2b923;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .plan-body {
        padding: 45px 20px 35px
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .plan-body {
        padding: 45px 25px 35px
    }
}

@media (max-width: 767px) {
    .plan-body {
        padding: 45px 25px 35px
    }
}

.plan-body h2 {
    font-size: 40px;
    color: #e2b923;
}

.plan-body p {
    color: #adbbc2;
}

.plan-body .plan-list {
    border-top: 1px solid #e9e9e9;
    padding: 0;
    margin: 0;
    padding-top: 14px;
    margin-top: 30px;
    margin-bottom: 35px
}

    .plan-body .plan-list li {
        position: relative;
        z-index: 1;
        padding: 8px 0
    }

        .plan-body .plan-list li::before {
            content: "\f00c";
            position: absolute;
            font-family: "Font Awesome 5 Pro";
            font-size: 11px;
            font-weight: 900;
            color: #fff;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .plan-body .plan-list li.delete {
            color: #adbbc2;
            padding-left: 25px;
        }

.plan-body .price-btn {
    color: #083d59;
    font-size: 16px;
    width: 100%;
    background: #f5f5f533;
    text-transform: capitalize;
    text-align: center
}

.sect-title-1 {
    font-size: 35px;
    line-height: 42px;
    color: #1d1d1f;
    font-weight: 700;
    margin-bottom: 15px;
}

.food-soft {
    background: #f5f5f7;
}

.food-sect-title {
    font-size: 70px !important;
    line-height: 80px
}

.food-soft .paragraph-title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}

.food-soft-sol {
}

    .food-soft-sol ul li {
        color: #1d1d1f;
        font-weight: 500;
        display: flex;
        margin: 30px auto;
    }

        .food-soft-sol ul li i {
            margin-top: 5px;
            padding-right: 10px;
            color: #538d4a;
        }

    .food-soft-sol .divmiddle {
        margin: auto;
    }

.fot-list a {
    font-size: 16px !important
}

.single-services13 h3 {
    color: #e2b923;
    font-size: 26px;
    font-weight: 700;
    background: transparent;
}

.single-services3 {
    border: 1px solid #e7e7e7;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 1;
    padding: 20px 25px;
    width: 100%;
    height: 100%
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .single-services3 {
        padding: 20px 25px
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .single-services3 {
        padding: 50px 15px 25px
    }
}

@media (max-width: 767px) {
    .single-services3 {
        padding: 0 15px 25px
    }
}

.single-services3 .shadow-text {
    font-size: 130px;
    color: #f7f7f7;
    line-height: .28;
    right: 20px;
    position: absolute;
    top: 60px;
    z-index: -1
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .single-services3 .shadow-text {
        font-size: 150px
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-services3 .shadow-text {
        font-size: 100px
    }
}

@media (max-width: 767px) {
    .single-services3 .shadow-text {
        font-size: 100px
    }
}

.single-services3 .icon {
    margin-bottom: 25px;
    margin-top: 15px
}

.single-services3 h4 {
    color: #040404;
    font-size: 20px;
    margin-bottom: 18px
}

.single-services3 p {
    line-height: 26px;
    margin-bottom: 6px
}

.single-services3 .read-btn2 {
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    background: transparent;
    padding-left: 0
}

    .single-services3 .read-btn2 i {
        margin-left: 15px
    }

    .single-services3 .read-btn2:hover {
        color: #083d59
    }

.single-services3:hover .shadow-text {
    color: #f3f2f2
}

.theme_btn {
    overflow: hidden;
    color: #1d1d1f;
    background: #e2b923;
    font-size: 14px;
    border-radius: 50px;
    font-weight: 700;
    line-height: 1;
    padding: 24px 40px;
    display: inline-block;
    position: relative;
    z-index: 1;
    cursor: pointer;
    text-decoration: none;
    transition: all .4s ease-in-out
}

    .theme_btn i {
        color: #fff;
        -webkit-transition: all .3s ease 0;
        -moz-transition: all .3s ease 0;
        -ms-transition: all .3s ease 0;
        -o-transition: all .3s ease 0;
        transition: all .3s ease 0
    }

    .theme_btn:hover {
        color: #fff;
        background: #083d59
    }

        .theme_btn:hover i {
            transform: translateX(5px);
            -webkit-transform: translateX(5px);
            -moz-transform: translateX(5px);
            -ms-transform: translateX(5px);
            -o-transform: translateX(5px)
        }

@media (max-width: 767px) {
    .plan-body .price-btn {
        padding: 24px 15px
    }
}

.plan-body .price-btn i {
    color: #083d59;
    padding-left: 30px
}

.plan-body .price-btn:hover {
    color: #fff;
    background: #e2b923
}

    .plan-body .price-btn:hover i {
        color: #fff
    }

.plan3 .plan-body {
    background: #083d59;
    border-radius: 30px;
    border: 8px solid #e2b923;
}

    .plan3 .plan-body h2 {
        color: #e2b923;
    }

    .plan3 .plan-body p {
        color: #adbbc2
    }

    .plan3 .plan-body .plan-list li {
        color: #adbbc2
    }

        .plan3 .plan-body .plan-list li::before {
            color: #adbbc2
        }

    .plan3 .plan-body .price-btn {
        background: #fff
    }

        .plan3 .plan-body .price-btn:hover {
            background: #e2b923
        }
/* Scroll Animation Classes */
.ehs-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .ehs-fade-in.ehs-visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Hero Section */
.ehs-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1B3A1F 0%, #2D5016 50%, #3D6B2F 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.ehs-hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: radial-gradient(circle at 20% 50%, rgba(139, 195, 74, 0.4) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.3) 0%, transparent 50%);
    z-index: 0;
}

    .ehs-hero-bg-pattern::before {
        content: '';
        position: absolute;
        top: -10%;
        right: -5%;
        width: 600px;
        height: 600px;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L35 20 L50 25 L35 30 L30 45 L25 30 L10 25 L25 20 Z' fill='rgba(139,195,74,0.1)' fill-rule='evenodd'/%3E%3C/svg%3E");
        animation: ehs-float 30s infinite ease-in-out;
    }

.ehs-hero-leaves {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.ehs-leaf {
    position: absolute;
    width: 30px;
    height: 30px;
    opacity: 0.15;
    animation: ehs-fall 15s infinite ease-in;
}

    .ehs-leaf:nth-child(1) {
        left: 10%;
        animation-delay: 0s;
    }

    .ehs-leaf:nth-child(2) {
        left: 30%;
        animation-delay: 3s;
    }

    .ehs-leaf:nth-child(3) {
        left: 50%;
        animation-delay: 6s;
    }

    .ehs-leaf:nth-child(4) {
        left: 70%;
        animation-delay: 9s;
    }

    .ehs-leaf:nth-child(5) {
        left: 90%;
        animation-delay: 12s;
    }

@keyframes ehs-fall {
    0% {
        top: -10%;
        transform: rotate(0deg) translateX(0);
    }

    50% {
        transform: rotate(180deg) translateX(50px);
    }

    100% {
        top: 110%;
        transform: rotate(360deg) translateX(0);
    }
}

@keyframes ehs-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.ehs-hero-content {
    position: relative;
    z-index: 2;
    color: var(--ehs-white);
}

.ehs-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(168, 213, 186, 0.2);
    border: 1.5px solid rgba(168, 213, 186, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: ehs-slideDown 0.8s ease-out;
}

.ehs-eco-icon {
    color: var(--ehs-lime);
}

@keyframes ehs-slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ehs-hero-title {
    font-size: 45px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FFFFFF 0%, #A8D5BA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ehs-slideUp 0.8s ease-out 0.2s both;
}

@keyframes ehs-slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ehs-hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    animation: ehs-slideUp 0.8s ease-out 0.4s both;
}

.ehs-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
    animation: ehs-slideUp 0.8s ease-out 0.6s both;
}

.ehs-stat-item {
    text-align: left;
}

.ehs-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--ehs-gradient-fresh);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.ehs-stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ehs-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
}

.ehs-btn-nature {
    padding: 16px 40px;
    background: var(--ehs-gradient-fresh);
    border: none;
    border-radius: 50px;
    color: var(--ehs-white);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    .ehs-btn-nature::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .ehs-btn-nature:hover::before {
        left: 100%;
    }

    .ehs-btn-nature:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
        color: var(--ehs-white);
    }

.ehs-btn-outline-nature {
    padding: 16px 40px;
    background: transparent;
    border: 2px solid rgba(168, 213, 186, 0.4);
    border-radius: 50px;
    color: var(--ehs-white);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
}

    .ehs-btn-outline-nature:hover {
        background: rgba(168, 213, 186, 0.15);
        border-color: rgba(168, 213, 186, 0.6);
        transform: translateY(-3px);
        color: var(--ehs-white);
    }

.ehs-hero-image {
    position: relative;
    animation: ehs-slideUp 0.8s ease-out 0.5s both;
}

    .ehs-hero-image img {
        width: 100%;
        height: auto;
        border-radius: 24px;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
        border: 3px solid rgba(168, 213, 186, 0.2);
    }

/* Floating eco cards */
.ehs-floating-eco-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.2);
    border: 2px solid rgba(139, 195, 74, 0.2);
    animation: ehs-floatCard 4s infinite ease-in-out;
}

@keyframes ehs-floatCard {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.ehs-floating-eco-card-1 {
    top: 10%;
    right: -30px;
    animation-delay: 0s;
}

.ehs-floating-eco-card-2 {
    bottom: 15%;
    /*    left: -30px;*/
    animation-delay: 2s;
}

.ehs-floating-eco-icon {
    width: 56px;
    height: 56px;
    background: var(--ehs-gradient-fresh);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ehs-white);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.ehs-floating-eco-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ehs-text-dark);
    margin-bottom: 6px;
}

.ehs-floating-eco-card p {
    font-size: 0.9rem;
    color: var(--ehs-text-light);
    margin: 0;
}

/* Section Styles */
.ehs-section-padding {
    padding: 100px 0;
}

.ehs-section-title {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
    color: var(--ehs-text-dark);
    position: relative;
    display: inline-block;
}

    .ehs-section-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: var(--ehs-gradient-fresh);
        border-radius: 2px;
    }

.ehs-section-subtitle {
    font-size: 16px;
    color: var(--ehs-text-light);
    margin: 0 auto;
    line-height: 1.8;
    text-align: center !important;
}

.ehs-text-white {
    color: var(--ehs-white);
}

.ehs-text-left {
    text-align: left;
}
/* Nature Background Section */
.ehs-nature-bg-section {
    background: linear-gradient(180deg, var(--ehs-white) 0%, var(--ehs-light-sage) 100%);
    position: relative;
}

    .ehs-nature-bg-section::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 200px;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 100 Q25 80 50 100 T100 100' fill='rgba(135,168,120,0.1)' /%3E%3C/svg%3E");
        background-size: 200px 100px;
        background-repeat: repeat-x;
        opacity: 0.3;
    }

/* Features Grid */
.ehs-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.ehs-feature-card {
    background: var(--ehs-white);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: var(--ehs-shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

    .ehs-feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--ehs-gradient-fresh);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .ehs-feature-card:hover {
        transform: translateY(-12px);
        box-shadow: var(--ehs-shadow-strong);
        border-color: rgba(139, 195, 74, 0.2);
    }

        .ehs-feature-card:hover::before {
            transform: scaleX(1);
        }

.ehs-feature-icon {
    width: 75px;
    height: 75px;
    background: var(--ehs-gradient-fresh);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ehs-white);
    font-size: 2.2rem;
    margin-bottom: 24px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.ehs-feature-card:hover .ehs-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.3);
}

.ehs-feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--ehs-text-dark);
}

.ehs-feature-card p {
    font-size: 1rem;
    color: var(--ehs-text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Earth Tone Section */
.ehs-earth-section {
    background: var(--ehs-dark-forest);
    position: relative;
    overflow: hidden;
}

    .ehs-earth-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(139, 195, 74, 0.08) 0%, transparent 70%);
        border-radius: 50%;
    }

    .ehs-earth-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(76, 175, 80, 0.06) 0%, transparent 70%);
        border-radius: 50%;
    }

.ehs-earth-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 40px;
    color: var(--ehs-white);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

    .ehs-earth-card:hover {
        background: rgba(255, 255, 255, 0.09);
        border-color: rgba(139, 195, 74, 0.3);
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

.ehs-earth-card-icon {
    width: 80px;
    height: 80px;
    background: var(--ehs-gradient-fresh);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.ehs-earth-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.ehs-earth-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

/* ROI Section with Organic Shapes */
.ehs-roi-nature-section {
    background: linear-gradient(135deg, #4CAF50 0%, #2D5016 100%);
    color: var(--ehs-white);
    position: relative;
    overflow: hidden;
}

    .ehs-roi-nature-section::before {
        content: '';
        position: absolute;
        top: -20%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 45% 55% 60% 40% / 50% 60% 40% 50%;
        animation: ehs-organic-shape 20s infinite ease-in-out;
    }

    .ehs-roi-nature-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 600px;
        height: 600px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 60% 40% 50% 50% / 55% 45% 55% 45%;
        animation: ehs-organic-shape 25s infinite ease-in-out reverse;
    }

@keyframes ehs-organic-shape {
    0%, 100% {
        border-radius: 45% 55% 60% 40% / 50% 60% 40% 50%;
        transform: rotate(0deg);
    }

    50% {
        border-radius: 60% 40% 45% 55% / 60% 50% 50% 40%;
        transform: rotate(180deg);
    }
}

/* ROI circle cards */
.ehs-roi-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    overflow-x: auto;
    padding-bottom: 8px;
}

/* PERFECT CIRCLES */
.ehs-roi-eco-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    padding: 10px 8px;
    box-sizing: border-box;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .ehs-roi-eco-card:hover {
        background: rgba(255, 255, 255, 0.22);
        transform: translateY(6px);
        border-color: rgba(255, 255, 255, 0.35);
    }

/* Tighter text so it doesn’t stretch the circle visually */
.ehs-roi-number {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 4px;
    display: block;
}

.ehs-roi-label {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.95;
    line-height: 1.2;
    text-align: center;
}

/* Industry Cards with Nature Icons */
.ehs-industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.ehs-industry-card {
    background: var(--ehs-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--ehs-shadow-soft);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

    .ehs-industry-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--ehs-shadow-strong);
        border-color: rgba(139, 195, 74, 0.3);
    }

.ehs-industry-card-header {
    height: 150px;
    background: var(--ehs-gradient-fresh);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--ehs-white);
    position: relative;
    overflow: hidden;
}

    .ehs-industry-card-header::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
        animation: ehs-shimmer 4s infinite;
    }

@keyframes ehs-shimmer {
    0% {
        transform: translate(-30%, -30%);
    }

    100% {
        transform: translate(30%, 30%);
    }
}

.ehs-industry-card-body {
    padding: 28px;
}

    .ehs-industry-card-body h4 {
        font-size: 1.35rem;
        font-weight: 700;
        margin-bottom: 12px;
        color: var(--ehs-text-dark);
    }

    .ehs-industry-card-body p {
        font-size: 0.98rem;
        color: var(--ehs-text-light);
        margin-bottom: 20px;
        line-height: 1.7;
    }

.ehs-industry-link {
    color: var(--ehs-forest-green);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

    .ehs-industry-link:hover {
        gap: 14px;
        color: var(--ehs-emerald);
    }

/* Implementation Steps with Organic Design */
.ehs-steps-container {
    position: relative;
    margin-top: 60px;
}

.ehs-step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

    .ehs-step-item:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 39px;
        top: 80px;
        width: 3px;
        height: calc(100% - 20px);
        background: linear-gradient(180deg, var(--ehs-forest-green) 0%, var(--ehs-sage) 100%);
        border-radius: 2px;
    }

.ehs-step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--ehs-gradient-fresh);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--ehs-white);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    position: relative;
    z-index: 1;
    border: 4px solid var(--ehs-white);
}

.ehs-step-content {
    flex: 1;
    padding-top: 12px;
}

    .ehs-step-content h4 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 12px;
        color: var(--ehs-text-dark);
    }

    .ehs-step-content p {
        font-size: 1.05rem;
        color: var(--ehs-text-light);
        line-height: 1.8;
        margin-bottom: 0;
    }

/* Why Choose Section */
.ehs-feature-list {
    margin-top: 30px;
}

.ehs-feature-list-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.ehs-check-icon {
    color: var(--ehs-emerald);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.ehs-feature-list-title {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ehs-text-dark);
    font-size: 1.1rem;
}

.ehs-feature-list-text {
    color: var(--ehs-text-light);
    margin: 0;
    line-height: 1.7;
}

.ehs-why-choose-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.15);
    border: 3px solid rgba(139, 195, 74, 0.2);
}

/* Stats box (glass) */
.ehs-stats-box {
    text-align: center;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.08);
    border: 1px solid rgba(135, 168, 120, 0.18);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 35px 20px;
}

.ehs-stats-number {
    font-weight: 700;
    color: #083d59;
    display: block;
    margin-bottom: 8px;
}

/* FAQ Section */
.ehs-faq-section {
    position: relative;
    background: url("../img/bg/ehs.webp") center center no-repeat;
    background-size: cover;
    padding: 60px 0px;
}

    /* overlay */
    .ehs-faq-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6); /* black layer */
        pointer-events: none;
        z-index: 0;
    }

    /* content above overlay */
    .ehs-faq-section > * {
        position: relative;
        z-index: 1;
    }

.ehs-accordion-item {
    background: var(--ehs-white);
    border: 2px solid rgba(135, 168, 120, 0.15);
    border-radius: 16px !important;
    margin-bottom: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .ehs-accordion-item:hover {
        border-color: rgba(139, 195, 74, 0.3);
    }

.ehs-accordion-header {
    margin-bottom: 0;
}

.ehs-accordion-button {
    background: var(--ehs-white);
    color: var(--ehs-text-dark);
    font-size: 1.15rem;
    font-weight: 600;
    padding: 26px 30px;
    border: none;
    box-shadow: none !important;
}

    .ehs-accordion-button:not(.collapsed) {
        background: linear-gradient(to right, rgba(76, 175, 80, 0.06), transparent);
        color: var(--ehs-forest-green);
    }

    .ehs-accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23228B22'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

.ehs-accordion-body {
    padding: 0 30px 30px;
    color: var(--ehs-text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* CTA Section */
.ehs-cta-nature-section {
    background: var(--ehs-gradient-nature);
    color: var(--ehs-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .ehs-cta-nature-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
        animation: ehs-rotate 30s linear infinite;
    }

@keyframes ehs-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.ehs-cta-content {
    position: relative;
    z-index: 1;
}

.ehs-cta-title {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    color: whitesmoke;
}

.ehs-cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: whitesmoke;
    text-align: center;
}

.ehs-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.ehs-btn-cta-white {
    background: var(--ehs-white);
    color: var(--ehs-forest-green);
}

    .ehs-btn-cta-white:hover {
        color: var(--ehs-forest-green);
    }

.ehs-btn-cta-outline {
    border-color: var(--ehs-white);
    color: var(--ehs-white);
}

/* Lazy Loading */
.ehs-lazy-load {
    opacity: 0;
    transition: opacity 0.5s ease;
}

    .ehs-lazy-load.ehs-loaded {
        opacity: 1;
    }

/* Intro Caption Section */
.ehs-intro-caption-section {
    background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 50%, #f5f5f7 100%);
    padding: 70px 0;
}

.ehs-intro-caption-inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.ehs-intro-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(45, 80, 22, 0.06);
    color: var(--ehs-text-medium);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.ehs-intro-title {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    font-weight: 600;
    color: var(--ehs-text-dark);
    margin-bottom: 14px;
}

.ehs-intro-subtitle {
    font-size: 1.05rem;
    color: var(--ehs-text-light);
    line-height: 1.8;
    margin: 0;
}

/* Clients Section */
.ehs-clients-section {
    background: radial-gradient(circle at top, rgba(139, 195, 74, 0.09) 0%, transparent 55%), #f8faf8;
    position: relative;
    overflow: hidden;
}

    .ehs-clients-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 0% 100%, rgba(45, 80, 22, 0.04) 0%, transparent 55%);
        pointer-events: none;
    }

/* Marquee-style client pills */
.ehs-clients-marquee-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(135, 168, 120, 0.2);
    padding: 10px 0;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ehs-clients-marquee {
    display: inline-flex;
    gap: 18px;
    white-space: nowrap;
    padding: 0 32px;
    animation: ehs-clients-scroll 32s linear infinite;
}

.ehs-client-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffffff 0%, #ecf5ee 100%);
    border: 1px solid rgba(139, 195, 74, 0.35);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ehs-text-medium);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

@keyframes ehs-clients-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Client metric cards */
.ehs-client-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 14px 40px rgba(16, 24, 16, 0.12);
    border: 1px solid rgba(135, 168, 120, 0.2);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ehs-client-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: var(--ehs-gradient-fresh);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.6rem;
    margin: 0 auto 8px;
    box-shadow: 0 10px 26px rgba(16, 185, 129, 0.35);
}

.ehs-client-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ehs-text-dark);
    margin-bottom: 4px;
}

.ehs-client-card p {
    font-size: 0.98rem;
    color: var(--ehs-text-light);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .ehs-hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }
}

@media (max-width: 768px) {
    .ehs-hero-title {
        font-size: 2.5rem;
    }

    .ehs-btn-nature,
    .ehs-features-grid,
}

@media (max-width: 767.98px) {
    .ehs-clients-marquee-wrapper {
        border-radius: 16px;
    }
}

@media (max-width: 575px) {
    .ehs-hero-stats {
        gap: 24px;
    }

    .ehs-feature-card,
    .ehs-earth-card,
}
/* ---------- HERO: refine card + hierarchy ---------- */
.uiux-hero-row {
    row-gap: 32px;
    padding: 50px;
}

/* Copy block */
.uiux-hero-copy .section-title {
    position: relative;
}

/* Hero card */
.uiux-hero-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 18px 16px 14px;
    box-shadow: 0 22px 55px rgba(24, 34, 47, 0.18);
    border: 1px solid rgba(184, 200, 216, 0.7);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .uiux-hero-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top, rgba(255, 255, 255, 0.9), transparent 60%);
        opacity: 0.75;
        pointer-events: none;
    }

/* Hover lift */
@media (min-width: 992px) {
    .uiux-hero-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 28px 70px rgba(24, 34, 47, 0.22);
    }
}

/* Tag */
.uiux-hero-tag {
    position: absolute;
    top: 12px;
    left: 14px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
    background: rgba(226, 185, 35, 0.14);
    color: #7a5c05;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
}

/* Hero image + chips */
.uiux-hero-img {
    border-radius: 18px;
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

.uiux-hero-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
    position: relative;
    z-index: 1;
}

.uiux-chip {
    padding: 4px 10px;
    border-radius: 999px;
    background: #f4f7fb;
    color: #556170;
    font-size: 11px;
    font-weight: 500;
}

/* ---------- TECH: softer glass tiles ---------- */
.uiux-tech-section {
    background: #ffffff;
    padding: 60px 0;
}

    .uiux-tech-section h3 {
        font-size: 28px;
        font-weight: 700;
        color: #18222f;
        margin-bottom: 40px;
    }

.details-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(214, 223, 234, 0.9);
    border-radius: 20px;
    padding: 20px 16px;
    box-shadow: 0 18px 40px rgba(24, 34, 47, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

    .details-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 16px;
        right: 16px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    }

    .details-box img {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
        filter: drop-shadow(0 4px 10px rgba(24, 34, 47, 0.16));
        transition: transform 0.25s ease;
    }

    .details-box h5 {
        font-size: 15px;
        font-weight: 700;
        color: #18222f;
        margin: 0;
    }

    /* Hover */
    .details-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 60px rgba(24, 34, 47, 0.18);
        border-color: rgba(178, 198, 221, 1);
    }

        .details-box:hover img {
            transform: scale(1.06);
        }

@media (min-width: 1400px) {
    .details-box {
        padding: 24px 20px;
    }
}

@media (max-width: 991px) {
    .uiux-tech-section h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .uiux-tech-section {
        padding: 40px 0;
    }
}

/* ---------- ADVANTAGES: main glass card ---------- */
.uiux-advantages {
    background: radial-gradient(circle at top, #f5f7ff 0%, #e9f2ff 60%, #f5f6fb 100%);
    padding: 70px 0;
}

.uiux-advantages-row {
    row-gap: 32px;
}

.uiux-advantages-wrapper {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 22px;
    border: 1px solid rgba(214, 223, 234, 0.9);
    box-shadow: 0 22px 55px rgba(24, 34, 47, 0.18);
    padding: 22px 22px 18px;
    position: relative;
    overflow: hidden;
}

    .uiux-advantages-wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 40%, transparent 60%, rgba(255, 255, 255, 0.18) 100%);
        opacity: 0.8;
        pointer-events: none;
    }

.uiux-advantages-header {
    position: relative;
    margin-bottom: 16px;
    z-index: 1;
}

    .uiux-advantages-header .sect-title1 {
        font-size: 22px;
        font-weight: 700;
        color: #18222f;
    }

.uiux-advantages-sub {
    font-size: 14px;
    color: #6b7483;
    margin-top: 12px;
    margin-bottom: 6px;
}

/* Accordion */
.uiux-accordion-modern .accordion {
    margin-top: 8px;
}

.uiux-accordion-modern .accordion-item {
    border-radius: 16px;
    border: 1px solid rgba(184, 200, 216, 0.7);
    margin-bottom: 10px;
    overflow: hidden;
    background: rgba(246, 249, 253, 0.96);
    box-shadow: 0 10px 30px rgba(24, 34, 47, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

    .uiux-accordion-modern .accordion-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 34px rgba(24, 34, 47, 0.12);
        border-color: rgba(120, 148, 190, 0.9);
    }

.uiux-accordion-modern .accordion-button {
    font-weight: 600;
    font-size: 15px;
    padding: 14px 18px;
    background: transparent;
    color: #18222f;
    box-shadow: none;
    border: none;
}

    .uiux-accordion-modern .accordion-button span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 999px;
        margin-right: 10px;
        font-size: 13px;
        font-weight: 700;
        color: #ffffff;
        background: linear-gradient(135deg, #f2cf54, #e2b923);
        box-shadow: 0 6px 16px rgba(226, 185, 35, 0.35);
    }

    .uiux-accordion-modern .accordion-button::after {
        flex-shrink: 0;
        width: 11px;
        height: 11px;
        margin-left: auto;
        background-image: none;
        content: "";
        border-radius: 2px;
        border-right: 2px solid #7a8597;
        border-bottom: 2px solid #7a8597;
        transform: rotate(45deg);
        transition: transform 0.2s ease, border-color 0.2s ease;
    }

    .uiux-accordion-modern .accordion-button:not(.collapsed) {
        color: #18222f;
        background: #ffffff;
        box-shadow: inset 0 -1px 0 rgba(184, 200, 216, 0.4);
    }

        .uiux-accordion-modern .accordion-button:not(.collapsed)::after {
            transform: rotate(-135deg);
            border-color: #e2b923;
        }

.uiux-accordion-modern .accordion-body {
    padding: 15px 18px 14px 18px;
    font-size: 14px;
    color: #555f6f;
}

/* ---------- SUMMARY (flat like reference) ---------- */
.home-6 {
    background-color: #ffffff;
    background-image: url(../img/fag-bg.jpg);
    background-repeat: no-repeat;
}

.uiux-summary.home-6 {
    padding: 60px 0;
    margin-bottom: 50px;
}

.uiux-summary-row {
    row-gap: 30px;
}

.uiux-summary-img-wrap {
    text-align: left;
}

.uiux-summary-img {
    border-radius: 8px;
    display: block;
    width: 100%;
}

.teams-title {
    font-size: 28px;
    font-weight: 700;
    color: #073b4c;
    margin-bottom: 15px;
}

.uiux-summary-text p {
    font-size: 15px;
    line-height: 1.9;
    color: #24323f;
    margin-bottom: 15px;
}

@media (min-width: 992px) {
    .uiux-summary .img-hide {
        padding-right: 30px;
    }

    .uiux-summary .in-page {
        padding-left: 10px;
    }
}

@media (max-width: 991.98px) {
    .uiux-summary.home-6 {
        padding: 45px 0;
        margin-bottom: 40px;
    }
}

@media only screen and (min-width: 600px) {
    .uiux-bg {
        border-radius: 0
    }
}

@media only screen and (min-width: 768px) {
    .uiux-bg {
        border-radius: 0
    }
}

@media only screen and (min-width: 992px) {
    .uiux-bg {
        border-radius: 0 0 50% 10%
    }
}

@media only screen and (min-width: 1200px) {
    .uiux-bg {
        border-radius: 0 0 60% 0;
        background: #fff;
    }
}

.ai-kiosk-section {
    background: #f5f5f7;
    padding: 80px 0;
}

.ai-label {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #6c757d;
    margin-bottom: 10px;
}

.ai-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 36px;
    color: #083d59;
}

.ai-subtitle {
    font-size: 18px;
    color: #333;
    margin-bottom: 14px;
}

.ai-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 28px;
}

.ai-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #083d59;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .ai-btn:hover {
        background: #3f226f;
        transform: translateY(-2px);
    }

.ai-image {
    max-width: 100%;
    border-radius: 16px;
}

.ai-core-section {
    padding: 80px 0;
    background: #ffffff;
}

.ai-highlight {
    position: relative;
    color: #e3b925;

}

    .ai-highlight::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 100%;
        height: 6px;
        background: rgba(86, 48, 144, 0.15);
        border-radius: 4px;
    }

.ai-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border: 2px solid #083d59;
    color: #083d59;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .ai-btn-outline:hover {
        background: #083d59;
        color: #fff;
    }

.ai-media-box {
    width: 100%;
    height: 320px;
    background: #f5f5f7;
    border-radius: 20px;
}
/* Section */

/* Right Background Image */
.ai-core-section::before {
    content: "";
    position: absolute;
    background: url("../img/core-1.jpg") no-repeat right center;
    background-size: cover;
    width: 615px;
    max-width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    z-index: -1; /* behind inner content, above page bg */
}

/* Glass / foreground content container */
.ai-core-glass {
    position: relative;
    z-index: 1;
}

/* Content */
.ai-core-content {
    max-width: 560px;
}

/* Video / Image Box */
.ai-video-box {
    width: 100%;
    min-height: 500px;
    border-radius: 20px;
    background: url("../img/core-2.jpg") no-repeat center;
    background-size: cover;
}

/* Button */

/* Responsive */
@media (max-width: 991px) {
    .ai-core-section {
        padding: 70px 0;
    }
}

@media (max-width: 767px) {
    .ai-video-box {
        min-height: 300px;
    }
}
/* ================= CTA SECTION ================= */

.ai-cta-section {
    position: relative;
    padding: 70px 0 50px;
    background: #e2b923;
    background-size: cover;
    z-index: 1;
}

    .ai-cta-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.65), transparent 55%), radial-gradient(circle at 90% 100%, rgba(255, 255, 255, 0.4), transparent 55%), linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.35));
        mix-blend-mode: screen;
        opacity: 0.9;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: -1;
    }

.ai-cta-title {
    font-size: 28px;
    line-height: 1.5;
    font-weight: 600;
    color: #1d1d1f;
    max-width: 320px;
}

.ai-cta-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    padding: 16px 10px 18px;
    border-radius: 18px;
    background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.55)), radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4));
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

    .ai-cta-item::before {
        content: "";
        position: absolute;
        top: -35%;
        left: -10%;
        width: 70%;
        height: 70%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent 60%);
        opacity: 0.65;
        pointer-events: none;
    }

    .ai-cta-item img {
        height: 48px;
        margin-bottom: 12px;
    }

    .ai-cta-item p {
        font-size: 15px;
        font-weight: 600;
        color: #1d1d1f;
        text-align: center;
        line-height: 1.4;
        margin-bottom: 0;
    }

    .ai-cta-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 45px rgba(0, 0, 0, 0.16);
        border-color: rgba(255, 255, 255, 1);
    }

/* ================= FAQ SECTION ================= */

.ai-faq-section {
    padding: 90px 0 50px;
    background: #fff;
}

.ai-faq-content {
    max-width: 560px;
}

/* ================= ACCORDION ================= */

.ai-accordion {
    border-radius: 10px;
}

    .ai-accordion .accordion-item {
        border: 1px solid #f0e2d3;
        background: #faf7f4;
        margin-bottom: 12px;
        border-radius: 10px;
        overflow: hidden;
    }

    .ai-accordion .accordion-button {
        background: transparent;
        box-shadow: none;
        padding: 18px 22px;
        font-size: 17px;
        font-weight: 600;
        color: #003b5c;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        text-decoration: none;
        cursor: pointer;
    }

.ai-acc-text {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1 1 auto;
}

.ai-acc-index {
    flex-shrink: 0;
    min-width: 42px;
    font-size: 15px;
    font-weight: 700;
    color: #f2b705;
}

.ai-acc-title {
    font-size: 17px;
    font-weight: 600;
    color: #003b5c;
}

.ai-accordion .accordion-button {
    display: flex !important;
    align-items: center;
/*    justify-content: space-between;*/
    position: relative;
    padding-right: 50px !important; /* Fixed space for icon */
}

    .ai-accordion .accordion-button::after {
        content: "\f055";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: #003b5c;
        flex-shrink: 0;
        transition: transform 0.25s ease, color 0.25s ease;
        background: none !important;
        box-shadow: none !important;
        position: absolute;
        right: 20px !important; /* Fixed right position */
        top: 50%;
        transform: translateY(-50%);
        margin: 0 !important;
    }

    .ai-accordion .accordion-button:not(.collapsed)::after {
        content: "\f056";
        color: #e3b925;
    }

.ai-accordion .accordion-button:not(.collapsed) {
    background: #ffffff;
    color: #002537;
}


.ai-accordion .accordion-body {
    padding: 0 24px 22px 64px;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    background: #ffffff;
}

.ai-accordion .accordion-button:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* ================= FAQ VISUAL & FLOATING ELEMENTS ================= */

.ai-faq-visual {
    position: relative;
    text-align: right;
}

.ai-main-img {
    max-width: 100%;
    border-radius: 20px;
}

.ai-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #e2b923;
    border-radius: 50%;
    left: 35%;
    top: 60px;
}

.ai-float {
    position: absolute;
    z-index: 1;
    animation: scalePulse 3s infinite alternate;
}

    .ai-float.one {
        left: 60px;
        top: 70px;
        animation: scalePulse 3s infinite alternate;
    }

    .ai-float.two {
        left: 170px;
        bottom: 110px;
        animation: scalePulse 3s infinite alternate;
    }

    .ai-float.three {
        right: 10px;
        top: 60px;
        animation: floatUpDown 3s infinite ease-in-out;
    }

/* ================= INDUSTRIES SECTION ================= */

.ai-industries-section {
    padding: 80px 0 60px;
    background: #fff;
}

.ai-industries-continer {
    padding: 60px;
    border-radius: 2.1875rem;
    background: linear-gradient(135deg, #f1f5f8 0%, #e8eef5 100%);
}

.ai-industries-header {
    margin-bottom: 50px;
}

.ai-industry-card {
    position: relative;
    height: 100%;
    min-height: 200px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .ai-industry-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.8), transparent 50%), linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
        pointer-events: none;
        z-index: 1;
    }

.ai-card-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 30px 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)), linear-gradient(135deg, rgba(86, 48, 144, 0.08), rgba(56, 189, 248, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), inset 0 0 20px rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2;
    text-align: center;
}

.ai-industry-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.ai-industry-title {
    font-size: 16px;
    font-weight: 600;
    color: #003b5c;
    margin: 0;
    transition: color 0.3s ease;
}

.ai-industry-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(86, 48, 144, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.5);
}

    .ai-industry-card:hover .ai-industry-icon {
        transform: scale(1.15) rotateY(10deg);
    }

    .ai-industry-card:hover .ai-industry-title {
        color: #083d59;
    }

/* ================= BOTTOM CTA SECTION ================= */

.ai-cta-bottom-section {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f8 100%);
    position: relative;
    overflow: hidden;
}

    .ai-cta-bottom-section::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -20%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(56, 189, 248, 0.1), transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .ai-cta-bottom-section::after {
        content: "";
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(86, 48, 144, 0.08), transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

.ai-bottom-image-wrapper {
    position: relative;
    margin-bottom: 50px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    animation: slideUpFade 0.8s ease-out;
}

.ai-bottom-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.ai-bottom-content {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)), linear-gradient(135deg, rgba(86, 48, 144, 0.05), rgba(56, 189, 248, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), inset 0 0 30px rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2;
}

.ai-bottom-title {
    font-size: 36px;
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1.3;
    margin-bottom: 24px;
    text-align: center;
}

    .ai-bottom-title::after {
        content: "";
        display: block;
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #083d59, #38bdf8);
        border-radius: 2px;
        margin: 16px auto 0;
    }

.ai-bottom-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 40px;
}

.ai-bottom-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ai-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ai-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #083d59;
    line-height: 1.2;
}

.ai-stat-label {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 6px;
}

.ai-bottom-cta {
    text-align: center;
}

.ai-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #E2B923, #F4A460);
    color: #1d1d1f;
    padding: 14px 36px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(226, 185, 35, 0.35);
}

    .ai-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 45px rgba(226, 185, 35, 0.5);
        background: linear-gradient(135deg, #F4A460, #FFD700);
        color: #1d1d1f;
        text-decoration: none;
    }

    .ai-btn-primary i {
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .ai-btn-primary:hover i {
        transform: translateX(4px);
    }

    /* Focus state for accessibility */
    .ai-btn-primary:focus {
        outline: 2px solid #E2B923;
        outline-offset: 2px;
    }

    /* Active state */
    .ai-btn-primary:active {
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(226, 185, 35, 0.3);
    }

/* ================= ANIMATIONS ================= */

@keyframes scalePulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}
/* ================= RESPONSIVE - CTA SECTION ================= */

@media (max-width: 991px) {
    .ai-cta-section {
        padding: 60px 0 40px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .ai-cta-section .row {
        display: flex;
        flex-wrap: wrap;
    }

    .ai-cta-section .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .ai-cta-section .col-lg-2.col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 20px;
    }
}

/* ================= RESPONSIVE - FAQ SECTION ================= */

@media (max-width: 991px) {
    .ai-faq-section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .ai-accordion .accordion-button {
        font-size: 16px;
        padding: 16px;
    }
}

/* ================= RESPONSIVE - INDUSTRIES SECTION ================= */

@media (max-width: 991px) {
    .ai-industries-section {
        padding: 60px 0 50px;
    }
}

@media (max-width: 767px) {
    .ai-industries-section {
        padding: 50px 0 40px;
    }
}

/* ================= RESPONSIVE - BOTTOM CTA SECTION ================= */

@media (max-width: 991px) {
    .ai-cta-bottom-section {
        padding: 60px 0 50px;
    }
}

@media (max-width: 767px) {
    .ai-cta-bottom-section {
        padding: 50px 0 40px;
    }
}
/* ================= SMART CITY KIOSK SECTIONS ================= */

/* Hero Section */
.ai-smart-city-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f8 100%);
}

.ai-hero-content {
    max-width: 560px;
}

.ai-hero-image {
    text-align: center;
}

/* Tagline Section */
.ai-tagline-section {
    padding: 50px 0 50px;
    background: #e2b923;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), inset 0 0 30px rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.ai-tagline-title {
    color: #1d1d1f;
    font-size: 40px;
    line-height: 38px;
    line-height: 1.3;
    margin-bottom: 16px;
}

.ai-tagline-text {
    color: #1d1d1f;
    font-size: 25px;
    line-height: 38px;
    text-align: center;
}

/* Benefits Section */
.ai-benefits-section {
    padding: 80px 0 60px;
    background: #fff;
}

.ai-benefit-card {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .ai-benefit-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.8), transparent 50%), linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
        pointer-events: none;
        z-index: 1;
    }

.ai-benefit-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 30px 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)), linear-gradient(135deg, rgba(86, 48, 144, 0.08), rgba(56, 189, 248, 0.08));
    border: 1px solid rgba(200, 200, 200, 0.5);
    border-bottom: 4px solid rgba(200, 200, 200, 0.6);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), inset 0 0 20px rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2;
    text-align: center;
    min-height: 240px;
}

.ai-benefit-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.ai-benefit-title {
    font-size: 16px;
    font-weight: 600;
    color: #003b5c;
    margin-bottom: 12px;
}

.ai-benefit-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Wave Effect - 2nd and 4th cards positioned lower */
.ai-benefits-section .row > .col-lg-3:nth-child(2),
.ai-benefits-section .row > .col-lg-3:nth-child(4) {
    transform: translateY(30px);
}

/* Hover Effects */
.ai-benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(86, 48, 144, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.5);
}

    .ai-benefit-card:hover .ai-benefit-icon {
        transform: scale(1.15);
    }

    .ai-benefit-card:hover .ai-benefit-title {
        color: #083d59;
    }

/* ================= RESPONSIVE - WAVE EFFECT ================= */

@media (max-width: 991px) {
    .ai-benefits-section .row > .col-lg-3:nth-child(2),
}

@media (max-width: 767px) {
    /* Remove wave effect on mobile */
    .ai-benefits-section .row > .col-lg-3:nth-child(2),
}

@media (max-width: 575px) {
    .ai-benefit-inner {
        padding: 20px 12px;
    }
}

/* Features Section */
.ai-features-section {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f8 100%);
}

.ai-feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)), linear-gradient(135deg, rgba(86, 48, 144, 0.08), rgba(56, 189, 248, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), inset 0 0 20px rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ai-feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.ai-feature-text {
    text-align: center;
    color: #1d1d1f;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ================= WAVE EFFECT - DESKTOP ================= */

/* 1st Card - Normal position */
.ai-features-section .row .col-md-6:nth-child(1) .ai-feature-card {
    transform: translateY(0);
}

/* 2nd Card - Down 40px */
.ai-features-section .row .col-md-6:nth-child(2) .ai-feature-card {
    transform: translateY(40px);
}

/* 3rd Card - Normal position */
.ai-features-section .row .col-md-6:nth-child(3) .ai-feature-card {
    transform: translateY(0);
}

/* 4th Card - Down 40px */
.ai-features-section .row .col-md-6:nth-child(4) .ai-feature-card {
    transform: translateY(40px);
}

/* Hover Effects - adds to existing transform */
.ai-features-section .row .col-md-6:nth-child(1) .ai-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(86, 48, 144, 0.12), inset 0 0 20px rgba(255, 255, 255, 0.5);
}

.ai-features-section .row .col-md-6:nth-child(2) .ai-feature-card:hover {
    transform: translateY(32px);
    box-shadow: 0 15px 40px rgba(86, 48, 144, 0.12), inset 0 0 20px rgba(255, 255, 255, 0.5);
}

.ai-features-section .row .col-md-6:nth-child(3) .ai-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(86, 48, 144, 0.12), inset 0 0 20px rgba(255, 255, 255, 0.5);
}

.ai-features-section .row .col-md-6:nth-child(4) .ai-feature-card:hover {
    transform: translateY(32px);
    box-shadow: 0 15px 40px rgba(86, 48, 144, 0.12), inset 0 0 20px rgba(255, 255, 255, 0.5);
}

.ai-feature-card:hover .ai-feature-icon {
    transform: scale(1.1);
}

/* ================= RESPONSIVE - TABLET ================= */

@media (max-width: 991px) {
    /* 2nd Card - Down 25px */

    /* 4th Card - Down 25px */

    /* Hover on tablet */

}

/* ================= RESPONSIVE - MOBILE ================= */

@media (max-width: 767px) {
    /* Remove wave effect on mobile */
    .ai-features-section .row .col-md-6:nth-child(1) .ai-feature-card,
    .ai-features-section .row .col-md-6:nth-child(2) .ai-feature-card,
    .ai-features-section .row .col-md-6:nth-child(3) .ai-feature-card,
    /* Mobile hover */
    .ai-features-section .row .col-md-6:nth-child(1) .ai-feature-card:hover,
    .ai-features-section .row .col-md-6:nth-child(2) .ai-feature-card:hover,
    .ai-features-section .row .col-md-6:nth-child(3) .ai-feature-card:hover,
}

@media (max-width: 575px) {
    .ai-feature-card {
        padding: 18px 12px;
        border-radius: 20px;
        min-height: 150px;
    }
}

/* ================= FEATURE SECTION CONTAINER ================= */

.ai-features-section .row {
    row-gap: 1.5rem;
}

/* Image wrapper alignment */
.ai-feature-image {
    text-align: center;
}

    .ai-feature-image img {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

@media (max-width: 991px) {
    .ai-features-section {
        padding: 60px 0 50px;
    }
}

@media (max-width: 767px) {
    .ai-features-section {
        padding: 50px 0 40px;
    }
}

/* Closing Section */
.ai-closing-section {
    padding: 80px 0 60px;
    background: #fff;
}

.ai-closing-content {
    background: #f1f5f8;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 2.1875rem;
    padding: 50px 40px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* CTA Expert Section */
.ai-cta-expert-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #083d59 0%, #0a5a8a 100%);
}

.ai-cta-expert-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Use Cases Section */
.ai-use-cases-section {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f8 100%);
}

.ai-use-case-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)), linear-gradient(135deg, rgba(86, 48, 144, 0.08), rgba(56, 189, 248, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 25px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), inset 0 0 20px rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.ai-use-case-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.ai-use-case-title {
    font-size: 14px;
    font-weight: 600;
    color: #003b5c;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.ai-use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(86, 48, 144, 0.12), inset 0 0 20px rgba(255, 255, 255, 0.5);
}

    .ai-use-case-card:hover .ai-use-case-icon {
        transform: scale(1.1);
    }

    .ai-use-case-card:hover .ai-use-case-title {
        color: #083d59;
    }

/* ================= RESPONSIVE - SMART CITY ================= */

@media (max-width: 991px) {
    .ai-smart-city-hero {
        padding: 70px 0 60px;
    }

    .ai-tagline-section,
    .ai-benefits-section,
    .ai-features-section,
    .ai-closing-section,
    .ai-tagline-content,
    .ai-benefit-inner,
    .ai-feature-card,
}

@media (max-width: 767px) {
    .ai-smart-city-hero {
        padding: 60px 0 50px;
    }

    .ai-tagline-section,
    .ai-benefits-section,
    .ai-features-section,
    .ai-closing-section,
    .ai-text {
        font-size: 14px !important;
    }

    .ai-tagline-content,
    .ai-cta-expert-section .row {
        text-align: center;
    }

    .ai-feature-card:hover,
}

@media (max-width: 575px) {
    .ai-smart-city-hero {
        padding: 50px 0 40px;
    }

    .ai-kicker {
        font-size: 12px;
    }

    .ai-lead {
        font-size: 14px !important;
    }

    .ai-tagline-content {
        padding: 25px 15px;
    }
}

/* ================= COMMON UTILITY CLASSES ================= */

/* Focus state for accessibility */

/* Active state */

/* ================= COMPLETE SMART CITY STYLESHEET ================= */

/* All sections combined for easy reference */

/* Smart City Hero */

.ai-smart-city-hero .ai-hero-content {
    animation: slideInLeft 0.8s ease-out;
}

.ai-smart-city-hero .ai-hero-image {
    animation: slideInRight 0.8s ease-out;
}

/* Animation for entrance */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Smooth transitions for all interactive elements */
a, button, [role="button"] {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */

.ai-benefit-card:focus-within,
.ai-feature-card:focus-within,
.ai-use-case-card:focus-within {
    box-shadow: 0 20px 50px rgba(86, 48, 144, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.5), 0 0 0 3px rgba(8, 61, 89, 0.2);
}
/* ================= BANKING HERO SECTION ================= */

.ai-banking-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f5f5f7 0%, #f0f0f5 100%);
}

    .ai-banking-hero .ai-hero-content {
        max-width: 100%;
        animation: slideInLeft 0.8s ease-out;
    }


/* ================= OVERVIEW SECTION ================= */

.ai-overview-section {
    padding: 80px 0 60px;
    background: #fff;
}

.ai-overview-content {
    max-width: 600px;
}

.ai-overview-image {
    text-align: center;
}

    .ai-overview-image img {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

/* ================= BANKING FEATURES SECTION ================= */

.ai-banking-features-section {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f8 100%);
}

    .ai-banking-features-section .row {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
    }

.ai-banking-feature-card {
    position: relative;
    height: 100%;
    min-height: 300px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .ai-banking-feature-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.8), transparent 50%), linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
        pointer-events: none;
        z-index: 1;
    }

.ai-banking-feature-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-grow: 1;
    padding: 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)), linear-gradient(135deg, rgba(86, 48, 144, 0.08), rgba(56, 189, 248, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), inset 0 0 20px rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2;
    text-align: center;
}

.ai-banking-feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    flex-shrink: 0;
}

.ai-banking-feature-title {
    font-weight: 600;
    color: #003b5c;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.ai-banking-feature-text {
    color: #1d1d1f;
    line-height: 1.6;
    margin-bottom: 0;
    margin-top: 12px;
    transition: color 0.3s ease;
    text-align:center;
}

/* Hover Effects */
.ai-banking-feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(86, 48, 144, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.5);
}

    .ai-banking-feature-card:hover .ai-banking-feature-icon {
        transform: scale(1.15) rotateY(5deg);
    }

    .ai-banking-feature-card:hover .ai-banking-feature-title {
        color: #083d59;
    }

    .ai-banking-feature-card:hover .ai-banking-feature-text {
        color: #003b5c;
    }

/* Last Card (Content paragraph) - Center middle */
.ai-banking-features-section .row > .col-lg-8:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

    .ai-banking-features-section .row > .col-lg-8:last-child .ai-text {
        margin-bottom: 0;
        max-width: 700px;
    }

/* ================= VALUE DELIVERED SECTION ================= */

.ai-value-section {
    padding: 80px 0 60px;
    background: #fff;
}

.ai-value-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)), linear-gradient(135deg, rgba(86, 48, 144, 0.08), rgba(56, 189, 248, 0.08));
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    padding: 25px 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    padding: 20px 5px;
    margin: 15px auto
}

.ai-value-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.ai-value-title {
    font-weight: 600;
    color: #003b5c;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.ai-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(86, 48, 144, 0.12), inset 0 0 20px rgba(255, 255, 255, 0.5);
}

    .ai-value-card:hover .ai-value-icon {
        transform: scale(1.1);
    }

    .ai-value-card:hover .ai-value-title {
        color: #083d59;
    }

/* ================= WHY CHOOSE CARD ================= */

.ai-why-choose-card {
    background: #f0f0ff;
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08), inset 0 0 10px rgba(255, 255, 255, 0.6);
}

/* ================= ANIMATIONS ================= */

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================= COMMON UTILITY CLASSES ================= */

.ai-kicker {
    display: inline-block;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: #38bdf8;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.ai-title {
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1.3;
    margin-bottom: 16px;
}

.ai-lead {
    font-size: 1rem;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.6;
}

.ai-text {
    color: #1d1d1f;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Button Styles */
.ai-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #E2B923, #F4A460);
    color: #1d1d1f;
    padding: 14px 36px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(226, 185, 35, 0.35);
}

    .ai-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 45px rgba(226, 185, 35, 0.5);
        background: linear-gradient(135deg, #F4A460, #FFD700);
        color: #1d1d1f;
        text-decoration: none;
    }

    .ai-btn-primary i {
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .ai-btn-primary:hover i {
        transform: translateX(4px);
    }

    .ai-btn-primary:focus {
        outline: 2px solid #E2B923;
        outline-offset: 2px;
    }

    .ai-btn-primary:active {
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(226, 185, 35, 0.3);
    }

/* ================= SMOOTH ANIMATIONS ================= */

a, button, [role="button"] {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
.ai-banking-feature-card:focus-within,
.ai-value-card:focus-within {
    box-shadow: 0 20px 50px rgba(86, 48, 144, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.5), 0 0 0 3px rgba(8, 61, 89, 0.2);
}

/* ================= RESPONSIVE - HERO ================= */

@media (max-width: 991px) {
    .ai-banking-hero,
    .ai-overview-section,
    .ai-banking-features-section,
    .ai-value-section {
        padding: 60px 0 50px;
    }

    .ai-hero-content,
    .ai-overview-content {
        max-width: 100%;
    }

    .ai-overview-image {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .ai-banking-hero,
    .ai-overview-section,
    .ai-banking-features-section,
    .ai-value-section {
        padding: 50px 0 40px;
    }

    .ai-hero-content,
    .ai-overview-content {
        text-align: center;
    }

    .ai-overview-image {
        margin-top: 20px;
    }
}

/* ================= RESPONSIVE - BANKING FEATURES ================= */

@media (max-width: 991px) {
    .ai-banking-feature-card {
        min-height: 280px;
    }

    .ai-banking-feature-inner {
        padding: 24px 16px;
    }

    .ai-banking-feature-icon {
        width: 64px;
        height: 64px;
    }

    .ai-banking-features-section .row > .col-lg-8:last-child {
        min-height: 180px;
    }

    .ai-why-choose-card {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .ai-banking-feature-card {
        min-height: 240px;
        border-radius: 16px;
    }

    .ai-banking-feature-inner {
        padding: 20px 14px;
    }

    .ai-banking-feature-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 12px;
    }

    .ai-banking-feature-card:hover {
        transform: translateY(-8px);
    }

    .ai-banking-features-section .row > .col-lg-8:last-child {
        min-height: 160px;
        padding: 30px 15px;
    }

    .ai-value-card {
        padding: 20px 12px;
        min-height: 140px;
    }

    .ai-value-icon {
        width: 48px;
        height: 48px;
    }

    .ai-why-choose-card {
        padding: 25px 20px;
    }
}

@media (max-width: 575px) {
    .ai-banking-feature-card {
        min-height: 220px;
    }

    .ai-banking-feature-inner {
        padding: 18px 12px;
    }

    .ai-banking-feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 8px;
    }

    .ai-banking-feature-card:hover .ai-banking-feature-icon {
        transform: scale(1.05);
    }

    .ai-banking-features-section .row > .col-lg-8:last-child {
        min-height: 140px;
        padding: 20px 10px;
    }

        .ai-banking-features-section .row > .col-lg-8:last-child .ai-text {
            font-size: 13px;
            line-height: 1.5;
        }

    .ai-value-card {
        padding: 16px 10px;
        min-height: 120px;
    }

    .ai-value-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 8px;
    }

    .ai-why-choose-card {
        padding: 20px 15px;
    }

    .ai-title {
        font-size: 20px;
    }

    .ai-lead {
        font-size: 14px;
    }

    .ai-text {
        font-size: 13px;
    }

    .ai-value-card:hover {
        transform: translateY(-5px);
    }

        .ai-value-card:hover .ai-value-icon {
            transform: scale(1.05);
        }
}

/* ================= RESPONSIVE - VALUE SECTION ================= */

@media (max-width: 991px) {
    .ai-value-section .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
    }
}

@media (max-width: 767px) {
    .ai-value-section .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
    }

    .ai-value-card {
        margin-bottom: 10px;
    }
}

/* ================= RESPONSIVE - BUTTONS ================= */

@media (max-width: 767px) {
    .ai-btn-primary {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .ai-btn-primary {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 13px;
    }

        .ai-btn-primary i {
            font-size: 11px;
        }
}

/* ================= BRAND COLOR SYSTEM ================= */

:root {
    --color-primary: #083d59;
    --color-primary-dark: #002537;
    --color-primary-light: #0a5a8a;
    --color-accent: #E2B923;
    --color-accent-light: #F4A460;
    --color-accent-bright: #FFD700;
    --color-text-dark: #1d1d1f;
    --color-text-light: #555;
    --color-text-muted: #999;
    --color-bg-light: #f5f5f7;
    --color-bg-lighter: #f8fafc;
    --color-bg-white: #fff;
    --color-border: rgba(255, 255, 255, 0.9);
    --color-shadow: rgba(0, 0, 0, 0.08);
    --color-shadow-dark: rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s ease;
}

/* ================= ACCESSIBILITY ================= */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .ai-banking-hero .ai-hero-content,
    .ai-banking-hero .ai-hero-image {
        animation: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: more) {
    .ai-banking-feature-card,
    .ai-value-card,
    .ai-why-choose-card {
        border-width: 2px;
        border-color: var(--color-primary);
    }

    .ai-btn-primary {
        border: 2px solid var(--color-primary);
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .ai-banking-hero {
        background: linear-gradient(135deg, #1a1a1f 0%, #0d0d12 100%);
    }

    .ai-overview-section,
    .ai-value-section,
    .ai-why-choose-card {
        background: #0f0f14;
        color: #e5e5f0;
    }

    .ai-banking-features-section {
        background: linear-gradient(135deg, #1a1a1f 0%, #131318 100%);
    }

    .ai-title,
    .ai-text {
        color: #e5e5f0;
    }

    .ai-banking-feature-inner,
    .ai-value-card {
        background: linear-gradient(145deg, rgba(50, 50, 60, 0.95), rgba(40, 40, 50, 0.85)), linear-gradient(135deg, rgba(86, 48, 144, 0.15), rgba(56, 189, 248, 0.08));
        border-color: rgba(100, 100, 120, 0.5);
    }
}

/* ================= PRINT STYLES ================= */

@media print {
    .ai-banking-hero,
    .ai-overview-section,
    .ai-banking-features-section,
    .ai-value-section {
        page-break-inside: avoid;
    }

    .ai-btn-primary {
        display: none;
    }

    .ai-banking-feature-card:hover,
    .ai-value-card:hover {
        transform: none;
        box-shadow: none;
    }
}

/* ===========================
   SUPPORT SECTION - IMPROVED CSS
   =========================== */

/* Section Wrapper */
.support-section-improved {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

    /* Animated Background Elements */
    .support-section-improved::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: float-animation 6s ease-in-out infinite;
    }

    .support-section-improved::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -5%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(30, 64, 175, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        animation: float-animation-reverse 8s ease-in-out infinite;
    }

@keyframes float-animation {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }
}

@keyframes float-animation-reverse {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }
}

/* Section Header */
.section-header-support {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.support-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
    max-width: 500px;
    margin: 0 auto;
    text-align:center;
}

/* Cards Wrapper */
.support-cards-wrapper {
    position: relative;
    z-index: 1;
}

/* Individual Card Styling */
.support-card-item {
    border-radius: 24px;
    padding: 45px 30px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    border: 1px solid rgba(248, 250, 252, 0.5);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

    /* Card Hover Effect */
    .support-card-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
        z-index: 0;
    }

    .support-card-item:hover::before {
        left: 100%;
    }

    .support-card-item:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
    }

/* ===== CARD COLOR VARIANTS WITH BACKGROUND COLORS ===== */

/* Technical Support Card - Sky Blue */
.support-card-tech {
    background: linear-gradient(135deg, #e0f2fe 0%, #cffafe 100%);
    border-top: 4px solid #0ea5e9;
}



    .support-card-join:hover,
    .support-card-tech:hover,
    .support-card-inquiry:hover {
        background: #f5f5f7;
    } 

    .support-card-tech .card-icon-container {
        background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(14, 165, 233, 0.1) 100%);
    }


/* Join Us Card - Pink */
.support-card-join {
    background: linear-gradient(135deg, #fbf0f1 0%, #fce7f3 100%);
    border-top: 4px solid #ec4899;
}

    .support-card-join .card-icon-container {
        background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(236, 72, 153, 0.1) 100%);
    }

/* Inquiries Card - Green */
.support-card-inquiry {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-top: 4px solid #10b981;
}

    .support-card-inquiry .card-icon-container {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
    }

/* ===== ICON CONTAINER ===== */
.card-icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.support-card-item:hover .card-icon-container {
    transform: scale(1.1) rotate(5deg);
}

/* Card Icon Image */
.card-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

/* Card Title */
.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.3px;
}

/* Card Description */
.card-description {
    text-align:center;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

/* Card Link */
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

    .card-link:hover {
        gap: 12px;
    }

    .card-link .arrow {
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .card-link:hover .arrow {
        transform: translateX(4px);
    }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .support-main-title {
        font-size: 2rem;
    }

    .support-card-item {
        padding: 40px 25px;
    }
}

@media (max-width: 768px) {
    .support-section-improved {
        padding: 60px 0;
    }

    .support-main-title {
        font-size: 1.7rem;
    }

    .support-subtitle {
        font-size: 1rem;
    }

    .section-header-support {
        margin-bottom: 50px;
    }

    .card-icon-container {
        width: 70px;
        height: 70px;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .support-section-improved {
        padding: 50px 0;
    }

    .support-main-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .support-card-item {
        padding: 35px 20px;
    }

    .card-icon-container {
        margin-bottom: 20px;
    }
}
/* ===========================
   CTA SECTION - GOLD COLOR CSS
   =========================== */

.cta-section-gold {
    padding: 40px 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fcd34d 100%);
    position: relative;
    overflow: hidden;
}

    /* Animated Background Elements */
    .cta-section-gold::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(217, 119, 6, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        animation: float-animation 6s ease-in-out infinite;
    }

    .cta-section-gold::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -5%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(180, 83, 9, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: float-animation-reverse 8s ease-in-out infinite;
    }

@keyframes float-animation {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }
}

@keyframes float-animation-reverse {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }
}

/* CTA Title */
.cta-title-gold {
    font-size: 2rem;
    font-weight: 600;
    color: #222429;
    margin-bottom: 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(120, 53, 15, 0.1);
}

/* Button Styling - Gold Theme */
.btn-gold-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #fcdb68;
    color: #746019;
    font-size: 1rem;
    font-weight: 700;
    border: 2px solid #ba9017;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    z-index: 1;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
    letter-spacing: 0.5px;
}

    .btn-gold-primary:hover {
        background: #977618;
        color:#fff;
        transform: translateX(-3px);
        box-shadow: 0 15px 40px rgba(217, 119, 6, 0.4);
    }

    .btn-gold-primary:active {
        transform: translateY(-1px);
        box-shadow: 0 5px 15px rgba(217, 119, 6, 0.3);
    }

/* Responsive Design */
@media (max-width: 992px) {
    .cta-title-gold {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .btn-gold-primary {
        padding: 14px 35px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .cta-section-gold {
        padding: 60px 0;
    }

    .cta-title-gold {
        font-size: 1.4rem;
        text-align: center;
    }

    .btn-gold-primary {
        padding: 13px 30px;
        font-size: 0.9rem;
        display: inline-block;
        width: auto;
    }
}

@media (max-width: 576px) {
    .cta-section-gold {
        padding: 50px 0;
    }

    .cta-title-gold {
        font-size: 1.2rem;
        line-height: 1.25;
    }

    .btn-gold-primary {
        padding: 12px 25px;
        font-size: 0.85rem;
        width: 100%;
    }
}
.how-ssk {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
}
    .how-ssk h4 {
        margin-bottom: 15px;
    }
    .how-ssk p {
        margin-bottom: 15px;
    }
/* Grid + center alignment */
.stk-usecases-grid {
    padding:0 20px;
}

    .stk-usecases-grid .usecase-card,
    .stk-usecases-grid .usecase-title-block {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        text-align: center;
    }

    /* Liquid glass effect */
    .stk-usecases-grid .details-box.usecase-card {
        position: relative;
        padding: 26px 22px;
        border-radius: 22px;
        background: linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,255,255,0.58));
        border: 1px solid rgba(255,255,255,0.45);
        box-shadow: 0 18px 45px rgba(8, 61, 89, 0.16), inset 0 1px 0 rgba(255,255,255,0.7), inset 0 -1px 0 rgba(0,0,0,0.04);
        backdrop-filter: blur(22px) saturate(170%);
        -webkit-backdrop-filter: blur(22px) saturate(170%);
        overflow: hidden;
        transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s cubic-bezier(0.4,0,0.2,1), border-color 0.35s ease;
    }

        .stk-usecases-grid .details-box.usecase-card::before {
            content: "";
            position: absolute;
            inset: -40%;
            background: radial-gradient(circle at 0 0, rgba(226,185,35,0.20) 0, transparent 55%);
            opacity: 0;
            transform: translate3d(-10px, -10px, 0);
            transition: opacity 0.5s ease, transform 0.5s ease;
            pointer-events: none;
        }

        .stk-usecases-grid .details-box.usecase-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 60px rgba(8, 61, 89, 0.24), inset 0 1px 0 rgba(255,255,255,0.8);
            border-color: rgba(226,185,35,0.65);
        }

            .stk-usecases-grid .details-box.usecase-card:hover::before {
                opacity: 1;
                transform: translate3d(0,0,0);
            }

    /* Image & text tweaks */
    .stk-usecases-grid .details-box img {
        max-width: 80px;
        height: auto;
    }

    .stk-usecases-grid h5 {
        font-size: 15px;
        font-weight: 700;
        line-height: 1.5;
    }

    /* Title column */
    .stk-usecases-grid .usecase-title-block h3 {
        font-size: 24px;
        font-weight: 700;
    }
.ai-faq-usecases-section {
    background: #f1f5f8;
    padding: 80px 0;
}
.self-checkin-section{
    margin:50px auto;
}
.self-checkin-section .text-list {
    list-style: none;
    margin: 40px 0;
    padding-left: 0;
}

.sck-benfits {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 50px;
    padding: 20px;
    /* Glassmorphism core */
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 18px 45px rgba(8, 61, 89, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.7), inset 0 -1px 0 rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

    /* Optional soft inner sheen */
    .sck-benfits::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(255, 255, 255, 0.5) 0%, transparent 40%, transparent 60%, rgba(255, 255, 255, 0.2) 100% );
        pointer-events: none;
    }

    .sck-benfits h3 {
        margin: 20px auto 30px;
    }
.scio span {
    background: linear-gradient( 135deg, rgba(228, 185, 33, 0.80) 0%, rgba(228, 185, 33, 0.55) 40%, rgba(228, 185, 33, 0.35) 100% );
    border-radius: 50px;
    padding: 20px;
    /* Glass effect */
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.55);
    position: relative;
    overflow: hidden;
    line-height: 40px;
    padding: 10px 20px;
    border-radius: 10px
}
.scico-hero-section {
    background: #ffffff;
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}

.scico-hero-row {
    row-gap: 32px;
}

.scico-kicker {
    display: inline-block;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6b7280;
    border-radius: 999px;
    background: rgba(8, 61, 89, 0.04);
    border: 1px solid rgba(8, 61, 89, 0.12);
    margin-bottom: 14px;
}

.scico-title {
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.scico-lead {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6c7d;
    margin: 0 0 26px;
    text-align: justify;
}

.scico-cta-wrap {
    margin-top: 6px;
}

/* New primary button (no preview-more) */
.scico-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 34px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    color: #1d1d1f;
    background: linear-gradient(135deg, #e2b923 0%, #ffd700 100%);
    box-shadow: 0 12px 32px rgba(226, 185, 35, 0.45);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .scico-btn-primary::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.5), transparent 55%);
        opacity: 0;
        transition: opacity 0.35s ease;
    }

    .scico-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 46px rgba(226, 185, 35, 0.55);
    }

        .scico-btn-primary:hover::before {
            opacity: 1;
        }

/* Right visual */
.scico-visual {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
}

.scico-glow {
    position: absolute;
    inset: 18% 10%;
    background: radial-gradient(circle, rgba(226, 185, 35, 0.18) 0, transparent 70%);
    filter: blur(24px);
    z-index: 0;
}

/* Floating pills */
.scico-floating-pill {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(208, 213, 221, 0.7);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    font-size: 12px;
    font-weight: 600;
    color: #0f172a;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2;
}

.scico-pill-top {
    top: -10px;
    left: 12%;
}

.scico-pill-bottom {
    bottom: -10px;
    right: 6%;
}

.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
}

/* Responsive spacing */
@media (max-width: 991.98px) {
    .scico-hero-section {
        padding: 60px 0 55px;
    }

    .scico-title {
        font-size: 28px;
    }

    .scico-hero-content {
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .scico-hero-section {
        padding: 50px 0 45px;
    }

    .scico-title {
        font-size: 24px;
    }

    .scico-lead {
        font-size: 14px;
    }

    .scico-pill-top,
    .scico-pill-bottom {
        display: none;
    }
}


/* Core tokens (aligned with existing brand palette) */
:root {
    --tt-primary: #083d59;
    --tt-primary-light: #0a5a8a;
    --tt-accent: #e2b923;
    --tt-accent-bright: #ffd700;
    --tt-bg-light: #f5f5f7;
    --tt-bg-soft: #f1f5f8;
    --tt-text-main: #1d1d1f;
    --tt-text-muted: #6b7280;
    --tt-border-soft: #e5e7eb;
    --tt-radius-lg: 24px;
    --tt-radius-xl: 32px;
    --tt-shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
    --tt-shadow-strong: 0 22px 55px rgba(15, 23, 42, 0.18);
    --tt-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============== HERO =============== */
.tt-hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 55%, #f3f4ff 100%);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}

.tt-hero-row {
    row-gap: 32px;
}

.tt-hero-content {
    position: relative;
    z-index: 1;
}

.tt-hero-kicker {
    display: inline-block;
    padding: 7px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--tt-text-muted);
    border-radius: 999px;
    background: rgba(8, 61, 89, 0.04);
    border: 1px solid rgba(8, 61, 89, 0.12);
    margin-bottom: 14px;
}

.tt-hero-title {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--tt-text-main);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.tt-hero-lead,
.tt-hero-body {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 18px;
    text-align: justify;
}

.tt-hero-body {
    margin-bottom: 24px;
}

.tt-hero-cta {
    margin-top: 4px;
}

.tt-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    color: #1f2933;
    background: linear-gradient(135deg, var(--tt-accent) 0%, var(--tt-accent-bright) 100%);
    box-shadow: 0 14px 40px rgba(226, 185, 35, 0.45);
    position: relative;
    overflow: hidden;
    transition: all 0.35s var(--tt-ease);
}

    .tt-btn-primary::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.55), transparent 60%);
        opacity: 0;
        transition: opacity 0.35s ease;
    }

    .tt-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 52px rgba(226, 185, 35, 0.55);
    }

        .tt-btn-primary:hover::before {
            opacity: 1;
        }

/* Hero visual */
.tt-hero-visual {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
}

.tt-hero-glow {
    position: absolute;
    inset: 18% 10%;
    background: radial-gradient(circle, rgba(226, 185, 35, 0.22) 0, transparent 70%);
    filter: blur(24px);
    z-index: 0;
}

.tt-hero-image-shell {
    position: relative;
    padding: 14px;
    overflow: hidden;
    z-index: 1;
}

.tt-img-fluid {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Floating hero pills */
.tt-hero-pill {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(209, 213, 219, 0.9);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    font-size: 12px;
    font-weight: 600;
    color: #0f172a;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 2;
    animation: tt-pill-float 4s ease-in-out infinite;
}

.tt-hero-pill-top {
    top: -10px;
    left: 12%;
}

.tt-hero-pill-bottom {
    bottom: -10px;
    right: 6%;
    animation-delay: 1s;
}

.tt-pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
}

@keyframes tt-pill-float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* =============== SECTORS GRID =============== */
.tt-sectors-section {
    background: #ffffff;
    padding: 70px 0 60px;
}

.tt-section-header {
    margin-bottom: 40px;
}

.tt-section-intro {
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 18px;
    text-align: center;
}

.tt-section-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--tt-primary);
    margin: 0;
    letter-spacing: -0.4px;
}

/* make grid flex so all columns stretch equally */
.tt-sectors-grid {
    row-gap: 24px;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
}

    .tt-sectors-grid > [class*="col-"] {
        display: flex;
    }

/* equal-height card styling */
.tt-sector-card {
    background: #ffffff;
    border-radius: var(--tt-radius-lg);
    padding: 24px 22px 22px;
    border: 1px solid var(--tt-border-soft);
    box-shadow: var(--tt-shadow-soft);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s var(--tt-ease);
    position: relative;
    overflow: hidden;
}

    .tt-sector-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 16px;
        right: 16px;
        height: 3px;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--tt-primary) 0%, transparent 100%);
        opacity: 0;
        transform: scaleX(0);
        transform-origin: left;
        transition: all 0.3s ease;
    }

.tt-sector-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--tt-text-main);
    margin-bottom: 10px;
}

.tt-sector-divider {
    display: inline-block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--tt-primary) 0%, var(--tt-accent) 100%);
    margin-bottom: 15px;
}

.tt-sector-text {
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

.tt-sector-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
    border-color: rgba(8, 61, 89, 0.18);
}

    .tt-sector-card:hover::before {
        opacity: 1;
        transform: scaleX(1);
    }

/* =============== BENEFITS =============== */
.tt-benefits-section {
    background: #ffffff;
    padding: 70px 0 65px;
}

.tt-benefits-row {
    row-gap: 32px;
}

.tt-benefits-visual {
    position: relative;
    max-width: 95%;
    margin: 0 auto;
}

.tt-benefits-glow {
    position: absolute;
    inset: 20% 8%;
    background: radial-gradient(circle, rgba(8, 61, 89, 0.16) 0, transparent 70%);
    filter: blur(24px);
    z-index: 0;
}

.tt-benefits-image {
    border-radius: 20px;
    position: relative;
}

@media (max-width: 991.98px) {
    .tt-benefits-content {
        padding-left: 0;
    }
}

.tt-benefits-title {
    font-size: 25px;
    font-weight: 700;
    color: var(--tt-primary);
    margin-bottom: 40px;
}

.tt-benefits-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .tt-benefits-list li {
        font-size: 14px;
        line-height: 1.8;
        color: #4b5563;
        padding-left: 0;
        margin-bottom: 14px;
    }

/* =============== VENUES GRID =============== */
.tt-venues-section {
    background: var(--tt-bg-soft);
    padding: 70px 0 75px;
}

.tt-venues-wrapper {
    background: #ffffff;
    border-radius: 35px;
    padding: 40px 28px 32px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.tt-venues-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--tt-text-main);
    margin-bottom: 26px;
    line-height: 1.4;
}

.tt-venues-highlight {
    background: linear-gradient(135deg, var(--tt-primary) 0%, var(--tt-accent) 50%, var(--tt-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tt-venue-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    border: 1px solid var(--tt-border-soft);
    text-align: center;
    box-shadow: var(--tt-shadow-soft);
    transition: all 0.3s var(--tt-ease);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tt-venue-icon {
    object-fit: contain;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 10px rgba(15, 23, 42, 0.16));
    transition: transform 0.3s var(--tt-ease);
}

.tt-venue-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--tt-text-main);
}

.tt-venue-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    border-color: rgba(8, 61, 89, 0.16);
}

    .tt-venue-card:hover .tt-venue-icon {
        transform: translateY(-4px) scale(1.05);
    }

.tt-venues-cta {
    margin-top: 18px;
}

.tt-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid rgba(8, 61, 89, 0.18);
    color: var(--tt-primary);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    transition: all 0.3s var(--tt-ease);
}

    .tt-btn-outline:hover {
        background: var(--tt-primary);
        color: #ffffff;
        border-color: var(--tt-primary);
        transform: translateY(-2px);
    }

/* =============== RESPONSIVE =============== */
@media (max-width: 1199.98px) {
    .tt-hero-section {
        padding: 70px 0 60px;
    }
}

@media (max-width: 991.98px) {
    .tt-hero-section {
        padding: 60px 0 55px;
    }

    .tt-hero-title {
        font-size: 30px;
    }

    .tt-hero-content {
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .tt-hero-section {
        padding: 50px 0 45px;
    }

    .tt-hero-title {
        font-size: 24px;
    }

    .tt-hero-lead,
    .tt-hero-body {
        font-size: 14px;
    }

    .tt-hero-pill-top,
    .tt-hero-pill-bottom {
        display: none;
    }

    .tt-venues-wrapper {
        padding: 30px 18px 26px;
        border-radius: 26px;
    }
}

@media (max-width: 575.98px) {
    .tt-venue-card {
        padding: 18px 10px 16px;
    }
}

/* =============== PROCESS BG WRAPPER (SECTORS) =============== */
.process-bg {
    position: relative;
    z-index: 2;
}

    .process-bg::before {
        content: "";
        position: absolute;
        background: #083d59;
        width: 96%;
        min-height: 400px;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
        border-radius: 30px;
    }

    .process-bg h3 {
        color: #e2b923 !important;
        font-weight: 500;
    }

.cms-ds-hero {
    padding: 70px 0 80px;
    background: linear-gradient(135deg, #f5f5f7 0, #fafafa 100);
}

    .cms-ds-hero .semi-title {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #b8b8b8;
        margin-bottom: 12px;
    }

    .cms-ds-hero .sect-title {
        font-size: 32px;
        line-height: 1.3;
        font-weight: 700;
        color: #1d1d1f;
        margin-bottom: 18px;
    }

    .cms-ds-hero .paragraph-title {
        font-size: 16px;
        line-height: 1.7;
        font-weight: 500;
        color: #5a6c7d;
        margin-bottom: 24px;
    }
.cms-ds-hero-img {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

    .cms-ds-hero-img img {
        width: 100%;
        height: auto;
        display: block;
    }
.cms-ds-section {
    padding: 50px 0 60px;
}

.cms-ds-feature {
    margin-bottom: 18px;
    padding: 30px 20px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e8e8ed;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cms-ds-feature:hover {
    transform: translateY(-3px);
    border-color: #e2b923;
    box-shadow: 0 12px 32px rgba(226, 185, 35, 0.18);
}


.cms-ds-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(226,185,35,0.12) 0, rgba(8,61,89,0.06) 100);
    color: #e2b923;
    font-size: 18px;
}

.cms-ds-feature-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0 0 6px 0;
}

.cms-ds-feature-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #6e6e73;
    margin: 0;
}

.cms-ds-feature:hover {
    transform: translateY(-4px);
    border-color: #e2b923;
    box-shadow: 0 12px 32px rgba(226, 185, 35, 0.18);
}
.cms-ds-tabs-wrap {
    border-radius: 24px;
    padding: 30px 24px 34px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(232,232,237,0.7);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.cms-ds-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .cms-ds-tabs .nav-link {
        border-radius: 999px;
        padding: 10px 22px;
        font-size: 14px;
        font-weight: 600;
        color: #0f3d56;
        background: rgba(255,255,255,0.7);
        border: 1px solid rgba(208,213,221,0.6);
        box-shadow: 0 4px 14px rgba(0,0,0,0.04);
        transition: all 0.3s ease;
    }

        .cms-ds-tabs .nav-link:hover {
            background: rgba(240,242,244,0.9);
            border-color: rgba(26,95,122,0.4);
            transform: translateY(-2px);
        }

        .cms-ds-tabs .nav-link.active {
            background: rgba(15,61,86,0.92);
            color: #ffffff;
            border-color: rgba(255,255,255,0.22);
            box-shadow: 0 8px 22px rgba(15,61,86,0.28);
        }

.cms-ds-quote-link {
    padding: 11px 22px;
    border-radius: 999px;
    border: 1px solid rgba(226,185,35,0.6);
    background: linear-gradient(135deg, rgba(226,185,35,0.12) 0, rgba(255,215,0,0.1) 100);
    font-weight: 600;
    font-size: 14px;
    color: #7e6a0d;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .cms-ds-quote-link:hover {
        background: linear-gradient(135deg, rgba(226,185,35,0.22) 0, rgba(255,215,0,0.18) 100);
        transform: translateY(-2px);
        box-shadow: 0 10px 26px rgba(226,185,35,0.28);
    }
@media (max-width: 991px) {
    .cms-ds-hero {
        padding: 50px 0 60px;
    }

        .cms-ds-hero .sect-title {
            font-size: 26px;
        }
}

@media (max-width: 575px) {
    .cms-ds-hero {
        padding: 40px 0 45px;
    }

    .cms-ds-tabs-wrap {
        padding: 22px 18px 26px;
    }

    .cms-ds-feature {
        padding: 18px 16px;
    }
}
.cms-ds-installed,
.cms-ds-content-types,
.cms-ds-why {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f5f7 0, #ffffff 50%, #f5f5f7 100);
}

    .cms-ds-installed hr,
    .cms-ds-content-types hr {
        border-color: rgba(0, 0, 0, 0.05);
    }

    /* Ensure cards inside reuse glass styling */
    .cms-ds-installed .inst img,
    .cms-ds-content-types .inst img,
    .cms-ds-why .inst img {
        max-width: 64px;
        height: auto;
        margin-bottom: 12px;
    }
    /* Wrap why-choose inside process glass band */
    .cms-ds-why.process-bg {
        padding: 70px 0 80px;
    }

    /* Make header sit nicely on process-bg */
    .cms-ds-why .vms-industry-header {
        margin-bottom: 40px;
    }

    /* Tighten card spacing inside process-bg */
    .cms-ds-why .vms-benefit-card {
        margin-bottom: 18px;
    }

/* Center on smaller viewports */
@media (max-width: 767px) {
    .cms-ds-why.process-bg {
        padding: 50px 0 60px;
    }

    .cms-ds-why .vms-industry-header {
        padding: 28px 22px;
        margin-bottom: 30px;
    }

    .cms-ds-why .vms-benefit-card {
        padding: 26px 20px;
    }
}


.solution {
    padding: 40px 0;
}

    .solution h4 {
        font-size: 24px;
        font-weight: 700;
        letter-spacing: .08em;
        color: #083d59;
    }

    /* 1. columns are flex so cards share equal height */
    .solution .row > [class*="col-"] {
        display: flex;
    }

/* 2. card is vertical flex; content stacked */
.kiosk-card {
    background: #f9fafc;
    border-radius: 24px;
    border: 1px solid #d9d9e5;
    padding: 32px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    width: 100%;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    text-decoration: none;
    color: #111827;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .kiosk-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
        border-color: #c5c5d5;
    }


/* title */
.kiosk-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: #1d1d1f;
    margin-bottom: 28px;
}

/* 3. BUTTON IS PUSHED DOWN THE SAME IN EVERY CARD */
.kiosk-btn {
    margin-top: auto;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    border-radius: 999px;
    padding: 10px 10px 10px 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    margin-bottom: 28px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

    /* arrow circle */
    .kiosk-btn i {
        width: 28px;
        height: 28px;
        border-radius: 999px;
        background: #111827;
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        transition: background .2s ease, color .2s ease, transform .2s ease;
    }

    /* hover: button bg #e2b923 */
    .kiosk-btn:hover {
        background: #e2b923;
        color: #111827;
        transform: translateY(-1px);
        box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
    }

        /* optional: move arrow slightly on hover */
        .kiosk-btn:hover i {
            transform: translateX(2px);
        }

/* image sits always under the button */
.kiosk-img {
    max-width: 100%;
    object-fit: contain;
}

.xps-softsol-section {
    background: #ffffff;
    padding: 80px 0;
}

.xps-softsol-panel {
    background: #f5f5f7;
    border-radius: 30px;
    padding: 40px 32px 48px;
}

.xps-softsol-wrapper {
    margin-bottom: 0;
}

.xps-softsol-title {
    margin: 0 auto;
    text-align: left;
}

.xps-softsol-kicker {
    font-size: 14px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #083d59;
    margin-bottom:20px;
}

.xps-softsol-heading {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    line-height: 1.25;
}

.xps-softsol-text {
    line-height: 1.7;
    margin-bottom: 0;
}

/* outer intro section */
.xps-smart-section {
    background: #f5f5f7;
    padding: 80px 0 60px;
}

    /* make copy narrower only here */
    .xps-smart-section .section-title {
        max-width: 840px;
    }

/* tabs section */
.xps-smart-tabs {
    background: #ffffff;
    padding: 60px 0;
}

/* vertical tabs, full width column */
.xps-smart-tabs .tab-wrapper2 .nav-tabs {
    border: 0;
    display: block;
    width: 100%;
}

/* MAIN TAB BUTTON STYLE (one source of truth) */
.xps-smart-tabs .nav-tabs .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    color: #083d59;
    background: #e3e9ed;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 12px;
    padding: 20px 16px !important;
    border-radius: 9px;
    border: none;
    text-align: left;
}

/* icon + label on left */
.xps-smart-tabs .nav-tabs .nav-link span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.xps-smart-tabs .nav-tabs .nav-link img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

/* arrow always at right */
.xps-smart-tabs .nav-tabs .nav-link i {
    margin-left: auto;
}

/* active tab state */
.xps-smart-tabs .nav-tabs .nav-item.show .nav-link,
.xps-smart-tabs .nav-tabs .nav-link.active {
    color: #e2b923;
    font-weight: 600;
    background-color: #083d59;
}

/* tab content box */
.xps-smart-tabs .content-box {
    background: #f5f5f7;
    border-radius: 18px;
    padding: 28px 24px 24px;
}

/* ------- OPTIONAL legacy tweaks, scoped, no layout conflict ------- */

/* only if you still need a slight inner width on large screens */
@media (min-width: 992px) {
    .xps-smart-tabs .tab-wrapper2 .nav-tabs .nav-link {
        max-width: 93%;
    }
}

/* image vertical nudge */
.xps-smart-tabs .nav-tabs .nav-link img {
    margin-right: 0;              /* gap already set via flex */
    transform: translateY(-2px);
}

/* keep responsive font/padding same everywhere */
@media only screen and (min-width: 992px) and (max-width: 1200px),
       (max-width: 767px) {
    .xps-smart-tabs .nav-tabs .nav-link {
        font-size: 14px;
        padding: 14px 16px;
    }
}

.xps-smart-tabs h3 {
    margin-bottom: 20px;
    font-size: 25px;
}

.xps-smart-tabs p {
    margin-bottom: 18px;
}

/* last paragraph in tab content should have no bottom margin */
.xps-smart-tabs .text-content p:last-child {
    margin-bottom: 10px;
}
.smart-span-bg {
    background: #e2b923;
    padding:10px 20px;
    border-radius:30px;
    font-weight:bold;
    margin:20px auto;
}
.xps-smart-notif-section {
    margin: 60px auto;
}
.xps-srv-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
}

    .xps-srv-card:hover {
        transform: translateY(-8px);
        background: rgba(255, 255, 255, 0.4);
        box-shadow: 0 20px 40px rgba(31, 38, 135, 0.2);
    }

.xps-srv-icon {
    height: 100%;
    margin-bottom: 1.5rem;
    border-radius: 20px;
}

.xps-srv-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #083d59;
    margin-bottom: 1rem;
    margin-top: 0;
}

.xps-srv-text {
    flex-grow: 1;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.xps-srv-link {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto 0 0 !important;
    width: max-content !important;
    flex: none !important;
    flex-shrink: 0 !important;
}

    .xps-srv-link .link-text {
        transition: color 0.3s ease;
    }

    .xps-srv-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        transition: left 0.6s ease;
    }

    .xps-srv-link:hover::before {
        left: 100%;
    }

    .xps-srv-link:hover {
        background: #e2b923 !important;
        color: #ffffff !important;
        border-color: #d4a017;
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(226, 185, 35, 0.3);
    }

        .xps-srv-link:hover .link-text {
            color: #ffffff !important;
        }

    .xps-srv-link i {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #111827;
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        font-weight: 900;
        flex-shrink: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }

    .xps-srv-link:hover i {
        background: #ffffff !important;
        color: #111827 !important;
        transform: translateX(6px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

/* Responsive auto-sizing */
@media (max-width: 768px) {
    .xps-srv-link {
        padding: 10px 16px;
        gap: 10px;
        font-size: 13px;
    }

        .xps-srv-link i {
            width: 28px;
            height: 28px;
            font-size: 12px;
        }
}
/* Tabs */
.w3-bar .w3-bar-item {
    border: none;
    outline: 0;
    background: #083d59;
    border-radius: 10px;
    padding: 10px 20px;
    color: #fff;
    font-weight: 500;
    margin: 5px
}

    .w3-bar .w3-bar-item a {
        color: inherit;
        text-decoration: none;
        display: inline-block;
    }
    .w3-bar .w3-bar-item:hover {
        color: #1d1d1f !important;
        background-color: #e2b923 !important;
    }
    .w3-red,
    .w3-hover-red:hover {
        color: #1d1d1f !important;
        background-color: #e2b923 !important;
    }

/* Section wrapper */
.xps-payroll-section {
    background: #f5f5f7;
    padding: 72px 0;
}

/* Image column */
.xps-payroll-img {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Bottom paragraph */
.xps-payroll-bottom {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

/* CTA button – simple, flat */
.xps-payroll-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 32px;
    border-radius: 999px;
    background-color: #e2b923;
    color: #111827;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    border: none;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

    .xps-payroll-btn:hover {
        background-color: #d4a813;
        color: #111827;
        transform: translateY(-1px);
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
    }

/* Responsive tweaks */
@media (max-width: 991.98px) {
    .xps-payroll-section {
        padding: 56px 0;
    }

    .xps-payroll-img {
        justify-content: center;
        margin-top: 16px;
    }

    .xps-payroll-photo {
        max-width: 260px;
    }

    .xps-payroll-bottom {
        margin-top: 20px;
    }
}

@media (max-width: 575.98px) {
    .xps-payroll-section {
        padding: 40px 0;
    }

    .w3-bar .w3-bar-item {
        padding: 8px 16px;
        font-size: 13px;
    }
}

.xps-benefits-panel {
    background: rgb(241, 245, 248);
    border-radius: 2.1875rem;
    padding: 40px;
    margin:40px auto;
}
.xps-payroll-main{
    background:#fff;
    margin:60px auto;
}
.tec-src-bg {
    background: #f5f5f5;
    border-radius: 15px;
    padding: 20px;
    margin:10px auto;
}

.tec-src-bg h4 {
    font-size: 18px;
    padding-bottom: 15px;
    margin:10px 0px 0px!important;
}
.city h4{
    margin:20px auto;
}
.city p {
    padding-bottom: 25px!important;
}
    .city p:last-of-type {
        padding-bottom: 7px !important;
    }
.city hr {
    margin: 0px 0px 30px !important;
}
.gold-kiosk{
    margin:60px auto;
}
    .gold-kiosk h1 {
        font-weight: 700;
        line-height: 90px;
        letter-spacing: -0.05em;
        display: block;
        background: linear-gradient( 180deg, #CCA746 0%, rgba(204, 167, 70, 0.3) 100% );
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }
.gk-hero-content-wrapper h2 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.05em;
    display: block;
    background: linear-gradient(180deg, #997a2a 0%, rgb(219 165 25 / 50%) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-align: center;
    /* Fluid typography using clamp() */
    font-size: clamp(2rem, 5vw + 1rem, 60px);
    line-height: clamp(2.5rem, 6vw, 90px);
    margin-bottom: clamp(1rem, 3vw, 2rem);
    padding: 0 1rem;
}

/* Large desktops (1400px and above) */
@media (min-width: 1400px) {
    .gk-hero-content-wrapper h2 {
        font-size: 60px;
        line-height: 90px;
    }
}

/* Desktop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .gk-hero-content-wrapper h2 {
        font-size: 54px;
        line-height: 80px;
    }
}

/* Laptop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .gk-hero-content-wrapper h2 {
        font-size: 48px;
        line-height: 70px;
        letter-spacing: -0.03em;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .gk-hero-content-wrapper h2 {
        font-size: 40px;
        line-height: 56px;
        letter-spacing: -0.02em;
        padding: 0 2rem;
    }
}

/* Mobile landscape (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .gk-hero-content-wrapper h2 {
        font-size: 32px;
        line-height: 44px;
        letter-spacing: -0.01em;
        padding: 0 1.5rem;
    }
}

/* Mobile portrait (below 576px) */
@media (max-width: 575px) {
    .gk-hero-content-wrapper h2 {
        font-size: 28px;
        line-height: 38px;
        letter-spacing: 0;
        padding: 0 1rem;
        word-break: break-word;
    }
}

/* Extra small devices (below 400px) */
@media (max-width: 399px) {
    .gk-hero-content-wrapper h2 {
        font-size: 24px;
        line-height: 34px;
        padding: 0 0.75rem;
    }
}

/* Ensure gradient looks good on all screen sizes */
@media (max-width: 767px) {
    .gk-hero-content-wrapper h2 {
        background: linear-gradient(180deg, #CCA746 0%, rgba(204, 167, 70, 0.5) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

:root {
    --gk-gold-primary: #D4AF37;
    --gk-gold-light: #F4E5C3;
    --gk-gold-dark: #B8941F;
    --gk-gold-accent: #FFD700;
    --gk-white: #FFFFFF;
    --gk-off-white: #FAFAFA;
    --gk-cream: #FFF8E7;
    --gk-beige: #F5F5DC;
    --gk-gray-warm: #8B8680;
    --gk-gray-light: #E8E8E8;
    --gk-text-dark: #2C2C2C;
    --gk-text-light: #666666;
    --gk-shadow-light: rgba(212, 175, 55, 0.15);
    --gk-shadow-medium: rgba(212, 175, 55, 0.25);
}


/* Hero Section */
.gk-hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--gk-cream) 0%, var(--gk-off-white) 50%, var(--gk-gold-light) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

    .gk-hero-section::before {
        content: '';
        position: absolute;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, var(--gk-gold-accent) 0%, transparent 70%);
        top: -300px;
        right: -200px;
        opacity: 0.15;
        animation: gkFloat 12s ease-in-out infinite;
    }

    .gk-hero-section::after {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, var(--gk-gold-primary) 0%, transparent 70%);
        bottom: -200px;
        left: -150px;
        opacity: 0.1;
        animation: gkFloat 15s ease-in-out infinite reverse;
    }

@keyframes gkFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(50px, 50px) rotate(180deg);
    }
}

.gk-currency-particle {
    position: absolute;
    opacity: 0.08;
    animation: gkFloatParticle 20s ease-in-out infinite;
    font-weight: 700;
    color: var(--gk-gold-primary);
    text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.2);
    font-family: Arial, sans-serif;
}

    .gk-currency-particle:nth-child(1) {
        top: 15%;
        left: 10%;
        animation-delay: 0s;
        font-size: 2.5rem;
    }

    .gk-currency-particle:nth-child(2) {
        top: 60%;
        left: 85%;
        animation-delay: 3s;
        font-size: 2rem;
    }

    .gk-currency-particle:nth-child(3) {
        top: 80%;
        left: 20%;
        animation-delay: 6s;
        font-size: 2.3rem;
    }

    .gk-currency-particle:nth-child(4) {
        top: 25%;
        right: 15%;
        animation-delay: 9s;
        font-size: 2.7rem;
    }

    .gk-currency-particle:nth-child(5) {
        top: 40%;
        left: 5%;
        animation-delay: 12s;
        font-size: 2.1rem;
    }

    .gk-currency-particle:nth-child(6) {
        top: 70%;
        right: 10%;
        animation-delay: 15s;
        font-size: 2.4rem;
    }

@keyframes gkFloatParticle {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.08;
    }

    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.15;
    }
}

.gk-hero-content-wrapper {
    position: relative;
    z-index: 2;
}

.gk-hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--gk-gold-primary);
    border-radius: 50px;
    color: var(--gk-gold-dark);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: gkFadeInLeft 1s ease-out;
}

.gk-hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    animation: gkFadeInLeft 1.2s ease-out;
    color: var(--gk-text-dark);
}

.gk-hero-title-highlight {
    background: linear-gradient(135deg, var(--gk-gold-accent) 0%, var(--gk-gold-primary) 50%, var(--gk-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline;
}

    .gk-hero-title-highlight::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--gk-gold-accent), var(--gk-gold-primary));
        border-radius: 10px;
    }

.gk-hero-subtitle {
    font-size: 1.3rem;
    color: var(--gk-gold-primary);
    margin-bottom: 20px;
    font-weight: 600;
    animation: gkFadeInLeft 1.4s ease-out;
    letter-spacing: 3px;
}

.gk-hero-description {
    font-size: 1.1rem;
    color: var(--gk-text-light);
    margin-bottom: 40px;
    line-height: 1.9;
    animation: gkFadeInLeft 1.6s ease-out;
}

.gk-hero-buttons {
    display: flex;
    gap: 20px;
    animation: gkFadeInLeft 1.8s ease-out;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.gk-btn-primary {
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--gk-gold-primary) 0%, var(--gk-gold-dark) 100%);
    color: var(--gk-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: none;
}

    .gk-btn-primary::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .gk-btn-primary:hover::before {
        width: 300px;
        height: 300px;
    }

    .gk-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);
        color: var(--gk-white);
    }

.gk-btn-secondary {
    padding: 18px 45px;
    background: transparent;
    color: var(--gk-gold-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--gk-gold-primary);
    transition: all 0.4s ease;
    display: inline-block;
}

    .gk-btn-secondary:hover {
        background: var(--gk-gold-primary);
        color: var(--gk-white);
        transform: translateY(-3px);
    }

.gk-hero-stats-wrapper {
    animation: gkFadeInLeft 2s ease-out;
}

.gk-stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 25px 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .gk-stat-item:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-5px);
        border-color: var(--accent-gold);
    }

.gk-stat-value {
    display: block;
    line-height: 1;
    margin: 0;
}

.gk-stat-label {
    display: block;
    line-height: 1.2;
    margin-top: 8px;
}

.gk-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gk-gold-primary), var(--gk-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 5px;
}

.gk-stat-label {
    font-size: 0.9rem;
    color: var(--gk-text-light);
    font-weight: 500;
}

.gk-hero-image-wrapper {
    position: relative;
    height: 600px;
    animation: gkFadeInRight 1.5s ease-out;
}

.gk-hero-image-main {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gk-gold-light) 0%, var(--gk-gold-primary) 100%);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .gk-hero-image-main::before {
        content: '🏦';
        font-size: 15rem;
        opacity: 0.3;
        animation: gkPulse 3s ease-in-out infinite;
    }

@keyframes gkPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.gk-floating-card {
    position: absolute;
    background: var(--gk-white);
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: gkFloatCard 4s ease-in-out infinite;
}

.gk-floating-card-1 {
    top: 10%;
    right: -30px;
    animation-delay: 0s;
}

.gk-floating-card-2 {
    bottom: 15%;
    left: -30px;
    animation-delay: 2s;
}

@keyframes gkFloatCard {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.gk-floating-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gk-gold-primary), var(--gk-gold-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gk-white);
    font-size: 1.5rem;
}

.gk-floating-card-title {
    font-size: 1.1rem;
    color: var(--gk-text-dark);
    margin-bottom: 3px;
    font-weight: 600;
}

.gk-floating-card-text {
    font-size: 0.85rem;
    color: var(--gk-text-light);
    margin: 0;
}

@keyframes gkFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gkFadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* About Section */
.gk-about-section {
    padding: 80px 0;
    background: var(--gk-white);
}

.gk-about-visual-wrapper {
    position: relative;
}

.gk-about-image-box {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--gk-gold-light) 0%, var(--gk-gold-primary) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .gk-about-image-box::before {
        content: '💎';
        font-size: 10rem;
        opacity: 0.3;
        animation: gkPulse 3s ease-in-out infinite;
    }

.gk-about-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
}

.gk-stat-box {
    background: var(--gk-white);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--gk-shadow-light);
    text-align: center;
    min-width: 150px;
}

.gk-stat-box-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gk-gold-primary), var(--gk-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gk-stat-box-label {
    font-size: 0.85rem;
    color: var(--gk-text-light);
    margin-top: 5px;
}

.gk-about-title {
    font-size: 2.3rem;
    color: var(--gk-text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.gk-gold-highlight {
    color: var(--gk-gold-primary);
}

.gk-about-text {
    font-size: 1.1rem;
    color: var(--gk-text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.gk-feature-list {
    margin-top: 30px;
    display: grid;
    gap: 15px;
}

.gk-feature-point {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gk-feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gk-gold-primary), var(--gk-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gk-white);
    flex-shrink: 0;
}

/* Section Header */
.gk-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.gk-section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50px;
    color: var(--gk-gold-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.gk-section-title {
    font-size: 2.3rem;
    color: var(--gk-text-dark);
    margin-bottom: 20px;
}

.gk-section-description {
    font-size: 1.1rem;
    color: var(--gk-text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: center;
}

/* Features Section */
.gk-features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gk-cream) 0%, var(--gk-off-white) 100%);
}

.gk-feature-card {
    background: var(--gk-white);
    border: 1px solid var(--gk-gold-primary);
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

    .gk-feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--gk-gold-primary), var(--gk-gold-dark));
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .gk-feature-card:hover::before {
        transform: scaleX(1);
    }

    .gk-feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px var(--gk-shadow-medium);
        border-color: #fff;
    }

.gk-feature-card-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gk-gold-primary), var(--gk-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px var(--gk-shadow-medium);
}

    .gk-feature-card-icon i {
        font-size: 2.2rem;
        color: var(--gk-white);
    }

.gk-feature-card-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gk-text-dark);
    margin-bottom: 15px;
}

.gk-feature-card-text {
    font-size: 1rem;
    color: var(--gk-text-light);
    line-height: 1.8;
}

/* Process Section - Timeline Design */
.gk-process-section {
    padding: 80px 0;
    background: var(--gk-white);
    position: relative;
}

.gk-process-timeline {
    position: relative;
}

    .gk-process-timeline::before {
        content: '';
        position: absolute;
        top: 60px;
        left: 50px;
        right: 50px;
        height: 4px;
        background: linear-gradient(90deg, var(--gk-gold-primary) 0%, var(--gk-gold-accent) 50%, var(--gk-gold-primary) 100%);
        z-index: 0;
        border-radius: 10px;
    }

.gk-process-col {
    position: relative;
}

.gk-process-number-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    z-index: 2;
}

.gk-process-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gk-gold-primary), var(--gk-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gk-white);
    box-shadow: 0 10px 30px var(--gk-shadow-medium);
    position: relative;
    z-index: 2;
    border: 5px solid var(--gk-white);
    transition: all 0.4s ease;
}

    .gk-process-number::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: inherit;
        z-index: -1;
        opacity: 0;
        transform: scale(1.2);
        transition: all 0.4s ease;
    }

.gk-process-col:hover .gk-process-number {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 15px 40px var(--gk-shadow-medium);
}

    .gk-process-col:hover .gk-process-number::after {
        opacity: 0.3;
        transform: scale(1.4);
    }

.gk-process-card {
    background: linear-gradient(135deg, var(--gk-cream) 0%, var(--gk-white) 100%);
    border-radius: 25px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    height: 100%;
    margin-top: 20px;
}

    .gk-process-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--gk-gold-light) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .gk-process-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px var(--gk-shadow-medium);
        border-color: var(--gk-gold-primary);
    }

        .gk-process-card:hover::before {
            opacity: 0.4;
        }

.gk-process-icon {
    font-size: 3.5rem;
    opacity: 0.15;
    color: var(--gk-gold-primary);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.gk-process-col:hover .gk-process-icon {
    opacity: 0.25;
    transform: scale(1.1);
}

.gk-process-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gk-text-dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.gk-process-text {
    font-size: 1.05rem;
    color: var(--gk-text-light);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Technology Section */
.gk-tech-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gk-cream) 0%, var(--gk-off-white) 100%);
    position: relative;
    overflow: hidden;
}

    .gk-tech-section::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, var(--gk-gold-primary) 0%, transparent 70%);
        top: -100px;
        right: -100px;
        opacity: 0.15;
    }

.gk-tech-card {
    background: var(--gk-white);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    padding: 35px;
    transition: all 0.4s ease;
    height: 100%;
}

    .gk-tech-card:hover {
        background: var(--gk-cream);
        border-color: var(--gk-gold-primary);
        transform: translateY(-5px);
        box-shadow: 0 20px 50px var(--gk-shadow-medium);
    }

.gk-tech-card-title {
    font-size: 18px;
    color: var(--gk-gold-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.gk-tech-card-text {
    font-size: 1.05rem;
    color: var(--gk-text-light);
    line-height: 1.8;
}

.gk-tech-highlight-box {
    background: linear-gradient(135deg, var(--gk-gold-primary) 0%, var(--gk-gold-dark) 100%);
    border-radius: 25px;
    padding: 60px;
    text-align: center;
}

.gk-tech-highlight-title {
    font-size: 2.5rem;
    color: var(--gk-white);
    margin-bottom: 30px;
}

.gk-tech-stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gk-white);
    margin-bottom: 10px;
}

.gk-tech-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* AI Section */
.gk-ai-section {
    padding: 80px 0;
    background: var(--gk-white);
}

.gk-ai-visual {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, var(--gk-gold-light) 0%, var(--gk-gold-primary) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .gk-ai-visual::before {
        content: '🤖';
        font-size: 12rem;
        opacity: 0.4;
        animation: gkPulse 3s ease-in-out infinite;
    }

.gk-ai-metrics {
    list-style: none;
    margin-top: 30px;
    padding: 0;
}

    .gk-ai-metrics li {
        padding: 15px 0;
        font-size: 1.05rem;
        color: var(--gk-text-dark);
        display: flex;
        align-items: center;
        gap: 15px;
    }

        .gk-ai-metrics li::before {
            content: '✓';
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, var(--gk-gold-primary), var(--gk-gold-dark));
            color: var(--gk-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-weight: 700;
        }

/* Benefits Section */
.gk-benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gk-cream) 0%, var(--gk-off-white) 100%);
}

.gk-benefit-card {
    background: var(--gk-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

    .gk-benefit-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--gk-gold-light) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .gk-benefit-card:hover {
        border-color: var(--gk-gold-primary);
        box-shadow: 0 20px 50px var(--gk-shadow-medium);
        transform: translateY(-5px);
    }

        .gk-benefit-card:hover::before {
            opacity: 0.3;
        }

.gk-benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gk-gold-primary), var(--gk-gold-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

    .gk-benefit-icon i {
        font-size: 2rem;
        color: var(--gk-white);
    }

.gk-benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gk-text-dark);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.gk-benefit-text {
    font-size: 0.95rem;
    color: var(--gk-text-light);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* CTA Section */
.gk-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--gk-gold-dark) 0%, var(--gk-gold-primary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .gk-cta-section::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        top: -150px;
        left: -150px;
    }

    .gk-cta-section::after {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        bottom: -120px;
        right: -120px;
    }

.gk-cta-title {
    font-size: 2.5rem;
    color: var(--gk-white);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.gk-cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 45px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.gk-cta-btn {
    display: inline-block;
    padding: 22px 55px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: var(--gk-gold-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(139, 134, 128, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

    .gk-cta-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.4), transparent );
        transition: left 0.6s ease;
    }

    .gk-cta-btn::after {
        content: '';
        position: absolute;
        top: 8px;
        left: 15px;
        width: 12px;
        height: 12px;
        background: rgba(255, 255, 255, 0.6);
        filter: blur(1px);
        opacity: 0.7;
        animation: dropletShimmer 2s ease-in-out infinite;
    }

    .gk-cta-btn:hover {
        transform: translateY(-5px) scale(1.02);
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(24px) saturate(200%);
        -webkit-backdrop-filter: blur(24px) saturate(200%);
        border-color: rgba(255, 255, 255, 0.4);
        box-shadow: 0 12px 40px rgba(139, 134, 128, 0.3), 0 20px 60px rgba(139, 134, 128, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6), inset 0 -1px 0 rgba(255, 255, 255, 0.2);
        color: #fff;
        animation: liquidMorph 0.8s ease-in-out;
    }

        .gk-cta-btn:hover::before {
            left: 100%;
        }

        .gk-cta-btn:hover::after {
            animation: dropletRipple 0.6s ease-out;
        }

    .gk-cta-btn:active {
        transform: translateY(-2px) scale(0.98);
    }

@keyframes liquidMorph {
    0% {
        border-radius: 50px;
    }

    25% {
        border-radius: 50px;
    }

    50% {
        border-radius: 50px;
    }

    75% {
        border-radius: 50px;
    }

    100% {
        border-radius: 50px;
    }
}

@keyframes dropletShimmer {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-3px) scale(1.1);
        opacity: 0.9;
    }
}

@keyframes dropletRipple {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(4);
        opacity: 0;
    }
}


/* User Experience Section */
.gk-user-experience-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffecbe 0%, #ffffff 60%);
    position: relative;
    overflow: hidden;
}

    .gk-user-experience-section::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, var(--gk-gold-light) 0%, transparent 70%);
        top: -150px;
        left: -150px;
        opacity: 0.3;
    }

.gk-ux-visual-box {
    position: relative;
   padding: 40px;
/*     background: linear-gradient(135deg, var(--gk-cream) 0%, var(--gk-off-white) 100%);
    border-radius: 30px;
    box-shadow: 0 20px 60px var(--gk-shadow-light);*/
}

.gk-ux-icon-wrapper {
    position: absolute;
    top: 20px;
    right: 50px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gk-gold-primary), var(--gk-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px var(--gk-shadow-medium);
    animation: gkPulse 3s ease-in-out infinite;
    z-index:2;
}

    .gk-ux-icon-wrapper i {
        font-size: 2rem;
        color: var(--gk-white);
    }

.gk-ux-device-mockup {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    background: var(--gk-white);
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.gk-mockup-screen {
    background: linear-gradient(135deg, var(--gk-gold-light) 0%, var(--gk-white) 100%);
    border-radius: 20px;
    padding: 30px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

    .gk-mockup-screen::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
        animation: gkShimmer 3s ease-in-out infinite;
    }

@keyframes gkShimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.gk-mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.gk-mockup-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gk-gold-primary);
}

.gk-mockup-time {
    font-size: 0.9rem;
    color: var(--gk-text-light);
    font-weight: 500;
}

.gk-mockup-content {
    text-align: center;
}

.gk-mockup-welcome {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gk-text-dark);
    margin-bottom: 15px;
}

.gk-mockup-instruction {
    font-size: 1.1rem;
    color: var(--gk-text-light);
    margin-bottom: 40px;
}

.gk-mockup-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

.gk-mockup-btn {
    padding: 20px 30px;
    background: linear-gradient(135deg, var(--gk-gold-primary), var(--gk-gold-dark));
    color: var(--gk-white);
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--gk-shadow-medium);
}

    .gk-mockup-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px var(--gk-shadow-medium);
    }

.gk-mockup-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.gk-step-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gk-white);
    border: 2px solid var(--gk-gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--gk-text-light);
    font-size: 0.9rem;
}

    .gk-step-indicator.active {
        background: linear-gradient(135deg, var(--gk-gold-primary), var(--gk-gold-dark));
        color: var(--gk-white);
        border-color: var(--gk-gold-dark);
        box-shadow: 0 5px 15px var(--gk-shadow-medium);
    }

.gk-step-line {
    width: 40px;
    height: 2px;
    background: var(--gk-gold-primary);
    opacity: 0.3;
}

.gk-ux-title {
    font-size: 2.5rem;
    color: var(--gk-text-dark);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.gk-ux-description {
    font-size: 1.1rem;
    color: var(--gk-text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.gk-ux-feature-list {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.gk-ux-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.gk-ux-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gk-gold-primary), var(--gk-gold-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px var(--gk-shadow-medium);
}

    .gk-ux-feature-icon i {
        font-size: 1.5rem;
        color: var(--gk-white);
    }

.gk-ux-feature-content h4 {
    font-size: 1.2rem;
    color: var(--gk-text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.gk-ux-feature-content p {
    font-size: 1rem;
    color: var(--gk-text-light);
    margin: 0;
    line-height: 1.6;
}

.gk-ux-highlight-box {
    background: linear-gradient(135deg, var(--gk-gold-light) 0%, var(--gk-gold-primary) 100%);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 15px 40px var(--gk-shadow-medium);
}

    .gk-ux-highlight-box i {
        width: 72px;
        height: 72px;
        font-size: 2.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gk-white);
        opacity: 0.95;
        border: 2px solid #a07f11;
        border-radius: 50%;
        background: linear-gradient( 120deg, var(--gk-gold-light), var(--gk-gold-primary), var(--gk-gold-dark), var(--gk-gold-light) );
        background-size: 300% 300%;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        animation: gkLiquidGold 6s ease-in-out infinite;
    }

/* Gold liquid animation */
@keyframes gkLiquidGold {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}



    .gk-ux-highlight-box strong {
        display: block;
        font-weight:600;
        font-size: 1rem;
        color: var(--gk-white);
        margin-bottom: 8px;
    }

    .gk-ux-highlight-box p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.95);
        margin: 0;
    }

/* Scroll Reveal */
.gk-scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

    .gk-scroll-reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* Responsive */
@media (max-width: 991px) {
    .gk-process-timeline::before {
        top: 0;
        left: 35px;
        right: auto;
        bottom: 0;
        width: 4px;
        height: auto;
        background: linear-gradient(180deg, var(--gk-gold-primary) 0%, var(--gk-gold-accent) 50%, var(--gk-gold-primary) 100%);
    }

    .gk-process-number-wrapper {
        justify-content: flex-start;
    }

    .gk-process-card {
        margin-left: 40px;
    }

    .gk-hero-title {
        font-size: 2.2rem;
    }

    .gk-hero-image-wrapper {
        height: 400px;
        margin-top: 40px;
    }

    .gk-floating-card-1,
    .gk-floating-card-2 {
        display: none;
    }

    .gk-about-stats {
        flex-direction: column;
        position: relative;
        bottom: 0;
        margin-top: 20px;
    }

    .gk-ux-visual-box {
        margin-bottom: 40px;
    }

    .gk-mockup-welcome {
        font-size: 2rem;
    }

    .gk-ux-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .gk-hero-title {
        font-size: 2rem;
    }

    .gk-section-title {
        font-size: 2.5rem;
    }

    .gk-about-title {
        font-size: 2.2rem;
    }

    .gk-cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 575px) {
    .gk-hero-title {
        font-size: 1.8rem;
    }

    .gk-hero-buttons {
        flex-direction: column;
    }

    .gk-btn-primary,
    .gk-btn-secondary {
        width: 100%;
        text-align: center;
    }

    .gk-ux-device-mockup {
        padding: 15px;
    }

    .gk-mockup-screen {
        padding: 20px;
    }

    .gk-mockup-welcome {
        font-size: 1.8rem;
    }

    .gk-ux-highlight-box {
        flex-direction: column;
        text-align: center;
    }
}
.gk-tech-card-flex {
    display: flex;
    flex-direction: column; /* Stack header and content vertically */
    gap: 12px;
}

.gk-tech-header {
    display: flex;
    align-items: center; /* Vertically center icon and title */
    gap: 16px;
}

.gk-tech-icon i {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gk-white);
    background: linear-gradient(120deg, var(--gk-gold-light), var(--gk-gold-primary), var(--gk-gold-dark));
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.gk-tech-content {
    flex: 1;
}

.gk-tech-card-title {
    margin: 0;
    flex: 1;
}
/* ============================================
   XIPHIAS Voice Solution - Complete CSS
   ============================================ */

/* Main Sections */
.vs-smart-notification {
    margin: 60px auto;
}

.vs-smart-city {
    color: #1d1d1f;
    padding: 80px 0;
}

.vs-voice {
    background: #083d59;
    padding: 60px 0;
}

.vs-voice-bg {
    background: url(../img/bg-center.png) no-repeat center;
    width: 100%;
}

/* Typography */
.vs-semi-title {
    color: #b8b8b8;
    font-size: 14px;
    letter-spacing: 0;
}

.vs-teams-title {
    font-size: 26px;
    margin-bottom: 25px;
}

.vs-uppercase {
    text-transform: uppercase;
}

.vs-smart-notification h2,
.vs-smart-city h1 {
    line-height: 50px;
    color: #1d1d1f;
}

.vs-smart-notification h4 {
    color: #1d1d1f;
    font-weight: 500;
    background: #f5f5f7;
    padding: 10px 5px;
    border-radius: 5px;
}

.vs-smart-city h6 {
    text-align: center;
    padding: 20px 0 10px;
}

.vs-smart-city p,
.vs-smart-notification p {
    color: #1d1d1f;
    font-weight: 500;
}

.vs-smart-city p {
    text-align: center;
}

.vs-smart-notification p {
    text-align: justify;
}

.vs-voice h3 {
    color: #fff;
    line-height: 45px;
    margin-bottom: 40px;
}

.vs-voice h4 {
    color: #e2b923;
    font-weight: 500;
    padding-bottom: 15px;
}

.vs-voice p {
    color: #fff;
}

/* Button */
.vs-preview-more {
    display: inline-block;
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background: #083d59;
    border: 2px solid #ededed;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 30px;
    transition: all 0.3s ease;
}

    .vs-preview-more:hover {
        color: #fff;
        background: #1d1d1f;
        border-color: #1d1d1f;
    }

/* Card Component */
.vs-stg-bg {
    background: #fff;
    border-radius: 30px;
    padding: 30px 20px;
    box-shadow: 17px 20px 40px rgba(0, 0, 0, 0.21);
}

.vs-check-in-lh1 {
    line-height: 25px;
}

/* Image Utilities */
.vs-team-img {
    position: relative;
    margin-bottom: 30px;
}

    .vs-team-img img {
        border-radius: 10px;
        width: 100%;
    }

/* Feature Items Section */
.vs-feature-item {
    margin-bottom: 30px;
}

    .vs-feature-item:last-child {
        margin-bottom: 0;
    }

.vs-feature-icon {
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Text Alignment */
.vs-txt-desktop-right {
    text-align: right;
}

.vs-txt-r {
    text-align: right;
}

.vs-txt-l {
    text-align: left;
}

/* Responsive Breakpoints */
/* Hide image on mobile */
@media (max-width: 991px) {
    .vs-img-hide {
        display: none;
    }
}

/* Tablet (768px - 991px) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .vs-smart-notification h2 {
        line-height: 35px;
        font-size: 28px;
    }

    .vs-teams-title {
        font-size: 22px;
    }

    .vs-stg-bg {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .vs-voice h3 {
        line-height: 35px;
        font-size: 24px;
    }

    .vs-feature-item {
        margin-bottom: 25px;
    }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
    .vs-smart-notification {
        margin: 30px auto;
    }

        .vs-smart-notification h2 {
            line-height: 30px;
            font-size: 24px;
        }

    .vs-teams-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .vs-preview-more {
        padding: 15px 25px;
        font-size: 14px;
    }

    .vs-stg-bg {
        padding: 20px 15px;
        margin-bottom: 15px;
    }

    .vs-smart-city,
    .vs-voice {
        padding: 40px 0;
    }

        .vs-voice h3 {
            line-height: 30px;
            font-size: 20px;
            margin-bottom: 30px;
        }

        .vs-voice h4 {
            font-size: 18px;
            padding-bottom: 10px;
        }

        /* Force left alignment on mobile for voice section */
        .vs-txt-desktop-right,
        .vs-voice .vs-txt-r,
        .vs-voice .vs-txt-l {
            text-align: left !important;
        }

        .vs-voice .col-md-9,
        .vs-voice .col-md-3 {
            text-align: left !important;
        }

    /* Feature icon styling for mobile */
    .vs-feature-icon {
        max-width: 60px;
        margin: 0 auto 15px;
    }

    .vs-feature-item {
        margin-bottom: 35px;
    }

        .vs-feature-item:last-child {
            margin-bottom: 0;
        }

        /* Center image column content on mobile */
        .vs-feature-item .col-md-3 {
            text-align: center;
            margin-bottom: 15px;
        }

    /* Remove any conflicting margins */
    .vs-voice .row {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Extra small spacing utilities */
@media (max-width: 575px) {
    .mt-xs-10 {
        margin-top: 10px !important;
    }

    .vs-feature-icon {
        max-width: 100px;
    }
}
.site-map{
    margin:60px auto;
}
    .site-map ul li {
        line-height: 35px;
        font-weight: 500;
    }
    .site-map ul li a{
        text-decoration: none;
        color: #1d1d1f;
    }
        .site-map ul li a:hover {
            color: #e4b823;
        }

    .site-map i {
        font-size: 14px;
        color: #e4b823;
        padding-right: 10px
    }
/* ============================================
   TYPOGRAPHY
   ============================================ */
.sidebar-title-kiosk,
.career h3,
.dis-align {
    font-family: 'Raleway', 'Open Sans', sans-serif;
}

.padding-align {
    padding: 20px 0 10px;
    font-weight: 600;
}

.dis-align {
    color: #504e4e !important;
    font-weight: 500;
    font-size: 17px;
}

/* ============================================
   CSS CUSTOM PROPERTIES (COLOR SCHEMES)
   ============================================ */
:root {
    /* Scheme 1 - Vibrant Colors */
    --scheme1-color1: #9575cd;
    --scheme1-color2: #f06292;
    --scheme1-color3: #ff9800;
    --scheme1-color4: #ff5722;
    --scheme1-color5: #4dd0e1;
    --scheme1-color6: #f44336;
    --scheme1-color7: #81c784;
    --scheme1-color8: #3f51b5;
    --scheme1-color9: #00796b;
    /* Scheme 2 - Warm Earth Tones */
    --scheme2-color1: #2e7d32;
    --scheme2-color2: #558b2f;
    --scheme2-color3: #9e9d24;
    --scheme2-color4: #cea614;
    --scheme2-color5: #f9a825;
    --scheme2-color6: #ff8f00;
    --scheme2-color7: #ef6c00;
    --scheme2-color8: #d84315;
    --scheme2-color9: #4e342e;
    --scheme2-color10: #424242;
    --scheme2-color11: #37474f;
    --scheme2-color12: #1b2124;
    /* Scheme 3 - Cool Deep Tones */
    --scheme3-color1: #c62828;
    --scheme3-color2: #ad1457;
    --scheme3-color3: #6a1b9a;
    --scheme3-color4: #4527a0;
    --scheme3-color5: #283593;
    --scheme3-color6: #1565c0;
    --scheme3-color7: #0277bd;
    --scheme3-color8: #00838f;
    --scheme3-color9: #00695c;
    /* Common Variables */
    --card-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --card-hover-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    --card-padding: 20px;
    --card-border-radius: 8px;
}

/* ============================================
   KIOSK CARD GRID - UNIFIED SOLUTION
   ============================================ */
.kiosk-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    isolation: isolate;
}

    .kiosk-grid li {
        flex: 1 1 200px;
        min-width: 150px;
        padding: var(--card-padding);
        transition: var(--card-transition);
        position: relative;
        overflow: hidden;
        will-change: flex-grow;
        contain: layout style paint;
        /* Enable flexbox column layout for alignment */
        display: flex;
        flex-direction: column;
    }

        .kiosk-grid li:hover,
        .kiosk-grid li:focus-within {
            flex-grow: 2.5;
            box-shadow: var(--card-hover-shadow);
            z-index: 10;
            transform: translateZ(0);
        }

        /* Kiosk Title Styling (Updated for h3) */
        .kiosk-grid li .kiosk-title {
            text-transform: capitalize;
            font-size: 16px;
            color: #fff;
            text-align: center;
            margin: 0 0 15px 0;
            font-weight: 500;
            font-family: 'Raleway', 'Open Sans', sans-serif;
            line-height: 1.4;
            flex-shrink: 0;
        }

        /* Legacy p tag support (if still needed) */
        .kiosk-grid li p {
            text-transform: capitalize;
            font-size: 16px;
            color: #fff;
            text-align: center;
            margin: 0 0 15px 0;
            font-weight: 500;
            flex-shrink: 0;
        }

    /* ============================================
   SINGLE ROW MODE - NO SCROLL (ALL FIT)
   ============================================ */
    .kiosk-grid.single-row {
        flex-wrap: nowrap;
        overflow: hidden;
        gap: 0;
        width: 100%;
    }

        .kiosk-grid.single-row li {
            flex: 1 1 0;
            min-width: 0;
            max-width: none;
            flex-shrink: 1;
            flex-grow: 1;
        }

            .kiosk-grid.single-row li:hover,
            .kiosk-grid.single-row li:focus-within {
                flex-grow: 1;
                transform: translateY(-8px);
                box-shadow: var(--card-hover-shadow);
                z-index: 10;
            }

            .kiosk-grid.single-row li .kiosk-title {
                font-size: 14px;
                margin-bottom: 10px;
            }

        .kiosk-grid.single-row .view-more {
            font-size: 12px;
            padding: 6px 10px;
        }

        .kiosk-grid.single-row .kiosk-img {
            padding: 0.5rem 0;
        }

    /* ============================================
   COLOR SCHEME 1 - VIBRANT
   ============================================ */
    .kiosk-grid.scheme-1 li:nth-child(1) {
        background: var(--scheme1-color1);
    }

    .kiosk-grid.scheme-1 li:nth-child(2) {
        background: var(--scheme1-color2);
    }

    .kiosk-grid.scheme-1 li:nth-child(3) {
        background: var(--scheme1-color3);
    }

    .kiosk-grid.scheme-1 li:nth-child(4) {
        background: var(--scheme1-color4);
    }

    .kiosk-grid.scheme-1 li:nth-child(5) {
        background: var(--scheme1-color5);
    }

    .kiosk-grid.scheme-1 li:nth-child(6) {
        background: var(--scheme1-color6);
    }

    .kiosk-grid.scheme-1 li:nth-child(7) {
        background: var(--scheme1-color7);
    }

    .kiosk-grid.scheme-1 li:nth-child(8) {
        background: var(--scheme1-color8);
    }

    .kiosk-grid.scheme-1 li:nth-child(9) {
        background: var(--scheme1-color9);
    }

    /* ============================================
   COLOR SCHEME 2 - WARM EARTH TONES
   ============================================ */
    .kiosk-grid.scheme-2 li:nth-child(1) {
        background: var(--scheme2-color1);
    }

    .kiosk-grid.scheme-2 li:nth-child(2) {
        background: var(--scheme2-color2);
    }

    .kiosk-grid.scheme-2 li:nth-child(3) {
        background: var(--scheme2-color3);
    }

    .kiosk-grid.scheme-2 li:nth-child(4) {
        background: var(--scheme2-color4);
    }

    .kiosk-grid.scheme-2 li:nth-child(5) {
        background: var(--scheme2-color5);
    }

    .kiosk-grid.scheme-2 li:nth-child(6) {
        background: var(--scheme2-color6);
    }

    .kiosk-grid.scheme-2 li:nth-child(7) {
        background: var(--scheme2-color7);
    }

    .kiosk-grid.scheme-2 li:nth-child(8) {
        background: var(--scheme2-color8);
    }

    .kiosk-grid.scheme-2 li:nth-child(9) {
        background: var(--scheme2-color9);
    }

    .kiosk-grid.scheme-2 li:nth-child(10) {
        background: var(--scheme2-color10);
    }

    .kiosk-grid.scheme-2 li:nth-child(11) {
        background: var(--scheme2-color11);
    }

    .kiosk-grid.scheme-2 li:nth-child(12) {
        background: var(--scheme2-color12);
    }

    /* ============================================
   COLOR SCHEME 3 - COOL DEEP TONES
   ============================================ */
    .kiosk-grid.scheme-3 li:nth-child(1) {
        background: var(--scheme3-color1);
    }

    .kiosk-grid.scheme-3 li:nth-child(2) {
        background: var(--scheme3-color2);
    }

    .kiosk-grid.scheme-3 li:nth-child(3) {
        background: var(--scheme3-color3);
    }

    .kiosk-grid.scheme-3 li:nth-child(4) {
        background: var(--scheme3-color4);
    }

    .kiosk-grid.scheme-3 li:nth-child(5) {
        background: var(--scheme3-color5);
    }

    .kiosk-grid.scheme-3 li:nth-child(6) {
        background: var(--scheme3-color6);
    }

    .kiosk-grid.scheme-3 li:nth-child(7) {
        background: var(--scheme3-color7);
    }

    .kiosk-grid.scheme-3 li:nth-child(8) {
        background: var(--scheme3-color8);
    }

    .kiosk-grid.scheme-3 li:nth-child(9) {
        background: var(--scheme3-color9);
    }

/* ============================================
   KIOSK IMAGE STYLING - PERFECTLY ALIGNED
   ============================================ */
.kiosk-img {
    padding: 1rem 0;
    transition: transform 0.3s ease;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

    .kiosk-img a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .kiosk-img img {
        display: block;
        max-width: 100%;
        width: auto;
        height: auto;
        max-height: 180px;
        object-fit: contain;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        backface-visibility: hidden;
    }

.kiosk-grid li:hover .kiosk-img img,
.kiosk-grid li:focus-within .kiosk-img img {
    transform: scale(1.05);
}

/* ============================================
   VIEW MORE LINK - ALIGNED AT BOTTOM
   ============================================ */
.view-more {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

    .view-more::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        transition: left 0.3s ease;
        z-index: -1;
    }

    .view-more:hover::before,
    .view-more:focus::before {
        left: 0;
    }

    .view-more:hover,
    .view-more:focus {
        background: rgba(255, 255, 255, 0.2);
        border-color: #fff;
        transform: translateY(-2px);
        outline: 2px solid rgba(255, 255, 255, 0.3);
        outline-offset: 2px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .view-more:active {
        transform: translateY(0);
    }

/* Container for View More button - keeps it at bottom */
.kiosk-grid li > div:last-child {
    flex-shrink: 0;
    margin-top: auto;
}

/* ============================================
   KIOSK DESCRIPTION (EXPANDABLE CONTENT)
   ============================================ */
.kiosk-description {
    display: none;
    margin-top: 15px;
    opacity: 0;
}

.kiosk-grid li:hover .kiosk-description,
.kiosk-grid li:focus-within .kiosk-description {
    display: block;
    animation: fadeIn 0.3s ease-in forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.kiosk-description li {
    color: #fff;
    background-color: transparent !important;
    padding: 5px 0;
    font-size: 14px;
    line-height: 1.5;
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Desktop - 1200px and above */
@media (max-width: 1200px) {
    .kiosk-grid li {
        flex: 1 1 calc(25% - 10px);
    }

    .kiosk-grid.single-row li .kiosk-title {
        font-size: 13px;
    }

    .kiosk-grid.single-row .view-more {
        font-size: 11px;
        padding: 5px 8px;
    }

    .kiosk-img {
        min-height: 120px;
    }

        .kiosk-img img {
            max-height: 140px;
        }
}

/* Tablet - 992px and below */
@media (max-width: 992px) {
    .kiosk-grid li {
        flex: 1 1 calc(33.333% - 10px);
    }

    .kiosk-grid.single-row li {
        padding: 12px 8px;
    }

        .kiosk-grid.single-row li .kiosk-title {
            font-size: 12px;
        }

    .kiosk-grid.single-row .view-more {
        font-size: 10px;
        padding: 4px 6px;
    }

    .kiosk-img {
        min-height: 100px;
    }

        .kiosk-img img {
            max-height: 120px;
        }
}

/* Mobile Landscape & Small Tablets - 768px and below */
@media (max-width: 768px) {
    /* Switch to 2 columns grid on tablets */
    .kiosk-grid li {
        flex: 1 1 calc(50% - 10px);
        padding: 15px;
    }

        .kiosk-grid li:hover {
            flex-grow: 1;
            transform: translateY(-4px);
        }

    .view-more {
        font-size: 13px;
        padding: 6px 12px;
    }

    /* Single row becomes 3 columns on tablet for better readability */
    .kiosk-grid.single-row {
        flex-wrap: wrap; /* Allow wrapping */
    }

        .kiosk-grid.single-row li {
            flex: 1 1 calc(33.333% - 10px);
            padding: 15px 10px;
            min-width: auto;
            max-width: none;
        }

            .kiosk-grid.single-row li .kiosk-title {
                font-size: 14px;
                margin-bottom: 10px;
            }

        .kiosk-grid.single-row .view-more {
            font-size: 12px;
            padding: 6px 10px;
        }

        .kiosk-grid.single-row .kiosk-img {
            padding: 0.5rem 0;
            min-height: 120px;
        }

    .kiosk-img img {
        max-height: 140px;
    }
}

/* Mobile Portrait - 480px and below */
@media (max-width: 480px) {
    /* Switch to 2 columns on mobile */
    .kiosk-grid li {
        flex: 1 1 calc(50% - 5px);
        padding: 12px 8px;
    }

        .kiosk-grid li:hover {
            flex-grow: 1;
            transform: translateY(-3px);
        }

    .view-more {
        font-size: 11px;
        padding: 5px 10px;
    }

    /* Single row becomes 2 columns on mobile */
    .kiosk-grid.single-row {
        flex-wrap: wrap;
    }

        .kiosk-grid.single-row li {
            flex: 1 1 calc(50% - 5px);
            padding: 12px 8px;
        }

            .kiosk-grid.single-row li .kiosk-title {
                font-size: 13px;
                margin-bottom: 8px;
            }

        .kiosk-grid.single-row .view-more {
            font-size: 11px;
            padding: 5px 8px;
            letter-spacing: 0.3px;
        }

        .kiosk-grid.single-row .kiosk-img {
            min-height: 100px;
            padding: 0.4rem 0;
        }

    .kiosk-img {
        min-height: 100px;
    }

        .kiosk-img img {
            max-height: 120px;
        }
}

/* Extra Small Mobile - 360px and below */
@media (max-width: 360px) {
    /* Full width cards on very small screens */
    .kiosk-grid li {
        flex: 1 1 100%;
        padding: 15px;
    }

    .kiosk-grid.single-row li {
        flex: 1 1 100%;
        padding: 15px;
    }

        .kiosk-grid.single-row li .kiosk-title {
            font-size: 15px;
        }

    .kiosk-grid.single-row .view-more {
        font-size: 12px;
        padding: 6px 12px;
    }

    .kiosk-img {
        min-height: 120px;
    }

        .kiosk-img img {
            max-height: 150px;
        }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .kiosk-grid li,
    .kiosk-img,
    .kiosk-img img,
    .view-more {
        transition: none;
    }

        .kiosk-grid li:hover .kiosk-description {
            animation: none;
        }
}

/* ============================================
   OTHER UTILITY STYLES
   ============================================ */
.text-init {
    text-transform: none !important;
}

.service h2 {
    font: 600 12px 'Open Sans', Arial, Tahoma;
    text-align: center;
    color: #2d85c9;
}

.kiosk-on-rent {
    background: #db1d1d;
    padding: 5px 18px;
    border-radius: 4px;
    display: inline-block;
    transition: background 0.3s ease;
}

    .kiosk-on-rent:hover {
        background: #b51616;
    }

    .kiosk-on-rent a {
        color: #fff;
        text-decoration: none;
    }

/* ============================================
   RELATIONSHIPS SECTION
   ============================================ */
.relationships img {
    background: #fff;
    padding: 10px 20px;
    margin-bottom: 25px;
    border-radius: 15px;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0, 0, 0.5, 1);
}

    .relationships img:hover {
        box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.16);
        transform: scale(1.01);
    }

@media only screen and (max-width: 768px) {
    .relationships img {
        padding: 10px 20px !important;
        width: 100%;
    }
}

/* ============================================
   BACKGROUND UTILITIES
   ============================================ */
.lite-blue-bg {
    background: #f1f5f8;
}

.lite-blue-bg1 {
    background: #f1f5f8;
    border-radius: 2.1875rem;
}

.apple-bg {
    background: #f5f5f7;
}

/* ============================================
   LIFE CARDS
   ============================================ */
.life {
    padding: 60px 30px;
    margin-bottom: 30px;
    position: relative;
    background: #f5f5f7;
    border-radius: 10px;
    text-align: center;
    min-height: 394px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .life:hover,
    .life:focus-within {
        background: #e2b923;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
        transform: translateY(-4px);
    }

        .life:hover .numb,
        .life:focus-within .numb {
            color: transparent;
            -webkit-text-stroke: 1px rgba(177, 151, 119, 0.5);
        }

    .life h5 {
        font-size: 20px;
        font-weight: 600;
        line-height: 33px;
        margin-bottom: 15px;
        color: #414042;
    }

    .life p {
        margin-bottom: 0;
        font-size: 16px;
    }

    .life img {
        width: 150px;
        margin-bottom: 20px;
        transition: transform 0.3s ease;
    }

    .life:hover img {
        transform: scale(1.05);
    }

    .life .numb {
        font-size: 40px;
        font-weight: 600;
        font-family: 'Spartan', sans-serif;
        position: absolute;
        bottom: 30px;
        right: 30px;
        color: transparent;
        -webkit-text-stroke: 1px rgba(0, 0, 0, 0.1);
        line-height: 1em;
        transition: all 0.3s ease;
    }

    .life i {
        font-size: 60px;
        padding-bottom: 25px;
        color: #013876;
        transition: transform 0.3s ease;
    }

    .life:hover i {
        transform: scale(1.1);
    }
/* ============================================
   HERO SECTION
   ============================================ */
.kiosk-hero-section {
    padding: 80px 0;
    background: #fff;
}

.kiosk-hero-content {
    margin-bottom: 30px;
    padding-top: 35px;
}

.kiosk-hero-title {
    font-family: 'Raleway', 'Open Sans', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    color: #1d1d1f;
    margin-bottom: 20px;
}

.kiosk-hero-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #1d1d1f;
    margin-bottom: 15px;
}


/* ============================================
   SUPPORT SECTION
   ============================================ */
.kiosk-support-section {
    padding: 60px 0;
    background: #fff;
}

.kiosk-support-container {
    background: #f5f5f7;
    border-radius: 30px;
    padding-left: 50px;
    padding-right: 50px;
}

.kiosk-support-image-col {
    margin-bottom: 30px;
    padding-top: 35px;
}

    .kiosk-support-image-col img {
        border-radius: 15px;
        transition: transform 0.3s ease;
    }

        .kiosk-support-image-col img:hover {
            transform: scale(1.05);
        }

.kiosk-support-content-col {
    margin-bottom: 30px;
    padding-top: 35px;
}

.kiosk-support-title {
    font-family: 'Raleway', 'Open Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.kiosk-support-paragraph {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

    .kiosk-support-paragraph strong {
        color: #1d1d1f;
        font-weight: 600;
    }

/* ============================================
   SOLUTIONS SECTION
   ============================================ */
.kiosk-solutions-section {
    padding: 40px 0;
    background: #fff;
}

.kiosk-solutions-heading {
    font-family: 'Raleway', 'Open Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #083d59;
    margin-bottom: 50px;
}

.kiosk-solution-card-col {
    margin-top: 20px;
    margin-bottom: 20px;
}

.kiosk-solution-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.kiosk-solution-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 30px;
    box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    border: 1px solid #eeeeee;
}

    .kiosk-solution-card:hover {
        transform: translateY(-8px);
        box-shadow: 2px 8px 24px rgba(0, 0, 0, 0.15);
        background: linear-gradient(135deg, #083d59 0%, #1a5a8f 100%);
    }

        .kiosk-solution-card:hover .kiosk-solution-title,
        .kiosk-solution-card:hover .kiosk-solution-description {
            color: #fff;
        }

        .kiosk-solution-card:hover .kiosk-solution-icon {
            color: #fff;
            transform: rotate(90deg);
        }

.kiosk-solution-title {
    font-family: 'Raleway', 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.kiosk-solution-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    flex-grow: 1;
}

.kiosk-solution-icon {
    font-size: 20px;
    color: #1d1d1f;
    position: absolute;
    bottom: 25px;
    right: 25px;
    transition: all 0.3s ease;
    background: #e5c039;
    border-radius: 50%;
    padding: 10px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet - 992px and below */
@media (max-width: 992px) {
    .kiosk-hero-title {
        font-size: 28px;
    }

    .kiosk-hero-description {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .kiosk-support-container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .kiosk-support-title {
        font-size: 24px;
    }

    .kiosk-solutions-heading {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .kiosk-solution-card {
        min-height: 200px;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    .kiosk-hero-section {
        padding: 50px 0;
    }

    .kiosk-hero-title {
        font-size: 24px;
    }

    .kiosk-hero-description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .kiosk-support-section {
        padding: 40px 0;
    }

    .kiosk-support-container {
        border-radius: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .kiosk-support-image-col,
    .kiosk-support-content-col {
        padding-top: 20px;
        margin-bottom: 20px;
    }

    .kiosk-support-title {
        font-size: 22px;
    }

    .kiosk-support-paragraph {
        font-size: 14px;
    }

    .kiosk-solutions-section {
        padding: 50px 0;
    }

    .kiosk-solutions-heading {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .kiosk-solution-card {
        padding: 25px 20px;
        min-height: 200px;
    }

    .kiosk-solution-title {
        font-size: 18px;
    }

    .kiosk-solution-description {
        font-size: 13px;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    .kiosk-hero-section {
        padding: 40px 0;
    }

    .kiosk-hero-content {
        padding-top: 20px;
    }

    .kiosk-hero-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .kiosk-hero-description {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .kiosk-support-container {
        border-radius: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .kiosk-support-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .kiosk-support-paragraph {
        font-size: 13px;
    }

    .kiosk-solutions-heading {
        font-size: 22px;
    }

    .kiosk-solution-card {
        padding: 20px 18px;
        min-height: 180px;
    }

    .kiosk-solution-title {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .kiosk-solution-description {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .kiosk-solution-icon {
        font-size: 18px;
        bottom: 20px;
        right: 20px;
    }
}

/* Accessibility - Reduce Motion */
@media (prefers-reduced-motion: reduce) {
    .kiosk-hero-image img,
    .kiosk-support-image-col img,
    .kiosk-solution-card,
    .kiosk-solution-icon {
        transition: none;
    }
}
/* ========================================
   XIPHIAS Smart Parking Kiosks - Complete Stylesheet
   Bootstrap 5 + XIPHIAS Brand Colors + Gold Accents
   © 2026 XIPHIAS Software Technologies Pvt. Ltd.
======================================== */

:root {
    /* XIPHIAS Brand Colors */
    --spk-primary: #1E5A9E;
    --spk-primary-light: #3B7CC1;
    --spk-primary-dark: #154276;
    --spk-secondary: #66AFE9;
    --spk-navy: #1A2332;
    --spk-navy-light: #2C3E50;
    --spk-teal: #20C997;
    --spk-purple: #6F42C1;
    --spk-success: #28A745;
    --spk-gold: #FFB800; /* XIPHIAS Signature Gold */
    /* Neutral Colors */
    --spk-white: #FFFFFF;
    --spk-gray-50: #F8F9FA;
    --spk-gray-100: #F3F4F6;
    --spk-gray-200: #E9ECEF;
    --spk-gray-300: #DEE2E6;
    --spk-gray-600: #6C757D;
    --spk-gray-700: #495057;
    --spk-gray-800: #343A40;
    --spk-gray-900: #212529;
}

/* ========================================
   BUTTON STYLES (Enquiry + Quote)
======================================== */

/* Primary Button (Enquiry) - Blue with Gold Accent */
.spk-btn-primary {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--spk-primary), var(--spk-primary-dark));
    color: var(--spk-white);
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(30, 90, 158, 0.25);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

    .spk-btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 184, 0, 0.3), transparent);
        transition: left 0.6s ease;
    }

    .spk-btn-primary:hover::before {
        left: 100%;
    }

    .spk-btn-primary:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 35px rgba(30, 90, 158, 0.4), 0 0 0 3px rgba(255, 184, 0, 0.3);
        border-color: var(--spk-gold);
    }

/* Secondary Button (Request Quote) - Gold */
.spk-btn-secondary {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--spk-gold), #FF9500);
    color: var(--spk-navy);
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(255, 184, 0, 0.35);
    font-family: 'Poppins', sans-serif;
}

    .spk-btn-secondary:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 35px rgba(255, 184, 0, 0.5);
        background: linear-gradient(135deg, #FFC933, var(--spk-gold));
    }

/* Large Quote Button (CTA Section) */
.spk-btn-quote-large {
    padding: 20px 56px;
    background: linear-gradient(135deg, var(--spk-gold), #FF9500);
    color: var(--spk-navy);
    border: none;
    border-radius: 14px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 12px 32px rgba(255, 184, 0, 0.4);
    font-family: 'Poppins', sans-serif;
}

    .spk-btn-quote-large:hover {
        transform: translateY(-6px) scale(1.03);
        box-shadow: 0 16px 45px rgba(255, 184, 0, 0.55);
        background: linear-gradient(135deg, #FFC933, var(--spk-gold));
    }

.spk-hero-cta-buttons {
    margin-top: 36px;
}

/* ========================================
   GLASS EFFECTS
======================================== */
.spk-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.spk-glass-light {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

/* ========================================
   SECTION STYLING
======================================== */
.spk-section-header {
    margin-bottom: 60px;
}

.spk-section-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--spk-primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 18px;
    background: rgba(30, 90, 158, 0.1);
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

    /* Gold Accent on Section Labels */
    .spk-section-label::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40%;
        height: 2px;
        background: var(--spk-gold);
        opacity: 0;
        transition: all 0.4s ease;
    }

.spk-section-header:hover .spk-section-label::after {
    opacity: 1;
    width: 60%;
}

.spk-section-title {
    font-size: 30px;
    font-weight: 600;
    color: var(--spk-navy);
    margin-bottom: 20px;
    line-height: 1.25;
}

.spk-section-description {
    font-size: 20px;
    color: var(--spk-gray-600);
    margin: 0 auto;
    line-height: 1.8;
    text-align:center;
}

/* ========================================
   HERO SECTION
======================================== */
.spk-hero {
    padding: 100px 0 120px;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

    .spk-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 900px;
        height: 900px;
        background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        animation: spk-float 22s ease-in-out infinite;
    }

@keyframes spk-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-60px, -60px) scale(1.08);
    }
}

.spk-hero-row {
    position: relative;
    z-index: 1;
}

.spk-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--spk-navy);
    margin-bottom: 28px;
    line-height: 1.35;
    font-family: 'Poppins', sans-serif;
}

.spk-hero-highlight {
    color: #e3b923;
    font-weight: 700;
    position: relative;
}

    /* Gold Underline for Highlight */
    .spk-hero-highlight::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--spk-gold), transparent);
        opacity: 0.6;
    }

.spk-hero-description {
    font-size: 16px;
    color: var(--spk-gray-700);
    margin-bottom: 36px;
    line-height: 1.75;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.spk-stat-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(30, 90, 158, 0.15);
    border-radius: 13px;
    padding: 28px 8px;
    box-shadow: 0 8px 32px rgba(30, 90, 158, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

    /* Gold Hover Effect for Stats */
    .spk-stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--spk-gold), var(--spk-primary));
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .spk-stat-card:hover::before {
        transform: scaleX(1);
    }

    .spk-stat-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(255, 184, 0, 0.2);
        border-color: var(--spk-gold);
    }

.spk-stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--spk-primary);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.spk-stat-label {
    font-size: 0.9375rem;
    color: var(--spk-gray-700);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.spk-hero-image-container {
    position: relative;
    width: 100%;
    height: 650px;
}

.spk-hero-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--spk-navy) 0%, #0F1419 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 70px rgba(30, 90, 158, 0.25);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .spk-hero-image::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 184, 0, 0.1) 0%, transparent 50%, rgba(102, 175, 233, 0.2) 100%);
        opacity: 0.7;
        animation: spk-gradient-shift 10s ease infinite;
    }

@keyframes spk-gradient-shift {
    0%, 100% {
        opacity: 0.7;
        transform: translateX(0);
    }

    50% {
        opacity: 0.85;
        transform: translateX(25px);
    }
}

.spk-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.6;
}

.spk-image-placeholder {
    position: relative;
    z-index: 1;
}

    .spk-image-placeholder i {
        font-size: 6rem;
        color: var(--spk-primary);
        margin-bottom: 24px;
        filter: drop-shadow(0 10px 25px rgba(255, 184, 0, 0.2));
        animation: spk-pulse 3.5s ease-in-out infinite;
    }

@keyframes spk-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.06);
        opacity: 0.88;
    }
}

.spk-image-placeholder p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--spk-white);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    font-family: 'Poppins', sans-serif;
}

.spk-hero-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--spk-gold), #FF9500);
    backdrop-filter: blur(10px);
    color: var(--spk-navy);
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 6px 16px rgba(255, 184, 0, 0.5);
    font-family: 'Poppins', sans-serif;
}

.spk-hero-features {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
    flex-wrap: wrap;
}

.spk-feature-pill {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    color: var(--spk-white);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

    .spk-feature-pill:hover {
        border-color: var(--spk-gold);
        background: rgba(255, 184, 0, 0.2);
    }

    .spk-feature-pill i {
        font-size: 0.875rem;
        color: var(--spk-gold);
    }

/*/* ========================================
   WHAT SECTION (Redesigned Modern UI)
======================================== */
.spk-what-section {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 50%, #EFF6FF 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .spk-what-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(30, 90, 158, 0.08), transparent 70%);
        border-radius: 50%;
    }

/* Section Header */
.spk-section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(30, 90, 158, 0.15), rgba(255, 184, 0, 0.15));
    color: var(--spk-primary);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(30, 90, 158, 0.2);
}

.spk-section-title {
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--spk-navy);
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.spk-section-subtitle {
    font-size: 1.125rem;
    color: var(--spk-gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Left Content Box */
.spk-content-box {
    position: relative;
    z-index: 1;
}

.spk-highlight-text {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--spk-gold);
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

    .spk-highlight-text i {
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 1.5rem;
        color: var(--spk-gold);
        opacity: 0.3;
    }

    .spk-highlight-text p {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--spk-navy);
        line-height: 1.7;
        margin: 0;
        padding-left: 28px;
        font-family: 'Poppins', sans-serif;
    }

.spk-body-text {
    font-size: 1.0625rem;
    color: var(--spk-gray-700);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* CTA Button */
.spk-cta-wrapper {
    margin-top: 36px;
}

.spk-btn-gradient {
    background: linear-gradient(135deg, var(--spk-primary), #1E5A9E);
    color: var(--spk-white);
    border: none;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(30, 90, 158, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

    .spk-btn-gradient:hover {
        background: linear-gradient(135deg, var(--spk-gold), #FF9500);
        box-shadow: 0 12px 35px rgba(255, 184, 0, 0.4);
        transform: translateY(-2px);
    }

    .spk-btn-gradient i {
        font-size: 1.125rem;
    }

/* Features Wrapper */
.spk-features-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.spk-feature-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(30, 90, 158, 0.1);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    .spk-feature-box::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(180deg, var(--spk-primary), var(--spk-gold));
        transform: scaleY(0);
        transition: transform 0.4s ease;
    }

    .spk-feature-box:hover {
        transform: translateX(8px);
        border-color: rgba(255, 184, 0, 0.4);
        box-shadow: 0 12px 35px rgba(30, 90, 158, 0.12);
        background: var(--spk-white);
    }

        .spk-feature-box:hover::before {
            transform: scaleY(1);
        }

.spk-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(30, 90, 158, 0.1), rgba(255, 184, 0, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

    .spk-icon-wrapper i {
        font-size: 1.75rem;
        color: var(--spk-primary);
        transition: all 0.4s ease;
    }

.spk-feature-box:hover .spk-icon-wrapper {
    background: linear-gradient(135deg, var(--spk-primary), var(--spk-gold));
    transform: scale(1.1);
}

    .spk-feature-box:hover .spk-icon-wrapper i {
        color: var(--spk-white);
    }

.spk-feature-content {
    flex: 1;
}

    .spk-feature-content h4 {
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--spk-navy);
        margin-bottom: 4px;
        font-family: 'Poppins', sans-serif;
    }

    .spk-feature-content p {
        font-size: 0.9375rem;
        color: var(--spk-gray-600);
        margin: 0;
        line-height: 1.5;
    }

.spk-feature-arrow {
    width: 32px;
    height: 32px;
    background: rgba(30, 90, 158, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

    .spk-feature-arrow i {
        font-size: 0.875rem;
        color: var(--spk-primary);
    }

.spk-feature-box:hover .spk-feature-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 991px) {
    .spk-section-title {
        font-size: 2.25rem;
    }

    .spk-content-box {
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .spk-section-title {
        font-size: 1.875rem;
    }

    .spk-highlight-text {
        padding: 20px 24px;
    }

    .spk-feature-box {
        padding: 20px;
    }

    .spk-icon-wrapper {
        width: 50px;
        height: 50px;
    }

        .spk-icon-wrapper i {
            font-size: 1.5rem;
        }
}

/* ========================================
   HOW SECTION (Teal Theme with Gold Accents)
======================================== */
.spk-how-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/bg/parking.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 120px 0;
    position: relative;
}

    .spk-how-section .spk-section-label {
        color: var(--spk-teal);
        background: rgba(32, 201, 151, 0.2);
        border: 1px solid rgba(32, 201, 151, 0.4);
    }

    .spk-how-section .spk-section-title {
        color: var(--spk-white);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .spk-how-section .spk-section-description {
        color: rgba(255, 255, 255, 0.9);
    }

.spk-step-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(32, 201, 151, 0.25);
    border-radius: 20px;
    padding: 40px 28px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

    /* Staggered Layout - Odd cards move down */
    .spk-step-card.spk-card-down {
        margin-top: 60px;
    }

    .spk-step-card:hover {
        transform: translateY(-12px);
        border-color: var(--spk-gold);
        box-shadow: 0 18px 50px rgba(255, 184, 0, 0.35);
        background: var(--spk-white);
    }

.spk-step-icon-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--spk-teal), #17A2B8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(32, 201, 151, 0.5);
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.spk-step-card:hover .spk-step-icon-badge {
    background: linear-gradient(135deg, var(--spk-gold), #FF9500);
    box-shadow: 0 12px 35px rgba(255, 184, 0, 0.6);
    transform: scale(1.1) rotate(5deg);
}

.spk-step-icon-badge i {
    font-size: 2.5rem;
    color: var(--spk-white);
}

.spk-step-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--spk-navy);
    margin-bottom: 14px;
    font-family: 'Poppins', sans-serif;
}

.spk-step-card p {
    font-size: 0.9375rem;
    color: var(--spk-gray-700);
    line-height: 1.7;
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .spk-step-card.spk-card-down {
        margin-top: 0;
    }
}

/* ========================================
   WHY SECTION (Success Theme with Gold)
======================================== */
.spk-why-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 50%, #FFFFFF 100%);
    padding: 120px 0;
}

    .spk-why-section .spk-section-label {
        color: var(--spk-success);
        background: rgba(40, 167, 69, 0.12);
    }

    .spk-why-section .spk-section-title {
        color: var(--spk-navy);
    }

.spk-benefit-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 90, 158, 0.18);
    border-radius: 20px;
    padding: 44px 36px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .spk-benefit-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--spk-gold), var(--spk-primary));
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .spk-benefit-card:hover::before {
        transform: scaleX(1);
    }

    .spk-benefit-card:hover {
        transform: translateY(-12px);
        border-color: var(--spk-gold);
        box-shadow: 0 22px 55px rgba(255, 184, 0, 0.22);
    }

.spk-benefit-icon {
    width: 84px;
    height: 84px;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.15), rgba(30, 90, 158, 0.18));
    border-radius: 20px;
    margin-bottom: 26px;
    transition: all 0.4s ease;
}

.spk-benefit-card:hover .spk-benefit-icon {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.3), rgba(255, 184, 0, 0.2));
}

.spk-benefit-icon i {
    font-size: 2.5rem;
    color: var(--spk-primary);
    transition: color 0.3s ease;
}

.spk-benefit-card:hover .spk-benefit-icon i {
    color: var(--spk-gold);
}

.spk-benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--spk-navy);
    margin-bottom: 14px;
    font-family: 'Poppins', sans-serif;
}

.spk-benefit-card p {
    font-size: 1rem;
    color: var(--spk-gray-700);
    line-height: 1.75;
    margin-bottom: 22px;
    font-family: 'Inter', sans-serif;
}

/* Gold Metric Badges */
.spk-benefit-metric {
    padding: 9px 22px;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.2), rgba(255, 184, 0, 0.15));
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #B8860B;
    font-family: 'Poppins', sans-serif;
    border: 1px solid rgba(255, 184, 0, 0.3);
}

.spk-benefit-card:hover .spk-benefit-metric {
    background: linear-gradient(135deg, var(--spk-gold), #FF9500);
    color: var(--spk-navy);
    border-color: var(--spk-gold);
}

/* ========================================
   AI SECTION (Light Theme)
======================================== */
.spk-ai-section {
    background: linear-gradient(180deg, #F5F5F5 0%, #FFFFFF 50%, #F8FAFC 100%);
    color: #1d1d1f;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

    .spk-ai-section::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(255, 184, 0, 0.05), transparent);
        pointer-events: none;
    }

    .spk-ai-section .spk-section-label {
        color: var(--spk-primary);
        background: rgba(30, 90, 158, 0.12);
        border: 1px solid rgba(30, 90, 158, 0.2);
    }

    .spk-ai-section .spk-section-title {
        color: #0F1419;
    }

    .spk-ai-section .spk-section-description {
        color: #64748B;
    }

.spk-ai-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 90, 158, 0.15);
    border-radius: 18px;
    padding: 38px 30px;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

    .spk-ai-card:hover {
        background: var(--spk-white);
        border-color: var(--spk-gold);
        transform: translateY(-8px);
        box-shadow: 0 15px 45px rgba(30, 90, 158, 0.15);
    }

.spk-ai-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, rgba(30, 90, 158, 0.1), rgba(255, 184, 0, 0.1));
    border: 2px solid rgba(30, 90, 158, 0.2);
    border-radius: 14px;
    margin-bottom: 22px;
    transition: all 0.4s ease;
}

.spk-ai-card:hover .spk-ai-icon {
    background: linear-gradient(135deg, var(--spk-primary), var(--spk-gold));
    border-color: transparent;
    transform: scale(1.1) rotate(5deg);
}

.spk-ai-icon i {
    font-size: 1.875rem;
    color: var(--spk-primary);
    transition: all 0.4s ease;
}

.spk-ai-card:hover .spk-ai-icon i {
    color: var(--spk-white);
}

.spk-ai-card h3 {
    font-size: 1.3125rem;
    font-weight: 600;
    color: #0F1419;
    margin-bottom: 14px;
    font-family: 'Poppins', sans-serif;
}

.spk-ai-card p {
    font-size: 0.9375rem;
    color: #64748B;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    margin-bottom: 0;
}

/* ========================================
   APPLICATIONS SECTION V3 - Unique Modern Design
======================================== */

.spk-apps-v3 {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #EFF6FF 0%, #DBEAFE 30%, #FFFFFF 70%, #F0F9FF 100%);
    overflow: hidden;
}

.spk-apps-bg-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(255, 184, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Header */
.spk-apps-header {
    position: relative;
    z-index: 1;
}

.spk-micro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.1), rgba(255, 184, 0, 0.05));
    border: 1px solid rgba(255, 184, 0, 0.3);
    color: #E6A600;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
}

.spk-badge-pulse {
    width: 8px;
    height: 8px;
    background: #FFB800;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.3);
    }
}

.spk-apps-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0A1628;
    line-height: 1.15;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.spk-gradient-gold {
    background: linear-gradient(135deg, #FFB800 0%, #FF9500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

    .spk-gradient-gold::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #FFB800, #FF9500, transparent);
        border-radius: 10px;
        opacity: 0.4;
    }

.spk-apps-subtitle {
    font-size: 1.25rem;
    color: #64748B;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

/* Industry Box Cards */
.spk-industry-box {
    position: relative;
    background: #FFFFFF;
    border: 2px solid #E2E8F0;
    border-radius: 24px;
    padding: 40px 32px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

    .spk-industry-box::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 184, 0, 0.02), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .spk-industry-box:hover {
        transform: translateY(-12px);
        border-color: #FFB800;
        box-shadow: 0 24px 60px rgba(255, 184, 0, 0.15);
    }

        .spk-industry-box:hover::before {
            opacity: 1;
        }

/* Box Header */
.spk-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.spk-emoji-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F8FAFC, #FFFFFF);
    border: 2px solid #E2E8F0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.75rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.spk-industry-box:hover .spk-emoji-circle {
    transform: scale(1.15) rotate(-8deg);
    border-color: #FFB800;
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.2);
}

.spk-industry-tag {
    background: linear-gradient(135deg, rgba(30, 90, 158, 0.1), rgba(30, 90, 158, 0.05));
    color: #1E5A9E;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

/* Industry specific tag colors */
.spk-box-airports .spk-industry-tag {
    background: linear-gradient(135deg, rgba(46, 91, 255, 0.1), rgba(46, 91, 255, 0.05));
    color: #2E5BFF;
}

.spk-box-healthcare .spk-industry-tag {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.05));
    color: #DC2626;
}

.spk-box-commercial .spk-industry-tag {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(99, 102, 241, 0.05));
    color: #6366F1;
}

.spk-box-municipal .spk-industry-tag {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    color: #10B981;
}

.spk-box-university .spk-industry-tag {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
    color: #8B5CF6;
}

.spk-box-retail .spk-industry-tag {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(236, 72, 153, 0.05));
    color: #EC4899;
}

/* Box Content */
.spk-industry-box h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.spk-industry-box:hover h3 {
    color: #FFB800;
}

.spk-industry-box p {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.75;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

/* Box Features */
.spk-box-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.spk-feature-dot {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: #475569;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

    .spk-feature-dot i {
        width: 18px;
        height: 18px;
        background: linear-gradient(135deg, rgba(255, 184, 0, 0.15), rgba(255, 184, 0, 0.05));
        color: #FFB800;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.625rem;
    }

/* Overlay Button */
.spk-box-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(255, 184, 0, 0.95));
    padding: 40px 32px 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.spk-industry-box:hover .spk-box-overlay {
    opacity: 1;
    transform: translateY(0);
}

.spk-learn-btn {
    background: #FFFFFF;
    color: #0A1628;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

    .spk-learn-btn:hover {
        transform: translateX(5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    .spk-learn-btn i {
        font-size: 0.875rem;
        transition: transform 0.3s ease;
    }

    .spk-learn-btn:hover i {
        transform: translateX(5px);
    }

/* Stats Bar */
.spk-apps-stats-bar {
    background: linear-gradient(135deg, #0A1628 0%, #1A2840 100%);
    border-radius: 24px;
    padding: 50px 40px;
    margin-top: -80px;
    position: relative;
    overflow: hidden;
}

    .spk-apps-stats-bar::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 50%, rgba(255, 184, 0, 0.1), transparent 50%), radial-gradient(circle at 80% 50%, rgba(46, 91, 255, 0.08), transparent 50%);
    }

.spk-stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.spk-stat-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.2), rgba(255, 184, 0, 0.1));
    border: 1px solid rgba(255, 184, 0, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.spk-stat-item:hover .spk-stat-icon {
    background: linear-gradient(135deg, #FFB800, #FF9500);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.4);
}

.spk-stat-icon i {
    font-size: 1.5rem;
    color: #FFB800;
    transition: color 0.3s ease;
}

.spk-stat-item:hover .spk-stat-icon i {
    color: #0A1628;
}

.spk-stat-content h4 {
    font-size: 2rem;
    font-weight: 800;
    color: #FFB800;
    line-height: 1;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

.spk-stat-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
    .spk-apps-title {
        font-size: 2.75rem;
    }

    .spk-industry-box {
        padding: 32px 24px;
    }

    .spk-apps-stats-bar {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .spk-apps-title {
        font-size: 2.25rem;
    }

    .spk-apps-subtitle {
        font-size: 1.125rem;
    }

    .spk-emoji-circle {
        width: 64px;
        height: 64px;
        font-size: 2.25rem;
    }

    .spk-industry-box h3 {
        font-size: 1.5rem;
    }

    .spk-stat-item {
        justify-content: center;
        text-align: center;
    }

    .spk-apps-stats-bar {
        padding: 30px 20px;
        margin-top: 60px;
    }
}

@media (max-width: 575px) {
    .spk-apps-title {
        font-size: 2rem;
    }

    .spk-industry-box {
        padding: 28px 20px;
    }
}

/* ========================================
   SPECIFICATIONS SECTION
======================================== */
.spk-specs-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 50%, #FFFFFF 100%);
    padding: 120px 0;
}

.spk-tab-btn {
    padding: 15px 38px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 90, 158, 0.2);
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--spk-gray-700);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

    .spk-tab-btn:hover {
        background: rgba(255, 255, 255, 0.95);
        border-color: var(--spk-gold);
        color: var(--spk-gold);
    }

    .spk-tab-btn.active {
        background: linear-gradient(135deg, var(--spk-primary), var(--spk-primary-dark));
        color: var(--spk-white);
        border-color: var(--spk-primary);
        box-shadow: 0 4px 16px rgba(255, 184, 0, 0.3);
    }

.spk-tab-content {
    display: none;
}

    .spk-tab-content.active {
        display: block;
        animation: spk-fade-in 0.6s ease;
    }

@keyframes spk-fade-in {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.spk-spec-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(30, 90, 158, 0.15);
    border-radius: 18px;
    padding: 36px;
    transition: all 0.3s ease;
}

    .spk-spec-card:hover {
        border-color: var(--spk-gold);
        box-shadow: 0 10px 32px rgba(255, 184, 0, 0.15);
    }

    .spk-spec-card h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--spk-navy);
        margin-bottom: 28px;
        font-family: 'Poppins', sans-serif;
    }

        .spk-spec-card h3 i {
            color: var(--spk-gold);
        }

.spk-spec-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

    /* Gold Dot Accent */
    .spk-spec-item::before {
        content: '';
        position: absolute;
        left: -12px;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        background: var(--spk-gold);
        border-radius: 50%;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .spk-spec-item:hover::before {
        opacity: 1;
    }

    .spk-spec-item:last-child {
        border-bottom: none;
    }

.spk-spec-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--spk-gray-800);
    font-family: 'Poppins', sans-serif;
}

.spk-spec-value {
    font-size: 0.9375rem;
    color: var(--spk-gray-700);
    font-family: 'Inter', sans-serif;
}

/* ========================================
   CTA SECTION (Blue + Gold Theme)
======================================== */
.spk-cta-section {
    background: linear-gradient(135deg, var(--spk-primary) 0%, var(--spk-primary-dark) 50%, var(--spk-navy) 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

    .spk-cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 184, 0, 0.15) 0%, transparent 70%);
        animation: spk-rotate 32s linear infinite;
    }

@keyframes spk-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spk-cta-content {
    position: relative;
    z-index: 1;
}

.spk-cta-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--spk-white);
    margin-bottom: 22px;
}

.spk-cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 991px) {
    .spk-hero-title {
        font-size: 3.25rem;
    }

    .spk-section-title {
        font-size: 2.5rem;
    }

    .spk-hero-image-container {
        height: 520px;
    }

    .spk-what-image {
        height: 420px;
    }

    .spk-cta-title {
        font-size: 2.75rem;
    }

    .spk-btn-primary,
    .spk-btn-secondary {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .spk-hero-title {
        font-size: 2.75rem;
    }

    .spk-section-title {
        font-size: 2.25rem;
    }

    .spk-hero-image-container {
        height: 420px;
    }

    .spk-what-image {
        height: 360px;
    }

    .spk-cta-title {
        font-size: 2.25rem;
    }

    .spk-tab-btn {
        width: 100%;
        margin-bottom: 12px;
    }

    .spk-hero-cta-buttons {
        flex-direction: column;
    }

    .spk-btn-primary,
    .spk-btn-secondary {
        width: 100%;
    }

    .spk-btn-quote-large {
        padding: 18px 40px;
        font-size: 1.125rem;
    }
}


/* XIPHIAS Intro Section - TOP */
.xip-iot-intro-section {
    background: #ffffff;
    padding: 3rem 0;
    position: relative;
}

.xip-iot-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.xip-iot-logo-wrapper {
    margin-bottom: 1.25rem;
}

.xip-iot-logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #083d59;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.xip-iot-tagline {
    font-size: 18px;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    text-align:center;
}

.xip-iot-intro-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 600;
    color: #083d59;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.xip-iot-intro-description {
    font-size: 0.938rem;
    color: #6c757d;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 2rem;
    font-weight: 400;
}

.xip-iot-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.xip-iot-feature-card {
    background: #f8f9fa;
    border-radius: 14px;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #e9ecef;
}

    .xip-iot-feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 35px rgba(80, 80, 80, 0.12);
        background: #ffffff;
        border-color: #083d59;
    }

.xip-iot-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #083d59 0%, #1c6c97 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.4s ease;
}

.xip-iot-feature-card:hover .xip-iot-feature-icon {
    transform: scale(1.08) rotate(5deg);
}

.xip-iot-feature-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.xip-iot-feature-title {
    font-size: 1.063rem;
    font-weight: 600;
    color: #083d59;
    margin-bottom: 0.625rem;
}

.xip-iot-feature-text {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.6;
    font-weight: 400;
}

/* Hero Section */
.xip-iot-hero-section {
    background: linear-gradient(135deg, #083d59 0%, #083d59 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

    .xip-iot-hero-section::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 50%;
        top: -100px;
        right: -100px;
    }

    .xip-iot-hero-section::after {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 50%;
        bottom: -80px;
        left: -80px;
    }

.xip-iot-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.xip-iot-hero-content {
    color: #ffffff;
}

.xip-iot-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.xip-iot-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #e5bf36;
}

.xip-iot-hero-title-highlight {
    font-style: italic;
    color: #d0d0d0;
}

.xip-iot-hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 550px;
    font-weight: 400;
}

.xip-iot-hero-button {
    display: inline-block;
    padding: 0.938rem 2.25rem;
    background: #ffffff;
    color: #083d59;
    font-size: 0.938rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

    .xip-iot-hero-button:hover {
        background: transparent;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

.xip-iot-hero-sidebar {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.xip-iot-features-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.xip-iot-features-title {
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #6c757d;
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
    grid-column: 1 / -1;
}

.xip-iot-feature-box {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

    .xip-iot-feature-box:hover {
        background: #ffffff;
        border-color: #083d59;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

.xip-iot-feature-box-icon {
    width: 45px;
    height: 45px;
    background: rgba(8, 61, 89, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(8, 61, 89, 0.3);
    box-shadow: 0 4px 15px rgba(8, 61, 89, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .xip-iot-feature-box-icon i {
        font-size: 1.125rem;
        color: #083d59;
    }



.xip-iot-feature-box-title {
    font-size: 0.938rem;
    font-weight: 600;
    color: #1f1f1f;
    margin: 0;
}

.xip-iot-feature-box-text {
    font-size: 0.813rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

/* Hero Stats Row */
.xip-iot-stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 2rem;
}

.xip-iot-stats-title {
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #6c757d;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    grid-column: 1 / -1;
    text-align: left;
}

.xip-iot-stat-item {
    text-align: center;
    padding: 1.25rem 0.75rem;
    border-radius: 12px;
    background: rgba(8, 61, 89, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(8, 61, 89, 0.3);
    box-shadow: 0 4px 15px rgba(8, 61, 89, 0.2);
    color: #083d59;
    transition: all 0.3s ease;
}

    .xip-iot-stat-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(8, 61, 89, 0.3);
        background: rgba(8, 61, 89, 0.2);
    }

.xip-iot-stat-number {
    font-size: 1.75rem;
    font-weight: 600;
    color: #083d59;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.xip-iot-stat-label {
    font-size: 0.75rem;
    color: #083d59;
    font-weight: 500;
    line-height: 1.3;
}


/* Content Sections */
.xip-iot-content-section {
    padding: 5rem 0;
    background: #ffffff;
}

    .xip-iot-content-section.xip-iot-alt-bg {
        background: #f8f9fa;
    }

.xip-iot-section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.xip-iot-section-eyebrow {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f0f0f0;
    color: #083d59;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.xip-iot-section-title {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #1f1f1f;
    line-height: 1.2;
}

.xip-iot-section-subtitle {
    font-size: 1.063rem;
    color: #6c757d;
    line-height: 1.6;
    font-weight: 400;
}

/* Service Cards */
.xip-iot-service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.25rem;
    height: 100%;
    border: 1px solid #e9ecef;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

    .xip-iot-service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #083d59, #1c6c97);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .xip-iot-service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border-color: #083d59;
    }

        .xip-iot-service-card:hover::before {
            opacity: 1;
        }

.xip-iot-service-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.xip-iot-service-card:hover .xip-iot-service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.xip-iot-service-icon i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #083d59, #1c6c97);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.xip-iot-service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f1f1f;
}

.xip-iot-service-description {
    font-size: 0.938rem;
    color: #6c757d;
    line-height: 1.7;
    font-weight: 400;
}

/* How Section */
.xip-iot-how-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 0;
    position: relative;
}

.xip-iot-how-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.xip-iot-how-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.25rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

    .xip-iot-how-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background: linear-gradient(180deg, #083d59, #1c6c97);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .xip-iot-how-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        border-color: #083d59;
    }

        .xip-iot-how-card:hover::before {
            opacity: 1;
        }

.xip-iot-how-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.xip-iot-how-step-badge {
    position: relative;
}

.xip-iot-how-step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #083d59 0%, #1c6c97 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    color: #e0e0e0;
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s ease;
}

.xip-iot-how-card:hover .xip-iot-how-step-number {
    transform: scale(1.1) rotate(-5deg);
}

.xip-iot-how-icon {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

    .xip-iot-how-icon i {
        font-size: 0.938rem;
        color: #083d59;
    }

.xip-iot-how-card-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1f1f1f;
    margin: 0;
    flex: 1;
}

.xip-iot-how-card-description {
    font-size: 0.938rem;
    color: #6c757d;
    line-height: 1.8;
    font-weight: 400;
}

.xip-iot-how-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 100%;
}

/* Feature Grid with Images */
.xip-iot-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.xip-iot-feature-card-image {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: all 0.4s ease;
    height: 100%;
}

    .xip-iot-feature-card-image:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    }

.xip-iot-feature-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: #f8f9fa;
}

.xip-iot-feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.xip-iot-feature-card-image:hover .xip-iot-feature-image {
    transform: scale(1.08);
}

.xip-iot-feature-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    width: 50px;
    height: 50px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

    .xip-iot-feature-badge i {
        font-size: 1.375rem;
        color: #083d59;
    }

.xip-iot-feature-card-content {
    padding: 2rem;
}

.xip-iot-feature-card-title {
    font-size: 1.188rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f1f1f;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.xip-iot-feature-arrow {
    margin-left: auto;
    color: #083d59;
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.xip-iot-feature-card-image:hover .xip-iot-feature-arrow {
    transform: translateX(5px);
}

.xip-iot-feature-card-text {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.6;
    font-weight: 400;
}

/* Feature List Items */
.xip-iot-feature-list-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.875rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

    .xip-iot-feature-list-item:hover {
        transform: translateX(8px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        border-color: #083d59;
    }

.xip-iot-feature-list-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 0.75rem;
}

.xip-iot-feature-list-description {
    font-size: 0.938rem;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* Challenge Cards */
.xip-iot-challenge-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 2.25rem;
    height: 100%;
    border: 1px solid #e9ecef;
    transition: all 0.4s ease;
}

    .xip-iot-challenge-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    }

.xip-iot-challenge-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

    .xip-iot-challenge-icon i {
        font-size: 1.75rem;
        background: linear-gradient(135deg, #083d59 0%, #1c6c97 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.xip-iot-challenge-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f1f1f;
}

.xip-iot-challenge-description {
    font-size: 0.938rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.xip-iot-solution-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f0f0f0;
    color: #505050;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.xip-iot-solution-text {
    font-size: 0.938rem;
    color: #505050;
    line-height: 1.7;
    font-weight: 500;
}

/* CTA Section */
.xip-iot-cta-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.xip-iot-cta-card {
    background: linear-gradient(135deg, #083d59 0%, #1c6c97 100%);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.xip-iot-cta-title {
    color: #e5bf36;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.xip-iot-cta-description {
    font-size: 1.063rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.xip-iot-cta-button {
    display: inline-block;
    padding: 1.125rem 2.75rem;
    background: #ffffff;
    color: #083d59;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .xip-iot-cta-button:hover {
        background: #e0e0e0;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

/* Responsive */
@media (max-width: 992px) {
    .xip-iot-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .xip-iot-hero-sidebar {
        max-width: 600px;
        margin: 0 auto;
    }

    .xip-iot-content-section {
        padding: 4rem 0;
    }

    .xip-iot-how-grid {
        grid-template-columns: 1fr;
    }

    .xip-iot-how-card:last-child:nth-child(odd) {
        grid-column: auto;
    }

    .xip-iot-intro-section {
        padding: 2.5rem 0;
    }

    .xip-iot-stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .xip-iot-service-card,
    .xip-iot-challenge-card {
        margin-bottom: 1.5rem;
    }

    .xip-iot-cta-card {
        padding: 3rem 2rem;
    }

    .xip-iot-how-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .xip-iot-how-step-number {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .xip-iot-features-grid-2col {
        grid-template-columns: 1fr;
    }

    .xip-iot-logo-text {
        font-size: 1.25rem;
    }

    .xip-iot-intro-title {
        font-size: 1.25rem;
    }

    .xip-iot-stats-wrapper {
        grid-template-columns: 1fr;
    }
}
:root {
    --ai-kiosk-based-primary: #083d59;
    --ai-kiosk-based-dark: #1d1d1f;
    --ai-kiosk-based-light-gray: #f5f5f7;
    --ai-kiosk-based-white: #ffffff;
    --ai-kiosk-based-accent: #e2b923;
    --ai-kiosk-based-light-blue: #f1f5f8;
    --ai-kiosk-based-text-dark: #1d1d1f;
    --ai-kiosk-based-text-muted: #6e6e73;
    --ai-kiosk-based-border: #d2d2d7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: #FFFFFF;
    color: var(--ai-kiosk-based-text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Hero Section - Light Blue Background */
.ai-kiosk-based-hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--ai-kiosk-based-light-blue) 0%, var(--ai-kiosk-based-light-gray) 100%);
}

.ai-kiosk-based-hero-content h1 {
    font-size: 40px;
    font-weight: 600;
    color: var(--ai-kiosk-based-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.ai-kiosk-based-hero-content .ai-kiosk-based-subtitle {
    font-size: 16px;
    color: var(--ai-kiosk-based-text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 600px;
}

/* Hero Image Styling - CENTERED & FIXED */
.ai-kiosk-based-hero-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.ai-kiosk-based-hero-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(8, 61, 89, 0.15);
    background: linear-gradient(135deg, var(--ai-kiosk-based-primary), var(--ai-kiosk-based-accent));
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.ai-kiosk-based-hero-img {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

    .ai-kiosk-based-hero-img:hover {
        transform: scale(1.02);
    }

.ai-kiosk-based-hero-image-placeholder {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(8, 61, 89, 0.95), rgba(8, 61, 89, 0.8));
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    padding: 2rem;
    flex-direction: column;
}

    .ai-kiosk-based-hero-image-placeholder i {
        font-size: 5rem;
        display: block;
        margin-bottom: 1rem;
        opacity: 0.6;
    }

/* CTA Buttons */
.ai-kiosk-based-cta-btn {
    background: var(--ai-kiosk-based-primary);
    color: white;
    padding: 14px 36px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--ai-kiosk-based-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .ai-kiosk-based-cta-btn:hover {
        background: var(--ai-kiosk-based-dark);
        border-color: var(--ai-kiosk-based-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(8, 61, 89, 0.3);
        color: white;
    }

.ai-kiosk-based-cta-btn-outline {
    background: transparent;
    border: 2px solid var(--ai-kiosk-based-primary);
    color: var(--ai-kiosk-based-primary);
}

    .ai-kiosk-based-cta-btn-outline:hover {
        background: var(--ai-kiosk-based-primary);
        color: white;
    }

/* Stats Section - White Background with Animated Circles */
.ai-kiosk-based-stats-section {
    background: var(--ai-kiosk-based-white);
    padding: 100px 0;
    border-top: 1px solid var(--ai-kiosk-based-border);
    position: relative;
    overflow: hidden;
}

.ai-kiosk-based-stats-container {
    position: relative;
    z-index: 2;
}

.ai-kiosk-based-stat-circle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.ai-kiosk-based-stat-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ai-kiosk-based-primary), var(--ai-kiosk-based-accent));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(8, 61, 89, 0.15);
    transition: all 0.4s ease;
    animation: ai-kiosk-based-float 3s ease-in-out infinite;
}

    .ai-kiosk-based-stat-circle:hover {
        transform: scale(1.1);
        box-shadow: 0 15px 60px rgba(8, 61, 89, 0.25);
    }

    .ai-kiosk-based-stat-circle::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 3px solid var(--ai-kiosk-based-accent);
        opacity: 0;
        animation: ai-kiosk-based-ripple 2s ease-out infinite;
    }

@keyframes ai-kiosk-based-float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes ai-kiosk-based-ripple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.ai-kiosk-based-stat-circle:nth-child(2) {
    animation-delay: 0.3s;
}

.ai-kiosk-based-stat-circle:nth-child(3) {
    animation-delay: 0.6s;
}

.ai-kiosk-based-stat-circle:nth-child(4) {
    animation-delay: 0.9s;
}

.ai-kiosk-based-stat-number {
    font-size: 3.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.ai-kiosk-based-stat-label {
    font-size: 1rem;
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 0 1rem;
}

.ai-kiosk-based-stat-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Features Section - Light Gray Background */
.ai-kiosk-based-features-section {
    padding: 100px 0;
    background: var(--ai-kiosk-based-light-gray);
}

.ai-kiosk-based-feature-card {
    background: var(--ai-kiosk-based-white);
    border: 1px solid var(--ai-kiosk-based-border);
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

    .ai-kiosk-based-feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 32px rgba(8, 61, 89, 0.15);
        border-color: var(--ai-kiosk-based-primary);
    }

.ai-kiosk-based-feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--ai-kiosk-based-primary), var(--ai-kiosk-based-accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.ai-kiosk-based-feature-card:hover .ai-kiosk-based-feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.ai-kiosk-based-feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--ai-kiosk-based-text-dark);
}

.ai-kiosk-based-feature-description {
    color: var(--ai-kiosk-based-text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* AI Capabilities Section - White Background */
.ai-kiosk-based-capabilities-section {
    padding: 100px 0;
    background: var(--ai-kiosk-based-white);
}

.ai-kiosk-based-capability-card {
    background: var(--ai-kiosk-based-light-blue);
    border-left: 4px solid var(--ai-kiosk-based-primary);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

    .ai-kiosk-based-capability-card:hover {
        transform: translateX(8px);
        box-shadow: 0 8px 24px rgba(8, 61, 89, 0.1);
        background: var(--ai-kiosk-based-light-gray);
    }

.ai-kiosk-based-capability-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.ai-kiosk-based-capability-icon {
    font-size: 2rem;
    color: var(--ai-kiosk-based-primary);
    margin-right: 1.5rem;
    min-width: 50px;
}

.ai-kiosk-based-capability-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ai-kiosk-based-text-dark);
    margin: 0;
}

.ai-kiosk-based-capability-description {
    color: var(--ai-kiosk-based-text-muted);
    line-height: 1.7;
    padding-left: 65px;
}

/* Benefits Section - Light Gray Background */
.ai-kiosk-based-benefits-section {
    padding: 100px 0;
    background: var(--ai-kiosk-based-light-gray);
}

.ai-kiosk-based-benefit-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.ai-kiosk-based-benefit-item {
    background: white;
    border: 1px solid var(--ai-kiosk-based-border);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    flex: 0 1 calc(16.666% - 2rem);
    min-width: 150px;
}

    .ai-kiosk-based-benefit-item:hover {
        border-color: var(--ai-kiosk-based-accent);
        box-shadow: 0 8px 24px rgba(8, 61, 89, 0.1);
        transform: translateY(-5px);
    }

.ai-kiosk-based-benefit-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--ai-kiosk-based-primary), var(--ai-kiosk-based-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.ai-kiosk-based-benefit-label {
    font-size: 0.95rem;
    color: var(--ai-kiosk-based-text-muted);
    font-weight: 500;
}

/* Industries Section - White Background */
.ai-kiosk-based-industries-section {
    padding: 100px 0;
    background: var(--ai-kiosk-based-white);
}

.ai-kiosk-based-industry-card {
    background: white;
    border: 1px solid var(--ai-kiosk-based-border);
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .ai-kiosk-based-industry-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--ai-kiosk-based-primary), var(--ai-kiosk-based-accent));
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .ai-kiosk-based-industry-card:hover::before {
        transform: scaleX(1);
    }

    .ai-kiosk-based-industry-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 32px rgba(8, 61, 89, 0.15);
    }

.ai-kiosk-based-industry-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--ai-kiosk-based-primary), var(--ai-kiosk-based-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.ai-kiosk-based-industry-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ai-kiosk-based-text-dark);
    margin-bottom: 1rem;
}

.ai-kiosk-based-industry-description {
    color: var(--ai-kiosk-based-text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Implementation Process Section - Light Gray Background */
.ai-kiosk-based-process-section {
    padding: 100px 0;
    background: var(--ai-kiosk-based-light-gray);
    position: relative;
}

.ai-kiosk-based-process-container {
    margin-top: 3rem;
}

.ai-kiosk-based-process-card {
    background: white;
    border: 1px solid var(--ai-kiosk-based-border);
    border-radius: 12px;
    padding: 0;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .ai-kiosk-based-process-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--ai-kiosk-based-primary), var(--ai-kiosk-based-accent));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .ai-kiosk-based-process-card:hover::before {
        transform: scaleX(1);
    }

    .ai-kiosk-based-process-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 60px rgba(8, 61, 89, 0.2);
        border-color: var(--ai-kiosk-based-primary);
    }

.ai-kiosk-based-process-card-header {
    background: linear-gradient(135deg, var(--ai-kiosk-based-light-blue) 0%, var(--ai-kiosk-based-white) 100%);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.ai-kiosk-based-process-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid var(--ai-kiosk-based-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--ai-kiosk-based-primary);
    box-shadow: 0 4px 12px rgba(8, 61, 89, 0.15);
}

.ai-kiosk-based-process-icon-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--ai-kiosk-based-primary), var(--ai-kiosk-based-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(8, 61, 89, 0.3);
    transition: all 0.3s ease;
}

.ai-kiosk-based-process-card:hover .ai-kiosk-based-process-icon-circle {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 32px rgba(8, 61, 89, 0.4);
}

.ai-kiosk-based-process-icon-circle i {
    font-size: 2.5rem;
    color: white;
}

.ai-kiosk-based-process-card-body {
    padding: 2rem;
}

.ai-kiosk-based-process-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ai-kiosk-based-text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.ai-kiosk-based-process-card-description {
    color: var(--ai-kiosk-based-text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.ai-kiosk-based-process-duration {
    display: inline-flex;
    align-items: center;
    background: var(--ai-kiosk-based-light-blue);
    color: var(--ai-kiosk-based-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

    .ai-kiosk-based-process-duration i {
        margin-right: 0.5rem;
    }

/* Connecting Lines for Desktop */
.ai-kiosk-based-process-connector {
    display: none;
}

@media (min-width: 992px) {
    .ai-kiosk-based-process-card {
        position: relative;
    }

    .ai-kiosk-based-process-connector {
        display: block;
        position: absolute;
        top: 50%;
        right: -2rem;
        width: 4rem;
        height: 2px;
        background: linear-gradient(90deg, var(--ai-kiosk-based-primary), transparent);
        transform: translateY(-50%);
    }

        .ai-kiosk-based-process-connector::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid var(--ai-kiosk-based-primary);
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
        }

    .col-lg-4:nth-child(3) .ai-kiosk-based-process-connector,
    .col-lg-4:nth-child(6) .ai-kiosk-based-process-connector {
        display: none;
    }
}

/* Timeline Progress Visualization */
.ai-kiosk-based-timeline-progress {
    padding: 3rem 0 1rem;
}

.ai-kiosk-based-timeline-progress-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.ai-kiosk-based-timeline-progress-bar {
    height: 6px;
    background: linear-gradient(90deg, var(--ai-kiosk-based-primary) 0%, var(--ai-kiosk-based-accent) 100%);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 4px 16px rgba(8, 61, 89, 0.2);
}

.ai-kiosk-based-timeline-milestones {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}

.ai-kiosk-based-timeline-milestone {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.ai-kiosk-based-milestone-dot {
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--ai-kiosk-based-primary);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(8, 61, 89, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.ai-kiosk-based-milestone-label {
    position: absolute;
    top: 35px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ai-kiosk-based-text-muted);
    white-space: nowrap;
}

.ai-kiosk-based-timeline-summary {
    text-align: center;
    margin-top: 4rem;
}

.ai-kiosk-based-timeline-total {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--ai-kiosk-based-light-blue), var(--ai-kiosk-based-light-gray));
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    color: var(--ai-kiosk-based-text-dark);
    box-shadow: 0 4px 16px rgba(8, 61, 89, 0.1);
}

    .ai-kiosk-based-timeline-total i {
        font-size: 1.5rem;
        color: var(--ai-kiosk-based-primary);
        margin-right: 1rem;
    }

    .ai-kiosk-based-timeline-total strong {
        margin-right: 0.5rem;
    }

/* Case Studies Section - White Background */
.ai-kiosk-based-case-studies-section {
    padding: 100px 0;
    background: var(--ai-kiosk-based-white);
}

.ai-kiosk-based-case-study-card {
    background: white;
    border: 1px solid var(--ai-kiosk-based-border);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

    .ai-kiosk-based-case-study-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 48px rgba(8, 61, 89, 0.15);
    }

.ai-kiosk-based-case-study-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ai-kiosk-based-primary), var(--ai-kiosk-based-accent));
    position: relative;
}

.ai-kiosk-based-case-study-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

    .ai-kiosk-based-case-study-image-placeholder i {
        font-size: 4rem;
        margin-bottom: 1rem;
        opacity: 0.7;
    }

.ai-kiosk-based-case-study-content {
    padding: 2rem;
}

.ai-kiosk-based-case-study-tag {
    display: inline-block;
    background: var(--ai-kiosk-based-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ai-kiosk-based-case-study-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ai-kiosk-based-text-dark);
    margin-bottom: 1rem;
}

.ai-kiosk-based-case-study-description {
    color: var(--ai-kiosk-based-text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ai-kiosk-based-case-study-result {
    background: var(--ai-kiosk-based-light-blue);
    border-left: 3px solid var(--ai-kiosk-based-accent);
    padding: 1rem;
    border-radius: 4px;
    color: var(--ai-kiosk-based-text-dark);
    font-size: 0.95rem;
}

/* Gallery Section - Light Gray Background */
.ai-kiosk-based-gallery-section {
    padding: 100px 0;
    background: var(--ai-kiosk-based-light-gray);
}

.ai-kiosk-based-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ai-kiosk-based-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    border: 1px solid var(--ai-kiosk-based-border);
    transition: all 0.3s ease;
}

    .ai-kiosk-based-gallery-item:hover {
        transform: scale(1.03);
        box-shadow: 0 12px 32px rgba(8, 61, 89, 0.2);
    }

.ai-kiosk-based-gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ai-kiosk-based-primary), var(--ai-kiosk-based-accent));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .ai-kiosk-based-gallery-placeholder i {
        font-size: 3rem;
        margin-bottom: 1rem;
        opacity: 0.8;
    }

.ai-kiosk-based-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(29, 29, 31, 0.95), transparent);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.ai-kiosk-based-gallery-item:hover .ai-kiosk-based-gallery-overlay {
    transform: translateY(0);
}

.ai-kiosk-based-gallery-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ai-kiosk-based-gallery-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Technology Stack - White Background */
.ai-kiosk-based-tech-section {
    padding: 80px 0;
    background: var(--ai-kiosk-based-white);
}

.ai-kiosk-based-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ai-kiosk-based-tech-item {
    background: var(--ai-kiosk-based-light-blue);
    border: 1px solid var(--ai-kiosk-based-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

    .ai-kiosk-based-tech-item:hover {
        border-color: var(--ai-kiosk-based-accent);
        box-shadow: 0 8px 24px rgba(8, 61, 89, 0.1);
    }

.ai-kiosk-based-tech-icon {
    font-size: 3rem;
    color: var(--ai-kiosk-based-primary);
    margin-bottom: 1rem;
}

.ai-kiosk-based-tech-label {
    font-size: 1rem;
    color: var(--ai-kiosk-based-text-dark);
    font-weight: 500;
}

/* Final CTA Section - Dark Gradient - ONE ROW LAYOUT */
.ai-kiosk-based-final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--ai-kiosk-based-primary) 0%, var(--ai-kiosk-based-dark) 100%);
    position: relative;
    overflow: hidden;
}

    .ai-kiosk-based-final-cta-section::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(226, 185, 35, 0.2) 0%, transparent 70%);
        top: -100px;
        right: -100px;
        border-radius: 50%;
    }

.ai-kiosk-based-cta-content {
    position: relative;
    z-index: 2;
    color: white;
}

.ai-kiosk-based-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
    text-align: left;
}

.ai-kiosk-based-cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.95;
    color: white;
    text-align: left;
}

.ai-kiosk-based-cta-btn-white {
    background: white;
    color: var(--ai-kiosk-based-primary);
    border-color: white;
    padding: 16px 48px;
    font-size: 1.1rem;
    border: 2px solid white;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .ai-kiosk-based-cta-btn-white:hover {
        background: var(--ai-kiosk-based-accent);
        color: white;
        border-color: var(--ai-kiosk-based-accent);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(226, 185, 35, 0.3);
    }

/* Section Titles */
.ai-kiosk-based-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--ai-kiosk-based-text-dark);
}

.ai-kiosk-based-section-subtitle {
    text-align: center;
    color: var(--ai-kiosk-based-text-muted);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .ai-kiosk-based-hero-content h1 {
        font-size: 3rem;
    }

    .ai-kiosk-based-hero-img {
        max-height: 450px;
    }

    .ai-kiosk-based-hero-image-container {
        margin-top: 3rem;
    }

    .ai-kiosk-based-section-title {
        font-size: 2.3rem;
    }

    .ai-kiosk-based-cta-title {
        font-size: 2rem;
        text-align: center;
    }

    .ai-kiosk-based-cta-subtitle {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .ai-kiosk-based-final-cta-section {
        padding: 60px 0;
    }

    .ai-kiosk-based-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .ai-kiosk-based-timeline-milestones {
        position: relative;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .ai-kiosk-based-milestone-label {
        position: static;
        margin-top: 0.5rem;
    }

    .ai-kiosk-based-timeline-progress-bar {
        display: none;
    }

    .ai-kiosk-based-stat-circle {
        width: 180px;
        height: 180px;
    }

    .ai-kiosk-based-stat-number {
        font-size: 2.8rem;
    }

    .ai-kiosk-based-benefit-item {
        flex: 0 1 calc(33.333% - 2rem);
    }
}

@media (max-width: 768px) {
    .ai-kiosk-based-hero-content h1 {
        font-size: 2.3rem;
        text-align: center;
    }

    .ai-kiosk-based-hero-content .ai-kiosk-based-subtitle {
        font-size: 1.2rem;
        text-align: center;
        max-width: 100%;
    }

    .ai-kiosk-based-hero-content > div {
        text-align: center;
    }

    .ai-kiosk-based-hero-img {
        max-height: 400px;
    }

    .ai-kiosk-based-hero-image-wrapper {
        border-radius: 12px;
    }

    .ai-kiosk-based-section-title {
        font-size: 2rem;
    }

    .ai-kiosk-based-section-subtitle {
        font-size: 1rem;
    }

    .ai-kiosk-based-cta-title {
        font-size: 1.8rem;
    }

    .ai-kiosk-based-cta-subtitle {
        font-size: 1rem;
    }

    .ai-kiosk-based-cta-btn-white {
        padding: 14px 36px;
        font-size: 1rem;
        width: 100%;
    }

    .ai-kiosk-based-stat-circle {
        width: 160px;
        height: 160px;
    }

    .ai-kiosk-based-stat-number {
        font-size: 2.5rem;
    }

    .ai-kiosk-based-stat-label {
        font-size: 0.9rem;
    }

    .ai-kiosk-based-capability-description {
        padding-left: 0;
        margin-top: 1rem;
    }

    .ai-kiosk-based-gallery-grid {
        grid-template-columns: 1fr;
    }

    .ai-kiosk-based-tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
    }

    .ai-kiosk-based-process-card-header {
        padding: 1.5rem;
    }

    .ai-kiosk-based-process-icon-circle {
        width: 75px;
        height: 75px;
    }

        .ai-kiosk-based-process-icon-circle i {
            font-size: 2rem;
        }

    .ai-kiosk-based-process-card-body {
        padding: 1.5rem;
    }

    .ai-kiosk-based-process-card-title {
        font-size: 1.2rem;
    }

    .ai-kiosk-based-timeline-total {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        flex-direction: column;
        text-align: center;
    }

        .ai-kiosk-based-timeline-total i {
            margin-right: 0;
            margin-bottom: 0.5rem;
        }

    .ai-kiosk-based-benefit-item {
        flex: 0 1 calc(50% - 2rem);
    }

    .ai-kiosk-based-benefit-number {
        font-size: 2.5rem;
    }

    .ai-kiosk-based-cta-btn {
        padding: 12px 28px;
        font-size: 0.95rem;
        width: 100%;
        margin: 0 0 10px 0;
    }
}

@media (max-width: 576px) {
    .ai-kiosk-based-hero-content h1 {
        font-size: 2rem;
    }

    .ai-kiosk-based-hero-content .ai-kiosk-based-subtitle {
        font-size: 1.1rem;
    }

    .ai-kiosk-based-hero-img {
        max-height: 320px;
    }
}
