 /* About Page Specific Styles */

        /* Hero Section */
        .about-hero {
            padding: 140px 0 80px;
            position: relative;
            text-align: center;
        }

        .about-hero .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .about-hero-badge {
            display: inline-block;
            padding: 10px 24px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid #333;
            border-radius: 30px;
            color: #888;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
        }

        .about-hero h1 {
            font-size: 52px;
            font-weight: 600;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .about-hero h1 span {
            color: #888;
        }

        .about-hero p {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Story Section */
        .about-story {
            padding: 80px 0;
        }

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

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

        .about-story-content h2 {
            font-size: 36px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 20px;
        }

        .about-story-content h2 span {
            color: #888;
        }

        .about-story-content p {
            font-size: 16px;
            color: #888;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .about-story-image {
            position: relative;
           
        }

        .about-story-image img {
            width: 120%;
            border-radius: 20px;
            /* border: 1px solid #222; */
        }

        /* .about-story-image::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 1px solid #333;
            border-radius: 20px;
            z-index: -1;
        } */

        /* Stats Section */
        .about-stats {
            padding: 80px 0;
            background: #0a0a0a;
        }

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

        .about-stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .about-stat-card {
            text-align: center;
            padding: 40px 20px;
            background: #111;
            border: 1px solid #1a1a1a;
            border-radius: 20px;
            transition: all 0.3s;
        }

        .about-stat-card:hover {
            border-color: #333;
            transform: translateY(-5px);
        }

        .about-stat-number {
            font-size: 48px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }

        .about-stat-label {
            font-size: 14px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Values Section */
        .about-values {
            padding: 100px 0;
        }

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

        .about-values-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .about-values-header h2 {
            font-size: 36px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 16px;
        }

        .about-values-header p {
            font-size: 16px;
            color: #666;
            max-width: 500px;
            margin: 0 auto;
        }

        .about-values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .about-value-card {
            background: linear-gradient(145deg, #141414 0%, #0a0a0a 100%);
            border: 1px solid #1a1a1a;
            border-radius: 20px;
            padding: 35px;
            transition: all 0.3s;
        }

        .about-value-card:hover {
            border-color: #333;
            transform: translateY(-5px);
        }

        .about-value-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid #222;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .about-value-icon svg {
            width: 28px;
            height: 28px;
            stroke: #fff;
        }

        .about-value-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 12px;
        }

        .about-value-card p {
            font-size: 14px;
            color: #888;
            line-height: 1.7;
        }

        /* Mission Section */
        .about-mission {
            padding: 100px 0;
            background: #0a0a0a;
        }

        .about-mission .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .about-mission-badge {
            display: inline-block;
            padding: 10px 24px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid #333;
            border-radius: 30px;
            color: #888;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
        }

        .about-mission h2 {
            font-size: 40px;
            font-weight: 600;
            color: #fff;
            line-height: 1.3;
            margin-bottom: 24px;
        }

        .about-mission p {
            font-size: 18px;
            color: #888;
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Clients Section */
        .about-clients {
            padding: 80px 0;
            overflow: hidden;
        }

        .about-clients-header {
            text-align: center;
            margin-bottom: 50px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 20px;
        }

        .about-clients-header h2 {
            font-size: 32px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 12px;
        }

        .about-clients-header p {
            font-size: 16px;
            color: #666;
        }

        .about-clients-track {
            display: flex;
            gap: 60px;
            animation: scrollLogos 60s linear infinite;
            width: max-content;
        }

        .about-clients-track img {
            height: 60px;
            width: auto;
            object-fit: contain;
            opacity: 0.7;
            filter: grayscale(100%) brightness(1.2);
            transition: all 0.3s;
        }

        .about-clients-track img:hover {
            opacity: 1;
            filter: grayscale(0%);
        }

        @keyframes scrollLogos {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .about-clients:hover .about-clients-track {
            animation-play-state: paused;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .about-hero h1 {
                font-size: 40px;
            }

            .about-story-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-story-image {
                order: -1;
            }

            .about-story-image::before {
                display: none;
            }

            .about-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .about-hero h1 {
                font-size: 32px;
            }

            .about-stats-grid {
                grid-template-columns: 1fr;
            }

            .about-values-grid {
                grid-template-columns: 1fr;
            }

            .about-stat-number {
                font-size: 36px;
            }

            .about-mission h2 {
                font-size: 28px;
            }

            .about-clients-track img {
                height: 45px;
            }
        }