:root {
            --primary-color: #2c5aa0;
            --secondary-color: #34495e;
            --accent-color: #3498db;
            --light-bg: #f8f9fa;
            --text-dark: #2c3e50;
            --text-light: #7f8c8d;
            --white: #ffffff;
            --gradient: linear-gradient(135deg, #2c5aa0 0%, #3498db 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            /* font-family: 'Poppins', sans-serif; */
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        .aboutUsHeader {
            background: var(--gradient);
            color: var(--white);
            padding: 20px 0 10px;
            position: relative;
            overflow: hidden;
        }

        .aboutUsHeader::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,0 1000,0 1000,100 0,80"/></svg>') no-repeat bottom center;
            background-size: cover;
        }


        .aboutUsIntroSection {
            padding: 80px 0;
            background: var(--white);
        }

        .aboutUsLogoContainer {
            text-align: center;
            margin-bottom: 2rem;
        }

        .aboutUsLogoContainer img {
            max-width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }

        .aboutUsLogoContainer img:hover {
            transform: scale(1.05);
        }

        .aboutUsCompanyName {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .aboutUsDescription {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .aboutUsStatsSection {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .aboutUsStatCard {
            text-align: center;
            padding: 2rem 1rem;
            transition: transform 0.3s ease;
        }

        .aboutUsStatCard:hover {
            transform: translateY(-5px);
        }

        .aboutUsStatIcon {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .aboutUsStatIcon i {
            font-size: 2rem;
            color: var(--white);
        }

        .aboutUsStatNumber {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .aboutUsStatLabel {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .aboutUsServicesSection {
            padding: 80px 0;
            background: var(--white);
        }

        .aboutUsServiceCard {
            background: var(--white);
            border-radius: 15px;
            padding: 2.5rem 2rem;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid rgba(44, 90, 160, 0.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .aboutUsServiceCard:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(44, 90, 160, 0.15);
        }

        .aboutUsServiceIcon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .aboutUsServiceIcon i {
            font-size: 1.8rem;
            color: var(--white);
        }

        .aboutUsServiceTitle {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .aboutUsServiceText {
            color: var(--text-light);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .aboutUsCeoSection {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .aboutUsCeoCard {
            background: var(--white);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .aboutUsCeoCard::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient);
        }

        .aboutUsCeoImageContainer {
            text-align: center;
            margin-bottom: 2rem;
        }

        .aboutUsCeoImage {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .aboutUsCeoImage i {
            font-size: 4rem;
            color: var(--white);
        }

        .aboutUsCeoName {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .aboutUsCeoTitle {
            font-size: 1rem;
            color: var(--accent-color);
            text-align: center;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .aboutUsCeoQuote {
            font-style: italic;
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-light);
            position: relative;
            padding: 2rem 0;
        }

        .aboutUsCeoQuote::before {
            content: '"';
            font-size: 4rem;
            color: var(--accent-color);
            position: absolute;
            top: -10px;
            left: -20px;
            font-family: 'Playfair Display', serif;
        }

        .aboutUsCeoQuote::after {
            content: '"';
            font-size: 4rem;
            color: var(--accent-color);
            position: absolute;
            bottom: -30px;
            right: -10px;
            font-family: 'Playfair Display', serif;
        }

        .aboutUsValuesSection {
            padding: 80px 0;
            background: var(--white);
        }

        .aboutUsValueCard {
            background: var(--white);
            border-radius: 15px;
            padding: 2.5rem 2rem;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid rgba(44, 90, 160, 0.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .aboutUsValueCard:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(44, 90, 160, 0.15);
        }

        .aboutUsValueIcon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .aboutUsValueIcon i {
            font-size: 1.8rem;
            color: var(--white);
        }

        .aboutUsValueTitle {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .aboutUsValueText {
            color: var(--text-light);
            line-height: 1.6;
        }

        .aboutUsSectionTitle {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .aboutUsSectionTitle::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--gradient);
            border-radius: 2px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .aboutUsTitle {
                font-size: 2.5rem;
            }
            
            .aboutUsCompanyName {
                font-size: 2rem;
            }
            
            .aboutUsSectionTitle {
                font-size: 2rem;
            }
            
            .aboutUsIntroSection,
            .aboutUsCeoSection,
            .aboutUsStatsSection,
            .aboutUsValuesSection,
            .aboutUsServicesSection {
                padding: 60px 0;
            }
            
            .aboutUsCeoCard {
                padding: 2rem;
            }

            .aboutUsLogoContainer img {
                max-width: 150px;
            }

            .aboutUsCeoImage {
                width: 140px;
                height: 140px;
            }

            .aboutUsCeoImage i {
                font-size: 3rem;
            }
        }

        @media (max-width: 576px) {
            .aboutUsTitle {
                font-size: 2rem;
            }
            
            .aboutUsHeader {
                padding: 60px 0 40px;
            }

            .aboutUsServiceCard,
            .aboutUsValueCard {
                padding: 2rem 1.5rem;
            }

            .aboutUsCeoQuote::before,
            .aboutUsCeoQuote::after {
                font-size: 3rem;
            }

            .aboutUsCeoQuote::before {
                left: -15px;
            }

            .aboutUsCeoQuote::after {
                right: -5px;
            }
        }