/* 3ioSetu Design System */
:root {
    --primary-color: #1a56db;
    /* Royal Blue */
    --primary-dark: #1e40af;
    --secondary-color: #f97316;
    /* Orange */
    --text-dark: #1e293b;
    /* Deep Slate */
    --text-gray: #64748b;
    /* Cool Gray */
    --bg-light: #f8fafc;
    /* Slate-50 */
    --bg-white: #ffffff;

    /* Premium Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);

    /* Colored Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(26, 86, 219, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(26, 86, 219, 0.1), 0 2px 4px -1px rgba(26, 86, 219, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(26, 86, 219, 0.1), 0 4px 6px -2px rgba(26, 86, 219, 0.05);
    --shadow-glow: 0 0 15px rgba(26, 86, 219, 0.3);

    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Page Transition */
body {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

body.loaded {
    opacity: 1;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
    /* Base 16px */
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
    background-color: var(--bg-white);
    overflow-x: hidden;
    max-width: 100vw;
    font-size: 1rem;
}

/* Global Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 4rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 3rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 2rem;
}

p {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.text-primary {
    color: var(--primary-color);
}

.bg-light {
    background-color: var(--bg-light);
}

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.025em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(26, 86, 219, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 86, 219, 0.35);
}

.btn-primary:hover::after {
    left: 100%;
    transition: 0.7s;
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 1px solid rgba(26, 86, 219, 0.2);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--bg-light);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-light {
    background-color: white;
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: #f0f0f0;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a:not(.btn) {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
}

/* Language Selector */
.language-selector {
    position: relative;
    margin-left: 1rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.lang-btn:hover {
    background: rgba(26, 86, 219, 0.1);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    min-width: 150px;
    display: none;
    flex-direction: column;
    z-index: 1001;
    margin-top: 0.5rem;
    border: 1px solid #e5e7eb;
}

.lang-dropdown.active {
    display: flex;
}

.lang-option {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.lang-option:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.lang-option.active {
    background: rgba(26, 86, 219, 0.1);
    color: var(--primary-color);
    font-weight: 700;
}

/* Video Showcase Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background-color: #000;
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-card:hover .play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.video-card:hover .play-icon {
    transform: scale(1.1);
    background: white;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-modal-content {
    width: 90%;
    max-width: 900px;
    position: relative;
    background: black;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--secondary-color);
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2002;
    font-size: 1.2rem;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -70px;
}

.next-btn {
    right: -70px;
}

@media (max-width: 1024px) {
    .prev-btn {
        left: 10px;
        background: rgba(0, 0, 0, 0.5);
    }

    .next-btn {
        right: 10px;
        background: rgba(0, 0, 0, 0.5);
    }
}

.nav-links a:not(.btn) {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:not(.btn):hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(26, 86, 219, 0.1);
    color: var(--primary-color);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero h1 {
    /* Inherit mostly, just specific spacing */
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero h1 .highlight {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Feature Card */
.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.6);
    /* Subtle border instead of top border */
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(26, 86, 219, 0.1);
    background: white;
    border-color: white;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card .icon-box {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.75rem;
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 10px 20px -5px rgba(26, 86, 219, 0.3);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-item p {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

.hero-image-placeholder {
    position: relative;
    height: 500px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Using CSS to create a mockup visual since we don't have the actual image ready yet */
.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: var(--radius-md);
    border: 1px solid #e5e7eb;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Features Section */
.section {
    padding: 7rem 0;
    position: relative;
}

/* Section Backgrounds */
.bg-gradient {
    background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
}

.section-separator {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(26, 86, 219, 0.2), rgba(0, 0, 0, 0));
    width: 60%;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    text-align: center;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #1e293b, #334155);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Replaces old glow effect and simplified section header */

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}



/* Clients Marquee Section */
.clients-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
    overflow: hidden;
    /* Hide overflow for marquee */
}

.clients-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.clients-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.clients-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1rem));
        /* Move by half width (original set) */
    }
}

.client-card {
    background: white;
    padding: 0;
    /* Remove padding for image */
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 280px;
    /* Fixed width for marquee items */
    flex-shrink: 0;
    overflow: hidden;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.client-image-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.client-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.client-card:hover .client-image {
    transform: scale(1.05);
}

.client-info {
    padding: 1.5rem;
    text-align: center;
}

.client-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.3;
}

.client-detail {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.4;
    display: block;
}



/* Benefit Cards (Kiosk Page) */
.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-bottom: 4px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card .icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(26, 86, 219, 0.1);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.benefit-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Zigzag Feature Layout */
.feature-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-row .feature-text {
    flex: 1;
}

.feature-row .feature-image {
    flex: 1.2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-row .feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.feature-row .feature-image:hover img {
    transform: scale(1.02);
}

/* Interactive Feature Tabs */
.feature-tabs-container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    margin-top: 3rem;
}

.feature-tab-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.feature-tab {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--text-gray);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.feature-tab:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.feature-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(26, 86, 219, 0.2);
}

