/* About Page Specific Animations */

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-logo {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    animation: textGlow 2s infinite alternate;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 10px rgba(147, 197, 253, 0.5);
    }
    100% {
        text-shadow: 0 0 20px rgba(147, 197, 253, 0.8), 0 0 30px rgba(147, 197, 253, 0.4);
    }
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #93c5fd, var(--accent-color));
    border-radius: 2px;
    animation: loadingProgress 1.5s ease-in-out forwards;
}

@keyframes loadingProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Logo in Header */
.logo-image {
    height: 40px;
    width: auto;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.1);
}

.logo-text {
    font-size: var(--font-size-large-heading);
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.logo-text span {
    color: #93c5fd;
}

/* About Hero Section with Parallax */
.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), #2d4a8a);
    color: white;
    overflow: hidden;
}

.parallax-section {
    position: relative;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.layer-1 {
    background: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
    opacity: 0.1;
}

.layer-2 {
    background: radial-gradient(circle at 30% 50%, rgba(147, 197, 253, 0.2) 0%, transparent 50%);
    animation: floatClouds 20s ease-in-out infinite;
}

.layer-3 {
    background: radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 50%);
    animation: floatClouds 25s ease-in-out infinite reverse;
}

@keyframes floatClouds {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 10px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #93c5fd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb i {
    font-size: 0.8rem;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.animate-typing {
    overflow: hidden;
    border-right: 3px solid #93c5fd;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #93c5fd; }
}

.page-subtitle {
    font-size: 1.3rem;
    color: #d1d5db;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 1s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: statAppear 1s ease forwards;
    opacity: 0;
}

.hero-stat:nth-child(1) { animation-delay: 1.5s; }
.hero-stat:nth-child(2) { animation-delay: 1.7s; }
.hero-stat:nth-child(3) { animation-delay: 1.9s; }

@keyframes statAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(20px);
    }
}

.hero-stat i {
    font-size: 2rem;
    color: #93c5fd;
}

.hero-stat h3 {
    font-size: 0.9rem;
    color: #d1d5db;
    margin-bottom: 0.3rem;
}

.hero-stat p {
    font-size: 1.1rem;
    font-weight: bold;
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.scroll-hint span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #d1d5db;
}

.mouse-wheel {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollHint 2s infinite;
}

@keyframes scrollHint {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Section Padding */
.section-padding {
    padding: 6rem 0;
}

.alt-bg {
    background: var(--light-color);
}

.center {
    text-align: center;
}

.title-line {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 1rem auto 2rem;
    animation: lineExpand 1s ease forwards;
}

@keyframes lineExpand {
    from { width: 0; }
    to { width: 60px; }
}

/* Who We Are Section */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

.highlight-box {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(147, 197, 253, 0.1));
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
    position: relative;
}

.highlight-box i {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--accent-color);
    font-size: 1.5rem;
    opacity: 0.5;
}

.impact-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.impact-stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.impact-stat:hover {
    transform: translateY(-5px);
}

.impact-stat i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.impact-stat h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.impact-stat p {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* Image Container with Floating Elements */
.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover .main-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 54, 93, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.overlay-content {
    color: white;
}

.overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #93c5fd;
}

.overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: floatAround 15s infinite linear;
}

.floating-element i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    left: 80%;
    animation-delay: 5s;
}

.element-3 {
    top: 80%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }
    50% {
        transform: translate(0, -40px) rotate(180deg);
    }
    75% {
        transform: translate(-20px, -20px) rotate(270deg);
    }
}

/* Vision & Mission Grid */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 4rem 0;
}

@media (max-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }
}

.vm-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), #93c5fd);
}

.vm-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.vm-icon i {
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 2;
}

.icon-orb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    animation: orbPulse 3s infinite;
}

@keyframes orbPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.vision-path, .mission-pillars {
    margin-top: 2rem;
}

.path-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(147, 197, 253, 0.05));
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.path-step:hover {
    transform: translateX(10px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.pillar {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(147, 197, 253, 0.05));
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pillar i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pillar h4 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.pillar p {
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.aspiration-box {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--accent-color), #1d4ed8);
    color: white;
    border-radius: 15px;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.aspiration-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="1" stroke-opacity="0.1"/></svg>');
    animation: rotateBackground 20s linear infinite;
}

@keyframes rotateBackground {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.aspiration-box i {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: rocketLaunch 3s infinite;
}

@keyframes rocketLaunch {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.aspiration-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
    animation: lineDraw 2s ease forwards;
}

@keyframes lineDraw {
    from { height: 0; }
    to { height: 100%; }
}

.process-step {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.process-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.step-circle {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.circle-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
}

.step-number {
    font-size: 1.5rem;
    font-weight: bold;
}

.circle-inner i {
    font-size: 1.8rem;
}

.circle-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    animation: stepPulse 2s infinite;
}

@keyframes stepPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.step-content {
    margin-left: 2rem;
    flex: 1;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step-features {
    list-style: none;
    margin-top: 1rem;
}

.step-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.step-features i {
    color: #10b981;
    margin-right: 10px;
}

.step-connector {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 2rem;
    height: 2px;
    background: var(--accent-color);
    z-index: 1;
}

.process-outcome {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .process-outcome {
        grid-template-columns: 1fr;
    }
}

.outcome-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.outcome-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.outcome-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.outcome-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Values Carousel */
.values-carousel {
    margin: 4rem 0;
}

.carousel-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.values-slider {
    position: relative;
    height: 400px;
}

.value-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s ease;
}

.value-card.active {
    opacity: 1;
    transform: translateX(0);
}

.value-card.leaving {
    opacity: 0;
    transform: translateX(-100px);
}

.value-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 3rem;
    color: white;
    position: relative;
    z-index: 2;
}

.value-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    animation: valueGlow 3s infinite alternate;
}

@keyframes valueGlow {
    0% {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
    }
    100% {
        box-shadow: 0 0 40px rgba(37, 99, 235, 0.8), 0 0 60px rgba(37, 99, 235, 0.4);
    }
}

.value-tagline {
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.value-points {
    list-style: none;
    margin-top: 1rem;
}

.value-points li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.value-points i {
    color: #10b981;
    margin-right: 10px;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-controls button {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-controls button:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    background: #d1d5db;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.values-commitment {
    margin-top: 4rem;
    text-align: center;
}

.commitment-content {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 3rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.commitment-content i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

/* Credentials Grid */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

@media (max-width: 992px) {
    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .credentials-grid {
        grid-template-columns: 1fr;
    }
}

.credential-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.credential-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.credential-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.credential-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.credential-icon i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
}

.credential-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    animation: badgeSpin 10s linear infinite;
}

@keyframes badgeSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.credential-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-top: 1rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(147, 197, 253, 0.1));
    border-radius: 8px;
}

.trust-badge {
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(147, 197, 253, 0.1));
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.badge-content i {
    font-size: 3rem;
    color: var(--accent-color);
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, var(--primary-color), #2d4a8a);
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: white;
    color: var(--primary-color);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 40px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.footer-logo-text span {
    color: #93c5fd;
}

/* Animation Delays */
[data-delay="0"] { animation-delay: 0s; }
[data-delay="0.1"] { animation-delay: 0.1s; }
[data-delay="0.2"] { animation-delay: 0.2s; }
[data-delay="0.3"] { animation-delay: 0.3s; }
[data-delay="0.4"] { animation-delay: 0.4s; }
[data-delay="0.5"] { animation-delay: 0.5s; }

/* Basic Animation Classes */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(20px);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
    from {
        opacity: 0;
    }
}