@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700;800&display=swap');

:root {
    --voe-bg: #F0F3F5;
    --voe-white: #FFFFFF;
    --voe-blue: #2979FF;
    --voe-blue-hover: #1E66E0;
    --voe-navy: #00104B;
    --voe-text: #00104B;
    --voe-muted: #5F6D8A;
    --voe-border: #E1E8ED;
    --voe-shadow: 0 4px 20px rgba(0, 16, 75, 0.05);
    --voe-radius: 12px;
}

/* Reset & Base */
body.bootstrap-dark {
    background-color: var(--voe-bg);
    color: var(--voe-text);
    font-family: 'Figtree', sans-serif;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4 {
    font-family: 'Figtree', sans-serif;
    color: var(--voe-navy);
    font-weight: 800;
}

/* Navbar */
.navbar-custom {
    background: var(--voe-white);
    padding: 15px 0;
    border-bottom: 1px solid var(--voe-border) !important;
    transition: all 0.3s ease;
}

.navbar-custom .navbar-brand {
    color: var(--voe-blue) !important;
    font-weight: 800;
    font-size: 1.5rem;
}

.navbar-custom .nav-link {
    color: var(--voe-navy) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 15px !important;
}

/* Hero Section */
.voe-hero {
    background: var(--voe-white);
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 80px 0;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--voe-navy);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--voe-muted);
    max-width: 800px;
    margin: 0 auto 45px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--voe-blue);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--voe-blue);
    border-radius: 20px;
    margin-top: 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--voe-blue);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Buttons */
.btn-voe-primary {
    background-color: var(--voe-blue);
    color: white;
    padding: 14px 32px;
    border-radius: var(--voe-radius);
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
}

.btn-voe-primary:hover {
    background-color: var(--voe-blue-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(41, 121, 255, 0.2);
}

.btn-voe-outline {
    background: transparent;
    color: var(--voe-blue);
    border: 2px solid var(--voe-blue);
    padding: 12px 30px;
    border-radius: var(--voe-radius);
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-voe-outline:hover {
    background: var(--voe-blue);
    color: white;
}

/* Cards & Carousel */
.voe-card {
    background: var(--voe-white);
    border-radius: var(--voe-radius);
    box-shadow: var(--voe-shadow);
    padding: 30px;
    height: 100%;
    border: 1px solid var(--voe-border);
    transition: transform 0.3s ease;
}

.voe-card:hover {
    transform: translateY(-5px);
}

.category-card {
    background: var(--voe-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--voe-shadow);
    margin: 15px;
    text-align: center;
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-card h3 {
    padding: 20px;
    font-size: 1.1rem;
    margin: 0;
}

/* Comparison Table */
.comparison-section {
    background: #EBF1FF;
    padding: 100px 0;
}

.voe-table-container {
    background: var(--voe-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 16, 75, 0.08);
}

.voe-table {
    width: 100%;
    border-collapse: collapse;
}

.voe-table th {
    background: var(--voe-white);
    padding: 25px;
    font-weight: 800;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--voe-bg);
}

.voe-table td {
    padding: 20px;
    border-bottom: 1px solid var(--voe-border);
    font-weight: 500;
}

.voe-table .check {
    color: #00C853;
    font-size: 1.2rem;
}

.voe-table .cross {
    color: #FF1744;
    font-size: 1.2rem;
}

/* Partners Section */
.partners-section {
    background: var(--voe-blue);
    padding: 80px 0;
    color: white;
}

.partner-logo {
    max-height: 40px;
    opacity: 0.9;
    filter: brightness(0) invert(1);
}

/* Feature Showcase */
.showcase-section {
    padding: 120px 0;
    background: var(--voe-white);
}

.showcase-img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

/* Footer */
.voe-footer {
    background: var(--voe-white);
    padding: 80px 0 40px;
    border-top: 1px solid var(--voe-border);
}

.footer-link {
    color: var(--voe-muted);
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--voe-blue);
    text-decoration: none;
}

/* Language Switcher */
.lang-switcher {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--voe-white);
    box-shadow: var(--voe-shadow);
    padding: 10px 20px;
    border-radius: 50px;
    z-index: 1000;
    font-weight: 700;
    display: flex;
    align-items: center;
    border: 1px solid var(--voe-border);
    cursor: pointer;
}

@media (max-width: 768px) {

    .voe-table th,
    .voe-table td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 2rem;
    }
}