/* Reset and Base Styles */
:root {
    /* Purple to Teal Gradient Color Scheme */
    --primary-purple: #8B5CF6;
    --primary-blue: #6366F1;
    --primary-teal: #06B6D4;
    --primary-cyan: #00D9FF;
    
    /* Button Specific Variables */
    --bd-gradient-1: linear-gradient(90deg, #B242E3, #23E1E7, #23E1E7, #B242E3);
    --bd-common-white: #FFFFFF;
    --bd-fw-sbold: 600;
    
    /* Gradient Backgrounds */
    --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #6366F1 25%, #3B82F6 50%, #06B6D4 75%, #00D9FF 100%);
    --gradient-secondary: linear-gradient(135deg, #A855F7 0%, #8B5CF6 50%, #06B6D4 100%);
    --gradient-accent: linear-gradient(135deg, #6366F1 0%, #3B82F6 50%, #06B6D4 100%);
    
    /* Supporting Colors */
    --white: #FFFFFF;
    --light-gray: #F8FAFC;
    --medium-gray: #64748B;
    --dark-text: #1E293B;
    --overlay-dark: rgba(139, 92, 246, 0.9);
    --overlay-light: rgba(6, 182, 212, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
    background: var(--gradient-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: var(--gradient-secondary);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    min-height: 60px;
}

@media (max-width: 1023px) {
    .header-content {
        padding: 16px 0;
    }
}

/* Logo */
.logo-link {
    display: inline-block;
    text-decoration: none;
}

.logo img {
    height: auto;
    width: 162px;
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: block;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 12px 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary-cyan);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);
    padding: 24px;
    min-width: 800px;
    max-width: 90vw;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 8px;
    z-index: 1001;
}

@media (max-width: 1200px) {
    .dropdown-menu {
        min-width: 600px;
        padding: 20px;
    }
}

@media (max-width: 900px) {
    .dropdown-menu {
        min-width: 90vw;
        left: 10px;
        right: 10px;
        transform: none;
        padding: 16px;
    }
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.dropdown-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.dropdown-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.dropdown-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dropdown-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s ease;
}

.dropdown-link:hover {
    background-color: #f8f9fa;
}

.dropdown-icon img {
    width: 32px;
    height: 32px;
}

.dropdown-info {
    display: flex;
    flex-direction: column;
}

.dropdown-info .title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
}

.dropdown-info .desc {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

/* Header Buttons */
.header-buttons {
    display: none;
    align-items: center;
    gap: 12px;
}

@media (min-width: 1024px) {
    .header-buttons {
        display: flex;
    }
}

.btn-login {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-login:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-demo {
    background: var(--gradient-accent);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-demo:hover {
    background: var(--gradient-primary);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-secondary);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-content {
    padding: 20px;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-close {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 24px;
    height: 24px;
}

.mobile-nav-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background-color: white;
}

.mobile-nav-close span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-nav-close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.mobile-nav-item {
    display: block;
    color: white;
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

.mobile-nav-trigger {
    width: 100%;
    background: none;
    border: none;
    color: white;
    text-align: left;
    padding: 16px 0;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 20px;
}

.mobile-nav-dropdown.active {
    max-height: 500px;
}

.mobile-nav-link {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 12px 0;
    font-size: 14px;
}

.mobile-nav-link:hover {
    color: #3BECD4;
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

.btn-login.mobile,
.btn-demo.mobile {
    text-align: center;
    padding: 16px;
    font-size: 16px;
}

/* Adjust hero section for fixed header */
.hero {
    padding-top: 150px; /* Increased to accommodate header */
    color: white;
    text-align: center;
    position: relative;
    background-color: #0e2935;
    min-height: 66vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
    background-color: #0e2935;
}

.partnership-logo {
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.partnership-logo img {
    height: 20px;
    filter: brightness(0) invert(1);
}

.hero h1 {
    font-family: DMSansCustom, Sans-serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 62.4px;
    letter-spacing: -1.04px;
    color: #fff;
    
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
        max-width: 944px;
    text-align: center;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.btn-primary {
    background: linear-gradient(135deg, #A855F7 0%, #8B5CF6 50%, #06B6D4 100%);
    color: #fff;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.play-icon {
    width: 24px;
    height: 24px;
    background: #0B2A2E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-secondary:hover .play-icon {
    background: #3BECD4;
}

.rating {
    margin-bottom: 0px;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

.rating img {
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Logo Ticker */
.ticker-container {
    height: 88px;
    overflow: hidden;
    position: relative;
    width: 100%;
    mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.ticker-track {
    display: flex;
    animation: scroll 45s linear infinite;
    gap: 40px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: max-content;
}

.ticker-item {
    flex-shrink: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    padding: 0 20px;
}

.ticker-item:hover {
    opacity: 1;
}

.ticker-item img {
    max-height: 50px;
    max-width: 150px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.7);
    transition: filter 0.3s ease;
}

.ticker-item:hover img {
    filter: brightness(0) invert(1) opacity(1);
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: #0e2935;
    margin-top: 0px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card Showcase Styles */
.card-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.card-glow-circle {
    position: relative;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border: 2px solid #00D4FF;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
    }
}

.Mesh-card {
    width: 350px;
    height: 220px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

.Mesh-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/background-card.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    border-radius: 16px;
}

.Mesh-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.Mesh-card .brand-logo {
    font-size: 24px;
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.bank-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.Mesh-card .bank-name {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 1px;
}

.contactless-icon {
    font-size: 18px;
    transform: rotate(-90deg);
    opacity: 0.8;
}

.Mesh-card .card-main {
    position: relative;
    z-index: 2;
    margin: 15px 0;
}

.Mesh-card .emv-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 6px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.chip-image {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    object-fit: cover;
}

.Mesh-card .card-number {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-family: 'Courier New', monospace;
}

.Mesh-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

.card-validity {
    display: flex;
    flex-direction: column;
}

.validity-label {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.validity-date {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.cardholder-name {
    font-size: 14px;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
}

.visa-logo {
    background: white;
    color: #1e40af;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-glow-circle {
        width: 400px;
        height: 400px;
    }
    
    .Mesh-card {
        width: 280px;
        height: 175px;
        padding: 20px;
    }
    
    .Mesh-card .brand-logo {
        font-size: 20px;
    }
    
    .Mesh-card .card-number {
        font-size: 18px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .card-glow-circle {
        width: 320px;
        height: 320px;
    }
    
    .Mesh-card {
        width: 240px;
        height: 150px;
        padding: 16px;
    }
    
    .Mesh-card .card-number {
        font-size: 16px;
    }
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: linear-gradient(135deg, #1A4B52 0%, #0B2A2E 100%);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Comprehensive Solutions Section */
.comprehensive-solutions {
    padding: 100px 0;
    background: #f8f9fa;
    color: #0B202A;
}

.comprehensive-solutions .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.comprehensive-solutions .section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0B202A;
}

.comprehensive-solutions .section-header p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1300px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px;
    }
}

.solution-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 8px 25px rgba(48, 92, 113, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
       justify-content: center;
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 20px 40px rgba(48, 92, 113, 0.15);
}

.solution-visual {
    height: 280px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #9f9c9c2e;
    position: relative;
}

.solution-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.solution-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #0B202A;
}

.solution-content p {
    font-size: 1rem;
    line-height: normal;
    color: #6c757d;
    text-align: center;
    margin-bottom: 32px;
    /* flex: 1; */
}

.solution-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 31px;
    border-radius: 6px;
    border: 1px solid #0B202A;
    color: #0B202A;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
    justify-content: center;
    max-width: 190px;
    width: 100%;
    margin: 0 auto;
}

.solution-btn:hover {
    background: #0B202A;
    color: white;
}

/* Expense Cards Visual */
.expense-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: rotate(-5deg);
    animation: floatCards 6s ease-in-out infinite;
}

@keyframes floatCards {
    0%, 100% { transform: rotate(-5deg) translateY(0px); }
    50% { transform: rotate(-5deg) translateY(-8px); }
}

.expense-card {
    width: 260px;
    height: 80px;
    border-radius: 12px;
    padding: 16px 20px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    animation: slideInLeft 0.8s ease-out;
}

.expense-card.uber {
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    animation-delay: 0.2s;
}

.expense-card.hilton {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    transform: translateX(20px);
    animation-delay: 0.4s;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-icon {
    width: 24px;
    height: 24px;
}

.card-title {
    font-weight: 500;
    font-size: 14px;
    flex: 1;
}

.card-amount {
    font-weight: 600;
    font-size: 16px;
}

.card-date {
    font-size: 12px;
    opacity: 0.8;
    position: absolute;
    bottom: 16px;
    left: 20px;
}

.card-status {
    position: absolute;
    bottom: 16px;
    right: 20px;
    width: 20px;
    height: 20px;
}

/* Globe Visual */
.globe-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.globe {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateGlobe 20s linear infinite;
}

@keyframes rotateGlobe {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.globe-grid {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 50% 50%, transparent 40%, rgba(255,255,255,0.1) 41%, rgba(255,255,255,0.1) 42%, transparent 43%),
        linear-gradient(90deg, transparent 48%, rgba(255,255,255,0.1) 49%, rgba(255,255,255,0.1) 51%, transparent 52%),
        linear-gradient(0deg, transparent 48%, rgba(255,255,255,0.1) 49%, rgba(255,255,255,0.1) 51%, transparent 52%);
    background-size: 100% 100%, 30px 30px, 30px 30px;
    border-radius: 50%;
}

.currency-icons {
    position: absolute;
    inset: 0;
    animation: rotateGlobe 20s linear infinite reverse;
}

.currency-icon {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: #1a2332;
    animation: bounceIcon 3s ease-in-out infinite;
}

@keyframes bounceIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.currency-pound {
    background: #F4E4B8;
    top: 20px;
    right: 30px;
    animation-delay: 0s;
}

.currency-dollar {
    background: #F4E4B8;
    bottom: 40px;
    left: 20px;
    animation-delay: 1s;
}

.currency-euro {
    background: #F4E4B8;
    bottom: 20px;
    right: 40px;
    animation-delay: 2s;
}

.travel-arrow {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    animation: pulseArrow 2s ease-in-out infinite;
}

@keyframes pulseArrow {
    0%, 100% { transform: translateY(-50%) translateX(0px); opacity: 1; }
    50% { transform: translateY(-50%) translateX(5px); opacity: 0.7; }
}

/* Cards Stack Visual */
.cards-stack {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.corporate-card {
    width: 200px;
    height: 120px;
    border-radius: 12px;
    position: absolute;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.cards-stack:hover .card-back {
    transform: translateY(-25px) translateX(-20px) rotateY(20deg);
}

.cards-stack:hover .card-middle {
    transform: translateY(-15px) translateX(-12px) rotateY(12deg);
}

.cards-stack:hover .card-front {
    transform: rotateY(-3deg) translateY(-5px);
}

.card-back {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    transform: translateY(-20px) translateX(-15px) rotateY(15deg);
    z-index: 1;
    animation: floatCard1 4s ease-in-out infinite;
}

.card-middle {
    background: linear-gradient(135deg, #2d3748 0%, #1a2332 100%);
    transform: translateY(-10px) translateX(-7px) rotateY(8deg);
    z-index: 2;
    animation: floatCard2 4s ease-in-out infinite;
}

.card-front {
    background: linear-gradient(135deg, #B8A17A 0%, #9D8961 100%);
    transform: rotateY(0deg);
    z-index: 3;
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: floatCard3 4s ease-in-out infinite;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(-20px) translateX(-15px) rotateY(15deg); }
    50% { transform: translateY(-25px) translateX(-15px) rotateY(15deg); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(-10px) translateX(-7px) rotateY(8deg); }
    50% { transform: translateY(-15px) translateX(-7px) rotateY(8deg); }
}

@keyframes floatCard3 {
    0%, 100% { transform: rotateY(0deg) translateY(0px); }
    50% { transform: rotateY(0deg) translateY(-5px); }
}

.card-chip {
    width: 24px;
    height: 18px;
    background: #F4E4B8;
    border-radius: 3px;
    align-self: flex-start;
    animation: chipGlow 3s ease-in-out infinite;
}

@keyframes chipGlow {
    0%, 100% { box-shadow: 0 0 0 rgba(244, 228, 184, 0.5); }
    50% { box-shadow: 0 0 10px rgba(244, 228, 184, 0.8); }
}

.card-logo {
    align-self: flex-end;
    font-weight: 600;
    font-size: 14px;
    margin-top: -20px;
}

.card-number {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    letter-spacing: 2px;
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .comprehensive-solutions {
        padding: 60px 0;
    }
    
    .solution-visual {
        height: 240px;
        padding: 32px;
    }
    
    .expense-card {
        width: 240px;
        height: 70px;
        padding: 12px 16px;
    }
    
    .expense-card.hilton {
        transform: translateX(15px);
    }
    
    .globe {
        width: 150px;
        height: 150px;
    }
    
    .currency-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .corporate-card {
        width: 180px;
        height: 108px;
    }
    
    .card-front {
        padding: 16px;
    }
    
    .solution-content {
        padding: 24px 32px 32px 32px;
    }
    
    /* Reduce animations on mobile for better performance */
    @media (prefers-reduced-motion: reduce) {
        .expense-cards,
        .globe,
        .currency-icons,
        .currency-icon,
        .travel-arrow,
        .corporate-card,
        .card-chip {
            animation: none;
        }
    }
}
 


.feature-btn:hover {
    background-color: #3BECD4;
    border-color: #3BECD4;
    color: #0B202A;
    transform: translateY(-1px);
}

/* Integration Section */
.integration-section {
    padding: 20px 0;
    background: black;
    color: white;
}

.integration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.integration-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
}

.integration-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.integration-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.integration-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: brightness(1.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Custom Button Hover Effect */
.ue_box_button:hover {
    background-color: #7cf2e2;
    border-style: solid;
    border-color: #7cf2e2;
}

/* Existing Video Section Styles - keeping for dashboard preview */
.video-section-old {
    padding: 80px 0;
    background: #0B2A2E;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #1A4B52 0%, #0B2A2E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-preview {
    width: 90%;
    height: 80%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.dashboard-header {
    background: #f8f9fa;
    height: 60px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.dashboard-nav {
    background: #2c3e50;
    width: 200px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 60px;
}

.dashboard-content {
    margin-left: 200px;
    margin-top: 60px;
    padding: 20px;
    height: calc(100% - 60px);
    background: #f8f9fa;
}

.dashboard-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 60px;
    display: flex;
    align-items: center;
}

.dashboard-chart {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #A855F7 0%, #8B5CF6 50%, #06B6D4 100%);
    border-radius: 8px;
    margin-top: 15px;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 20px));
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .video-section {
        padding: 40px 0;
    }

    .video-container {
        margin: 0 20px;
        border-radius: 15px;
    }

    .hero-video {
        border-radius: 15px;
    }

    .features-section {
        padding: 60px 0;
    }

    .features-header {
        margin-bottom: 50px;
    }

    .features-header h2 {
        font-size: 1.8rem;
    }

    .features-header p {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-image {
        height: 200px;
        padding: 20px 24px;
    }

    .feature-content {
        padding: 0 24px 32px 24px;
    }

    .feature-content h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .feature-content p {
        margin-bottom: 24px;
    }

    .feature-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .video-wrapper-old {
        height: 300px;
    }

    .integration-section {
        padding: 60px 0;
    }

    .integration-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .integration-content .integration-text {
        order: 1;
    }

    .integration-content .integration-visual {
        order: 2;
    }

    .integration-text h2 {
        font-size: 2rem;
    }

    .integration-text p {
        font-size: 1.1rem;
    }

    .integration-image {
        max-width: 400px;
    }

    .dashboard-nav {
        width: 120px;
    }

    .dashboard-content {
        margin-left: 120px;
    }
}

@media (max-width: 480px) {
    .integration-section {
        padding: 40px 0;
    }

    .integration-content {
        gap: 30px;
    }

    .integration-text h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .integration-text p {
        font-size: 1rem;
    }

    .integration-image {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .feature-card {
        margin: 0 10px;
    }

    .feature-image {
        height: 180px;
        padding: 16px;
    }

    .feature-content {
        padding: 0 20px 24px 20px;
    }

    .features-header h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
}

/* Global Features Section */
.global-features-section {
    background: #f7fafc;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.global-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(59, 236, 212, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(59, 236, 212, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.global-features-content {
    position: relative;
    z-index: 2;
}

.global-features-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 400;
    color: #1a202c;
    margin-bottom: 80px;
    line-height: 1.2;
}

.global-features-title span {
    color: #3BECD4;
    font-weight: 500;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-box {
    background: white;
    border: 1px solid rgba(59, 236, 212, 0.3);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 236, 212, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-box:hover {
    transform: translateY(-8px);
    border-color: #3BECD4;
    box-shadow: 0 20px 40px rgba(59, 236, 212, 0.15);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
}

.feature-icon svg {
    width: 80px;
    height: 80px;
    transition: transform 0.4s ease;
}

.feature-box:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature-box h3 {
    color: #2d3748;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    position: relative;
    z-index: 3;
}

/* Responsive Design for Global Features */
@media (max-width: 1200px) {
    .global-features-section .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .global-features-title {
        font-size: 3rem;
    }
}

@media (max-width: 900px) {
    .global-features-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .global-features-section {
        padding: 80px 0;
    }
    
    .global-features-title {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }
    
    .feature-box {
        padding: 30px 20px;
    }
    
    .feature-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .feature-box h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .global-features-section .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .global-features-section {
        padding: 60px 0;
    }
    
    .global-features-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .feature-box {
        padding: 25px 15px;
    }
    
    .feature-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .feature-box h3 {
        font-size: 1rem;
    }
}

/* Animation for feature boxes */
@keyframes featureBoxFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.feature-box:nth-child(odd) {
    animation: featureBoxFloat 6s ease-in-out infinite;
}

.feature-box:nth-child(even) {
    animation: featureBoxFloat 6s ease-in-out infinite reverse;
}

/* Customer Testimonial Section */
.testimonial-section {
  background-color: white;
    padding: 80px 0;
    position: relative;
}

.testimonial-container {
    display: grid;
    grid-template-columns: 379px 1fr;
    background: linear-gradient(90deg, #B242E3 20%, #0abcc2 100%);
    gap: 62px;
    max-width: 1160px;
    margin: 0 auto;
    align-items: center;
    border-radius: 40px 40px 40px 40px;
    padding: 48px 40px 48px 48px;
    color: white;
}

.testimonial-visual {
    width: 379px;
    height: 379px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-image {
     width: auto;
    height: -webkit-fill-available;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.testimonial-visual:hover .testimonial-image {
    transform: scale(1.05);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.testimonial-company-logo {
    margin-bottom: 28px;
    max-width: 120px;
}

.testimonial-company-logo img {
    width: 250px;                    
    /* width: 100%; */
    height: auto;
    object-fit: contain;
}

.testimonial-text {
    margin-bottom: 32px;
}

.testimonial-text p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #fff;
    font-weight: 400;
    margin: 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #fff;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #fff;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.author-position {
    font-size: 1rem;
    color: #fff;
    opacity: 0.8;
    margin: 0;
}

/* Responsive Design for Testimonial */
@media (max-width: 1200px) {
    .testimonial-container {
        grid-template-columns: 360px 1fr;
        gap: 50px;
    }
    
    .testimonial-visual {
        width: 360px;
        height: 360px;
    }
}

@media (max-width: 1024px) {
    .testimonial-container {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }
    
    .testimonial-visual {
        width: 300px;
        height: 300px;
    }
    
    .testimonial-text p {
        font-size: 1.3rem;
    }
    
    .testimonial-company-logo {
        margin-bottom: 20px;
        max-width: 100px;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 60px 0;
    }
    
    .testimonial-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .testimonial-visual {
        width: 100%;
        height: 360px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .testimonial-text p {
        font-size: 1.2rem;
    }
    
    .testimonial-author {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .testimonial-section {
        padding: 40px 0;
    }
    
    .testimonial-container {
        gap: 30px;
        padding: 0 20px;
    }
    
    .testimonial-visual {
        height: 280px;
    }
    
    .testimonial-text p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .testimonial-company-logo {
        margin-bottom: 15px;
        max-width: 80px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-position {
        font-size: 0.9rem;
    }
}

/* Global Solutions Section */
.global-solutions-section {
    background: white;
    padding: 100px 0;
    position: relative;
}

.global-solutions-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.global-solutions-content {
    display: flex;
    flex-direction: column;
}

.global-solutions-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.2;
    margin-bottom: 24px;
}

.global-solutions-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 32px;
}

.features-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.features-checklist li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1rem;
    color: #2d3748;
}

.check-icon {
    margin-right: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon svg {
    width: 16px;
    height: 16px;
}

.check-text {
    font-weight: 500;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: transparent;
    border: 2px solid #3BECD4;
    border-radius: 8px;
    color: #3BECD4;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-learn-more:hover {
    background: #3BECD4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 236, 212, 0.3);
}

.global-solutions-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.solutions-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.global-solutions-visual:hover .solutions-image {
    transform: scale(1.02);
}

/* Responsive Design for Global Solutions */
@media (max-width: 1024px) {
    .global-solutions-container {
        gap: 60px;
    }
    
    .global-solutions-content h2 {
        font-size: 2.4rem;
    }
    
    .global-solutions-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .global-solutions-section {
        padding: 80px 0;
    }
    
    .global-solutions-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .global-solutions-content {
        order: 2;
    }
    
    .global-solutions-visual {
        order: 1;
    }
    
    .global-solutions-content h2 {
        font-size: 2rem;
    }
    
    .features-checklist {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 40px auto;
    }
    
    .btn-learn-more {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .global-solutions-section {
        padding: 60px 0;
    }
    
    .global-solutions-container {
        gap: 40px;
        padding: 0 20px;
    }
    
    .global-solutions-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .global-solutions-content p {
        font-size: 0.95rem;
    }
    
    .features-checklist li {
        margin-bottom: 12px;
        font-size: 0.9rem;
    }
    
    .btn-learn-more {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Connected Travel & Expense Section */
.connected-travel-section {
    background: white;
    padding: 100px 0;
    position: relative;
}

.connected-travel-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.connected-travel-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.travel-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.connected-travel-visual:hover .travel-image {
    transform: scale(1.02);
}

.connected-travel-content {
    display: flex;
    flex-direction: column;
}

.connected-travel-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.2;
    margin-bottom: 24px;
}

.connected-travel-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 32px;
}

.travel-features-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.travel-features-checklist li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1rem;
    color: #2d3748;
}

.travel-features-checklist .check-icon {
    margin-right: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.travel-features-checklist .check-icon svg {
    width: 16px;
    height: 16px;
}

.travel-features-checklist .check-text {
    font-weight: 500;
}

/* Responsive Design for Connected Travel */
@media (max-width: 1024px) {
    .connected-travel-container {
        gap: 60px;
    }
    
    .connected-travel-content h2 {
        font-size: 2.4rem;
    }
    
    .connected-travel-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .connected-travel-section {
        padding: 80px 0;
    }
    
    .connected-travel-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .connected-travel-visual {
        order: 1;
    }
    
    .connected-travel-content {
        order: 2;
    }
    
    .connected-travel-content h2 {
        font-size: 2rem;
    }
    
    .travel-features-checklist {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 40px auto;
    }
    
    .connected-travel-content .btn-learn-more {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .connected-travel-section {
        padding: 60px 0;
    }
    
    .connected-travel-container {
        gap: 40px;
        padding: 0 20px;
    }
    
    .connected-travel-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .connected-travel-content p {
        font-size: 0.95rem;
    }
    
    .travel-features-checklist li {
        margin-bottom: 12px;
        font-size: 0.9rem;
    }
}

/* AI-Driven Compliance Section */
.ai-compliance-section {
    background-color: #ffffff;
    padding: 120px 0;
    position: relative;
}

.ai-compliance-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    padding: 0 20px;
}

.ai-compliance-content {
    display: flex;
    flex-direction: column;
}

.ai-compliance-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    color: #0B202A;
    margin-bottom: 24px;
    font-weight: 700;
}

.ai-compliance-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 40px;
}

.ai-features-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.ai-features-checklist li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1rem;
    color: #2d3748;
}

.ai-features-checklist .check-icon {
    margin-right: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.ai-features-checklist .check-icon svg {
    width: 16px;
    height: 16px;
}

.ai-features-checklist .check-text {
    font-weight: 500;
    line-height: 1.5;
}

.ai-compliance-visual {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ai-compliance-visual:hover {
    transform: translateY(-5px);
}

.compliance-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.ai-compliance-visual:hover .compliance-image {
    transform: scale(1.02);
}

/* Responsive Design for AI Compliance */
@media (max-width: 1024px) {
    .ai-compliance-container {
        gap: 60px;
        padding: 0 30px;
    }
    
    .ai-compliance-content h2 {
        font-size: 2.4rem;
    }
    
    .ai-compliance-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .ai-compliance-section {
        padding: 80px 0;
    }
    
    .ai-compliance-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        padding: 0 20px;
    }
    
    .ai-compliance-content h2 {
        font-size: 2rem;
    }
    
    .ai-features-checklist {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 40px auto;
    }
    
    .ai-compliance-content .btn-learn-more {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .ai-compliance-section {
        padding: 60px 0;
    }
    
    .ai-compliance-container {
        gap: 40px;
        padding: 0 20px;
    }
    
    .ai-compliance-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .ai-compliance-content p {
        font-size: 0.95rem;
    }
    
    .ai-features-checklist li {
        margin-bottom: 16px;
        font-size: 0.9rem;
    }
    
    .ai-features-checklist .check-icon {
        margin-right: 12px;
    }
}

/* See Mesh in Action Section */
.Mesh-action-section {
    background: #000;
    height: 524px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.Mesh-action-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: auto;
    align-items: center;
}

.Mesh-action-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 60px;
    max-width: 600px;
    margin: 0 auto;
    height: 436px;
}

.g2-rating {
    margin-bottom: 32px;
}

.rating-logo {
    height: 32px;
    width: auto;
}

.Mesh-action-content h2 {
    font-size: 4rem;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 48px;
    font-weight: 700;
    max-width: 500px;
}

.btn-book-demo {
    background: linear-gradient(135deg, #3BECD4 0%, #2dd4bf 100%);
    color: #0B202A;
    padding: 20px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 60px;
    border: none;
    cursor: pointer;
}

.btn-book-demo:hover {
    transform: translateY(-2px);
  
    background: linear-gradient(135deg, #2dd4bf 0%, #3BECD4 100%);
}

.g2-awards {
    width: 100%;
}

.awards-container {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.award-icon {
    height: 90px;
    width: auto;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.award-center {
    height: 110px;
}

.award-icon:hover {
    transform: translateY(-5px);
}

.Mesh-action-visual {
    position: relative;
    height: 524px;
    overflow: hidden;
}

.action-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

/* Responsive Design for Mesh Action */
@media (max-width: 1200px) {
    .Mesh-action-content {
        padding: 60px 40px;
    }
    
    .Mesh-action-content h2 {
        font-size: 3.5rem;
    }
    
    .awards-container {
        gap: 20px;
    }
    
    .award-icon {
        height: 80px;
    }
    
    .award-center {
        height: 100px;
    }
}

@media (max-width: 1024px) {
    .Mesh-action-content h2 {
        font-size: 3rem;
    }
    
    .Mesh-action-content {
        padding: 50px 30px;
    }
    
    .awards-container {
        gap: 15px;
    }
    
    .award-icon {
        height: 70px;
    }
    
    .award-center {
        height: 85px;
    }
}

@media (max-width: 768px) {
    .Mesh-action-section {
        height: auto;
    }
    
    .Mesh-action-container {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .Mesh-action-content {
        align-items: center;
        text-align: center;
        padding: 60px 30px;
    }
    
    .Mesh-action-content h2 {
        font-size: 2.5rem;
    }
    
    .Mesh-action-visual {
        height: 60vh;
        order: -1;
    }
    
    .awards-container {
        justify-content: center;
        gap: 12px;
    }
    
    .award-icon {
        height: 60px;
    }
    
    .award-center {
        height: 75px;
    }
}

@media (max-width: 480px) {
    .Mesh-action-content {
        padding: 40px 20px;
    }
    
    .Mesh-action-content h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .btn-book-demo {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .Mesh-action-visual {
        height: 50vh;
    }
    
    .awards-container {
        gap: 10px;
    }
    
    .award-icon {
        height: 50px;
    }
    
    .award-center {
        height: 65px;
    }
    
    .rating-logo {
        height: 28px;
    }
}

/* Business Goals and Solutions Table Section */
.business-goals-section {
    background: #ffffff;
    padding: 80px 0;
    margin: 0;
}

.business-goals-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.business-goals-section .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.business-goals-section .section-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Table Layout */
.business-goals-table {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.table-headers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.header-left,
.header-right {
    padding: 24px 32px;
}

.header-left h3,
.header-right h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #6b7280;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
}

.table-row:hover {
    background-color: #f8f9fa;
}

.table-row:last-child {
    border-bottom: none;
}

.goal-cell,
.solution-cell {
    padding: 32px;
}

.goal-cell {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-right: 1px solid #e9ecef;
}

.goal-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    min-width: 28px;
    flex-shrink: 0;
    line-height: 1.4;
}

.goal-cell h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

.solution-cell p {
    color: #1a1a1a;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.solution-cell p:last-of-type {
    margin-bottom: 16px;
}

.text-link {
    color: #0066cc;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #004499;
}

.see-more-btn {
    background: transparent;
    border: none;
    color: #0066cc;
    padding: 0;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: underline;
    outline: none;
}

.see-more-btn:hover {
    color: #004499;
}

/* Responsive Design for Business Goals Section */
@media (max-width: 1024px) {
    .business-goals-table {
        margin: 0 20px;
    }
    
    .business-goals-section .section-header h2 {
        font-size: 2.4rem;
    }
    
    .goal-cell,
    .solution-cell {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .business-goals-section {
        padding: 60px 0;
    }
    
    .business-goals-section .section-header {
        margin-bottom: 40px;
    }
    
    .business-goals-section .section-header h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .business-goals-section .section-header p {
        font-size: 1rem;
    }
    
    .business-goals-table {
        margin: 0 10px;
    }
    
    .table-headers,
    .table-row {
        grid-template-columns: 1fr;
    }
    
    .header-left,
    .header-right {
        padding: 20px 24px;
        text-align: center;
    }
    
    .header-right {
        border-top: 1px solid #e9ecef;
    }
    
    .goal-cell {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 12px;
        padding: 24px;
    }
    
    .solution-cell {
        padding: 24px;
        text-align: center;
    }
    
    .goal-number {
        font-size: 1.4rem;
    }
    
    .goal-cell h4 {
        font-size: 1.05rem;
    }
    
    .solution-cell p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .business-goals-section {
        padding: 40px 0;
    }
    
    .business-goals-table {
        margin: 0 5px;
    }
    
    .header-left,
    .header-right,
    .goal-cell,
    .solution-cell {
        padding: 20px;
    }
    
    .business-goals-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .header-left h3,
    .header-right h3 {
        font-size: 1rem;
    }
}

/* FAQ Section */
.faq-section {
    background: #ffffff;
    padding: 80px 0;
    margin: 0;
}
    
    .business-goals-section .section-header h2 {
        font-size: 2.4rem;
    }

@media (max-width: 768px) {
    .business-goals-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 20px;
    }
    
    .business-goals-section {
        padding: 60px 0;
    }
    
    .business-goals-section .section-header {
        margin-bottom: 40px;
    }
    
    .business-goals-section .section-header h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .business-goals-section .section-header p {
        font-size: 1rem;
    }
    
    .goals-column h3,
    .solutions-column h3 {
        font-size: 1.2rem;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .goal-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 25px;
        padding: 15px 0;
    }
    
    .goal-number {
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 1.5rem;
    }
    
    .goal-content h4 {
        font-size: 1.1rem;
    }
    
    .solution-item {
        margin-bottom: 25px;
        padding: 15px 0;
    }
    
    .solution-content p {
        font-size: 0.95rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .business-goals-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .goal-content h4 {
        font-size: 1rem;
    }
    
    .solution-content p {
        font-size: 0.9rem;
    }
}

/* Responsive Design for Business Goals Section */
@media (max-width: 1024px) {
    .business-goals-container {
        gap: 60px;
        padding: 0 30px;
    }
    
    .goals-column h2,
    .solutions-column h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .business-goals-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 20px;
    }
    
    .business-goals-section {
        padding: 60px 0;
    }
    
    .goals-column h2,
    .solutions-column h2 {
        font-size: 2rem;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .goal-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
        padding: 20px 0;
    }
    
    .goal-number {
        margin-right: 0;
        margin-bottom: 15px;
        font-size: 1.8rem;
    }
    
    .goal-content h3 {
        font-size: 1.3rem;
    }
    
    .solution-item {
        margin-bottom: 30px;
        padding: 20px 0;
    }
    
    .solution-item h3 {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .goals-column h2,
    .solutions-column h2 {
        font-size: 1.8rem;
    }
    
    .goal-content h3,
    .solution-item h3 {
        font-size: 1.2rem;
    }
    
    .goal-content p,
    .solution-list li {
        font-size: 0.95rem;
    }
}

/* FAQ Section */
.faq-section {
    background: #ffffff;
    padding: 80px 0;
    margin: 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e5e7eb;
    align-items: flex-start;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question-column h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

.faq-answer-column p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Responsive Design */
@media (max-width: 1024px) {
    .faq-container {
        padding: 0 30px;
    }
    
    .faq-item {
        gap: 60px;
    }
    
    .faq-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-container {
        padding: 0 20px;
    }
    
    .faq-item {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .faq-question-column h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .faq-answer-column p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-header h2 {
        font-size: 1.8rem;
    }
    
    .faq-question-column h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer-column p {
        font-size: 0.9rem;
    }
    
    .faq-item {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
    padding: 100px 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(59, 236, 212, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.final-cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
    line-height: 1.2;
}

.cta-form {
    display: flex;
    gap: 0;
    max-width: 500px;
}

.email-input {
    flex: 1;
    padding: 18px 20px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 1rem;
    background: white;
    color: #333;
    outline: none;
    font-family: inherit;
}

.email-input::placeholder {
    color: #999;
}

.email-input:focus {
    box-shadow: 0 0 0 3px rgba(59, 236, 212, 0.3);
}

.book-demo-btn {
    padding: 18px 30px;
    background: #3BECD4;
    color: #1a1a1a;
    border: none;
    border-radius: 0 8px 8px 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    outline: none;
}

.book-demo-btn:hover {
    background: #32d4bd;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 236, 212, 0.4);
}

.cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 400px;
}

.card-stack {
    position: relative;
    width: 400px;
    height: 300px;
}

.card {
    position: absolute;
    width: 280px;
    height: 180px;
    background: linear-gradient(135deg, rgba(91, 192, 222, 0.9) 0%, rgba(59, 236, 212, 0.8) 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.card-1 {
    top: 20px;
    left: 0;
    transform: rotate(-12deg);
    z-index: 1;
    background: linear-gradient(135deg, rgba(59, 236, 212, 0.85) 0%, rgba(91, 192, 222, 0.75) 100%);
}

.card-2 {
    top: 40px;
    left: 50px;
    transform: rotate(-6deg);
    z-index: 2;
    background: linear-gradient(135deg, rgba(59, 236, 212, 0.9) 0%, rgba(91, 192, 222, 0.8) 100%);
}

.card-3 {
    top: 60px;
    left: 100px;
    transform: rotate(0deg);
    z-index: 3;
    background: linear-gradient(135deg, rgba(59, 236, 212, 0.95) 0%, rgba(91, 192, 222, 0.85) 100%);
}

/* Floating animation for cards */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(var(--rotation)); }
    50% { transform: translateY(-15px) rotate(var(--rotation)); }
}

.card-1 {
    --rotation: -12deg;
    animation: float 8s ease-in-out infinite;
}

.card-2 {
    --rotation: -6deg;
    animation: float 8s ease-in-out infinite 2.5s;
}

.card-3 {
    --rotation: 0deg;
    animation: float 8s ease-in-out infinite 5s;
}

/* Final CTA Responsive Design */
@media (max-width: 1024px) {
    .final-cta-container {
        gap: 60px;
        padding: 0 30px;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-visual {
        height: 350px;
    }
    
    .card-stack {
        width: 350px;
        height: 250px;
    }
    
    .card {
        width: 240px;
        height: 150px;
    }
    
    .card-2 {
        left: 40px;
    }
    
    .card-3 {
        left: 80px;
    }
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 80px 0;
    }
    
    .final-cta-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 20px;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    
    .cta-form {
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .email-input {
        border-radius: 8px;
        margin-bottom: 15px;
    }
    
    .book-demo-btn {
        border-radius: 8px;
    }
    
    .cta-visual {
        height: 300px;
        order: -1;
    }
    
    .card-stack {
        width: 280px;
        height: 200px;
    }
    
    .card {
        width: 200px;
        height: 120px;
    }
    
    .card-2 {
        left: 30px;
    }
    
    .card-3 {
        left: 60px;
    }
}

@media (max-width: 480px) {
    .final-cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .email-input,
    .book-demo-btn {
        padding: 16px 18px;
        font-size: 0.95rem;
    }
    
    .cta-visual {
        height: 250px;
    }
    
    .card-stack {
        width: 240px;
        height: 160px;
    }
    
    .card {
        width: 160px;
        height: 100px;
    }
    
    .card-2 {
        left: 25px;
    }
    
    .card-3 {
        left: 50px;
    }
}

/* Footer Styles */
.main-footer {
    background: #1a2332;
    padding: 60px 0 10px;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo img {
    height: 24px;
    width: 108px;
}

.app-downloads {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-store-btn img,
.google-play-btn img {
    height: 40px;
    width: 135px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.app-store-btn:hover img,
.google-play-btn:hover img {
    transform: scale(1.05);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #b0c4de;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3BECD4;
}

.additional-links {
    margin-top: 20px;
}

.additional-links ul {
    margin: 0;
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
    padding-bottom: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #b0c4de;
    margin: 0;
    line-height: 1.5;
    max-width: 1000px;
    margin: 0 auto;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 250px 1fr;
        gap: 60px;
    }
    
    .footer-columns {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        text-align: left;
    }
    
    .app-downloads {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer-column ul li {
        margin-bottom: 10px;
    }
    
    .footer-column ul li a {
        font-size: 0.9rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        padding: 0 20px;
    }
}

/* Footer Bottom Section */
.site-footer__bottom {
    background-color: #062934;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0 0 5px;
    color: white;
}

.site-footer__wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.site-footer__logo .custom-logo-link {
    display: block;
    text-decoration: none;
}

.site-footer__logo .custom-logo {
    width: 108px;
    height: 24px;
    object-fit: contain;
}

.site-footer__copy {
    text-align: center;
}

.site-footer__copy .textwidget p {
    margin: 0;
    font-size: 14px;
    line-height: 0;
    color: rgba(255, 255, 255, 0.8);
}

.site-footer__copy .vsep {
    display: block;
}

.site-footer__copy .vsep-mobile {
    display: none;
}

.site-footer__copy a {
    color: #3BECD4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer__copy a:hover {
    color: white;
}

.site-footer__col__app_logo {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.site-footer__col__app_logo a {
    display: block;
    transition: transform 0.3s ease;
}

.site-footer__col__app_logo a:hover {
    transform: scale(1.05);
}

.site-footer__col__app_logo img {
    width: 135px;
    height: 40px;
    object-fit: contain;
}

/* Responsive Design for Footer Bottom */
@media (max-width: 768px) {
    .site-footer__wrap {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .site-footer__copy .vsep {
        display: none;
    }
    
    .site-footer__copy .vsep-mobile {
        display: block;
    }
    
    .site-footer__col__app_logo {
        align-items: center;
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .site-footer__bottom {
        padding: 20px 0;
    }
    
    .site-footer__wrap {
        gap: 20px;
    }
    
    .site-footer__col__app_logo {
        flex-direction: column;
        gap: 12px;
    }
    
    .site-footer__col__app_logo img {
        width: 120px;
        height: 36px;
    }
}

































/* Orbit Component Styles - Box Design */
.orbit {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.orbit-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}

.orbit-wrap li {
    list-style: none;
}

/* Ring positioning */
.ring-0, .ring-1, .ring-2, .ring-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    list-style: none;
    margin: 0;
    padding: 0;
}

.ring-0 { width: 150px; height: 150px; }
.ring-1 { width: 250px; height: 250px; }
.ring-2 { width: 350px; height: 350px; }
.ring-3 { width: 450px; height: 450px; }

/* Position items around rings */
.ring-0 li:nth-child(1) {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.ring-0 li:nth-child(2) {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.ring-1 li:nth-child(1) {
    position: absolute;
    top: -25px;
    right: 20px;
}

.ring-1 li:nth-child(2) {
    position: absolute;
    bottom: -25px;
    left: 20px;
}

.ring-2 li:nth-child(1) {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.ring-2 li:nth-child(2) {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
}

.ring-2 li:nth-child(3) {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}

/* Orbit icon styling - Box design like the image */
.orbit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 45px;
    padding: 8px 16px;
    border-radius: 25px;
    background: #0e2935;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    font-size: 14px;
    color: white;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 5;
    text-align: center;
    white-space: nowrap;
}

.orbit-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer !important;
}

.orbit-icon.active {
    background: var(--gradient-accent);
    border: 1px solid var(--primary-cyan);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

/* Ensure business category icons have pointer cursor */
.business-category {
    cursor: pointer !important;
}

/* Blur effect for top and bottom */
.orbit-container {
    position: relative;
    overflow: hidden;
}

.orbit-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(14, 41, 53, 1) 0%, rgba(14, 41, 53, 0) 100%);
    z-index: 10;
    pointer-events: none;
}

.orbit-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(0deg, rgba(14, 41, 53, 1) 0%, rgba(14, 41, 53, 0) 100%);
    z-index: 10;
    pointer-events: none;
}

/* Hide hover info by default */
.hover-info {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .orbit {
        width: 350px;
        height: 350px;
    }
    
    .ring-0 { width: 120px; height: 120px; }
    .ring-1 { width: 180px; height: 180px; }
    .ring-2 { width: 240px; height: 240px; }
    .ring-3 { width: 300px; height: 300px; }
    
    .orbit-icon {
        min-width: 70px;
        height: 40px;
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Animated Circles and Lines for Orbit */
.ring-0, .ring-1, .ring-2 {
    border: 1px dotted rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.ring-0 { animation-duration: 15s; }
.ring-1 { animation-duration: 25s; animation-direction: reverse; }
.ring-2 { animation-duration: 30s; }

/* Floating animation for orbit icons */
.orbit-icon {
    animation: float 3s ease-in-out infinite;
}

.ring-0 .orbit-icon { animation-delay: 0s; }
.ring-1 .orbit-icon { animation-delay: 1s; }
.ring-2 .orbit-icon { animation-delay: 2s; }

/* Connecting lines between orbit points */
.ring-0::before, .ring-1::before, .ring-2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 25%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0.1) 75%, 
        transparent 100%);
    transform: translate(-50%, -50%);
    animation: pulse 2s ease-in-out infinite;
}

/* Moving particles around orbit */
.orbit::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #40E0D0;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbitParticle 8s linear infinite;
    box-shadow: 0 0 10px #40E0D0;
}

.orbit::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbitParticle2 12s linear infinite reverse;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Keyframe animations */
@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes orbitParticle {
    0% { 
        transform: translate(-50%, -50%) rotate(0deg) translateX(200px) rotate(0deg);
    }
    100% { 
        transform: translate(-50%, -50%) rotate(360deg) translateX(200px) rotate(-360deg);
    }
}

@keyframes orbitParticle2 {
    0% { 
        transform: translate(-50%, -50%) rotate(0deg) translateX(150px) rotate(0deg);
    }
    100% { 
        transform: translate(-50%, -50%) rotate(360deg) translateX(150px) rotate(-360deg);
    }
}

/* Glowing center point */
.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #40E0D0 0%, transparent 70%);
    border-radius: 50%;
    animation: centerGlow 2s ease-in-out infinite alternate;
    z-index: 10;
}

@keyframes centerGlow {
    0% { 
        box-shadow: 0 0 20px #40E0D0, 0 0 40px #40E0D0;
        transform: translate(-50%, -50%) scale(1);
    }
    100% { 
        box-shadow: 0 0 30px #40E0D0, 0 0 60px #40E0D0;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* External Integration Labels */
.external-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.external-label {
    position: absolute;
    pointer-events: auto;
    z-index: 6;
}

.label-text {
    background: var(--overlay-dark);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--primary-cyan);
    backdrop-filter: blur(10px);
    white-space: nowrap;
    animation: labelFloat 4s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.dotted-line {
    position: absolute;
    border: 1px dotted rgba(64, 224, 208, 0.4);
    animation: linePulse 3s ease-in-out infinite;
}

/* Positioning for each label */
.external-label.top-left {
    top: 10%;
    left: 5%;
}

.external-label.top-left .dotted-line {
    top: 50%;
    left: 100%;
    width: 80px;
    height: 0;
    border-top: 1px dotted rgba(64, 224, 208, 0.4);
    transform: rotate(25deg);
    transform-origin: left center;
}

.external-label.top-right {
    top: 8%;
    right: 8%;
}

.external-label.top-right .dotted-line {
    top: 50%;
    right: 100%;
    width: 70px;
    height: 0;
    border-top: 1px dotted rgba(64, 224, 208, 0.4);
    transform: rotate(-25deg);
    transform-origin: right center;
}

.external-label.left {
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
}

.external-label.left .dotted-line {
    top: 50%;
    left: 100%;
    width: 100px;
    height: 0;
    border-top: 1px dotted rgba(64, 224, 208, 0.4);
    transform: translateY(-50%);
}

.external-label.right {
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
}

.external-label.right .dotted-line {
    top: 50%;
    right: 100%;
    width: 100px;
    height: 0;
    border-top: 1px dotted rgba(64, 224, 208, 0.4);
    transform: translateY(-50%);
}

.external-label.bottom-left {
    bottom: 15%;
    left: 8%;
}

.external-label.bottom-left .dotted-line {
    bottom: 50%;
    left: 100%;
    width: 75px;
    height: 0;
    border-top: 1px dotted rgba(64, 224, 208, 0.4);
    transform: rotate(-30deg);
    transform-origin: left center;
}

.external-label.bottom-right {
    bottom: 12%;
    right: 5%;
}

.external-label.bottom-right .dotted-line {
    bottom: 50%;
    right: 100%;
    width: 85px;
    height: 0;
    border-top: 1px dotted rgba(64, 224, 208, 0.4);
    transform: rotate(30deg);
    transform-origin: right center;
}

/* Fade Effects */
.orbit-fade-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(
        to bottom,
        rgba(11, 42, 46, 0.9) 0%,
        rgba(11, 42, 46, 0.7) 30%,
        rgba(11, 42, 46, 0.3) 70%,
        transparent 100%
    );
    z-index: 8;
    pointer-events: none;
}

.orbit-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(
        to top,
        rgba(11, 42, 46, 0.9) 0%,
        rgba(11, 42, 46, 0.7) 30%,
        rgba(11, 42, 46, 0.3) 70%,
        transparent 100%
    );
    z-index: 8;
    pointer-events: none;
}

/* Animations for labels */
@keyframes labelFloat {
    0%, 100% { 
        transform: translateY(0px); 
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-5px); 
        opacity: 1;
    }
}

@keyframes linePulse {
    0%, 100% { 
        opacity: 0.4;
        border-color: rgba(64, 224, 208, 0.4);
    }
    50% { 
        opacity: 0.8;
        border-color: rgba(64, 224, 208, 0.7);
    }
}

/* Hover effects for labels */
.external-label:hover .label-text {
    background: rgba(64, 224, 208, 0.2);
    border-color: rgba(64, 224, 208, 0.6);
    box-shadow: 0 6px 20px rgba(64, 224, 208, 0.4);
    transform: scale(1.05);
}

.external-label:hover .dotted-line {
    border-color: rgba(64, 224, 208, 0.8);
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .external-label {
        display: none;
    }
    
    .orbit-fade-top,
    .orbit-fade-bottom {
        height: 20%;
    }
}


/* SVG Icon Animations */
.feature-icon svg {
    animation: svgFloat 6s ease-in-out infinite;
}

.feature-icon:hover svg {
    animation: svgFloatHover 1s ease-in-out infinite;
}

/* Specific animations for different SVG elements */

/* Globe Animation - for Global payment programs */
.feature-box:nth-child(1) .feature-icon svg circle,
.feature-box:nth-child(1) .feature-icon svg path {
    animation: globeSpin 8s linear infinite;
}

.feature-box:nth-child(1) .feature-icon svg path[fill='#F7FAFC'] {
    animation: globePulse 3s ease-in-out infinite;
}

/* Network Animation - for Agnostic TMC connection */
.feature-box:nth-child(2) .feature-icon svg circle {
    animation: networkPulse 2s ease-in-out infinite;
}

.feature-box:nth-child(2) .feature-icon svg circle:nth-child(odd) {
    animation-delay: 0.5s;
}

.feature-box:nth-child(2) .feature-icon svg circle:nth-child(even) {
    animation-delay: 1s;
}

.feature-box:nth-child(2) .feature-icon svg line {
    animation: lineGlow 3s ease-in-out infinite;
}

.feature-box:nth-child(2) .feature-icon svg path[fill='#3BECD4'] {
    animation: networkFlow 4s ease-in-out infinite;
}

/* Workflow Animation - for Custom workflows */
.feature-box:nth-child(3) .feature-icon svg circle[fill='#3BECD4'] {
    animation: workflowBounce 2s ease-in-out infinite;
}

.feature-box:nth-child(3) .feature-icon svg circle:first-of-type {
    animation-delay: 0s;
}

.feature-box:nth-child(3) .feature-icon svg circle:last-of-type {
    animation-delay: 1s;
}

.feature-box:nth-child(3) .feature-icon svg path {
    animation: pathDraw 4s ease-in-out infinite;
}

/* Compliance Animation - for Automated compliance */
.feature-box:nth-child(4) .feature-icon svg rect,
.feature-box:nth-child(4) .feature-icon svg path {
    animation: complianceCheck 3s ease-in-out infinite;
}

/* Support Animation - for 24/7 enterprise-grade support */
.feature-box:nth-child(5) .feature-icon svg circle,
.feature-box:nth-child(5) .feature-icon svg path {
    animation: supportGlow 4s ease-in-out infinite;
}

/* Spend Controls Animation - for Ultimate spend controls */
.feature-box:nth-child(6) .feature-icon svg rect,
.feature-box:nth-child(6) .feature-icon svg circle {
    animation: controlsSpin 5s linear infinite;
}

/* Visibility Animation - for Real-time visibility */
.feature-box:nth-child(7) .feature-icon svg circle,
.feature-box:nth-child(7) .feature-icon svg path {
    animation: visibilityPulse 2.5s ease-in-out infinite;
}

/* Experience Animation - for Modern experience */
.feature-box:nth-child(8) .feature-icon svg path,
.feature-box:nth-child(8) .feature-icon svg circle {
    animation: experienceFlow 3.5s ease-in-out infinite;
}

/* Keyframe Animations */
@keyframes svgFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
    }
    50% { 
        transform: translateY(-8px) scale(1.05); 
    }
}

@keyframes svgFloatHover {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
    }
    50% { 
        transform: translateY(-12px) scale(1.1); 
    }
}

@keyframes globeSpin {
    0% { 
        transform-origin: center;
        transform: rotate(0deg);
    }
    100% { 
        transform-origin: center;
        transform: rotate(360deg);
    }
}

@keyframes globePulse {
    0%, 100% { 
        fill: #F7FAFC;
        opacity: 1;
    }
    50% { 
        fill: #3BECD4;
        opacity: 0.8;
    }
}

@keyframes networkPulse {
    0%, 100% { 
        r: 6;
        fill: #F7FAFC;
    }
    50% { 
        r: 8;
        fill: #3BECD4;
    }
}

@keyframes lineGlow {
    0%, 100% { 
        stroke: #0E2935;
        stroke-width: 1;
        opacity: 0.7;
    }
    50% { 
        stroke: #3BECD4;
        stroke-width: 2;
        opacity: 1;
    }
}

@keyframes networkFlow {
    0% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% { 
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes workflowBounce {
    0%, 100% { 
        cy: attr(cy);
        fill: #3BECD4;
    }
    50% { 
        transform: translateY(-5px);
        fill: #40E0D0;
    }
}

@keyframes pathDraw {
    0% { 
        stroke-dasharray: 0 100;
        opacity: 0.7;
    }
    50% { 
        stroke-dasharray: 50 50;
        opacity: 1;
    }
    100% { 
        stroke-dasharray: 100 0;
        opacity: 0.7;
    }
}

@keyframes complianceCheck {
    0%, 100% { 
        transform: scale(1);
        fill: currentColor;
    }
    25% { 
        transform: scale(1.05);
        fill: #3BECD4;
    }
    75% { 
        transform: scale(0.95);
        fill: #40E0D0;
    }
}

@keyframes supportGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 0 rgba(59, 236, 212, 0));
    }
    50% { 
        filter: drop-shadow(0 0 10px rgba(59, 236, 212, 0.5));
    }
}

@keyframes controlsSpin {
    0% { 
        transform-origin: center;
        transform: rotate(0deg);
    }
    100% { 
        transform-origin: center;
        transform: rotate(360deg);
    }
}

@keyframes visibilityPulse {
    0%, 100% { 
        opacity: 0.7;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.08);
    }
}

@keyframes experienceFlow {
    0% { 
        transform: translateX(0);
        opacity: 0.7;
    }
    33% { 
        transform: translateX(3px);
        opacity: 1;
    }
    66% { 
        transform: translateX(-3px);
        opacity: 1;
    }
    100% { 
        transform: translateX(0);
        opacity: 0.7;
    }
}

/* Enhanced hover effects */
.feature-box:hover .feature-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 20px rgba(59, 236, 212, 0.3));
}

/* Staggered animation delays for visual variety */
.feature-box:nth-child(1) .feature-icon svg { animation-delay: 0s; }
.feature-box:nth-child(2) .feature-icon svg { animation-delay: 0.5s; }
.feature-box:nth-child(3) .feature-icon svg { animation-delay: 1s; }
.feature-box:nth-child(4) .feature-icon svg { animation-delay: 1.5s; }
.feature-box:nth-child(5) .feature-icon svg { animation-delay: 2s; }
.feature-box:nth-child(6) .feature-icon svg { animation-delay: 2.5s; }
.feature-box:nth-child(7) .feature-icon svg { animation-delay: 3s; }
.feature-box:nth-child(8) .feature-icon svg { animation-delay: 3.5s; }

/* Responsive considerations */
@media (max-width: 768px) {
    .feature-icon svg {
        animation-duration: 4s;
    }
    
    .feature-box:hover .feature-icon svg {
        transform: scale(1.05);
    }
}


/* Enhanced Gradient Button Styles */
.bd-gradient-btn,
.btn-demo,
.hero-cta,
.cta-button {
    font-size: 17px;
    color: var(--white);
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none;
    padding: 0px 35px;
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    height: 60px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
    position: relative;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    z-index: 5;
    background-position: 100% 100%;
    background-size: 300% 100%;
    background-image: linear-gradient(135deg, #00D9FF 0%, #06B6D4 25%, #3B82F6 50%, #6366F1 75%, #8B5CF6 100%);
    border: none;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.3);
}

.bd-gradient-btn:hover,
.btn-demo:hover,
.hero-cta:hover,
.cta-button:hover {
    background-position: 0% 0%;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.4);
    color: var(--white);
}

.bd-gradient-btn:active,
.btn-demo:active,
.hero-cta:active,
.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.3);
}

/* Specific button variants */
.btn-demo {
    font-size: 14px;
    height: 44px;
    padding: 0px 24px;
    border-radius: 22px;
}

.hero-cta {
    font-size: 18px;
    height: 64px;
    padding: 0px 40px;
    border-radius: 32px;
}

/* Button with icon support */
.bd-gradient-btn i,
.btn-demo i,
.hero-cta i,
.cta-button i {
    margin-left: 8px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.bd-gradient-btn:hover i,
.btn-demo:hover i,
.hero-cta:hover i,
.cta-button:hover i {
    transform: translateX(2px);
}

/* Secondary button style */
.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-cyan);
    color: var(--primary-cyan);
    background-image: none;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.2);
}

.btn-secondary:hover {
    background: var(--primary-cyan);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.4);
}

/* Button loading state */
.bd-gradient-btn.loading,
.btn-demo.loading {
    pointer-events: none;
    opacity: 0.8;
}

.bd-gradient-btn.loading::after,
.btn-demo.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: buttonSpin 1s linear infinite;
    right: 15px;
}

@keyframes buttonSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive button adjustments */
@media (max-width: 768px) {
    .bd-gradient-btn,
    .hero-cta {
        font-size: 16px;
        height: 56px;
        padding: 0px 32px;
        border-radius: 28px;
    }
    
    .btn-demo {
        font-size: 14px;
        height: 40px;
        padding: 0px 20px;
        border-radius: 20px;
    }
}

/* Special effects for primary CTA */
.primary-cta {
    position: relative;
    overflow: hidden;
}

.primary-cta::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 ease;
}

.primary-cta:hover::before {
    left: 100%;
}


/* Enhanced Gradient Button Styles */
.bd-gradient-btn,
.btn-demo,
.hero-cta,
.cta-button {
    font-size: 17px;
    color: var(--white);
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none;
    padding: 0px 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    height: 60px;
    border-radius: 30px;
    position: relative;
    transition: all 0.5s ease-out 0s;
    z-index: 5;
    background-position: 100% 100%;
    background-size: 300% 100%;
    background-image: linear-gradient(135deg, #00D9FF 0%, #06B6D4 25%, #3B82F6 50%, #6366F1 75%, #8B5CF6 100%);
    border: none;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.3);
}

.bd-gradient-btn:hover,
.btn-demo:hover,
.hero-cta:hover,
.cta-button:hover {
    background-position: 0% 0%;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.4);
    color: var(--white);
}


/* Button Active and Focus States */
.bd-gradient-btn:active,
.btn-demo:active,
.hero-cta:active,
.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.3);
}

/* Specific button size variants */
.btn-demo {
    font-size: 14px;
    height: 44px;
    padding: 0px 24px;
    border-radius: 22px;
}

.hero-cta,
.primary-cta {
    font-size: 18px;
    height: 64px;
    padding: 0px 40px;
    border-radius: 32px;
}

/* Button with icon support */
.bd-gradient-btn i,
.btn-demo i,
.hero-cta i,
.cta-button i {
    margin-left: 8px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.bd-gradient-btn:hover i,
.btn-demo:hover i,
.hero-cta:hover i,
.cta-button:hover i {
    transform: translateX(2px);
}

/* Secondary outline button */
.btn-secondary {
    background: transparent !important;
    background-image: none !important;
    border: 2px solid var(--primary-cyan);
    color: var(--primary-cyan);
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.2);
}

.btn-secondary:hover {
    background: var(--primary-cyan) !important;
    background-image: none !important;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bd-gradient-btn,
    .hero-cta,
    .primary-cta {
        font-size: 16px;
        height: 56px;
        padding: 0px 32px;
        border-radius: 28px;
    }
    
    .btn-demo {
        font-size: 14px;
        height: 40px;
        padding: 0px 20px;
        border-radius: 20px;
    }
}

/* Special shine effect */
.bd-gradient-btn::before,
.hero-cta::before,
.primary-cta::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 ease;
}

.bd-gradient-btn:hover::before,
.hero-cta:hover::before,
.primary-cta:hover::before {
    left: 100%;
}


/* Background Glow Effects */
.glow__area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.body__color-glow {
    position: fixed;
    left: -250px;
    top: 250px;
    right: auto;
    bottom: auto;
    z-index: -1;
    width: 500px;
    height: 500px;
    border-radius: 1000px;
    background-image: linear-gradient(90deg, #B242E3 0%, #23E1E7 100%);
    opacity: 0.25;
    -webkit-filter: blur(100px);
    filter: blur(100px);
    animation: glowFloat 8s ease-in-out infinite;
}

.body__color-glow.glow-2 {
    left: auto;
    top: -50px;
    right: -250px;
    bottom: auto;
    background-image: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 50%, #00D9FF 100%);
    animation: glowFloat2 10s ease-in-out infinite reverse;
}

/* Additional glow elements for more dynamic effect */
.body__color-glow.glow-3 {
    left: 50%;
    top: auto;
    right: auto;
    bottom: -200px;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background-image: linear-gradient(45deg, #6366F1 0%, #3B82F6 100%);
    opacity: 0.2;
    animation: glowFloat3 12s ease-in-out infinite;
}

.body__color-glow.glow-4 {
    left: -200px;
    top: auto;
    right: auto;
    bottom: 100px;
    width: 300px;
    height: 300px;
    background-image: linear-gradient(180deg, #A855F7 0%, #06B6D4 100%);
    opacity: 0.15;
    animation: glowFloat4 15s ease-in-out infinite;
}

/* Glow animations */
@keyframes glowFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.25;
    }
    33% {
        transform: translate(50px, -30px) scale(1.1);
        opacity: 0.3;
    }
    66% {
        transform: translate(-20px, 40px) scale(0.9);
        opacity: 0.2;
    }
}

@keyframes glowFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.25;
    }
    25% {
        transform: translate(-40px, 60px) scale(1.2);
        opacity: 0.3;
    }
    50% {
        transform: translate(30px, -20px) scale(0.8);
        opacity: 0.2;
    }
    75% {
        transform: translate(-10px, 30px) scale(1.1);
        opacity: 0.28;
    }
}

@keyframes glowFloat3 {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translateX(-50%) translateY(-40px) scale(1.15);
        opacity: 0.25;
    }
}

@keyframes glowFloat4 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.15;
    }
    33% {
        transform: translate(40px, -25px) scale(1.1);
        opacity: 0.2;
    }
    66% {
        transform: translate(-30px, 35px) scale(0.9);
        opacity: 0.12;
    }
}

/* Responsive glow adjustments */
@media (max-width: 1024px) {
    .body__color-glow {
        width: 400px;
        height: 400px;
        filter: blur(80px);
    }
    
    .body__color-glow.glow-3,
    .body__color-glow.glow-4 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .body__color-glow {
        width: 300px;
        height: 300px;
        filter: blur(60px);
        opacity: 0.2;
    }
    
    .body__color-glow.glow-2 {
        opacity: 0.2;
    }
    
    .body__color-glow.glow-3,
    .body__color-glow.glow-4 {
        width: 250px;
        height: 250px;
        opacity: 0.15;
    }
}

/* Enhanced body background to work with glows */
body {
    position: relative;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.05) 0%, rgba(6, 182, 212, 0.03) 50%, transparent 100%);
}


/* Enhanced Background Glow Effects - More Visible */
.glow__area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

/* Override body background for better glow visibility */
body {
    background: #0a0a0a !important;
    background-image: none !important;
    position: relative;
}

/* Enhanced glow effects with higher visibility */
.body__color-glow {
    position: fixed;
    left: -300px;
    top: 200px;
    z-index: -1;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, #B242E3 0%, #23E1E7 70%, transparent 100%);
    opacity: 0.4;
    filter: blur(120px);
    animation: glowFloat 8s ease-in-out infinite;
}

.body__color-glow.glow-2 {
    left: auto;
    top: -100px;
    right: -300px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #8B5CF6 0%, #06B6D4 50%, #00D9FF 70%, transparent 100%);
    opacity: 0.35;
    animation: glowFloat2 10s ease-in-out infinite reverse;
}

.body__color-glow.glow-3 {
    left: 20%;
    top: auto;
    bottom: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #6366F1 0%, #3B82F6 60%, transparent 100%);
    opacity: 0.3;
    animation: glowFloat3 12s ease-in-out infinite;
}

.body__color-glow.glow-4 {
    left: auto;
    top: 50%;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #A855F7 0%, #06B6D4 70%, transparent 100%);
    opacity: 0.25;
    animation: glowFloat4 15s ease-in-out infinite;
    transform: translateY(-50%);
}

/* Additional center glow for more coverage */
.body__color-glow.glow-5 {
    left: 50%;
    top: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 50%, transparent 70%);
    opacity: 0.6;
    animation: glowFloat5 20s ease-in-out infinite;
    transform: translate(-50%, -50%);
}

/* Enhanced animations with more movement */
@keyframes glowFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    33% {
        transform: translate(80px, -50px) scale(1.2);
        opacity: 0.5;
    }
    66% {
        transform: translate(-40px, 60px) scale(0.8);
        opacity: 0.3;
    }
}

@keyframes glowFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.35;
    }
    25% {
        transform: translate(-60px, 80px) scale(1.3);
        opacity: 0.45;
    }
    50% {
        transform: translate(50px, -30px) scale(0.7);
        opacity: 0.25;
    }
    75% {
        transform: translate(-20px, 40px) scale(1.1);
        opacity: 0.4;
    }
}

@keyframes glowFloat3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-60px, -60px) scale(1.2);
        opacity: 0.4;
    }
}