.feature-tab i {
    font-size: 1.25rem;
    width: 30px;
    text-align: center;
}

.feature-tab-content {
    flex: 2;
    position: relative;
    min-height: 450px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.feature-pane {
    display: none;
    animation: fadeIn 0.4s ease-out;
    height: 100%;
}

.feature-pane.active {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-pane img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.feature-pane h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-pane p {
    color: var(--text-gray);
    line-height: 1.7;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@media (max-width: 992px) {
    .feature-tabs-container {
        flex-direction: column;
        gap: 2rem;
    }

    .feature-tab-list {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .feature-tab {
        min-width: 200px;
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    .feature-row {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .feature-row.reverse {
        flex-direction: column;
    }

    .feature-row .feature-image {
        width: 100%;
    }
}

/* Dark Section */
.bg-dark {
    background-color: var(--primary-color);
    color: white;
}

.bg-dark h2,
.bg-dark h3,
.bg-dark p {
    color: white;
}

.bg-dark .section-header h2::after {
    background-color: var(--secondary-color);
}

.bg-dark .text-primary {
    color: var(--secondary-color) !important;
}

.bg-dark .feature-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid var(--secondary-color);
}

.bg-dark .feature-card h3,
.bg-dark .feature-card p {
    color: white;
}

.bg-dark .icon-box {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--secondary-color);
}

/* Light Gray Section */
.bg-light-gray {
    background-color: #f8f9fa;
    color: var(--text-dark);
}

.bg-light-gray .section-header h2::after {
    background-color: var(--secondary-color);
}

.bg-light-gray .feature-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.bg-light-gray .icon-box {
    background-color: rgba(26, 86, 219, 0.1);
    color: var(--primary-color);
}

/* Ecosystem Section */
.ecosystem-tabs {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1rem;
}

@media (max-width: 768px) {
    .tab-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .tab-btn {
        flex: 0 0 auto;
    }
}

.tab-btn {
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-gray);
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1.1rem;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px 3px 0 0;
}

.content-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.feature-list li i {
    color: var(--secondary-color);
}

.mockup-card {
    background: linear-gradient(135deg, #1a56db 0%, #1e40af 100%);
    height: 300px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.mockup-card span {
    margin-top: 1rem;
    font-weight: 500;
}

/* Process Flow */
.process-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.step {
    text-align: center;
    width: 150px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-md);
    font-size: 2rem;
    color: var(--primary-color);
    border: 2px solid #f3f4f6;
}

.step p {
    font-weight: 600;
    color: var(--text-dark);
}

.arrow {
    color: var(--text-gray);
    font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 6rem 0;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    /* Force white over global dark */
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
/* Footer */
.footer {
    background: linear-gradient(to bottom, #1e293b, #0f172a);
    color: white;
    padding: 5rem 0 2rem;
    font-family: 'Poppins', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    background: white;
    padding: 5px 10px;
    border-radius: 4px;
    /* filter: brightness(0) invert(1); Removed to fix white patch issue */
    opacity: 1;
}

.footer h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 1rem;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-col p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: white;
    /* Force white for tagline */
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    font-size: 0.875rem;
    text-align: center;
    color: #64748b;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: white;
    /* Force white for copyright */
    opacity: 0.8;
}

/* Unified & Compliance Content */
.unified-content,
.compliance-content {
    margin-top: 3rem;
}

.unified-image img,
.compliance-image img {
    transition: transform 0.5s ease;
}

.unified-image:hover img,
.compliance-image:hover img {
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image-wrapper {
        order: -1;
        margin-bottom: 2rem;
    }

    .hero p {
        margin: 0 auto 2rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .content-flex {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 2rem;
        box-shadow: var(--shadow-md);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-flow {
        flex-direction: column;
        gap: 2rem;
    }

    .arrow {
        transform: rotate(90deg);
    }

    .section {
        padding: 4rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .clients-marquee {
        overflow-x: hidden;
    }

    .trust-badges-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Core Features Redesign */
.core-features-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.core-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.core-features-section .features-grid {
    gap: 2.5rem;
}

.core-features-section .feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border-top: none;
    /* Override default */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.core-features-section .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.core-features-section .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(26, 86, 219, 0.15);
}

.core-features-section .feature-card:hover::before {
    transform: scaleX(1);
}

.core-features-section .icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.core-features-section .feature-card:hover .icon-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 10px 20px -5px rgba(26, 86, 219, 0.3);
}

.core-features-section h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(to right, #1e293b, #334155);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.core-features-section p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
}



/* Book a Demo - Split Layout */
.split-hero {
    min-height: 100vh;
    display: flex;
    padding-top: 80px;
    /* Navbar height */
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    width: 100%;
    min-height: calc(100vh - 80px);
}

.hero-value {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-value::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.05;
}

.hero-value-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
}

.hero-value h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-value p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.benefit-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #e2e8f0;
}

.benefit-list i {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-avatars {
    display: flex;
}

.trust-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #0f172a;
    margin-left: -10px;
}

.trust-avatars img:first-child {
    margin-left: 0;
}

.hero-form {
    background: white;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-wrapper {
    width: 100%;
    max-width: 550px;
}

.modern-form .form-group {
    margin-bottom: 1.5rem;
}

.modern-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.5rem;
}

.modern-form .form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #1e293b;
}

.modern-form .form-control:focus {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    outline: none;
}

.modern-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(37, 99, 235, 0.5);
}

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

    .hero-value {
        padding: 3rem 2rem;
        text-align: center;
    }

    .hero-value-content {
        max-width: 100%;
    }

    .benefit-list li {
        justify-content: center;
    }

    .trust-badge {
        justify-content: center;
    }

    .hero-form {
        padding: 3rem 2rem;
    }
}

/* Payment Solution Page Enhancements */
.partners-section {
    padding: 5rem 0;
    background: white;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-items: center;
    margin-top: 3rem;
}

.partner-card {
    padding: 2rem;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    /* Fixed height for consistency */
    background: white;
}

.partner-logo {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.partner-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Mobile Specific Adjustments (< 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .btn-lg {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 0.5rem;
    }

    .feature-tab {
        width: 100%;
    }

    .footer {
        padding: 3rem 0 1rem;
    }
}

.partner-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #64748b;
    margin: 0;
}

.pos-section {
    padding: 6rem 0;
    background: #f8fafc;
    overflow: hidden;
}

.pos-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pos-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.pos-content p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pos-image {
    position: relative;
}

.pos-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
}

.pos-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

.security-section {
    padding: 5rem 0;
    background: #0f172a;
    color: white;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.security-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.security-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.security-icon {
    font-size: 2.5rem;
    color: #4ade80;
    margin-bottom: 1.5rem;
}

.security-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.security-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .pos-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pos-image img {
        transform: none;
        margin-top: 2rem;
    }
}

/* Unified Platform Image */
.unified-platform-img {
    max-width: 70%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .unified-platform-img {
        max-width: 100%;
    }

    /* Mobile Typography Overrides */
    h1 {
        font-size: 2.5rem !important;
    }

    h2 {
        font-size: 2rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    p {
        font-size: 1rem !important;
    }

    .hero h1 {
        font-size: 2.5rem !important;
    }

    .section-header p {
        font-size: 1rem !important;
    }
}

/* --- Design Audit Fixes --- */

/* Missing Button Class */
.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
}

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

/* Accessibility Focus States */
.btn:focus,
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Navbar Offset Helper */
.navbar-offset {
    padding-top: 100px;
}

@media (max-width: 768px) {
    .navbar-offset {
        padding-top: 80px;
    }
}

/* --- Round 2 Design Audit Fixes --- */

/* Mobile Menu Animation */
.nav-links {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .nav-links {
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    /* Mobile Nav Hover States */
    .nav-links.active a {
        padding: 0.75rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color 0.2s ease;
    }

    .nav-links.active a:hover {
        background-color: var(--bg-light);
    }
}

/* Missing Button Size Class */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Improved Footer Contrast */
.footer a {
    color: rgba(255, 255, 255, 0.85);
}

.footer a:hover {
    color: #ffffff;
}

.footer .social-links a {
    color: rgba(255, 255, 255, 0.9);
}

.footer .social-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* Mobile Menu Button Accessibility */
.mobile-menu-btn {
    cursor: pointer;
}

.mobile-menu-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* --- Text Contrast Fixes --- */

/* POS Section - Benefit List Text */
.pos-section .benefit-list li {
    color: #1e293b;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pos-section .benefit-list li span {
    color: #374151;
}

/* Security Section - Better heading contrast */
.security-section h2 {
    color: #f8fafc !important;
}

.security-section .section-header p {
    color: #cbd5e1 !important;
}

/* Security Card Text */
.security-card h3 {
    color: #f8fafc;
}

.security-card p {
    color: #e2e8f0;
}

/* Navbar Button - More Compact for Poppins */
.navbar .btn-primary {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* Desktop nav link hover */
@media (min-width: 1024px) {
    .nav-links a:not(.btn):hover {
        color: var(--primary-color);
        background: rgba(26, 86, 219, 0.05);
        border-radius: var(--radius-md);
    }
}

/* --- Dark Section Text Contrast Fixes --- */

/* LIGHT BACKGROUND HERO (default) - Dark text */
.hero h1 {
    font-size: 3.5rem;
    color: var(--text-dark);
}

.hero p {
    color: var(--text-gray);
}

.hero h1 .highlight {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* DARK BACKGROUND HERO - White text (add class="hero-dark" to hero section) */
.hero-dark h1,
.hero.hero-dark h1,
header.page-header h1 {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
}

.hero-dark p,
.hero.hero-dark p,
header.page-header p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.hero-dark h1 .highlight,
header.page-header h1 .highlight {
    color: var(--secondary-color);
    -webkit-text-fill-color: var(--secondary-color);
}

.hero-dark .badge,
header.page-header .badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* CTA Section - Better contrast */
.cta-section h2,
.cta-section p {
    color: #ffffff;
}

/* Security Section - Maximum contrast */
.security-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.security-section h2 {
    color: #ffffff !important;
    font-weight: 600;
}

.security-section .section-header p {
    color: #e2e8f0 !important;
}

/* --- About Us Hero Section Fix --- */
header.page-header {
    background: linear-gradient(135deg, #1e40af 0%, #1a56db 50%, #3b82f6 100%);
}

header.page-header h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
}

header.page-header h1 .highlight {
    color: var(--secondary-color);
}

header.page-header p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
}

header.page-header .badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Page header with light background override */
header.page-header-light {
    background: var(--bg-light);
}

header.page-header-light h1 {
    color: var(--text-dark);
}

header.page-header-light h1 .highlight {
    color: var(--primary-color);
}

header.page-header-light p {
    color: var(--text-gray);
}

/* Utility class to force white text and remove gradient fills on dark backgrounds */
.text-white-override {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
}