* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            background: #2E2D59;
            color: #2E2D29;
        }

        .about-section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Header */
        .about-header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInUp 0.8s ease-out;
        }

        .about-header h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: #2E2D29;
            margin-bottom: 20px;
        }

        .about-header h1 span {
            color: #C03435;
            position: relative;
        }

        .about-header h1 span::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #C03435, #EA2528);
            border-radius: 2px;
        }

        .about-header p {
            font-size: 1.2rem;
            color: #3D5073;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Mission & Vision Cards */
        .mission-vision {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }

        .card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.8s ease-out;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #C03435, #EA2528);
        }

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

        .card-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #C03435, #EA2528);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 2rem;
            color: white;
            transition: all 0.3s ease;
        }

        .card:hover .card-icon {
            transform: rotate(360deg) scale(1.1);
        }

        .card h3 {
            font-size: 1.8rem;
            color: #2E2D29;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .card p {
            color: #3D5073;
            line-height: 1.7;
            font-size: 1.1rem;
        }

        /* Values Section */
        .values-section {
            margin-bottom: 30px;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #2E2D29;
            margin-bottom: 50px;
            font-weight: 600;
            animation: fadeInUp 0.8s ease-out;
        }

        .section-title span {
            color: #C03435;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .value-item {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease-out;
            position: relative;
            overflow: hidden;
        }

        .value-item::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(192,52,53,0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
            opacity: 0;
        }

        .value-item:hover::before {
            animation: shimmer 1s ease-in-out;
            opacity: 1;
        }

        .value-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .value-item i {
            font-size: 3rem;
            color: #C03435;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .value-item:hover i {
            color: #EA2528;
            transform: scale(1.2);
        }

        .value-item strong {
            display: block;
            font-size: 1.3rem;
            color: #2E2D29;
            margin-bottom: 10px;
        }

        .value-item div {
            color: #3D5073;
            font-size: 0.95rem;
        }

        /* Achievements Section */
        .achievements-section {
            margin-bottom: 40px;
        }

        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .achievement-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.8s ease-out;
        }

        .achievement-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #3176BA, #3D5073);
        }

        .cable-achievement::before {
            background: linear-gradient(90deg, #C03435, #EA2528);
        }

        .achievement-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .achievement-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #3176BA, #3D5073);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 2rem;
            color: white;
            transition: all 0.3s ease;
        }

        .cable-achievement .achievement-icon {
            background: linear-gradient(135deg, #C03435, #EA2528);
        }

        .achievement-card:hover .achievement-icon {
            transform: scale(1.1);
        }

        .achievement-card h3 {
            font-size: 1.5rem;
            color: #2E2D29;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .achievement-card p {
            color: #3D5073;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .achievement-stats {
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }

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

        .stat-number {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            color: #C03435;
            margin-bottom: 5px;
            counter-reset: stat-counter;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #3D5073;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

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

        @keyframes shimmer {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .about-header h1 {
                font-size: 2.5rem;
            }

            .mission-vision {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .values-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px;
            }

            .achievements-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .achievement-stats {
                flex-direction: column;
                gap: 15px;
            }

            .about-section {
                padding: 60px 15px;
            }
        }

        /* Intersection Observer Animation Trigger */
        .fade-element {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .fade-element.visible {
            opacity: 1;
            transform: translateY(0);
        }