@keyframes glowFloat4 {
    0%, 100% {
        transform: translateY(-50%) translate(0, 0) scale(1);
        opacity: 0.25;
    }
    33% {
        transform: translateY(-50%) translate(60px, -40px) scale(1.15);
        opacity: 0.35;
    }
    66% {
        transform: translateY(-50%) translate(-50px, 50px) scale(0.85);
        opacity: 0.2;
    }
}

@keyframes glowFloat5 {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.4;
    }
}


/* Updated Button Styles - Exact Match */
.bd-gradient-btn {
    font-size: 17px;
    color: var(--bd-common-white);
    font-weight: var(--bd-fw-sbold);
    text-transform: capitalize;
    padding: 0px 35px;
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    height: 60px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
    position: relative;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    z-index: 5;
    background-position: 100% 100%;
    background-size: 300% 100%;
    background-image: var(--bd-gradient-1);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

/* Button hover effect */
.bd-gradient-btn:hover {
    background-position: 0% 0%;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(178, 66, 227, 0.3);
}

/* Apply same styling to demo buttons */
.btn-demo.bd-gradient-btn {
    font-size: 17px;
    height: 60px;
    padding: 0px 35px;
    border-radius: 30px;
    background-image: var(--bd-gradient-1);
    background-size: 300% 100%;
    background-position: 100% 100%;
}

.btn-demo.bd-gradient-btn:hover {
    background-position: 0% 0%;
}

/* Smaller variant for specific use cases */
.bd-gradient-btn.btn-sm {
    font-size: 15px;
    height: 50px;
    padding: 0px 28px;
    border-radius: 25px;
}

/* Larger variant for hero sections */
.bd-gradient-btn.btn-lg {
    font-size: 19px;
    height: 70px;
    padding: 0px 42px;
    border-radius: 35px;
}


/* Final CTA Section Background Gradient */
.final-cta-section {
    background: linear-gradient(90deg, #B242E3 20%, #0abcc2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #B242E3 20%, #0abcc2 100%);
    opacity: 0.9;
    z-index: 1;
}

.final-cta-section .container {
    position: relative;
    z-index: 2;
}

.final-cta-section h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.final-cta-section .email-input {
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(255,255,255,0.3);
    color: #333;
}

.final-cta-section .email-input::placeholder {
    color: #666;
}

.final-cta-section .book-demo-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.final-cta-section .book-demo-btn:hover {
    background: white;
    color: #B242E3;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}


/* 3D Card Stack Styles */
.card-stack-3d {
    position: relative;
    width: 320px;
    height: 200px;
    perspective: 2500px;
    transform-style: preserve-3d;
    margin: 0 auto;
    transition: transform 0.6s ease;
    transform: rotateX(15deg) rotateY(0deg);
    will-change: transform;
    backface-visibility: hidden;
}

/* Completely stop all card stack animations */
.card-stack-3d,
.card-stack-3d.rotating,
.card-stack-3d * {
    animation: none !important;
    animation-play-state: paused !important;
}

.card-stack-3d.rotating {
    /* animation: cardRotateHorizontal 12s ease-in-out infinite; */
    will-change: transform;
    backface-visibility: hidden;
}

.card-layer,
.corpayss-card-layer,
.corpayss {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    transform-style: preserve-3d;
    transition: all 2.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    opacity: 1; /* Make layers visible by default */
    transform: translateZ(0px); /* Start at base position */
    will-change: transform, opacity, filter, box-shadow;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Enhanced 8-Layer 3D Card System - Clean Exploded View */
.card-stack-3d {
    perspective: 1500px;
    perspective-origin: center center;
    width: 400px;
    height: 250px;
    margin: 0 auto;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(17.5137deg) rotateY(9.13229deg);
    transition: transform 0.8s ease;
}

/* Base layer styling - Always in exploded view */
.card-layer,
.corpayss-card-layer {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    transform-style: preserve-3d;
    opacity: 1;
    cursor: pointer;
}

/* Layer 1: EMV Chip (Top) - Maximum gap for easy hover */
.card-layer[data-layer="chip"],
.corpayss-card-layer[data-layer="chip"] {
    background: linear-gradient(90deg, #B242E3 20%, #0abcc2 100%);
    transform: translateZ(240px) translateY(-80px) translateX(160px);
    z-index: 6;
    backdrop-filter: blur(2px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    border: 0px solid #444;
}

/* Layer 2: Transparent Overlay - Maximum gap for easy hover */
.card-layer[data-layer="transparent-overlay"],
.corpayss-card-layer[data-layer="transparent-overlay"] {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(1px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateZ(160px) translateY(-60px) translateX(120px);
    z-index: 5;
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.1);
}

/* Layer 3: Security Layer - Much larger gap for easy hover */
.card-layer[data-layer="security"],
.corpayss-card-layer[data-layer="security"] {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateZ(80px) translateY(-40px) translateX(80px);
    z-index: 4;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

/* Layer 4: Printed Design Layer - Base position with gap */
.card-layer[data-layer="printed-design"],
.corpayss-card-layer[data-layer="printed-design"] {
    background: linear-gradient(135deg, #f1c40f 0%, #27ae60 50%, #3498db 100%);
    color: #2c3e50;
    transform: translateZ(0px) translateY(0px) translateX(40px);
    z-index: 3;
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.4);
    position: relative;
    overflow: hidden;
}

/* Enhanced dynamic animations with rotation and complex movement */
@keyframes floatChip {
    0% {
        transform: translateZ(120px) translateY(-40px) translateX(60px) rotateZ(0deg);
    }
    25% {
        transform: translateZ(130px) translateY(-45px) translateX(70px) rotateZ(5deg);
    }
    50% {
        transform: translateZ(110px) translateY(-35px) translateX(50px) rotateZ(0deg);
    }
    75% {
        transform: translateZ(125px) translateY(-42px) translateX(65px) rotateZ(-3deg);
    }
    100% {
        transform: translateZ(120px) translateY(-40px) translateX(60px) rotateZ(0deg);
    }
}

@keyframes floatOverlay {
    0% {
        transform: translateZ(80px) translateY(-25px) translateX(40px) rotateX(0deg);
    }
    20% {
        transform: translateZ(90px) translateY(-30px) translateX(50px) rotateX(5deg);
    }
    40% {
        transform: translateZ(85px) translateY(-20px) translateX(30px) rotateX(-2deg);
    }
    60% {
        transform: translateZ(70px) translateY(-28px) translateX(45px) rotateX(3deg);
    }
    80% {
        transform: translateZ(88px) translateY(-22px) translateX(35px) rotateX(-1deg);
    }
    100% {
        transform: translateZ(80px) translateY(-25px) translateX(40px) rotateX(0deg);
    }
}

@keyframes floatSecurity {
    0% {
        transform: translateZ(40px) translateY(-15px) translateX(25px) rotateY(0deg);
    }
    30% {
        transform: translateZ(50px) translateY(-20px) translateX(35px) rotateY(8deg);
    }
    50% {
        transform: translateZ(35px) translateY(-10px) translateX(15px) rotateY(-5deg);
    }
    70% {
        transform: translateZ(45px) translateY(-18px) translateX(30px) rotateY(6deg);
    }
    100% {
        transform: translateZ(40px) translateY(-15px) translateX(25px) rotateY(0deg);
    }
}

@keyframes floatBase {
    0% {
        transform: translateZ(0px) translateY(0px) translateX(0px) rotateZ(0deg);
    }
    33% {
        transform: translateZ(5px) translateY(-2px) translateX(3px) rotateZ(2deg);
    }
    66% {
        transform: translateZ(2px) translateY(1px) translateX(-2px) rotateZ(-1deg);
    }
    100% {
        transform: translateZ(0px) translateY(0px) translateX(0px) rotateZ(0deg);
    }
}

/* Layer labels - hidden by default, show on individual hover */
.corpayss-card-layer .layer-label {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Show label only on individual layer hover - Enhanced - REMOVED */
/*
.corpayss-card-layer:hover .layer-label {
    opacity: 1;
    transform: translateX(60px) translateY(-15px) scale(1.1);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    width: max-content;
    text-align: center;
    margin-top: 10px;
}
*/

/* Enhanced hover effects for individual layers - Premium Left side slide out effect */
.card-layer,
.corpayss-card-layer {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    will-change: transform;
    pointer-events: auto;
    isolation: isolate;
}

/* General hover effects removed */
/*
.card-layer:hover,
.corpayss-card-layer:hover {
    cursor: pointer;
    z-index: 1000 !important;
}
*/

/* Individual layer LEFT slide out effects - Enhanced with premium animations (70% distance) */
/* Chip layer hover effect removed per request */
/*
.corpayss-card-layer[data-layer="chip"]:hover {
    transform: translateZ(150px) translateY(-50px) translateX(-245px) scale(1.1) rotateY(-15deg) !important;
    animation: none !important;
    animation-play-state: paused !important;
    animation-duration: 0s !important;
    box-shadow: -30px 30px 80px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    pointer-events: auto;
    isolation: isolate;
}
*/

/* .corpayss-card-layer[data-layer="transparent-overlay"]:hover {
    transform: translateZ(120px) translateY(-35px) translateX(-224px) scale(1.08) rotateY(-12deg) !important;
    animation: none !important;
    animation-play-state: paused !important;
    animation-duration: 0s !important;
    box-shadow: -25px 25px 70px rgba(255, 255, 255, 0.15), 0 0 30px rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(8px) !important;
    pointer-events: auto;
    isolation: isolate;
} */

/* .corpayss-card-layer[data-layer="security"]:hover {
    transform: translateZ(90px) translateY(-25px) translateX(-203px) scale(1.06) rotateY(-10deg) !important;
    animation: none !important;
    animation-play-state: paused !important;
    animation-duration: 0s !important;
    box-shadow: -20px 20px 60px rgba(255, 255, 255, 0.2), 0 0 25px rgba(255, 255, 255, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(6px) !important;
    pointer-events: auto;
    isolation: isolate;
} */

/* .corpayss-card-layer[data-layer="printed-design"]:hover {
    transform: translateZ(60px) translateY(-15px) translateX(-182px) scale(1.04) rotateY(-8deg) !important;
    animation: none !important;
    animation-play-state: paused !important;
    animation-duration: 0s !important;
    box-shadow: -15px 15px 50px rgba(241, 196, 15, 0.3), 0 0 20px rgba(241, 196, 15, 0.4) !important;
    border: 1px solid rgba(241, 196, 15, 0.6) !important;
    backdrop-filter: blur(4px) !important;
    pointer-events: auto;
    isolation: isolate;
} */

/* Maintain exploded view - DISABLED to prevent conflicts with individual layer hover */
/* .card-stack-3d:hover {
    transform: rotateX(25deg) rotateY(-30deg) scale(1.05);
} */

/* Individual layer hover states - DISABLED to prevent conflicts with slide-out effect */
/* .card-stack-3d:hover .card-layer[data-layer="chip"],
.card-stack-3d:hover .corpayss-card-layer[data-layer="chip"] {
    transform: translateZ(140px) translateY(-50px) translateX(80px) scale(1.1);
    animation-play-state: paused;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
}

.card-stack-3d:hover .card-layer[data-layer="transparent-overlay"],
.card-stack-3d:hover .corpayss-card-layer[data-layer="transparent-overlay"] {
    transform: translateZ(100px) translateY(-35px) translateX(60px) scale(1.08);
    animation-play-state: paused;
    box-shadow: 0 25px 60px rgba(255, 255, 255, 0.2);
}

.card-stack-3d:hover .card-layer[data-layer="security"],
.card-stack-3d:hover .corpayss-card-layer[data-layer="security"] {
    transform: translateZ(60px) translateY(-25px) translateX(45px) scale(1.06);
    animation-play-state: paused;
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.3);
}

.card-stack-3d:hover .card-layer[data-layer="printed-design"],
.card-stack-3d:hover .corpayss-card-layer[data-layer="printed-design"] {
    transform: translateZ(10px) translateY(-5px) translateX(8px) scale(1.04);
    animation-play-state: paused;
    box-shadow: 0 15px 40px rgba(241, 196, 15, 0.6);
} */

/* Special effects */
@keyframes hologramShimmer {
    0% { 
        background-position: -200% 0;
        opacity: 0.7;
    }
    50% { 
        background-position: 200% 0;
        opacity: 1;
    }
    100% { 
        background-position: -200% 0;
        opacity: 0.7;
    }
}

/* Enhanced printed design layer patterns */
.corpayss-card-layer[data-layer="printed-design"] .card-patterns {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(46, 204, 113, 0.3) 0%, 
        rgba(241, 196, 15, 0.4) 25%, 
        rgba(52, 152, 219, 0.3) 50%, 
        rgba(155, 89, 182, 0.2) 75%, 
        rgba(46, 204, 113, 0.3) 100%);
    opacity: 0.6;
    background-size: 40px 40px;
    animation: patternShift 4s linear infinite;
}

@keyframes patternShift {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

/* Enhanced chip styling */
.corpayss-emv-chip {
    /* position: absolute;
    top: 30%;
    left: 15%;
    width: 35px;
    height: 28px;
    background: linear-gradient(135deg, #c0392b 0%, #8e44ad 50%, #2980b9 100%);
    border-radius: 4px;
    border: 2px solid #34495e;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3); */
}



/* Material effects */
.magnetic-strip {
    position: absolute;
    top: 40%;
    right: 20px;
    width: 200px;
    height: 15px;
    background: linear-gradient(90deg, #1a1a1a 0%, #2c3e50 50%, #1a1a1a 100%);
    border-radius: 2px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.antenna-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 60px;
    border: 2px solid rgba(149, 165, 166, 0.6);
    border-radius: 8px;
    background: linear-gradient(45deg, transparent 30%, rgba(189, 195, 199, 0.2) 50%, transparent 70%);
}

.antenna-pattern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 40px;
    border: 1px solid rgba(149, 165, 166, 0.4);
    border-radius: 4px;
}

.hologram-effect {
    position: absolute;
    top: 20%;
    right: 20%;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(52, 152, 219, 0.3) 25%, 
        rgba(155, 89, 182, 0.3) 50%, 
        rgba(46, 204, 113, 0.3) 75%, 
        rgba(255, 255, 255, 0.4) 100%);
    border-radius: 50%;
    animation: hologramPulse 2s ease-in-out infinite;
}

@keyframes hologramPulse {
    0%, 100% { 
        opacity: 0.6; 
        transform: scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.1); 
    }
}

.antenna-pattern::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.hologram-effect {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #ff0080, #00ff80, #8000ff, #ff8000, #ff0080);
    animation: hologramRotate 2s linear infinite;
}

@keyframes hologramRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced EMV Chip styling - matches dark chip in image */
.corpayss-emv-chip {
    position: absolute;
    top: 60px;
    left: 60px;
    width: 50px;
    height: 35px;
  
  

}

/* Enhanced chip label styling */


/* Core with Antenna label */
.antenna-pattern::after {
    content: "Core with Antenna";
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.7);
    padding: 4px 8px;
    border-radius: 4px;
    backdrop-filter: blur(8px);
    white-space: nowrap;
}


.card-stack-3d.exploded .card-layer[data-layer="printed-front"] {
    transform: translateZ(0px) translateY(0px) translateX(0px);
}

/* Layer content styling */
.layer-content,
.corpayss-layer-content {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Layer description text styling */
.layer-description {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    padding: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.layer-description h4 {
    margin: 0 0 8px 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.layer-description p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    line-height: 1.4;
}

/* Show description on hover - REMOVED */
/*
.corpayss-card-layer:hover .layer-description {
    opacity: 1;
    transform: translateY(0);
}
*/

.layer-label {
    position: absolute;
    top: -25px;
    right: -10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.card-stack-3d.exploded .layer-label {
    opacity: 1;
    transform: translateX(0);
}

/* Card elements */
.card-number {
    font-family: "Courier New", monospace;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: 40px;
}

.card-holder {
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
}

.card-expiry {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 11px;
    font-weight: 500;
}

.Mesh-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 16px;
    font-weight: 700;
    color: #3BECD4;
}

/* EMV Chip */
.emv-chip {
    position: absolute;
    top: 50px;
    left: 30px;
    width: 30px;
    height: 24px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.2);
}


/* Hologram effect */
.hologram-effect {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, 
        rgba(255,0,255,0.3) 0%,
        rgba(0,255,255,0.3) 25%,
        rgba(255,255,0,0.3) 50%,
        rgba(255,0,255,0.3) 75%,
        rgba(0,255,255,0.3) 100%
    );
    border-radius: 50%;
    animation: hologramShimmer 2s ease-in-out infinite;
}

/* Magnetic strip */
.magnetic-strip {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(90deg, #1a1a1a 0%, #333 50%, #1a1a1a 100%);
}

/* Antenna pattern */
.antenna-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    border-radius: 12px;
}

/* Stack controls */
.stack-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.stack-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stack-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.stack-btn.active {
    background: rgba(59,236,212,0.3);
    border-color: #3BECD4;
}

/* Animations */
@keyframes cardRotateHorizontal {
    0% { 
        transform: rotateX(15deg) rotateY(-50deg) translateY(0px) translateX(0px);
    }
    20% { 
        transform: rotateX(2deg) rotateY(-25deg) translateY(-20px) translateX(-8px);
    }
    40% { 
        transform: rotateX(10deg) rotateY(15deg) translateY(-12px) translateX(12px);
    }
    60% { 
        transform: rotateX(30deg) rotateY(50deg) translateY(8px) translateX(5px);
    }
    80% { 
        transform: rotateX(5deg) rotateY(25deg) translateY(-18px) translateX(-12px);
    }
    100% { 
        transform: rotateX(15deg) rotateY(-50deg) translateY(0px) translateX(0px);
    }
}

@keyframes hologramShimmer {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes smoothExplode {
    0% {
        transform: translateZ(0px) scale(1);
        opacity: 0.8;
    }
    20% {
        transform: translateZ(10px) scale(1.02);
        opacity: 0.9;
    }
    60% {
        transform: translateZ(var(--target-z)) scale(1.05);
        opacity: 1;
    }
    100% {
        transform: translateZ(var(--target-z)) scale(1);
        opacity: 1;
    }
}

@keyframes layerSlideIn {
    0% {
        transform: translateZ(0px) translateY(30px) scale(0.9);
        opacity: 0;
        filter: blur(4px);
    }
    30% {
        transform: translateZ(20px) translateY(15px) scale(0.95);
        opacity: 0.4;
        filter: blur(2px);
    }
    70% {
        transform: translateZ(var(--target-z, 60px)) translateY(-8px) scale(1.03);
        opacity: 0.8;
        filter: blur(0px);
    }
    90% {
        transform: translateZ(var(--target-z, 60px)) translateY(3px) scale(1.01);
        opacity: 0.95;
        filter: blur(0px);
    }
    100% {
        transform: translateZ(var(--target-z, 60px)) translateY(0px) scale(1);
        opacity: 1;
        filter: blur(0px);
    }
}

@keyframes explodeGlow {
    0% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    }
    20% {
        box-shadow: 0 12px 40px rgba(59, 236, 212, 0.2), 0 8px 32px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 16px 56px rgba(59, 236, 212, 0.4), 0 12px 48px rgba(138, 43, 226, 0.2), 0 8px 32px rgba(0, 0, 0, 0.15);
    }
    80% {
        box-shadow: 0 14px 48px rgba(59, 236, 212, 0.3), 0 10px 40px rgba(138, 43, 226, 0.15), 0 8px 32px rgba(0, 0, 0, 0.15);
    }
    100% {
        box-shadow: 0 10px 40px rgba(59, 236, 212, 0.1), 0 8px 32px rgba(0, 0, 0, 0.15);
    }
}

@keyframes smoothEmergence {
    0% {
        transform: translateZ(0px) translateY(40px) rotateX(30deg) scale(0.85);
        opacity: 0;
        filter: blur(6px) brightness(0.7);
    }
    25% {
        transform: translateZ(15px) translateY(25px) rotateX(20deg) scale(0.92);
        opacity: 0.3;
        filter: blur(3px) brightness(0.85);
    }
    60% {
        transform: translateZ(var(--target-z, 60px)) translateY(-10px) rotateX(5deg) scale(1.05);
        opacity: 0.8;
        filter: blur(0px) brightness(1.1);
    }
    85% {
        transform: translateZ(var(--target-z, 60px)) translateY(5px) rotateX(0deg) scale(1.02);
        opacity: 0.95;
        filter: blur(0px) brightness(1.05);
    }
    100% {
        transform: translateZ(var(--target-z, 60px)) translateY(0px) rotateX(0deg) scale(1);
        opacity: 1;
        filter: blur(0px) brightness(1);
    }
}

/* Hover effects */
.card-layer:hover {
    transform: translateZ(20px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

/* All hover effects removed per request */
/*
.card-stack-3d.exploded .card-layer:hover {
    transform: translateZ(100px) scale(1.05);
}

.card-stack-3d:hover .card-layer[data-layer="signature"] {
    transform: translateZ(-120px) translateY(60px) translateX(-50px) !important;
}

.card-stack-3d:hover .card-layer[data-layer="overlay-magnetic"] {
    transform: translateZ(-90px) translateY(45px) translateX(-35px) !important;
}

.card-stack-3d:hover .card-layer[data-layer="printed-back"] {
    transform: translateZ(-60px) translateY(30px) translateX(-25px) !important;
}

.card-stack-3d:hover .card-layer[data-layer="core-antenna"] {
    transform: translateZ(-30px) translateY(15px) translateX(-12px) !important;
}

.card-stack-3d:hover .card-layer[data-layer="printed-front"] {
    transform: translateZ(0px) translateY(0px) translateX(0px) !important;
}

.card-stack-3d:hover .card-layer[data-layer="overlay-transparent"] {
    transform: translateZ(30px) translateY(-15px) translateX(12px) !important;
}

.card-stack-3d:hover .card-layer[data-layer="hologram"] {
    transform: translateZ(60px) translateY(-30px) translateX(25px) !important;
}

.card-stack-3d:hover .card-layer[data-layer="chip"] {
    transform: translateZ(90px) translateY(-45px) translateX(35px) !important;
}
*/

/* Smooth transitions for all layers */
.card-layer {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Enhanced glow and animation pause effects removed */
/*
.card-stack-3d:hover .card-layer {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25), 0 0 25px rgba(59, 236, 212, 0.2) !important;
}

.card-stack-3d:hover.slow-rotating {
    animation-play-state: paused;
}

.card-stack-3d:hover.rotating {
    animation-play-state: paused;
}
*/

/* Exploding animation class */
.card-layer.exploding {
    animation: 
        smoothEmergence 2.5s cubic-bezier(0.23, 1, 0.32, 1) forwards,
        explodeGlow 2.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    transform-origin: center center;
    will-change: transform, opacity, filter, box-shadow;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

/* Enhanced smooth transitions during explode */
.card-stack-3d.exploded .card-layer {
    transition: all 3s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, opacity, filter, box-shadow;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

/* Individual layer micro-animations for realistic separation */
.card-stack-3d.slow-rotating .card-layer[data-layer="signature"] {
    animation: layerFloat1 16s ease-in-out infinite;
}

.card-stack-3d.slow-rotating .card-layer[data-layer="overlay-magnetic"] {
    animation: layerFloat2 16s ease-in-out infinite;
}

.card-stack-3d.slow-rotating .card-layer[data-layer="printed-back"] {
    animation: layerFloat3 16s ease-in-out infinite;
}

.card-stack-3d.slow-rotating .card-layer[data-layer="core-antenna"] {
    animation: layerFloat4 16s ease-in-out infinite;
}

.card-stack-3d.slow-rotating .card-layer[data-layer="printed-front"] {
    animation: layerFloat5 16s ease-in-out infinite;
}

.card-stack-3d.slow-rotating .card-layer[data-layer="overlay-transparent"] {
    animation: layerFloat6 16s ease-in-out infinite;
}

.card-stack-3d.slow-rotating .card-layer[data-layer="hologram"] {
    animation: layerFloat7 16s ease-in-out infinite;
}

.card-stack-3d.slow-rotating .card-layer[data-layer="chip"] {
    animation: layerFloat8 16s ease-in-out infinite;
}

/* Layer Info Popup Styles */
.layer-info-popup {
    position: fixed;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(59, 236, 212, 0.3);
    border-radius: 12px;
    padding: 0;
    min-width: 300px;
    max-width: 400px;
    z-index: 10000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 20px rgba(59, 236, 212, 0.2);
    animation: popupSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: left center;
}

.layer-info-popup .info-content {
    padding: 20px;
    color: white;
}

.layer-info-popup .info-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(59, 236, 212, 0.2);
}

.layer-info-popup .info-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #3BECD4;
    line-height: 1.3;
    flex: 1;
    padding-right: 10px;
}

.layer-info-popup .close-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.layer-info-popup .close-btn:hover {
    color: #3BECD4;
    background: rgba(59, 236, 212, 0.1);
}

.layer-info-popup .info-description {
    margin: 0 0 16px 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.layer-info-popup .info-footer {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.layer-info-popup .layer-number {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-stack-3d {
        width: 280px;
        height: 175px;
    }
    
    .card-number {
        font-size: 16px;
    }
    
    .stack-controls {
        flex-wrap: wrap;
    }
}


/* Slow rotation animation for auto-demo */
.card-stack-3d.slow-rotating {
    animation: cardRotateHorizontalSlow 16s ease-in-out infinite;
    will-change: transform;
    backface-visibility: hidden;
}

@keyframes cardRotateHorizontalSlow {
    0% { 
        transform: rotateX(15deg) rotateY(-35deg) translateY(0px) translateX(0px);
    }
    20% { 
        transform: rotateX(5deg) rotateY(-20deg) translateY(-15px) translateX(-5px);
    }
    40% { 
        transform: rotateX(8deg) rotateY(10deg) translateY(-8px) translateX(8px);
    }
    60% { 
        transform: rotateX(25deg) rotateY(35deg) translateY(5px) translateX(3px);
    }
    80% { 
        transform: rotateX(8deg) rotateY(20deg) translateY(-12px) translateX(-8px);
    }
    100% { 
        transform: rotateX(15deg) rotateY(-35deg) translateY(0px) translateX(0px);
    }
}

/* Individual layer floating animations for realistic gaps */
@keyframes layerFloat1 {
    0%, 100% { transform: translateZ(0px) translateY(0px) rotateZ(0deg); }
    25% { transform: translateZ(2px) translateY(-1px) rotateZ(0.5deg); }
    50% { transform: translateZ(-1px) translateY(1px) rotateZ(-0.3deg); }
    75% { transform: translateZ(1px) translateY(-0.5px) rotateZ(0.2deg); }
}

@keyframes layerFloat2 {
    0%, 100% { transform: translateZ(0px) translateY(0px) rotateZ(0deg); }
    20% { transform: translateZ(-1px) translateY(1px) rotateZ(-0.3deg); }
    60% { transform: translateZ(3px) translateY(-1.5px) rotateZ(0.6deg); }
    80% { transform: translateZ(1px) translateY(0.5px) rotateZ(-0.2deg); }
}

@keyframes layerFloat3 {
    0%, 100% { transform: translateZ(0px) translateY(0px) rotateZ(0deg); }
    30% { transform: translateZ(2px) translateY(-1px) rotateZ(0.4deg); }
    70% { transform: translateZ(-2px) translateY(1.5px) rotateZ(-0.5deg); }
    90% { transform: translateZ(1px) translateY(-0.3px) rotateZ(0.1deg); }
}

@keyframes layerFloat4 {
    0%, 100% { transform: translateZ(0px) translateY(0px) rotateZ(0deg); }
    15% { transform: translateZ(-1px) translateY(0.5px) rotateZ(-0.2deg); }
    45% { transform: translateZ(4px) translateY(-2px) rotateZ(0.7deg); }
    85% { transform: translateZ(2px) translateY(1px) rotateZ(-0.4deg); }
}

@keyframes layerFloat5 {
    0%, 100% { transform: translateZ(0px) translateY(0px) rotateZ(0deg); }
    35% { transform: translateZ(3px) translateY(-1.5px) rotateZ(0.5deg); }
    65% { transform: translateZ(-1px) translateY(2px) rotateZ(-0.6deg); }
    95% { transform: translateZ(1px) translateY(-0.5px) rotateZ(0.3deg); }
}

@keyframes layerFloat6 {
    0%, 100% { transform: translateZ(0px) translateY(0px) rotateZ(0deg); }
    10% { transform: translateZ(1px) translateY(-0.5px) rotateZ(0.2deg); }
    40% { transform: translateZ(-2px) translateY(1.5px) rotateZ(-0.4deg); }
    75% { transform: translateZ(3px) translateY(-1px) rotateZ(0.6deg); }
}

@keyframes layerFloat7 {
    0%, 100% { transform: translateZ(0px) translateY(0px) rotateZ(0deg); }
    25% { transform: translateZ(-1px) translateY(1px) rotateZ(-0.3deg); }
    55% { transform: translateZ(4px) translateY(-2px) rotateZ(0.8deg); }
    80% { transform: translateZ(2px) translateY(0.5px) rotateZ(-0.2deg); }
}

@keyframes layerFloat8 {
    0%, 100% { transform: translateZ(0px) translateY(0px) rotateZ(0deg); }
    20% { transform: translateZ(2px) translateY(-1px) rotateZ(0.4deg); }
    50% { transform: translateZ(-2px) translateY(2px) rotateZ(-0.7deg); }
    90% { transform: translateZ(3px) translateY(-0.5px) rotateZ(0.5deg); }
}

/* Enhanced entrance animation */
.card-stack-3d {
    opacity: 1;
    animation: cardStackEntrance 1.5s ease-out forwards;
}

@keyframes cardStackEntrance {
    0% {
        opacity: 0;
        transform: rotateX(15deg) rotateY(0deg) translateY(20px) scale(0.95);
    }
    50% {
        opacity: 0.7;
        transform: rotateX(15deg) rotateY(0deg) translateY(5px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: rotateX(15deg) rotateY(0deg) translateY(0px) scale(1);
    }
}

/* Remove conflicting layer animation */

.card-stack-3d.exploded .card-layer[data-layer="signature"] {
    animation-delay: 0.1s;
}

.card-stack-3d.exploded .card-layer[data-layer="overlay-magnetic"] {
    animation-delay: 0.2s;
}

.card-stack-3d.exploded .card-layer[data-layer="printed-back"] {
    animation-delay: 0.3s;
}

.card-stack-3d.exploded .card-layer[data-layer="core-antenna"] {
    animation-delay: 0.4s;
}

.card-stack-3d.exploded .card-layer[data-layer="printed-front"] {
    animation-delay: 0.5s;
}

.card-stack-3d.exploded .card-layer[data-layer="overlay-transparent"] {
    animation-delay: 0.6s;
}

.card-stack-3d.exploded .card-layer[data-layer="hologram"] {
    animation-delay: 0.7s;
}

.card-stack-3d.exploded .card-layer[data-layer="chip"] {
    animation-delay: 0.8s;
}

@keyframes layerSlideIn {
    0% {
        opacity: 0.7;
        transform: translateZ(0px) translateY(0px) translateX(0px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: var(--exploded-transform) scale(1);
    }
}

/* Set CSS custom properties for exploded positions */
.card-stack-3d.exploded .card-layer[data-layer="signature"] {
    --exploded-transform: translateZ(-80px) translateY(60px) translateX(-20px);
}

.card-stack-3d.exploded .card-layer[data-layer="overlay-magnetic"] {
    --exploded-transform: translateZ(-60px) translateY(45px) translateX(-15px);
}

.card-stack-3d.exploded .card-layer[data-layer="printed-back"] {
    --exploded-transform: translateZ(-40px) translateY(30px) translateX(-10px);
}

.card-stack-3d.exploded .card-layer[data-layer="core-antenna"] {
    --exploded-transform: translateZ(-20px) translateY(15px) translateX(-5px);
}

.card-stack-3d.exploded .card-layer[data-layer="printed-front"] {
    --exploded-transform: translateZ(0px) translateY(0px) translateX(0px);
}

.card-stack-3d.exploded .card-layer[data-layer="overlay-transparent"] {
    --exploded-transform: translateZ(20px) translateY(-15px) translateX(5px);
}

.card-stack-3d.exploded .card-layer[data-layer="hologram"] {
    --exploded-transform: translateZ(40px) translateY(-30px) translateX(10px);
}

.card-stack-3d.exploded .card-layer[data-layer="chip"] {
    --exploded-transform: translateZ(60px) translateY(-45px) translateX(15px);
}


/* Hover pause functionality */
.card-stack-3d:hover.rotating,
.card-stack-3d:hover.slow-rotating {
    animation-play-state: paused;
}

/* Enhanced hover feedback */
.card-stack-3d:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.card-stack-3d:not(:hover) {
    transition: transform 0.3s ease;
}

/* Smooth pause transition */
.card-stack-3d.rotating,
.card-stack-3d.slow-rotating {
    animation-play-state: running;
    transition: transform 0.3s ease;
}


/* Enhanced exploded view positioning for maximum visibility */
.card-stack-3d.exploded .card-layer[data-layer="signature"] {
    transform: translateZ(-120px) translateY(100px) translateX(-30px) !important;
}

.card-stack-3d.exploded .card-layer[data-layer="overlay-magnetic"] {
    transform: translateZ(-90px) translateY(75px) translateX(-22px) !important;
}

.card-stack-3d.exploded .card-layer[data-layer="printed-back"] {
    transform: translateZ(-60px) translateY(50px) translateX(-15px) !important;
}

.card-stack-3d.exploded .card-layer[data-layer="core-antenna"] {
    transform: translateZ(-30px) translateY(25px) translateX(-8px) !important;
}

.card-stack-3d.exploded .card-layer[data-layer="printed-front"] {
    transform: translateZ(0px) translateY(0px) translateX(0px) !important;
}

.card-stack-3d.exploded .card-layer[data-layer="overlay-transparent"] {
    transform: translateZ(30px) translateY(-25px) translateX(8px) !important;
}

.card-stack-3d.exploded .card-layer[data-layer="hologram"] {
    transform: translateZ(60px) translateY(-50px) translateX(15px) !important;
}

.card-stack-3d.exploded .card-layer[data-layer="chip"] {
    transform: translateZ(90px) translateY(-75px) translateX(22px) !important;
}

/* Enhanced layer borders for better definition */
.card-layer {
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.card-layer::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent, rgba(255,255,255,0.1));
    border-radius: inherit;
    z-index: -1;
}

/* Enhanced layer labels visibility */
.layer-label {
    background: rgba(0,0,0,0.9) !important;
    border: 1px solid rgba(59, 236, 212, 0.6);
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    font-weight: 600;
    padding: 6px 12px !important;
    font-size: 12px !important;
}

/* More visible magnetic strip */
.magnetic-strip {
    background: linear-gradient(90deg, #000 0%, #333 25%, #000 50%, #333 75%, #000 100%);
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* Enhanced hologram visibility */
.hologram-effect {
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.5);
}

/* Enhanced EMV chip visibility */
.emv-chip {
    border: 2px solid rgba(0,0,0,0.4);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}




/* Updated CSS custom properties for better layer visibility */
.card-stack-3d.exploded .card-layer[data-layer="signature"] {
    --exploded-transform: translateZ(-120px) translateY(100px) translateX(-30px);
}

.card-stack-3d.exploded .card-layer[data-layer="overlay-magnetic"] {
    --exploded-transform: translateZ(-90px) translateY(75px) translateX(-22px);
}

.card-stack-3d.exploded .card-layer[data-layer="printed-back"] {
    --exploded-transform: translateZ(-60px) translateY(50px) translateX(-15px);
}

.card-stack-3d.exploded .card-layer[data-layer="core-antenna"] {
    --exploded-transform: translateZ(-30px) translateY(25px) translateX(-8px);
}

.card-stack-3d.exploded .card-layer[data-layer="printed-front"] {
    --exploded-transform: translateZ(0px) translateY(0px) translateX(0px);
}

.card-stack-3d.exploded .card-layer[data-layer="overlay-transparent"] {
    --exploded-transform: translateZ(30px) translateY(-25px) translateX(8px);
}

.card-stack-3d.exploded .card-layer[data-layer="hologram"] {
    --exploded-transform: translateZ(60px) translateY(-50px) translateX(15px);
}

.card-stack-3d.exploded .card-layer[data-layer="chip"] {
    --exploded-transform: translateZ(90px) translateY(-75px) translateX(22px);
}

/* Enhanced 3D perspective for better layer separation */
.card-stack-3d {
    perspective: 1500px;
    perspective-origin: center center;
}


/* Remove button styles - buttons have been removed */
/* Stack controls styles removed as buttons are no longer present */

/* 3D Card Container Styles */
.card-container-3d {
    position: relative;
    width: 350px;
    height: 220px;
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.card-container-3d:hover {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
    overflow: hidden;
}

.card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Card Layer System */
.card-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.card-base {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    z-index: 1;
}

.card-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/background-card.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    border-radius: 16px;
}

.card-header {
    z-index: 2;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.bank-name {
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

.card-top-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.bank-logo {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 1px;
}

.contactless-symbol {
    font-size: 16px;
    opacity: 0.8;
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.card-chip {
    z-index: 3;
    padding: 25px;
    padding-top: 70px;
}

.chip-image {
    width: 40px;
    height: 30px;
    border-radius: 4px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    object-fit: cover;
}

.card-number {
    z-index: 4;
    padding: 25px;
    padding-top: 115px;
}

.number-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-family: 'Courier New', monospace;
}

.card-details {
    z-index: 5;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
    box-sizing: border-box;
}

.card-holder-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-holder {
    display: flex;
    flex-direction: column;
}

.label {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.date {
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.card-holder-name {
    margin-top: 8px;
}

.name {
    font-size: 14px;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
}

.visa-logo {
    background: white;
    color: #1e40af;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Card Back Styles */
.back-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.back-customer-service {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.magnetic-strip {
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #333 0%, #555 50%, #333 100%);
    margin: 20px 0;
}

.signature-section {
    padding: 20px;
}

.signature-panel {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 15px;
    position: relative;
}

.signature-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.signature-label, .signature-note {
    font-size: 8px;
    color: #333;
    font-weight: 600;
}

.signature-area {
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.signature-text {
    font-size: 14px;
    color: #333;
    font-style: italic;
}

.cvv-box {
    position: absolute;
    right: 15px;
    bottom: 15px;
    background: white;
    border: 1px solid #333;
    padding: 5px 10px;
    border-radius: 4px;
}

.cvv-number {
    font-size: 12px;
    color: #333;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.back-info-section {
    padding: 20px;
}

.info-text {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Clean card stack container without button spacing */
.cta-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.card-stack-3d {
    margin: 0 auto;
}

/* Single Card Layer Styles */
.card-container {
    position: relative;
    width: 450px;
    height: 285px;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
}

.card-layer {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
}

.layer-content {
    width: 100%;
    height: 100%;
    background: 
       url(./assets/background-card.png) no-repeat center center, 
       linear-gradient(135deg, #2d2d2d 0%, #1a1a1a59 19%, #0d0d0db5 50%, #000000b5 70%, #1a1a1a9c 97%);
    background-size: cover, cover;
    background-blend-mode: overlay;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 2px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 28px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Card Header */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.brand-logo {
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

.top-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.bank-name {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.bank-suffix {
    text-transform: lowercase;
}

/* Card Main */
.card-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.emv-chip {
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 4px;
    position: relative;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.chip-contacts {
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    /* background: linear-gradient(135deg, #b8860b, #8b6914); */
    border-radius: 2px;
}

.card-number {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-family: 'Courier New', monospace;
}

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.validity {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.label {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.2;
}

.date {
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.cardholder-name {
    font-size: 14px;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
    margin-left: 20px;
}

.payment-network {
    background: white;
    color: #1e40af;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-container {
        width: 350px;
        height: 220px;
    }
    
    .layer-content {
        padding: 20px;
    }
    
    .card-number {
        font-size: 18px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .card-container {
        width: 280px;
        height: 175px;
    }
    
    .layer-content {
        padding: 16px;
    }
    
    .card-number {
        font-size: 16px;
    }
}

/* Comprehensive Credit Card Animation Styles */

/* Credit Card 3D Container */
.card-container-3d {
    position: relative;
    width: 450px;
    height: 285px;
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    cursor: pointer;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
}

.card-container-3d:hover {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.6s;
}

.card-front {
    background: 
       url(./assets/background-card.png) no-repeat center center, linear-gradient(90deg, #B242E3 20%, #0abcc2 100%);
    background-size: cover, cover;
    background-blend-mode: overlay;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 2px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotateY(0deg) translateZ(5px);
}

.card-back {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 25%, #0d0d0d 50%, #1a1a1a 75%, #2d2d2d 100%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 2px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotateY(-180deg) translateZ(5px);
    color: white;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    direction: ltr;
    text-align: left;
}

/* Ensure all text elements in card back are properly oriented */
.card-back * {
    direction: ltr !important;
    text-align: left !important;
    transform: none !important;
}

.card-back .signature-panel * {
    direction: ltr !important;
}

.card-back .back-header {
    text-align: center !important;
}

.card-back .cvv-box * {
    text-align: center !important;
}

/* Card Layer System */
.card-layer {
    position: absolute;
    opacity: 1;
    transition: opacity 0.5s ease;
    width: 100%;
    height: 100%;
    border-radius: 18px;
}

.card-base {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 25%, #0d0d0d 50%, #000000 75%, #1a1a1a 100%);
    border-radius: 18px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.6),
        0 5px 15px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.card-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./assets/background-card.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    border-radius: 18px;
}

.card-header {
    top: 28px;
    left: 28px;
    right: 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: white;
    transform: translateZ(6px);
    transition: transform 0.3s ease;
    z-index: 2;
}

.card-top-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.bank-logo {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 1px;
}

.contactless-symbol {
    font-size: 16px;
    opacity: 0.8;
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.bank-name {
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

.card-chip {
    z-index: 3;
    padding: 25px;
    padding-top: 70px;
}

.chip-image {
    width: 40px;
    height: 30px;
    border-radius: 4px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    object-fit: cover;
}

.card-number {
    z-index: 4;
    padding: 25px;
    padding-top: 115px;
}

.number-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-family: 'Courier New', monospace;
}

.card-details {
    bottom: 28px;
    left: 28px;
    right: 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: white;
    transform: translateZ(6px);
    transition: transform 0.3s ease;
    z-index: 5;
}

.card-holder-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-holder {
    display: flex;
    flex-direction: column;
}

.label {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.date {
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.card-holder-name {
    margin-top: 8px;
}

.name {
    font-size: 14px;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
}

.visa-logo {
    background: white;
    color: #1e40af;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Card Back Elements */
.back-header {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.back-customer-service {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.magnetic-strip {
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #333 0%, #555 50%, #333 100%);
    margin: 20px 0;
}

.signature-section {
    padding: 20px 0;
}

.signature-panel {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 15px;
    position: relative;
}

.signature-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.signature-label, .signature-note {
    font-size: 8px;
    color: #333;
    font-weight: 600;
}

.signature-area {
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.signature-text {
    font-size: 14px;
    color: #333;
    font-style: italic;
}

.cvv-box {
    position: absolute;
    right: 15px;
    bottom: 15px;
    background: white;
    border: 1px solid #333;
    padding: 5px 10px;
    border-radius: 4px;
}

.cvv-number {
    font-size: 12px;
    color: #333;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.back-info-section {
    padding: 20px 0;
}

.info-text {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Layer visibility states */
.card-layer.visible {
    opacity: 1;
}

/* Enhanced Card Animations */
@keyframes cardFlip {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(180deg); }
}

@keyframes layerFadeIn {
    0% { opacity: 0; transform: translateZ(-10px); }
    100% { opacity: 1; transform: translateZ(0px); }
}

.card-layer {
    animation: layerFadeIn 0.8s ease-out forwards;
}

/* Corpayss Acceptance Section - Discover Style */
.corpayss-acceptance-section {
    background: linear-gradient(135deg, #1a1f36 0%, #2d3561 25%, #3d4785 50%, #4a5ba6 75%, #5b6dbf 100%);
    padding: 0;
    margin: 0;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.corpayss-acceptance-section .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
    height: 100%;
}

.two-column-container {
    display: flex;
    align-items: center;
    min-height: 400px;
    width: 100%;
}

.two-column__image {
    flex: 0 0 40%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.payment-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
        border-top-right-radius: 237px;

}

.two-column__content {
    flex: 0 0 60%;
    padding: 60px 80px;
    color: white;
    display: flex;
    align-items: center;
    height: 400px;
}

.content-inner {
    width: 100%;
    max-width: 500px;
}

.brand-logo {
    margin-bottom: 30px;
}

.corpayss-logo {
    height: auto;
    width: 280px;
}

.acceptance-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -0.02em;
}

.acceptance-description {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.corpayss-acceptance-section .btn-book-demo {
    background: #06B6D4;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.corpayss-acceptance-section .btn-book-demo:hover {
    background: #0891b2;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .two-column-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .two-column__image {
        flex: none;
        height: 250px;
        width: 100%;
    }
    
    .two-column__content {
        flex: none;
        padding: 40px 20px;
        height: auto;
    }
    
    .acceptance-title {
        font-size: 36px;
    }
    
    .acceptance-description {
        font-size: 16px;
    }
}

/* Final CTA Image Styling */
.final-cta-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
    filter: brightness(1.05) contrast(1.1);
    margin: 20px auto;
    display: block;
}

.final-cta-image:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-10px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.2),
        0 12px 35px rgba(0, 0, 0, 0.15),
        0 6px 15px rgba(0, 0, 0, 0.1);
    filter: brightness(1.1) contrast(1.15);
}

/* Final CTA Section Enhancements */
.final-cta-container {
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 500px;
}

.cta-content {
    flex: 1;
    max-width: 500px;
}

.final-cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .final-cta-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .final-cta-image {
        max-width: 400px;
        transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
    }
    
    .final-cta-image:hover {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-5px);
    }
}

