
body {
    font-family: Arial, sans-serif;
    background-color: #000000;
    color: #e6edf3;
    margin: 0;
    padding: 0;
    
}
/* About Container */
.about-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 50px;
    width: 100%; /* Use 100% instead of 100vw */
    min-height: 100vh; /* Ensure it fills the screen */
    background: linear-gradient(120deg, #1f394d, #1f394d);
    box-sizing: border-box;
    
    opacity: 1; /* Default state */
    transition: opacity 0.3s ease-in-out; /* Smooth transition */
}

/* Hidden state for fade-out */
.about-container.hidden {
    opacity: 0;
}

/* Ensure child sections stretch fully */
.about-section {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

/* Text Styling */
.about-text {
    flex: 1;
    color: white;
}

/* Image Styling */
.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

/* Reverse Layout for Second Section */
.reverse {
    flex-direction: row-reverse;
}

/* About Container */
/* Ensure full width and prevent overflow */
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevents horizontal scrolling */
    box-sizing: border-box;
}

/* Floating Particle Effect */
@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* Glowing Background Animation */
@keyframes glowing {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section, .reverse {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        margin-top: 20px;
    }
}
.container {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 174, 255, 0.4);
    text-align: center;
}





h2 {
    color: #00aeff;
}

.highlight {
    color: #00aeff;
    font-weight: bold;
}

p {
    line-height: 1.8;
    font-size: 18px;
}

.icon {
    font-size: 40px;
    color: #00aeff;
    margin-bottom: 10px;
}

.cta {
    margin-top: 20px;
}

.cta a {
    text-decoration: none;
    background: #00aeff;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    color: #0d1117;
    display: inline-block;
    transition: 0.3s;
}

.cta a:hover {
    background: #007bbf;
    color: #ffffff;
}

@media (max-width: 768px) {
    .container {
        margin: 20px;
    }
}