/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.5) 0%, rgba(43, 154, 166, 0.4) 100%),
        url('../images/hero/slider-3.png') center/cover no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    text-align: center;
    padding: 60px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.35) 0%, rgba(43, 154, 166, 0.25) 100%);
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(43, 154, 166, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(43, 154, 166, 0.4);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 24px;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 0 15px rgba(43, 154, 166, 0.3);
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 36px;
    line-height: 1.6;
    font-weight: 400;
    text-align: center;
    width: 100%;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(43, 154, 166, 0.4);
    border-radius: 16px;
    padding: 28px 40px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(43, 154, 166, 0.3),
        0 0 40px rgba(43, 154, 166, 0.2),
        inset 0 0 20px rgba(43, 154, 166, 0.1);
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.15),
            0 0 20px rgba(43, 154, 166, 0.3),
            0 0 40px rgba(43, 154, 166, 0.2),
            inset 0 0 20px rgba(43, 154, 166, 0.1);
    }

    50% {
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.15),
            0 0 30px rgba(43, 154, 166, 0.5),
            0 0 60px rgba(43, 154, 166, 0.3),
            inset 0 0 30px rgba(43, 154, 166, 0.15);
    }
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-item h3 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 8px 0;
    line-height: 1;
    text-align: center;
}

.stat-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom,
            transparent,
            rgba(255, 255, 255, 0.3) 20%,
            rgba(255, 255, 255, 0.3) 80%,
            transparent);
}

/* Who We Are Section */
.who-we-are {
    padding: 80px 0;
    background: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text {
    padding-right: 20px;
}

.founded-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(43, 154, 166, 0.1), rgba(58, 111, 157, 0.1));
    padding: 10px 20px;
    border-radius: 30px;
    margin: 16px 0 24px 0;
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 14px;
}

.founded-badge i {
    font-size: 18px;
}

.content-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #374151;
    text-align: justify;
}

.key-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4B5563;
    font-size: 15px;
    transition: transform 0.2s ease;
}

.highlight-item:hover {
    transform: translateX(5px);
}

.highlight-item i {
    color: var(--primary-teal);
    font-size: 18px;
    background: rgba(43, 154, 166, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Isomorphic Image Section */
.isomorphic-wrapper {
    position: relative;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.isomorphic-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(43, 154, 166, 0.2));
    transition: all 0.5s ease;
}

.isomorphic-experience {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    animation: glowPulse 3s ease-in-out infinite;
}

.year-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-teal);
    line-height: 1;
}

.year-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-blue);
    margin-top: 5px;
}



/* Our Purpose Section Revamp - Compact Version */
.our-purpose {
    padding: 60px 0;
    background: #fdfdfd;
}

.section-header-compact {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header-compact .subheading {
    text-align: center !important;
    width: 100%;
}

.section-header-compact h2 {
    margin-bottom: 10px;
    text-align: center;
}

.section-header-compact .section-subtitle {
    text-align: center;
}

/* Mission & Vision Modern Tiles */
.mv-tile-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 50px;
}

.mv-tile {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mv-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(43, 154, 166, 0.1);
}

.tile-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 40px;
    border-radius: 0 0 4px 0;
}

.tile-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.tile-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.tile-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.tile-bg-icon {
    position: absolute;
    bottom: -15px;
    right: -15px;
    font-size: 140px;
    color: rgba(0, 0, 0, 0.02);
    pointer-events: none;
    z-index: 1;
    transform: rotate(-15deg);
}

/* Goals Grid Compact */
.goals-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.goal-item-alt {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.goal-item-alt:hover {
    background: #fafafa;
    border-color: var(--primary-teal);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.goal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.goal-num {
    font-size: 32px;
    font-weight: 800;
    color: rgba(43, 154, 166, 0.1);
    line-height: 1;
}

.goal-icon-small {
    font-size: 22px;
    color: var(--primary-teal);
}

.goal-item-alt h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

.goal-item-alt p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}


/* CTA Section Modern */
.cta-section-modern {
    background: linear-gradient(135deg, #1a2332 0%, #1c3d5a 50%, #2B9AA6 100%);
    padding: 100px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(43, 154, 166, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.cta-flex-box {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.cta-left-content {
    flex: 1.2;
}

.cta-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(43, 154, 166, 0.2);
    border-left: 3px solid var(--primary-teal);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    color: var(--primary-teal);
}

.cta-left-content h2 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--white);
}

.cta-left-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
}

.cta-value-pillars {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.pillar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
}

.pillar-item i {
    color: var(--primary-teal);
    font-size: 18px;
}

/* Right Glass Card */
.cta-right-box {
    flex: 0.8;
}

.cta-card-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.cta-card-glass h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.cta-card-glass p {
    font-size: 16px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.7);
}

.cta-action-btns {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-secondary-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-glow {
    position: relative;
    box-shadow: 0 0 20px rgba(43, 154, 166, 0.4);
    animation: btnPulse 3s infinite;
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 20px rgba(43, 154, 166, 0.4);
    }

    50% {
        box-shadow: 0 0 35px rgba(43, 154, 166, 0.6);
    }

    100% {
        box-shadow: 0 0 20px rgba(43, 154, 166, 0.4);
    }
}

.cta-quick-contact {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-teal);
}

/* Responsive Styles for About Page */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-flex-box {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .cta-left-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-value-pillars {
        justify-content: center;
    }

    .cta-right-box {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .mv-tile-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .goals-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 350px;
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-stats {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
        margin: 5px 0;
    }

    .who-we-are,
    .our-purpose {
        padding: 60px 0;
    }

    .goals-wrapper {
        grid-template-columns: 1fr;
    }

    .cta-left-content h2 {
        font-size: 28px;
    }

    .cta-section-modern {
        padding: 80px 0;
    }

    .cta-card-glass {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .hero-stats {
        padding: 20px 15px;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .stat-item p {
        font-size: 11px;
    }

    .mv-tile {
        padding: 30px 20px;
    }

    .tile-content h3 {
        font-size: 22px;
    }

    .cta-action-btns {
        gap: 12px;
    }

    .section-header-compact h2 {
        font-size: 24px;
    }

    .founded-badge {
        font-size: 12px;
        padding: 8px 15px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 22px;
    }

    .cta-left-content h2 {
        font-size: 24px;
    }
}