
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow-x: hidden;
            background: #FFFFFF;
        }

        /* ============================================
           HERO SECTION
        ============================================ */
        .about-hero-section {
            background: linear-gradient(135deg, #FFFAE4 0%, #FFFAE4 100%);
            padding: 8rem 2rem 6rem;
            position: relative;
            overflow: hidden;
        }

        .about-hero-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .about-hero-grid {
            display: grid;
            grid-template-columns: 7fr 3fr;
            gap: 4rem;
            align-items: center;
        }

        .about-hero-content {
            padding-right: 2rem;
        }

        .about-company-name {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 700;
            color: #006EA6;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .about-hero-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(3rem, 6vw, 6rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 2rem;
        }

        .about-title-gold {
            background: linear-gradient(135deg, #fdac17 0%, #f8ce11 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }

        .about-title-teal {
            background: linear-gradient(135deg, #4A90E2 0%, #50C9CE 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }

        .about-hero-commitment {
            font-size: clamp(1.15rem, 2vw, 1.4rem);
            line-height: 1.8;
            color: #4A5568;
            font-weight: 500;
            font-style: italic;
            border-left: 4px solid #FFD700;
            padding-left: 2rem;
            margin-top: 2rem;
        }

        .about-hero-image {
            position: relative;
            height: 500px;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .about-hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ============================================
           COMPANY INTRODUCTION SECTION
        ============================================ */
        .about-intro-section {
            padding: 6rem 2rem;
            background: #FFFFFF;
        }

        .about-intro-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-section-heading {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            text-align: center;
            color: #1A202C;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .about-section-heading::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 6px;
            background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
            border-radius: 3px;
        }

        .about-intro-text {
            font-size: 1.2rem;
            line-height: 1.9;
            color: #4A5568;
            text-align: center;
            max-width: 900px;
            margin: 3rem auto 3rem;
        }
      @media (max-width: 768px) {
  .about-intro-text {
    display: none;
  }
}

        .about-highlights-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .about-highlight-card {
            background: linear-gradient(135deg, #E8F4F8 0%, #D4E9F7 100%);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .about-highlight-card:hover {
            border-color: #4A90E2;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(74, 144, 226, 0.2);
        }

        .about-highlight-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .about-highlight-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: #1A202C;
            margin-bottom: 0.8rem;
        }

        .about-highlight-desc {
            font-size: 1rem;
            color: #4A5568;
            line-height: 1.6;
        }

        /* Mission, Goal, Commitment Grid */
        .about-values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .about-value-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border-top: 5px solid #4A90E2;
            transition: all 0.3s ease;
        }

        .about-value-card:nth-child(2) {
            border-top-color: #FFD700;
        }

        .about-value-card:nth-child(3) {
            border-top-color: #50C9CE;
        }

        .about-value-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }

        .about-value-heading {
            font-family: 'Outfit', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: #1A202C;
            margin-bottom: 1.2rem;
        }

        .about-value-text {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #4A5568;
        }

        /* ============================================
           STATISTICS SECTION
        ============================================ */
        .about-stats-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #FFFAE4 0%, #faeeb7 100%);
        }

        .about-stats-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .about-stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            margin-top: 4rem;
        }

        .about-stats-content {
            padding-right: 2rem;
        }

        .about-stats-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            color: #1A202C;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .about-stats-desc {
            font-size: 1.15rem;
            line-height: 1.8;
            color: #4A5568;
            margin-bottom: 2rem;
        }

        .about-stats-numbers {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .about-stat-box {
            background: #006EA6;
            padding: 2rem 1.5rem;
            border-radius: 18px;
            text-align: center;
            border: 2px solid #DDF2FB;
            transition: all 0.3s ease;
        }

        .about-stat-box:hover {
            background: #FCAF1B;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(252, 175, 27, 0.3);
        }

        .about-stat-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .about-stat-number {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 900;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.3rem;
            margin-bottom: 0.8rem;
        }

        .about-stat-suffix {
            font-size: clamp(2rem, 3vw, 2.5rem);
        }

        .about-stat-label {
            font-size: 1.05rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.95);
        }

        /* ============================================
           WHY CHOOSE US SECTION
        ============================================ */
        .about-why-section {
            padding: 6rem 2rem;
            background: white;
        }

        .about-why-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .about-why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .about-why-card {
            background: linear-gradient(135deg, #E8F4F8 0%, #D4E9F7 100%);
            padding: 2.5rem 2rem;
            border-radius: 20px;
            text-align: center;
            border: 3px solid transparent;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .about-why-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .about-why-card:hover::before {
            left: 100%;
        }

        .about-why-card:hover {
            border-color: #4A90E2;
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(74, 144, 226, 0.25);
        }

        .about-why-icon {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 1.5rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .about-why-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #1A202C;
            margin-bottom: 1rem;
        }

        .about-why-desc {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #4A5568;
        }

        /* ============================================
           AWARDS SECTION
        ============================================ */
        .about-awards-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #1A3C5E 0%, #1E4D6D 100%);
        }

        .about-awards-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .about-awards-heading {
            color: white;
        }

        .about-awards-heading::after {
            background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
        }

        .about-awards-slider-wrapper {
            position: relative;
            margin-top: 4rem;
        }

        .about-awards-slider {
            overflow: hidden;
        }

        .about-awards-track {
            display: flex;
            gap: 2rem;
            transition: transform 0.5s ease;
        }

        .about-award-card {
            min-width: 320px;
            background: white;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            flex-shrink: 0;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
        }

        .about-award-image {
            width: 100%;
            height: 200px;
            object-fit: contain;
            margin-bottom: 1.5rem;
            background: #F7FAFC;
            border-radius: 15px;
            padding: 1rem;
        }

        .about-award-name {
            font-family: 'Outfit', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: #1A202C;
            margin-bottom: 0.8rem;
        }

        .about-award-date {
            font-size: 1rem;
            color: #718096;
            font-weight: 600;
        }

        .about-awards-nav {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .about-awards-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-awards-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: white;
        }

        /* ============================================
           SERVICES SECTION
        ============================================ */
        .about-services-section {
            padding: 6rem 2rem;
            background: white;
        }

        .about-services-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .about-services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .about-service-card {
            background: linear-gradient(135deg, #FFFAE4 0%, #faeeb7 100%);
            padding: 2.5rem 2rem;
            border-radius: 20px;
            text-align: center;
            border: 3px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }

        .about-service-card:hover {
            border-color: #FFD700;
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(255, 215, 0, 0.25);
        }

        .about-service-icon-box {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #006EA6 0%, #4A90E2 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.8rem;
            margin: 0 auto 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 110, 166, 0.3);
        }

        .about-service-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #1A202C;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .about-service-desc {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #4A5568;
        }

        /* ============================================
           RESPONSIVE DESIGN
        ============================================ */
        @media (max-width: 1024px) {
            .about-hero-grid,
            .about-stats-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-hero-content,
            .about-stats-content {
                padding-right: 0;
            }

            .about-hero-image {
                height: 400px;
            }

            .about-values-grid,
            .about-why-grid,
            .about-services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-highlights-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .about-hero-section {
                padding: 6rem 1.5rem 4rem;
            }

            .about-intro-section,
            .about-stats-section,
            .about-why-section,
            .about-awards-section,
            .about-services-section {
                padding: 4rem 1.5rem;
            }

            .about-hero-image {
                height: 350px;
                order: -1;
            }

            .about-values-grid,
            .about-why-grid,
            .about-services-grid,
            .about-highlights-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-stats-numbers {
                gap: 1.2rem;
            }

            .about-award-card {
                min-width: 280px;
            }

            .about-section-heading {
                font-size: clamp(2rem, 6vw, 3.5rem);
            }
        }

        @media (max-width: 480px) {
            .about-hero-section {
                padding: 5rem 1rem 3rem;
            }

            .about-intro-section,
            .about-stats-section,
            .about-why-section,
            .about-awards-section,
            .about-services-section {
                padding: 3rem 1rem;
            }

            .about-hero-image {
                height: 280px;
            }

            .about-hero-commitment {
                padding-left: 1rem;
                margin-top: 1.5rem;
            }

            .about-award-card {
                min-width: 260px;
            }

            .about-stat-box {
                padding: 1.5rem 1rem;
            }
        }

        @media (min-width: 1440px) {
            .about-hero-container,
            .about-intro-container,
            .about-stats-container,
            .about-why-container,
            .about-awards-container,
            .about-services-container {
                max-width: 1600px;
            }
        }
    