/* Reset and base styles with custom prefix */
html, body {
  margin: 0px;
}

body {
  min-height: 300vh;
  font-family: 'Poppins', sans-serif;
}

a:hover {
  text-decoration: none !important;
}

.bp-hero-reset * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.bp-hero-container {
    font-family: 'Poppins', sans-serif;
    position: relative;
    min-height: 100vh;
    background-image: url('https://cdn.prod.website-files.com/683d5bcee7ee4a66f306c803/686d2c1c81709e2af41acf8c_hero%20image%202.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.bp-hero-navbar {
    position: absolute;
    font-family: 'Poppins', sans-serif;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.bp-navbar-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.bp-navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo section */
.bp-logo-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bp-logo-section img.logo {
  height: 50px;
}

.bp-logo-icon {
    width: 12px;
    height: 12px;
    background-color: #6366f2;
    border-radius: 50%;
}

.bp-brand-name {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.bp-brand-name:hover {
    color: #ffffff;
    opacity: 0.9;
}

/* Navigation */
.bp-nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.bp-nav-link {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.2s ease;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .bp-nav-link:hover {
            color: #6366f2;
        }

        .bp-nav-dropdown {
            position: relative;
        }

        .bp-dropdown-arrow {
            font-size: 12px;
            transition: transform 0.2s ease;
        }

        .bp-nav-dropdown:hover .bp-dropdown-arrow {
            transform: rotate(180deg);
        }

        /* Dropdown Menu */
        .bp-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 8px 0;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            margin-top: 8px;
        }

        .bp-nav-dropdown:hover .bp-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .bp-dropdown-link {
            display: block;
            padding: 10px 16px;
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            transition: all 0.2s ease;
            border-left: 3px solid transparent;
        }

        .bp-dropdown-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-left-color: #6366f2;
            color: #6366f2;
        }

/* CTA Buttons */
.bp-cta-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bp-btn-login {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.bp-btn-login:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.bp-btn-demo-nav {
    background-color: #6366f2;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    border: 1px solid #6366f2;
}

.bp-btn-demo-nav:hover {
    background-color: #5855eb;
    border-color: #5855eb;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Hero Content */
.bp-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 0 32px;
}

.bp-hero-tagline {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
    opacity: 0.9;
}

.bp-hero-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 32px;
}

.bp-star {
    width: 24px;
    height: 24px;
    background-color: #6366f2;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
}

.bp-hero-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.bp-hero-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 48px;
    opacity: 0.9;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.bp-hero-cta {
    display: inline-block;
    background-color: #6366f2;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #6366f2;
    box-shadow: 0 4px 12px rgba(99, 102, 242, 0.3);
}

.bp-hero-cta:hover {
    background-color: #5855eb;
    border-color: #5855eb;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 242, 0.4);
}

/* Mobile Toggle */
.bp-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.bp-mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.bp-mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 24px;
}

.bp-mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.bp-mobile-nav-links .bp-nav-link {
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bp-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bp-mobile-cta .bp-btn-login,
.bp-mobile-cta .bp-btn-demo-nav {
    text-align: center;
    padding: 14px 20px;
}

/* Responsive Design */
/* Responsive Design */
        @media (max-width: 768px) {
            .bp-nav-desktop {
                display: none;
            }

            .bp-cta-section {
                display: none;
            }

            .bp-mobile-toggle {
                display: flex;
            }

            .bp-mobile-nav.bp-active {
                display: block;
            }

            .bp-mobile-toggle.bp-active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .bp-mobile-toggle.bp-active span:nth-child(2) {
                opacity: 0;
            }

            .bp-mobile-toggle.bp-active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }

            .bp-hero-title {
                font-size: 32px;
            }

            .bp-hero-description {
                font-size: 15px;
            }

            .bp-hero-tagline {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .bp-navbar-wrapper {
                padding: 0 16px;
            }

            .bp-brand-name {
                font-size: 18px;
            }

            .bp-hero-title {
                font-size: 28px;
            }

            .bp-hero-description {
                font-size: 14px;
            }

            .bp-hero-cta {
                padding: 14px 28px;
                font-size: 14px;
            }
        }


/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* About Section */
.about-section {
    min-height: 100vh;
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Header */
.header-content {
    text-align: center;
    margin-bottom: 80px;
}

.main-title {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 500;
    color: black;
    margin-bottom: 20px;
}

.highlight {
        color: #667eea;
}

/* Content Wrapper */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Text Content */
.text-content {
    color: black;
}

.section-title {
    font-size: clamp(0.9rem, 1.5vw, 1.25rem);
    font-weight: 600;
    margin-bottom: 30px;
    color: black;
}

.mission-text {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 60px;
    opacity: 0.9;
}

.mission-text strong {
    color: black;
    font-weight: 600;
}

/* Focus Items */
.focus-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.focus-item {
  padding: 25px;
background: rgba(0, 0, 0, 0.01);
border-radius: 15px;
backdrop-filter: blur(10px);
border: 1px solid rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}

.focus-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.focus-title {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.focus-description {
    color: rgba(0, 0, 0, 0.9);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Visual Content - Phones */
.visual-content {
    position: relative;
    height: 600px;
}

.phones-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.phone {
    position: absolute;
    width: 200px;
    height: 400px;
    border-radius: 25px;
    background: #1a1a1a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.phone-1 {
    top: 0;
    left: 0;
    z-index: 3;
    animation-delay: 0s;
}

.phone-2 {
    top: 50px;
    left: 120px;
    z-index: 2;
    animation-delay: 2s;
}

.phone-3 {
    top: 100px;
    left: 240px;
    z-index: 1;
    animation-delay: 4s;
}

.phone-screen {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    overflow: hidden;
}

.phone-header {
    height: 30px;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-notch {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.phone-content {
    padding: 20px;
    height: calc(100% - 30px);
}

/* Phone 1 - Service List */
.profile-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.profile-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.profile-text {
    flex: 1;
}

.name-line {
    width: 80px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    margin-bottom: 5px;
}

.subtitle-line {
    width: 60px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-card {
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    animation: pulse 2s infinite;
}

/* Phone 2 - Booking */
.booking-header {
    text-align: center;
    margin-bottom: 30px;
}

.booking-title {
    color: black;
    font-weight: 600;
    font-size: 14px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-field {
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.booking-button {
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    animation: glow 2s ease-in-out infinite alternate;
}

/* Phone 3 - Task Progress */
.task-header {
    margin-bottom: 20px;
}

.task-title {
    color: black;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}

.task-status {
    color: #4CAF50;
    font-size: 12px;
    font-weight: 500;
}

.task-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.task-item {
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    animation: progress 3s infinite;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes glow {
    0% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
    100% { box-shadow: 0 0 30px rgba(255, 255, 255, 0.6); }
}

@keyframes progress {
    0% { background: rgba(255, 255, 255, 0.2); }
    50% { background: rgba(76, 175, 80, 0.3); }
    100% { background: rgba(255, 255, 255, 0.2); }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.delay-1 {
    transition-delay: 0.2s;
}

.fade-in.animate,
.slide-in-left.animate,
.slide-in-right.animate {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .visual-content {
        height: 500px;
    }

    .phone {
        width: 180px;
        height: 360px;
    }

    .phone-2 {
        left: 100px;
    }

    .phone-3 {
        left: 200px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }

    .header-content {
        margin-bottom: 50px;
    }

    .visual-content {
        height: 400px;
    }

    .phone {
        width: 150px;
        height: 300px;
    }

    .phone-2 {
        left: 80px;
        top: 30px;
    }

    .phone-3 {
        left: 160px;
        top: 60px;
    }

    .focus-items {
        gap: 20px;
    }

    .focus-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .visual-content {
        height: 300px;
    }

    .phone {
        width: 120px;
        height: 240px;
    }

    .phone-2 {
        left: 60px;
        top: 20px;
    }

    .phone-3 {
        left: 120px;
        top: 40px;
    }

    .phone-content {
        padding: 15px;
    }
}
/* Modern Press Releases Section - Sleek & Contemporary Design */

/* Language Handler - Modern Toggle Design */
.release-handler {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 3rem;
    background: #f8fafc;
    padding: 4px;
    border-radius: 12px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.release-handler a {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

.release-handler a:hover {
    background-color: rgba(99, 102, 242, 0.1);
    transform: translateY(-1px);
}

.lang-link {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 4px;
    transition: all 0.3s ease;
    filter: grayscale(30%);
}

.lang-link.active {
    background-color: #6366f2 !important;
    box-shadow: 0 4px 12px rgba(99, 102, 242, 0.3);
    filter: grayscale(0%);
}

.release-handler a:has(.lang-link.active) {
    background-color: #6366f2;
    padding: 8px 16px;
}

.release-handler a:has(.lang-link.active) .lang-link {
    filter: brightness(1.2);
}

/* Modern Card Grid */

.col-lg-4 {
    margin-bottom: 20px;
}

/* Sleek Card Design */
.card.panel {
    border: none;
    border-radius: 16px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 4px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    overflow: hidden;
    position: relative;
}

.card.panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f2, #8b5cf6, #06b6d4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card.panel:hover {
    transform: translateY(-8px);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 16px 32px rgba(0, 0, 0, 0.04);
}

.card.panel:hover::before {
    opacity: 1;
}

.card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: transparent;
}
.subpage-hero {
  height: 240px;
  background: #292929;
  display: flex;
  align-items: center;
  padding-top: 100px;
  margin-bottom: 40px;
}
.subpage-hero h1 {
  font-family: 'Poppins', sans-serif;
  color: white;
}
/* Modern Badge System */
.badge {
    font-size: 10px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-right: 8px;
    margin-bottom: 1rem;
    border: none;
    position: relative;
    overflow: hidden;

    width: fit-content;
    float: left;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.badge:hover::before {
    left: 100%;
}

.badge.bg-primary {
    background: linear-gradient(135deg, #6366f2 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(99, 102, 242, 0.3);
}

.badge.bg-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.badge.bg-light {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #475569;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Modern Typography */
.card-title {
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    font-size: 1.1rem;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modern Button & Date Row */
.card-body .row[style*="margin-top"] {
    margin-top: 1.5rem !important;
    align-items: center;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 12px;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

/* Sleek Button Design */
.btn-dark {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 10px 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(30, 41, 59, 0.3);
}

.btn-dark::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;
}

.btn-dark:hover {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(30, 41, 59, 0.4);
}

.btn-dark:hover::before {
    left: 100%;
}

.btn-dark:active {
    transform: translateY(0);
}

/* Modern Date Display */
.date {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: fit-content;
}

/* Responsive Design */
@media (max-width: 767.98px) {
    .release-handler {
        gap: 2px;
        padding: 3px;
        border-radius: 10px;
    }

    .release-handler a {
        padding: 6px 12px;
    }

    .lang-link {
        width: 24px;
        height: 18px;
    }

    .card-body {
        padding: 1.5rem;
    }

    .card-body .row[style*="margin-top"] {
        flex-direction: column;
        gap: 12px;
        margin-left: 0;
        margin-right: 0;
        padding: 1rem;
    }

    .card-body .row[style*="margin-top"] .col-6 {
        width: 100%;
    }

    .date {
        justify-content: center;
        white-space: normal;
        min-width: auto;
        width: 100%;
    }

    .btn-dark {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .card.panel {
        border-radius: 12px;
    }

    .card-body {
        padding: 1.25rem;
    }

    .card-title {
        font-size: 1rem;
    }

    .badge {
        font-size: 9px;
        padding: 4px 10px;
    }
}

/* Add subtle animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card.panel {
    animation: fadeInUp 0.6s ease-out;
}

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

.card.panel:nth-child(3) {
    animation-delay: 0.2s;
}

/* Ensure proper font inheritance */
.card,
.card-title,
.badge,
.btn,
.date {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
