    
    /* ===== RESET & BASE STYLES ===== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        overflow-x: hidden;
        width: 100%;
    }

    body {
        font-family: 'Inter', sans-serif;
        min-height: 100vh;
        overflow-x: hidden;
        width: 100%;
        position: relative;
        color: #ffffff;
        background: #0a0a0a;
    }

    /* ===== VIDEO BACKGROUND ===== */
    .video-background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -2;
        overflow: hidden;
    }

    .video-background video {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        object-fit: cover;
        filter: brightness(0.3) contrast(1.3);
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.9) 100%);
        z-index: -1;
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: scale(0.9);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    /* ===== SCROLL ANIMATION CLASSES ===== */
    .fade-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-left {
        opacity: 0;
        transform: translateX(-30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .fade-right {
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .scale-on-scroll {
        opacity: 0;
        transform: scale(0.9);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .scale-on-scroll.visible {
        opacity: 1;
        transform: scale(1);
    }

    /* ===== MAIN CONTENT ===== */
    .main-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 6rem 2rem 4rem;
    }

    /* ===== HERO SECTION ===== */
    .about-hero {
        text-align: center;
        min-height: 80vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 5rem;
        padding: 2rem 0;
    }

    .about-hero h1 {
        font-size: clamp(2.5rem, 8vw, 5rem);
        font-weight: 800;
        background: linear-gradient(135deg, #ffffff 0%, #9c27b0 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
        animation: fadeInUp 1s ease-out;
    }

    .about-hero h1::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: min(150px, 30vw);
        height: 4px;
        background: linear-gradient(90deg, transparent, #9c27b0, transparent);
        border-radius: 2px;
    }

    .about-hero p {
        color: #e0e0e0;
        font-size: clamp(1rem, 2vw, 1.3rem);
        max-width: 800px;
        margin: 2rem auto 0;
        line-height: 1.8;
        padding: 0 1rem;
        animation: fadeInUp 1s ease-out 0.2s both;
    }

    .story-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
        max-width: 800px;
        width: 100%;
        animation: fadeInUp 1s ease-out 0.4s both;
    }

    .stat-card {
        text-align: center;
        padding: 1.5rem;
        background: rgba(156, 39, 176, 0.05);
        border: 1px solid rgba(156, 39, 176, 0.2);
        border-radius: 20px;
        transition: all 0.3s ease;
    }

    .stat-card:hover {
        transform: translateY(-5px);
        border-color: rgba(156, 39, 176, 0.4);
        box-shadow: 0 10px 30px rgba(156, 39, 176, 0.2);
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: #9c27b0;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        color: #b0b0b0;
        font-size: 0.9rem;
    }

    /* ===== STORY SECTION ===== */
    .story-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        margin-bottom: 6rem;
    }

    .story-content h2 {
        font-size: clamp(2rem, 4vw, 2.5rem);
        font-weight: 700;
        background: linear-gradient(135deg, #ffffff 0%, #9c27b0 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1.5rem;
    }

    .story-content p {
        color: #e0e0e0;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .story-image {
        position: relative;
    }

    .story-image img {
        width: 100%;
        border-radius: 30px;
        border: 1px solid rgba(156, 39, 176, 0.3);
        box-shadow: 0 20px 40px rgba(156, 39, 176, 0.3);
    }

    .experience-badge {
        position: absolute;
        bottom: -20px;
        right: -20px;
        width: 120px;
        height: 120px;
        background: linear-gradient(135deg, #9c27b0, #6a1b9a);
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 700;
        box-shadow: 0 10px 30px rgba(156, 39, 176, 0.5);
        animation: scaleIn 1s ease-out 0.6s both;
    }

    .experience-badge span:first-child {
        font-size: 2rem;
        line-height: 1;
    }

    .experience-badge span:last-child {
        font-size: 0.9rem;
        opacity: 0.9;
    }

    /* ===== VALUES SECTION ===== */
    .values-section {
        margin-bottom: 6rem;
        text-align: center;
    }

    .section-title {
        text-align: center;
        font-size: clamp(2rem, 4vw, 2.5rem);
        font-weight: 700;
        background: linear-gradient(135deg, #ffffff 0%, #9c27b0 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 3rem;
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .value-card {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(156, 39, 176, 0.2);
        border-radius: 30px;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .value-card:hover {
        transform: translateY(-10px);
        border-color: rgba(156, 39, 176, 0.5);
        box-shadow: 0 20px 40px rgba(156, 39, 176, 0.3);
    }

    .value-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(156, 39, 176, 0.1), transparent);
        transition: left 0.7s ease;
    }

    .value-card:hover::before {
        left: 100%;
    }

    .value-icon {
        width: 80px;
        height: 80px;
        background: rgba(156, 39, 176, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        border: 1px solid rgba(156, 39, 176, 0.3);
        font-size: 2.5rem;
        color: #9c27b0;
        transition: all 0.3s ease;
    }

    .value-card:hover .value-icon {
        transform: scale(1.1) rotate(360deg);
        background: rgba(156, 39, 176, 0.2);
        box-shadow: 0 0 30px rgba(156, 39, 176, 0.3);
    }

    .value-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 1rem;
    }

    .value-card p {
        color: #b0b0b0;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* ===== LEADERSHIP TEAM SECTION ===== */
    .leadership-section {
        margin: 5rem 0;
    }

    .leadership-section .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .leadership-section .section-header h2 {
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 800;
        background: linear-gradient(135deg, #ffffff 0%, #9c27b0 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1rem;
    }

    .leadership-section .section-header p {
        color: #b0b0b0;
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    .leadership-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
        margin-top: 3rem;
    }

    .leadership-card {
        background: rgba(156, 39, 176, 0.1);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(156, 39, 176, 0.2);
        border-radius: 25px;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
        overflow: hidden;
        position: relative;
    }

    .leadership-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(156, 39, 176, 0.3);
        border-color: rgba(156, 39, 176, 0.5);
    }

    .leadership-image-wrapper {
        position: relative;
        width: 180px;
        height: 180px;
        margin: 0 auto 1.5rem;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid rgba(156, 39, 176, 0.3);
    }

    .leadership-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .leadership-image-placeholder {
        width: 100%;
        height: 100%;
        background: rgba(156, 39, 176, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 4rem;
        color: #9c27b0;
    }

    .leadership-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        border-radius: 50%;
    }

    .leadership-card:hover .leadership-overlay {
        opacity: 1;
    }

    .leadership-card:hover .leadership-image {
        transform: scale(1.1);
    }

    .leadership-social {
        display: flex;
        gap: 1rem;
    }

    .leadership-social a {
        width: 40px;
        height: 40px;
        background: rgba(156, 39, 176, 0.3);
        border: 1px solid rgba(156, 39, 176, 0.5);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 1.1rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .leadership-social a:hover {
        background: rgba(156, 39, 176, 0.5);
        transform: scale(1.1);
    }

    .leadership-info h3 {
        font-size: 1.4rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }

    .leadership-position {
        font-size: 1rem;
        color: #9c27b0;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .leadership-bio {
        color: #b0b0b0;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* ===== TIMELINE SECTION ===== */
    .timeline-section {
        margin-bottom: 6rem;
    }

    .timeline {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
        padding: 2rem 0;
    }

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, transparent, #9c27b0, transparent);
    }

    .timeline-item {
        position: relative;
        margin-bottom: 3rem;
    }

    .timeline-dot {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 20px;
        background: #9c27b0;
        border-radius: 50%;
        box-shadow: 0 0 20px #9c27b0;
        z-index: 2;
    }

    .timeline-content {
        position: relative;
        width: calc(50% - 3rem);
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(156, 39, 176, 0.2);
        border-radius: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        left: 0;
    }

    .timeline-item:nth-child(even) .timeline-content {
        left: calc(50% + 3rem);
    }

    .timeline-year {
        font-size: 1.5rem;
        font-weight: 700;
        color: #9c27b0;
        margin-bottom: 0.5rem;
    }

    .timeline-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }

    .timeline-desc {
        color: #b0b0b0;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* ===== CTA SECTION ===== */
    .cta-section {
        text-align: center;
        padding: 4rem 2rem;
        background: rgba(156, 39, 176, 0.05);
        border: 1px solid rgba(156, 39, 176, 0.2);
        border-radius: 50px;
        margin: 4rem 0 2rem;
    }

    .cta-section h2 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        font-weight: 700;
        background: linear-gradient(135deg, #ffffff 0%, #9c27b0 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1rem;
    }

    .cta-section p {
        color: #e0e0e0;
        font-size: clamp(1rem, 2vw, 1.2rem);
        margin-bottom: 2rem;
    }

    .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-secondary {
        padding: 1rem 2.5rem;
        background: transparent;
        border: 1px solid rgba(156, 39, 176, 0.4);
        border-radius: 12px;
        color: #ffffff;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
    }

    .btn-secondary:hover {
        border-color: #9c27b0;
        box-shadow: 0 0 30px rgba(156, 39, 176, 0.3);
        transform: translateY(-2px);
    }

    /* ===== RESPONSIVE STYLES ===== */
    
    /* Tablet */
    @media screen and (max-width: 1024px) {
        .main-content {
            padding: 5rem 1.5rem 3rem;
        }

        .values-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .leadership-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .story-section {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .experience-badge {
            right: 0;
        }
    }

    /* Mobile Large */
    @media screen and (max-width: 768px) {
        .main-content {
            padding: 4rem 1rem 2rem;
        }

        .about-hero {
            min-height: auto;
            padding: 2rem 0;
        }

        .story-stats {
            grid-template-columns: 1fr;
            gap: 1rem;
            max-width: 300px;
        }

        .stat-card {
            padding: 1rem;
        }

        .stat-number {
            font-size: 2rem;
        }

        .values-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .value-card {
            max-width: 400px;
            margin: 0 auto;
            width: 100%;
        }

        .value-icon {
            width: 60px;
            height: 60px;
            font-size: 2rem;
        }

        .value-card h3 {
            font-size: 1.3rem;
        }

        .leadership-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .leadership-card {
            max-width: 400px;
            margin: 0 auto;
            width: 100%;
            padding: 1.5rem;
        }

        .leadership-image-wrapper {
            width: 150px;
            height: 150px;
        }

        .timeline::before {
            left: 2rem;
        }

        .timeline-dot {
            left: 2rem;
        }

        .timeline-content {
            width: calc(100% - 5rem);
            left: 5rem !important;
            padding: 1rem;
        }

        .timeline-year {
            font-size: 1.3rem;
        }

        .timeline-title {
            font-size: 1rem;
        }

        .cta-section {
            padding: 2.5rem 1rem;
            border-radius: 30px;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }

        .btn-secondary {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }
    }

    /* Mobile Small */
    @media screen and (max-width: 480px) {
        .main-content {
            padding: 3rem 0.75rem 2rem;
        }

        .about-hero h1 {
            font-size: 2rem;
        }

        .about-hero p {
            font-size: 0.95rem;
        }

        .story-content h2 {
            font-size: 1.8rem;
        }

        .story-content p {
            font-size: 0.95rem;
        }

        .experience-badge {
            width: 100px;
            height: 100px;
            bottom: -10px;
            right: -10px;
        }

        .experience-badge span:first-child {
            font-size: 1.6rem;
        }

        .section-title {
            font-size: 1.8rem;
            margin-bottom: 2rem;
        }

        .value-card {
            padding: 1.5rem;
        }

        .value-icon {
            width: 50px;
            height: 50px;
            font-size: 1.6rem;
        }

        .value-card h3 {
            font-size: 1.2rem;
        }

        .value-card p {
            font-size: 0.85rem;
        }

        .leadership-card {
            padding: 1.2rem;
        }

        .leadership-image-wrapper {
            width: 120px;
            height: 120px;
        }

        .leadership-info h3 {
            font-size: 1.2rem;
        }

        .leadership-position {
            font-size: 0.9rem;
        }

        .timeline-content {
            padding: 0.8rem;
        }

        .timeline-year {
            font-size: 1.2rem;
        }

        .timeline-title {
            font-size: 0.95rem;
        }

        .cta-section h2 {
            font-size: 1.6rem;
        }

        .cta-section p {
            font-size: 0.9rem;
        }

        .btn-secondary {
            padding: 0.8rem 2rem;
            font-size: 0.95rem;
        }
    }

    /* Landscape Mode */
    @media screen and (max-width: 896px) and (orientation: landscape) {
        .about-hero {
            min-height: auto;
            padding: 4rem 0 2rem;
        }

        .values-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .leadership-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }