:root {
    --primary-color: #001f3e;
    --accent-color: #FFB300;
    --text-light: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.6);
    --bg-gradient: linear-gradient(135deg, #001f3e 0%, #000810 100%);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background: var(--primary-color);
    color: var(--text-light);
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.main-container {
    display: flex;
    width: 100%;
    height: 100%;
}

/* Left Section: Content */
.left-pane {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 10px 70px;
    /* background: rgba(0, 0, 0, 0.2); */
    border-right: 1px solid var(--glass-border);
align-items: flex-end
    
}

.logo-section {
    animation: fadeInDown 0.8s ease-out;
}

.logo-section img {
    height: 220px;
    width: auto;
    /* background: white; */
    padding: 10px;
    border-radius: 12px;
}

.status-content {
    animation: fadeInLeft 1s ease-out 0.3s both;
}

.status-content h1 {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px;
    text-align: end;
}

.status-content p {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    max-width: 500px;
    color: #2fcd2f;
    margin-bottom: 10px;
    text-align: end;
}

.contact-section {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-dim);
    transition: all 0.3s;
}

.contact-item:hover {
    color: var(--text-light);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--accent-color);
    width: 20px;
}

.contact-item a {
    text-decoration: none;
    color: inherit;
}

/* Right Section: Visual Slider */
.right-pane {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.slider {
    display: flex;
    width: 500%;
    height: 100%;
    animation: slide 25s infinite ease-in-out;
}

.slider img {
    width: 20%;
    height: 100%;
    object-fit: cover;
}

/* Overlay for visual consistency */
.right-pane::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, transparent 20%);
    pointer-events: none;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    15% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-20%);
    }

    35% {
        transform: translateX(-20%);
    }

    40% {
        transform: translateX(-40%);
    }

    55% {
        transform: translateX(-40%);
    }

    60% {
        transform: translateX(-60%);
    }

    75% {
        transform: translateX(-60%);
    }

    80% {
        transform: translateX(-80%);
    }

    95% {
        transform: translateX(-80%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .main-container {
        flex-direction: column-reverse;
    }

    .left-pane {
        padding: 40px;
        order: 2;
        border-right: none;
        border-top: 1px solid var(--glass-border);
    }

    .right-pane {
        height: 50vh;
        order: 1;
    }

    .status-content p {
        font-size: 2.2rem;
    }
}