/* =====================
   About Us Page Styles
   ===================== */

.about-hero {
    position: relative;
    min-height: 100vh;
    padding: 0;
    background: radial-gradient(ellipse at center, #0a2040 0%, var(--navy-dark) 100%);
    color: white;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/banner1.12.jpg') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
    color: #333;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--gold), var(--navy-mid), var(--gold));
    opacity: 0.1;
}

.story-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(255, 186, 0, 0.1);
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 15px;
}

.story-content .section-title {
    color: var(--navy-dark);
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: -0.5px;
}

.animated-cracker-divider {
    width: 150px;
    height: 4px;
    background: rgba(255, 186, 0, 0.2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.animated-cracker-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: cracker-shoot 2.5s infinite ease-in-out;
}

.animated-cracker-divider .spark {
    position: absolute;
    top: -2px;
    left: -10px;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px 4px var(--gold), 0 0 20px 8px #fffc00;
    animation: spark-fly 2.5s infinite ease-in-out;
    opacity: 0;
}

@keyframes cracker-shoot {
    0% {
        left: -100%;
    }

    40%,
    100% {
        left: 100%;
    }
}

@keyframes spark-fly {
    0% {
        left: -10px;
        opacity: 1;
        transform: scale(1);
    }

    35% {
        left: 140px;
        opacity: 1;
        transform: scale(1.5);
    }

    40%,
    100% {
        left: 150px;
        opacity: 0;
        transform: scale(0);
    }
}

.story-lead {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--navy-mid);
    font-weight: 500;
    margin-bottom: 40px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.01em;
    font-family: 'Outfit', sans-serif;
}

.story-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
}

/* Scroll Reveal Animations */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
}

.reveal-up {
    transform: translateY(30px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-active {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* Mission & Vision */
.mission-vision-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}

.mv-card:hover {
    transform: translateY(-8px);
    border-bottom: 4px solid var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 186, 0, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
}

.mv-card h3 {
    color: var(--navy-dark);
    font-weight: 700;
    margin-bottom: 15px;
}

.mv-card p {
    color: #666;
    line-height: 1.7;
}

/* =====================
   Stats Section
   ===================== */
.about-stats-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
    color: white;
    border-top: 4px solid var(--gold);
    border-bottom: 4px solid var(--gold);
}

.about-stat-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.about-stat-item:hover {
    transform: translateY(-5px);
}

.about-stat-item .stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    margin-bottom: 5px;
}

.about-stat-item .stat-number .counter-value {
    color: var(--white);
}

.about-stat-item .stat-number span:not(.counter-value) {
    color: var(--gold);
}

.about-stat-item .stat-text {
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.get-in-touch-section {
    padding: 80px 0;
    background-color: #fcfcfc;
    font-family: 'Poppins', sans-serif;
}

.section-subtitle {
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
}

.git-content {
    margin-top: 20px;
}

.git-col {
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.git-col.separator {
    border-left: 1px solid #ddd;
}

.git-item {
    width: 100%;
}

.git-icon-v2 {
    font-size: 36px;
    color: var(--gold);
    display: inline-block;
}

.git-item h5 {
    color: #333;
    letter-spacing: 1.5px;
    font-size: 1.15rem;
}

.git-item p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
}

.git-item p a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.git-item p a:hover {
    color: var(--gold);
}

.text-justify {
    text-align: justify;
}

/* =====================
   Hero Animations & Responsiveness
   ===================== */
.animate-up {
    animation: fadeInUp 1s ease-out backwards;
}

.animate-up-delay-1 {
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

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

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    .about-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }
}
