/* Modern, clean, and attractive mission page styles */
body {
    background: #232933 url('../assets/car-i.jpeg') no-repeat center center fixed;
    background-size: cover;
    color: #f3f3f3;
    font-family: 'Segoe UI', Arial, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

.main-content {
    width: 96%;
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 0 32px 0;
}

.info-section {
    background: rgba(30,35,50,0.92);
    margin: 36px 0;
    padding: 36px 28px 28px 28px;
    border-radius: 18px;
    box-shadow: 0 4px 32px #4f8cff18, 0 1.5px 8px #b0c4e6a0;
    opacity: 0;
    transform: translateY(60px) scale(0.98);
    transition: 
        opacity 1.1s cubic-bezier(.4,0,.2,1),
        transform 1.1s cubic-bezier(.4,0,.2,1);
    border-left: 7px solid #4f8cff;
    backdrop-filter: blur(4px);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.info-section::before {
    content: "";
    position: absolute;
    left: -60px;
    top: -60px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #4f8cff33 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    animation: floatGlow 5s infinite alternate;
}

@keyframes floatGlow {
    0% { transform: translateY(0) scale(1);}
    100% { transform: translateY(20px) scale(1.08);}
}

body.loaded .info-section {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.info-section h2 {
    color: #4f8cff;
    margin-bottom: 18px;
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px #4f8cff11;
    position: relative;
    z-index: 2;
    animation: fadeInRight 1.2s cubic-bezier(.4,0,.2,1);
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(-40px);}
    to { opacity: 1; transform: translateX(0);}
}

.info-section ul {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
    position: relative;
    z-index: 2;
}

.info-section ul li {
    color: #f3f3f3;
    margin-bottom: 14px;
    font-size: 1.13rem;
    line-height: 1.7;
    padding-left: 32px;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInList 0.8s forwards;
    animation-delay: calc(0.3s + var(--li-index, 0) * 0.08s);
}

.info-section ul li::before {
    content: "✔";
    color: #4f8cff;
    font-size: 1.1em;
    position: absolute;
    left: 0;
    top: 2px;
}

body.loaded .info-section ul li {
    opacity: 1;
    transform: translateX(0);
}

@keyframes fadeInList {
    from { opacity: 0; transform: translateX(-30px);}
    to { opacity: 1; transform: translateX(0);}
}

.info-section p {
    color: #f3f3f3;
    font-size: 1.15rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
    animation-delay: 0.4s;
}

body.loaded .info-section p {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px);}
    to { opacity: 1; transform: translateY(0);}
}

@media (max-width: 900px) {
    .main-content {
        max-width: 99vw;
        padding: 18px 2vw;
    }
    .info-section {
        padding: 18px 4vw;
        margin: 18px 0;
    }
    .info-section h2 {
        font-size: 1.25rem;
    }
    .info-section ul li, .info-section p {
        font-size: 1.03rem;
    }
}

@media (max-width: 600px) {
    .main-content {
        padding: 8px 0;
    }
    .info-section {
        padding: 10px 2vw;
        margin: 10px 0;
        border-left-width: 4px;
    }
    .info-section h2 {
        font-size: 1.05rem;
    }
}

/* Add at the end of your CSS file */

.floating-container {
    position: fixed;
    top: 10%;
    left: 5%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, #4f8cffcc 0%, #4f8cff77 60%, #23293300 100%);
    pointer-events: none;
    z-index: 2;
    animation: floatAroundFull 18s linear infinite;
    opacity: 0.55;
    box-shadow: 0 0 60px 30px #4f8cff55;
    transition: opacity 0.5s;
}

@keyframes floatAroundFull {
    0%   { top: 10%; left: 5%;    transform: scale(1);}
    15%  { top: 10%; left: 80%;   transform: scale(1.1);}
    30%  { top: 70%; left: 80%;   transform: scale(0.95);}
    45%  { top: 70%; left: 10%;   transform: scale(1.08);}
    60%  { top: 40%; left: 50%;   transform: scale(1);}
    75%  { top: 80%; left: 40%;   transform: scale(1.12);}
    90%  { top: 15%; left: 60%;   transform: scale(0.98);}
    100% { top: 10%; left: 5%;    transform: scale(1);}
}