/* --- Reset scrolling --- */
body {
    overflow-y: auto !important; /* Allow scrolling now */
    overflow-x: hidden;
}

/* --- About Section --- */
.about-section {
    position: relative;
    min-height: 100vh;
    background-color: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5%;
    z-index: 10;
    overflow: hidden;
}

/* Giant "0" Shape Layout */
.parallax-shape {
    position: absolute;
    top: 50%;
    left: 15%; /* Position behind the image */
    transform: translateY(-50%);
    font-family: 'Oswald', sans-serif;
    font-size: 800px; /* Massive Size */
    font-weight: 700;
    color: rgba(0, 229, 255, 0.03); /* Faint Orange */
    line-height: 0;
    z-index: -1;
    pointer-events: none;
}
.parallax-shape::after {
    content: "0"; /* The big zero */
}

.about-container {
    display: flex;
    max-width: 1400px;
    width: 100%;
    gap: 80px;
    align-items: flex-start; /* Align top */
}

/* Left Image */
.about-image-wrapper {
    flex: 1;
    position: relative;
    padding-left: 50px; /* Push right slightly */
}

.about-img {
    width: 100%;
    max-width: 600px;
    border-radius: 0 50px 0 50px; /* Specific rounded corners */
    filter:  contrast(1.1);
    box-shadow: -20px 20px 0px rgba(30, 30, 30, 0.5); /* Offset shadow */
}

/* Right Content */
.about-content {
    flex: 1.2;
    padding-top: 40px;
}

/* The Title "Muhamed Beshir" */
.about-title-large {
    font-family: 'Impact', 'Arial Black', sans-serif; /* Thicker font */
    font-size: 7rem;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 10px;
    display: flex;
    gap: 20px;
}

/* Outline Style matching reference */
.outline-text {
    /* Solid text with border */
    color: transparent;
    -webkit-text-stroke: 3px var(--primary-orange);
    position: relative;
    letter-spacing: 2px;
}

/* Subtitle */
.about-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    color: #666;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 50px;
}

/* Services List */
.about-services-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-item {
    font-size: 1.1rem;
    color: #aeaeae;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.service-item:hover {
    color: var(--primary-orange);
}

/* Responsive */
@media (max-width: 992px) {
    .about-container { flex-direction: column; }
    .about-title-large { font-size: 4rem; }
    .parallax-shape { font-size: 400px; left: 50%; opacity: 0.1; }
    .about-image-wrapper { padding-left: 0; }
}

/* Restoring Code Floating Animation as requested */
.float-code {
    position: absolute;
    background: rgba(10, 10, 10, 0.9);
    color: var(--primary-orange);
    padding: 8px 16px;
    border: 1px solid var(--primary-orange);
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
    animation: float 6s ease-in-out infinite;
    z-index: 2; /* On top of image */
}

.code-1 { top: -20px; right: -20px; animation-delay: 0s; }
.code-2 { bottom: 20px; left: -20px; animation-delay: 2s; }
.code-3 { top: 40%; right: -40px; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* --- Dynamic Code Background --- */
.code-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Behind content but in front of black bg */
    pointer-events: none;
}

.bg-code-snippet {
    position: absolute;
    color: var(--primary-orange);
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 1.1rem;
    opacity: 0.4; /* Heavier/More visible */
    font-weight: 600;
    user-select: none;
    animation: floatBg 10s linear infinite;
    white-space: nowrap;
}

@keyframes floatBg {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    20% { opacity: 0.15; }
    80% { opacity: 0.15; }
    100% { transform: translateY(-20vh) rotate(5deg); opacity: 0; }
}
