       /* === CSS RESET AND BASE === */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary-color: #1a3a5f;
            --primary-dark: #4a5699;
            --accent-color: #d4af37;
            --secondary-color: #ff6b35;
            --light-bg: #f9f8f5;
            --dark-bg: #1a1a1a;
            --text-light: #f0f0f0;
            --text-gray: #b0b0b0;
            --border-color: #3a3a3a;
            --transition: all 0.3s ease;
            --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --border-radius: 10px;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }
        
   
        
        /* === ABOUT SECTION STYLES === */
        .main-about {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        
        .about-container {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .about-container p {
            color: var(--text-gray);
            margin-bottom: 10px;
        }
        
        .about-container h1 {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .overview {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
            margin-bottom: 40px;
        }
        
        .overview h1 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .overview-text {
            margin-bottom: 30px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .discover-container {
            background: linear-gradient(135deg, var(--primary-color), #2a5298);
            color: white;
            padding: 40px;
            border-radius: var(--border-radius);
            margin-top: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .discover-text {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }
        
        .company {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .company-text {
            font-size: 1.1rem;
            max-width: 800px;
            margin-bottom: 30px;
            line-height: 1.8;
        }
        
        .first-benefit {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            border-left: 4px solid var(--primary-color);
        }
        
        .benefit-text1 {
            font-weight: bold;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        
        .benefit-text2 {
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .image-row-container {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 40px;
        }
        
        .image-row {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .pay-image, .travel-image, .health-image, .logistics-image {
            height: 80px;
            object-fit: contain;
        }
        
        .leaders-container {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            font-size: 2.5rem;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }
        
        .leaders-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .leader-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: #f8f9fa;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .leader-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .leader-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-bottom: 4px solid var(--primary-color);
            transition: 0.5s ease-in-out;
        }

        .leader-image:hover {
            width: 80%;
        }
        
        .leader-info {
            padding: 25px;
            text-align: center;
            width: 100%;
        }
        
        .leader-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 8px;
        }
        
        .leader-qualification {
            color: var(--accent-color);
            font-size: 1rem;
            margin-bottom: 15px;
            font-weight: 500;
        }
        
        .leader-position {
            font-size: 1.2rem;
            color: var(--primary-color);
            font-weight: 600;
            padding: 8px 15px;
            background: rgba(52, 152, 219, 0.1);
            border-radius: 30px;
            display: inline-block;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .value-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-top: 4px solid var(--secondary-color);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .value-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .value-title {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .value-description {
            font-size: 1.05rem;
            line-height: 1.6;
            color: #555;
        }
        
        .businesses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .business-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .business-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        
        .business-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 4px solid var(--accent-color);
        }
        
        .business-content {
            padding: 25px;
        }
        
        .business-name {
            font-size: 1.4rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .business-description {
            font-size: 1.05rem;
            line-height: 1.6;
            color: #555;
        }
        

        
        /* === RESPONSIVE STYLES === */
        @media (max-width: 992px) {
            .about-container h1 {
                font-size: 2.5rem;
            }
            
            .overview {
                padding: 30px 20px;
            }
            
            .discover-container {
                padding: 30px 20px;
            }
            
            .leaders-container {
                padding: 30px 20px;
            }
            
            
        }
        
        @media (max-width: 768px) {
            
            /* .categories-menu {
                width: 100%;
                background-color: white;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
                overflow: hidden;
            }

            .menu-header {
                padding: 15px 20px;
                color: black;
                font-size: 18px;
                font-weight: bold;
                background-color: #f9f9f9;
            }

            .menu-items {
                list-style: none;
            }

            .menu-item {
                padding: 15px 20px;
                border-bottom: 1px solid #f0f0f0;
                display: flex;
                justify-content: space-between;
                align-items: center;
                cursor: pointer;
                transition: background-color 0.2s;
                text-decoration: none;
                color: black;
            }

            .menu-item:last-child {
                border-bottom: none;
            }

            .menu-item:hover {
                background-color: #f9f9f9;
            }

            .menu-item i {
                color: var(--primary-color);
                font-size: 14px;
            }

            .more-options-container {
                width: 100%;
                margin-top: 20px;
                background-color: white;
                border-radius: 8px;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
                overflow: hidden;
            } */

            
            
            /* Adjust leader grid for mobile */
            .leaders-grid {
                grid-template-columns: 1fr;
            }
            
            .leader-image {
                height: 300px;
            }
            
            .values-grid {
                grid-template-columns: 1fr;
            }
            
            .businesses-grid {
                grid-template-columns: 1fr;
            }
        }
        .m-icon{
            border:none;
            font-size: 35px;
            background-color:white;
        }
        .m-home{
            color: var(--primary-color);
            font-size: 24px;
            
        }
         .contact-section {
            padding: 40px 0;
        }
        
        .contact-header {
            background-color: var(--white);
            padding: 30px;
        }
        
        .breadcrumb {
            font-size: 12px;
            color: var(--dark-gray);
            margin-bottom: 15px;
        }
        
        .breadcrumb a:last-child {
            color: var(--primary-color);
            text-decoration: none;
        }
        .breadcrumb a{
            text-decoration: none;
            color: var(--primary-color);
            font-size: 15px;
            font-weight: 500;
        }
        .breadcrumb a:hover{
            color: var(--accent-color);
        }
        .contact-title {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 20px;
        }