/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #0d0d0d;
    color: #fff;
}

/* Sections Styling */
.about-section, .mission-section, .why-choose-section, .achievements-section, .team-section {
    padding: 30px 20px;
    text-align: center;
    color: #ff6600;
    opacity: 0; /* Hide initially */
    transform: translateY(0); /* Prevent shifting */
    animation: fadeInFix 0.8s ease-in-out forwards;
}

/* Faster Fade-in Effect */
@keyframes fadeInFix {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}
/* Ensure No Initial Left Shift */
.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    opacity: 0;
    animation: fadeInFix 0.8s ease-in-out forwards;
}

/* Glowing Border Effect */
.about-container::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 15px;
    background: linear-gradient(255, 255, 255, 0.1);
    z-index: -1;
}

/* About Image */
.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.3);
}

/* About Content */
.about-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
    padding-left: 40px;
}
.about-content h2 {
    font-size: 42px;
    color: #f1c40f;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content p {
    font-size: 18px;
    color: #ccc;
    line-height: 1.6;
}

/* === MISSION SECTION === */
.mission-container {
    max-width: 800px;
    margin: auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    text-align: center;
}

.mission-container h2 {
    font-size: 36px;
    color: #ffcc00;
    margin-bottom: 15px;
}

.mission-container p {
    font-size: 18px;
    color: #ddd;
    line-height: 1.6;
}

/* === WHY CHOOSE US === */
.why-container {
    max-width: 900px;
    margin: auto;
}

.why-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.why-item {
    padding: 18px;
    background: #222;
    border-radius: 10px;
    font-size: 18px;
    color: #fff;
    text-align: left;
    transition: transform 0.3s ease-in-out;
}

.why-item:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #ff9900, #ffcc00);
    color: #000;
}

/* === ACHIEVEMENTS === */
.achievements-container {
    max-width: 900px;
    margin: auto;
}

.achievements-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.stat-item {
    padding: 20px;
    background: #333;
    border-radius: 12px;
    font-size: 18px;
    color: #fff;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.stat-item:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #ff6600, #ffcc00);
    color: #000;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background: #f1c40f;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

.btn:hover {
    background: #ffcc00;
    transform: scale(1.08);
}

/* === ANIMATIONS === */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .about-content {
        padding-left: 0;
        margin-top: 20px;
    }

    .why-list {
        grid-template-columns: 1fr;
    }

    .achievements-stats {
        flex-direction: column;
        align-items: center;
    }

}

@media (max-width: 600px) {
    .about-content h2,
    .mission-container h2,
    .why-container h2,
    .achievements-container h2,
    .team-container h2 {
        font-size: 28px;
        color: #ff6600;
    }

    .about-content p,
    .mission-container p,
    .why-item,
    .stat-item,
    .team-member p {
        font-size: 16px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 16px;
    }

    .about-image img {
        max-width: 100%;
    }
}
