/* ---------- ABOUT PAGE - PREMIUM MODERN DESIGN WITH OVERLAY ---------- */

/* Hero Section - With Overlay */
.about-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    width: 100%;
    background: url('../../public/images/about/hero.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(4, 21, 63, 0.85) 0%, rgba(4, 21, 63, 0.65) 52%, rgba(10, 18, 34, 0.7) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(3, 185, 200, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-family: var(--font-nav);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(3, 185, 200, 0.4);
}

.about-hero-content h1 {
    margin: 0;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: var(--font-weight-regular);
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.38);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-content h1 span {
    color: var(--color-primary);
    display: inline-block;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 1.5rem auto 0;
    max-width: 700px;
}

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

/* Stats Bar */
.about-stats {
    background: linear-gradient(135deg, var(--color-dark) 0%, #2a2a2a 100%);
    padding: 3rem 2rem;
    position: relative;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    margin-top: 0.5rem;
    display: block;
}

/* Mission, Vision, Values Cards */
.mission-vision {
    padding: 5rem 2rem;
    background: var(--color-light);
}

.mv-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mv-card {
    background: var(--color-light);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--color-gray-light);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mv-card:hover::before {
    transform: scaleX(1);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(3, 185, 200, 0.1), rgba(132, 204, 22, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mv-icon i {
    font-size: 2rem;
    color: var(--color-primary);
}

.mv-card h3 {
    font-family: var(--font-nav);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.mv-card p {
    color: var(--color-gray-text);
    line-height: 1.6;
}

/* Excellence Section - Matching Your Original Grid */
.about-excellence {
    background: linear-gradient(160deg, #021334 0%, #04153f 58%, #051024 100%);
    padding: var(--spacing-3xl) var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.about-excellence::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 40%),
                radial-gradient(80% 60% at 100% 20%, rgba(3, 185, 200, 0.08) 0%, rgba(3, 185, 200, 0) 70%);
}

.about-excellence-wrap {
    position: relative;
    z-index: 2;
    max-width: 1360px;
    margin: 0 auto;
}

.about-excellence-wrap h2 {
    margin: 0;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.1;
    letter-spacing: 0;
    max-width: 900px;
    padding: 0 2rem;
    padding-top: 1rem;
}

.about-excellence-line {
    display: block;
    width: 120px;
    height: 4px;
    border-radius: 999px;
    margin: 1rem 0 2rem 2rem;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-primary) 100%);
}

/* Grid Container with Border Radius - Only for the image/text content */
.about-excellence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    /* Border radius only on the grid container */
    border-radius: 24px;
    overflow: hidden;
}

.about-excellence-media,
.about-excellence-copy {
    min-height: 280px;
}

.about-excellence-media {
    margin: 0;
    overflow: hidden;
    position: relative;
}

.about-excellence-grid .about-excellence-media:nth-of-type(1) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.about-excellence-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-excellence-media:hover img {
    transform: scale(1.05);
}
.about-excellence-copy p {
    margin: 0;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 450;
    line-height: 1.7;
    max-width: 95%;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Cinematic text reveal */
.about-excellence-copy p {
    background: linear-gradient(120deg, #ffffff 0%, #ffffff 40%, var(--color-primary) 60%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shine 4s linear infinite;
}


/* Explosive drop cap */



.about-excellence-copy {
    display: flex;
    align-items: center;
    background: rgba(10, 18, 34, 0.5);
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
    border-left: 3px solid transparent;
}

/* Creative attention-grabbing typography for paragraphs - PURE WHITE, NO OPACITY */
.about-excellence-copy p {
    margin: 0;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    max-width: 95%;
    letter-spacing: 0.3px;
    position: relative;
    transition: all 0.4s ease;
}

/* Style for first paragraph - PURE WHITE */
.about-excellence-grid .about-excellence-copy:first-of-type p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.2px;
    color: #ffffff;
}

/* First line - BIG attention grabber - PURE WHITE */
.about-excellence-grid .about-excellence-copy:first-of-type p .line-1 {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 3px;
    margin-bottom: 0.3rem;
    text-transform: uppercase;


}

/* Second line - PURE WHITE */
.about-excellence-grid .about-excellence-copy:first-of-type p .line-2 {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
  
}

/* Third line - "And then you will read" - PURE WHITE */
.about-excellence-grid .about-excellence-copy:first-of-type p .line-3 {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1rem;
    font-style: italic;
    border-left: 3px solid #ffffff;
    padding-left: 1rem;
}

/* Fourth line - the body copy - PURE WHITE (no opacity) */
.about-excellence-grid .about-excellence-copy:first-of-type p .line-4 {
    display: block;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

/* Fifth line - "You'll probably read this before" - PURE WHITE */
.about-excellence-grid .about-excellence-copy:first-of-type p .line-5 {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-align: right;
    margin-top: 1rem;
    letter-spacing: 1px;
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
    padding-top: 0.8rem;
}

/* Style for second paragraph - PURE WHITE */
.about-excellence-grid .about-excellence-copy:last-of-type p .line-1 {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
}

.about-excellence-grid .about-excellence-copy:last-of-type p .line-2 {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.about-excellence-grid .about-excellence-copy:last-of-type p .line-3 {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.about-excellence-grid .about-excellence-copy:last-of-type p .line-4 {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    text-align: right;
    margin-top: 1rem;
    font-style: italic;
    letter-spacing: 1px;
}

/* Hover effects - PURE WHITE */
.about-excellence-copy:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left: 3px solid #ffffff;
    transform: translateX(5px);
}

.about-excellence-copy:hover p .line-1 {
    animation: shake 0.5s ease;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
}

.about-excellence-copy:hover p .line-2 {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
}

@keyframes pulseGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.2); }
    50% { text-shadow: 0 0 25px rgba(255, 255, 255, 0.5); }
}

@keyframes textPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.01); }
    100% { transform: scale(1); }
}
/* Values Section */
.values-section {
    padding: 5rem 2rem;
    background: var(--color-light);
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.section-line {
    display: inline-block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 999px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-light-gray);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    background: var(--color-light);
    border-color: var(--color-primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h4 {
    font-family: var(--font-nav);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--color-dark);
}

.value-card p {
    font-size: 0.9rem;
    color: var(--color-gray-text);
    line-height: 1.5;
}

/* CTA Section */
.about-cta {
      background: linear-gradient(160deg, #021334 0%, #04153f 58%, #051024 100%);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-container h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: white;
    margin-bottom: 1rem;
}

.cta-container p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    color: #051024;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mv-container {
        gap: 1.5rem;
    }
    
    .values-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 860px) {
    .about-hero {
        height: 60vh;
        min-height: 450px;
        background-position: center center;
    }
    
    .about-hero-content h1 {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        padding: 0 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
    
    .about-stats {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .mv-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
   @media (max-width: 860px) {
    .about-hero {
        height: 60vh;
        min-height: 450px;
        background-position: center center;
    }
    
    .about-hero-content h1 {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        padding: 0 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
    
    .about-stats {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .mv-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-excellence {
        padding: var(--spacing-2xl) var(--spacing-lg);
    }
    
    .about-excellence-wrap h2 {
        padding: 0;
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .about-excellence-line {
        margin: 1rem 0 2rem 0;
    }
    
    /* Remove border-radius from grid on mobile */
    .about-excellence-grid {
        grid-template-columns: 1fr;
        border: none;
        gap: 1rem;
        border-radius: 0;
        overflow: visible;
    }
    
    .about-excellence-media,
    .about-excellence-copy {
        min-height: auto;
    }
    
    .about-excellence-media {
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 16px;
        height: 220px;
    }
    
    .about-excellence-grid .about-excellence-media:nth-of-type(1) {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .about-excellence-copy {
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 16px;
        background: rgba(7, 16, 33, 0.6);
        padding: 1.2rem;
    }
    
    .about-excellence-copy p {
        max-width: 100%;
        font-size: 0.9rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .about-hero {
        height: 55vh;
        min-height: 400px;
    }
    
    .about-hero-content {
        padding: 1rem;
    }
    
    .hero-badge {
        margin-bottom: 1rem;
    }
    
    .about-hero-content h1 {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-top: 1rem;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .stat-item {
        min-width: auto;
    }
    
    .about-excellence-wrap h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .about-excellence-line {
        width: 80px;
        height: 3px;
        margin: 0.75rem 0 1.5rem;
    }
    
    .about-excellence-media {
        height: 180px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .about-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-container h2 {
        font-size: 1.3rem;
    }
    
    .cta-container p {
        font-size: 0.85rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 50vh;
        min-height: 380px;
    }
    
    .about-hero-content h1 {
        font-size: clamp(1.1rem, 5vw, 1.4rem);
    }
    
    .hero-description {
        font-size: 0.75rem;
    }
    
    .about-excellence-media {
        height: 160px;
    }
    
    .about-excellence-copy p {
        font-size: 0.8rem;
    }
}