/* =====================================================
   ABOUT PAGE - DESKTOP CSS (1024px and above)
   Professional & Attractive Animated Styles
   ===================================================== */

@media screen and (min-width: 1024px) {
    
    /* =====================================================
       PAGE HEADER
       ===================================================== */
    
    .about-page-header {
        padding: 7rem 2rem;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        position: relative;
        overflow: hidden;
        text-align: center;
    }
    
    .about-page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg width="150" height="150" xmlns="http://www.w3.org/2000/svg"><circle cx="75" cy="75" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
        opacity: 0.2;
        animation: float 20s infinite linear;
    }
    
    @keyframes float {
        0% { transform: translateY(0) rotate(0deg); }
        100% { transform: translateY(-100px) rotate(360deg); }
    }
    
    .header-content-wrapper {
        position: relative;
        z-index: 2;
        animation: fadeInUp 1s ease-out;
        max-width: 1100px;
        margin: 0 auto;
    }
    
    .header-badge {
        display: inline-block;
        padding: 0.75rem 2rem;
        background: rgba(255,255,255,0.2);
        backdrop-filter: blur(10px);
        border-radius: 35px;
        color: white;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        animation: fadeInDown 0.8s ease-out;
    }
    
    .about-page-header h1 {
        font-size: 3.5rem;
        line-height: 1.3;
        color: white;
        margin-bottom: 1.5rem;
        animation: slideInLeft 0.8s ease-out 0.2s both;
    }
    
    .gradient-text {
        background: linear-gradient(135deg, #00d4ff, #00ff88);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .header-description {
        font-size: 1.3rem;
        color: rgba(255,255,255,0.95);
        line-height: 1.9;
        margin-bottom: 3rem;
        animation: slideInLeft 0.8s ease-out 0.4s both;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .header-stats-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        animation: fadeInUp 0.8s ease-out 0.6s both;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .header-stat {
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(10px);
        border-radius: 25px;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
        border: 1px solid rgba(255,255,255,0.2);
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .header-stat:hover {
        transform: translateY(-10px);
        background: rgba(255,255,255,0.25);
        box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    }
    
    .stat-icon-box {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }
    
    .header-stat:hover .stat-icon-box {
        transform: scale(1.1) rotate(5deg);
    }
    
    .stat-details {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .stat-value {
        font-size: 2.5rem;
        font-weight: 700;
        color: white;
        line-height: 1;
    }
    
    .stat-text {
        font-size: 1rem;
        color: rgba(255,255,255,0.9);
        margin-top: 0.5rem;
    }
    
    .header-decoration {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
        z-index: 1;
        overflow: hidden;
    }
    
    .deco-shape {
        position: absolute;
        border-radius: 50%;
        background: rgba(255,255,255,0.05);
    }
    
    .shape-1 {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -100px;
        animation: pulse 4s ease-in-out infinite;
    }
    
    .shape-2 {
        width: 200px;
        height: 200px;
        bottom: -80px;
        left: -80px;
        animation: pulse 4s ease-in-out infinite 1s;
    }
    
    .shape-3 {
        width: 150px;
        height: 150px;
        top: 50%;
        left: 15%;
        animation: pulse 4s ease-in-out infinite 2s;
    }
    
    @keyframes pulse {
        0%, 100% { transform: scale(1); opacity: 0.5; }
        50% { transform: scale(1.2); opacity: 0.8; }
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* =====================================================
       COMPANY STORY
       ===================================================== */
    
    .company-story {
        padding: 8rem 2rem;
        background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    }
    
    .story-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .story-text h2 {
        font-size: 2.75rem;
        color: #2c3e50;
        margin-bottom: 1.75rem;
        font-weight: 700;
        animation: fadeInUp 0.8s ease-out;
    }
    
    .story-highlight {
        background: linear-gradient(135deg, rgba(0,123,255,0.1), rgba(0,168,89,0.1));
        border-left: 5px solid var(--primary-color);
        border-radius: 20px;
        padding: 2rem;
        margin-bottom: 2rem;
        animation: fadeInUp 0.8s ease-out 0.2s both;
    }
    
    .lead-text {
        font-size: 1.2rem;
        line-height: 2;
        color: #2c3e50;
        font-weight: 500;
        margin: 0;
    }
    
    .story-details p {
        font-size: 1.1rem;
        line-height: 2;
        color: #6c757d;
        margin-bottom: 1.5rem;
    }
    
    .achievement-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 2.5rem;
        padding-top: 2.5rem;
        border-top: 3px solid rgba(0,123,255,0.1);
    }
    
    .stat-item {
        text-align: center;
        background: white;
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
    }
    
    .stat-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0,123,255,0.15);
    }
    
    .stat-number {
        display: block;
        font-size: 2.75rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 1rem;
    }
    
    .stat-label {
        display: block;
        font-size: 1.05rem;
        color: #6c757d;
    }
    
    .story-visual {
        animation: fadeInUp 0.8s ease-out 0.4s both;
    }
    
    .story-image {
        width: 100%;
        height: 450px;
        background: linear-gradient(135deg, rgba(102,126,234,0.2), rgba(118,75,162,0.2));
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 6rem;
        color: var(--primary-color);
        box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        transition: transform 0.3s ease;
    }
    
    .story-image:hover {
        transform: scale(1.05);
    }
    
    /* =====================================================
       MISSION & VISION
       ===================================================== */
    
    .mission-vision-section {
        padding: 8rem 2rem;
        background: white;
    }
    
    .section-header-center {
        text-align: center;
        margin-bottom: 4rem;
    }
    
    .section-badge {
        display: inline-block;
        padding: 0.6rem 1.5rem;
        background: linear-gradient(135deg, rgba(0,123,255,0.1), rgba(0,168,89,0.1));
        border-radius: 30px;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 1.25rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .section-header-center h2 {
        font-size: 2.75rem;
        color: #2c3e50;
        margin-bottom: 1.25rem;
        font-weight: 700;
    }
    
    .section-header-center p {
        font-size: 1.2rem;
        color: #6c757d;
    }
    
    .mv-grid-improved {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .mv-card-enhanced {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border-radius: 30px;
        padding: 0;
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        position: relative;
        overflow: hidden;
        animation: fadeInUp 0.6s ease-out both;
        border: 1px solid rgba(0,123,255,0.05);
    }
    
    .mv-card-enhanced:nth-child(1) { animation-delay: 0.1s; }
    .mv-card-enhanced:nth-child(2) { animation-delay: 0.2s; }
    
    .mv-card-enhanced:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 70px rgba(0,123,255,0.2);
        border-color: rgba(0,123,255,0.2);
    }
    
    .mv-card-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    .mission-card .mv-card-bg {
        background: linear-gradient(135deg, rgba(0,123,255,0.05), rgba(0,168,89,0.05));
    }
    
    .vision-card .mv-card-bg {
        background: linear-gradient(135deg, rgba(118,75,162,0.05), rgba(0,123,255,0.05));
    }
    
    .mv-card-enhanced:hover .mv-card-bg {
        opacity: 1;
    }
    
    .mv-icon-wrapper {
        padding: 3rem;
        text-align: center;
    }
    
    .icon-circle {
        width: 110px;
        height: 110px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 2.75rem;
        color: white;
        box-shadow: 0 15px 40px rgba(0,123,255,0.3);
        transition: transform 0.3s ease;
    }
    
    .mv-card-enhanced:hover .icon-circle {
        transform: scale(1.1) rotate(360deg);
    }
    
    .mv-content {
        padding: 0 3rem 3rem;
    }
    
    .mv-content h3 {
        font-size: 1.75rem;
        color: #2c3e50;
        margin-bottom: 1.5rem;
        font-weight: 700;
        text-align: center;
    }
    
    .mv-description {
        font-size: 1.15rem;
        line-height: 2;
        color: #6c757d;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .mv-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .mv-feature-item {
        display: flex;
        align-items: flex-start;
        gap: 1.25rem;
        font-size: 1rem;
        color: #495057;
    }
    
    .mv-feature-item i {
        color: var(--success-color);
        margin-top: 0.25rem;
        flex-shrink: 0;
        font-size: 1.15rem;
    }
    
    /* =====================================================
       COMPANY VALUES
       ===================================================== */
    
    .company-values-section {
        padding: 8rem 2rem;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        position: relative;
        overflow: hidden;
    }
    
    .company-values-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            radial-gradient(circle at 20% 30%, rgba(0,123,255,0.03) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(0,168,89,0.03) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .values-grid-enhanced {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        position: relative;
        z-index: 1;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .value-card-improved {
        animation: fadeInUp 0.6s ease-out both;
    }
    
    .value-card-improved:nth-child(1) { animation-delay: 0.1s; }
    .value-card-improved:nth-child(2) { animation-delay: 0.2s; }
    .value-card-improved:nth-child(3) { animation-delay: 0.3s; }
    .value-card-improved:nth-child(4) { animation-delay: 0.4s; }
    
    .value-card-inner {
        background: white;
        border-radius: 30px;
        padding: 3rem;
        box-shadow: 0 10px 35px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        border: 1px solid rgba(0,123,255,0.05);
        text-align: center;
    }
    
    .value-card-inner:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 70px rgba(0,123,255,0.2);
        border-color: rgba(0,123,255,0.2);
    }
    
    .value-icon-box {
        width: 110px;
        height: 110px;
        background: linear-gradient(135deg, rgba(0,123,255,0.1), rgba(0,168,89,0.1));
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 2.75rem;
        color: var(--primary-color);
        margin-bottom: 1.75rem;
        position: relative;
        transition: transform 0.3s ease;
    }
    
    .value-card-inner:hover .value-icon-box {
        transform: scale(1.1);
    }
    
    .icon-glow {
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        background: linear-gradient(135deg, rgba(0,123,255,0.2), rgba(0,168,89,0.2));
        border-radius: 50%;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
    }
    
    .value-card-inner:hover .icon-glow {
        opacity: 0.5;
        animation: pulse-ring 2s ease-in-out infinite;
    }
    
    @keyframes pulse-ring {
        0% { transform: scale(1); opacity: 0.5; }
        50% { transform: scale(1.1); opacity: 0.2; }
        100% { transform: scale(1); opacity: 0.5; }
    }
    
    .value-card-inner h3 {
        font-size: 1.5rem;
        color: #2c3e50;
        margin-bottom: 1.25rem;
        font-weight: 700;
    }
    
    .value-card-inner p {
        font-size: 1.1rem;
        line-height: 1.9;
        color: #6c757d;
        margin-bottom: 1.75rem;
    }
    
    .value-badge {
        display: inline-block;
        padding: 0.6rem 1.5rem;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        border-radius: 30px;
        font-size: 0.9rem;
        font-weight: 600;
        transition: transform 0.3s ease;
    }
    
    .value-card-inner:hover .value-badge {
        transform: scale(1.05);
    }
    
    /* =====================================================
       TEAM SECTION
       ===================================================== */
    
    .team-section-enhanced {
        padding: 8rem 2rem;
        background: white;
    }
    
    .team-grid-improved {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .team-member-card {
        animation: fadeInUp 0.6s ease-out both;
    }
    
    .team-member-card:nth-child(1) { animation-delay: 0.1s; }
    .team-member-card:nth-child(2) { animation-delay: 0.2s; }
    
    .member-card-inner {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border-radius: 30px;
        padding: 3rem;
        box-shadow: 0 15px 45px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        border: 1px solid rgba(0,123,255,0.05);
    }
    
    .member-card-inner:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 80px rgba(0,123,255,0.2);
        border-color: rgba(0,123,255,0.2);
    }
    
    .member-photo-wrapper {
        margin-bottom: 2rem;
        position: relative;
    }
    
    .member-photo-circle {
        width: 180px;
        height: 180px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 5rem;
        color: white;
        box-shadow: 0 20px 50px rgba(0,123,255,0.3);
        position: relative;
        transition: transform 0.3s ease;
    }
    
    .member-card-inner:hover .member-photo-circle {
        transform: scale(1.05);
    }
    
    .member-badge {
        position: absolute;
        bottom: 10px;
        right: 50%;
        transform: translateX(50%);
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        padding: 0.6rem 1.5rem;
        border-radius: 30px;
        font-size: 0.9rem;
        font-weight: 600;
        box-shadow: 0 8px 25px rgba(0,123,255,0.3);
    }
    
    .member-details h3 {
        font-size: 1.75rem;
        color: #2c3e50;
        margin-bottom: 1rem;
        font-weight: 700;
    }
    
    .member-role {
        font-size: 1.25rem;
        color: var(--primary-color);
        margin-bottom: 2rem;
        font-weight: 600;
    }
    
    .member-role i {
        margin-right: 1rem;
    }
    
    .member-bio {
        text-align: left;
        margin-bottom: 2rem;
    }
    
    .member-bio p {
        font-size: 1.1rem;
        line-height: 1.9;
        color: #6c757d;
        margin-bottom: 1.25rem;
    }
    
    .member-expertise-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .expertise-tag {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.6rem 1.25rem;
        background: rgba(0,123,255,0.1);
        color: var(--primary-color);
        border-radius: 30px;
        font-size: 1rem;
        font-weight: 600;
        transition: transform 0.3s ease;
    }
    
    .expertise-tag:hover {
        transform: scale(1.05);
    }
    
    .expertise-tag i {
        font-size: 0.9rem;
    }
    
    /* =====================================================
       ACHIEVEMENTS & MILESTONES
       ===================================================== */
    
    .achievements-section-enhanced {
        padding: 8rem 2rem;
        background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    }
    
    .achievements-timeline-improved {
        position: relative;
        padding-left: 4rem;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .achievements-timeline-improved::before {
        content: '';
        position: absolute;
        left: 1.5rem;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    }
    
    .timeline-item {
        position: relative;
        margin-bottom: 3rem;
        animation: fadeInLeft 0.6s ease-out both;
    }
    
    .timeline-item:nth-child(1) { animation-delay: 0.1s; }
    .timeline-item:nth-child(2) { animation-delay: 0.2s; }
    .timeline-item:nth-child(3) { animation-delay: 0.3s; }
    .timeline-item:nth-child(4) { animation-delay: 0.4s; }
    .timeline-item:nth-child(5) { animation-delay: 0.5s; }
    .timeline-item:nth-child(6) { animation-delay: 0.6s; }
    
    .timeline-item::before {
        content: '';
        position: absolute;
        left: -3.5rem;
        top: 0.5rem;
        width: 24px;
        height: 24px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 50%;
        box-shadow: 0 0 0 6px rgba(0,123,255,0.1), 0 0 0 12px rgba(0,123,255,0.05);
    }
    
    .timeline-item:hover::before {
        animation: pulse-dot 1.5s ease-in-out infinite;
    }
    
    @keyframes pulse-dot {
        0%, 100% { box-shadow: 0 0 0 6px rgba(0,123,255,0.1), 0 0 0 12px rgba(0,123,255,0.05); }
        50% { box-shadow: 0 0 0 10px rgba(0,123,255,0.2), 0 0 0 20px rgba(0,123,255,0.1); }
    }
    
    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .timeline-year {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 1rem;
    }
    
    .timeline-content h3 {
        font-size: 1.5rem;
        color: #2c3e50;
        margin-bottom: 1rem;
        font-weight: 700;
    }
    
    .timeline-content p {
        font-size: 1.1rem;
        line-height: 1.9;
        color: #6c757d;
        margin: 0;
    }
    
    /* =====================================================
       TESTIMONIALS
       ===================================================== */
    
    .testimonials-section-enhanced {
        padding: 8rem 2rem;
        background: white;
    }
    
    .testimonials-grid-improved {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .testimonial-card {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border-radius: 30px;
        padding: 2.5rem;
        box-shadow: 0 10px 35px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        border: 1px solid rgba(0,123,255,0.05);
        animation: fadeInUp 0.6s ease-out both;
    }
    
    .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
    .testimonial-card:nth-child(2) { animation-delay: 0.2s; }
    .testimonial-card:nth-child(3) { animation-delay: 0.3s; }
    
    .testimonial-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 70px rgba(0,123,255,0.2);
        border-color: rgba(0,123,255,0.2);
    }
    
    .testimonial-content {
        margin-bottom: 2rem;
    }
    
    .quote-icon {
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        opacity: 0.3;
    }
    
    .testimonial-content p {
        font-size: 1.1rem;
        line-height: 1.9;
        color: #495057;
        font-style: italic;
    }
    
    .testimonial-author {
        padding-top: 1.5rem;
        border-top: 1px solid rgba(0,123,255,0.1);
    }
    
    .author-info h4 {
        font-size: 1.2rem;
        color: #2c3e50;
        margin-bottom: 0.5rem;
        font-weight: 700;
    }
    
    .author-info p {
        font-size: 1rem;
        color: #6c757d;
        margin: 0;
    }
}

