        .aboutus-section {
            background-color: #ffffff;
            padding: 130px 0;
            transition: all 500ms linear;
            transition-delay: 100ms;            
        }

        .aboutus-section .container {
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .aboutus-section .content-left {
            padding-right: 40px;
        }

        .aboutus-section .label {
            color: #d12a69;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .aboutus-section .main-heading {
            font-size: 52px;
            line-height: 1.2;
            color: #2c3e50;
            margin-bottom: 30px;
            font-weight: 700;
            transition: all 500ms linear;
            transition-delay: 100ms;            
        }

        .aboutus-section .main-heading .highlight {
            color: #d12a69;
        }

        .aboutus-section .description {
            color: #6b7280;
            font-size: 17px;
            line-height: 1.7;
            margin-bottom: 35px;
        }

        .aboutus-section .experience-box {
            background-color: #fff;
            border-left: 4px solid #d12a69;
            padding: 20px 25px;
            margin-bottom: 40px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: all 500ms linear;
            transition-delay: 100ms;
            margin-top: 30px;
            }

        .aboutus-section .experience-box p {
            color: #2c3e50;
            font-size: 16px;
            line-height: 1.6;
            margin: 0;
        }

        .aboutus-section .bottom-section {
            display: flex;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap;
        }

        .aboutus-section .contact-btn {
            background-color: #d12a69;
            color: white;
            font-size: 18px;
            font-weight: 600;
            padding: 18px 40px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .aboutus-section .customer-stats {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .aboutus-section .customer-avatars {
            display: flex;
            align-items: center;
        }

        .aboutus-section .avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 3px solid #f8f5f0;
            margin-left: -12px;
            object-fit: cover;
        }

        .aboutus-section .avatar:first-child {
            margin-left: 0;
        }

        .aboutus-section .stats-text h3 {
            font-size: 28px;
            color: #2c3e50;
            font-weight: 700;
            margin-bottom: 4px;
            margin-top: 0;
        }

        .aboutus-section .stats-text p {
            color: #6b7280;
            font-size: 15px;
            margin: 0;
        }

        .aboutus-section .image-right {
            position: relative;
        }

        .aboutus-section .main-image {
            width: 100%;
            height: 500px;
            border-radius: 12px;
            object-fit: cover;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            display: block;
        }

        .aboutus-section .experience-badge {
            position: absolute;
            top: 30px;
            right: -130px;
            background-color: white;
            padding: 25px 35px;
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .aboutus-section .badge-number {
            font-size: 64px;
            font-weight: 800;
            color: #d12a69;
            line-height: 1;
        }

        .aboutus-section .badge-text {
            font-size: 20px;
            font-weight: 700;
            color: #2c3e50;
            line-height: 1.3;
            text-transform: uppercase;
        }

        @media (max-width: 991px) {
            .aboutus-section .content-left {
                padding-right: 15px;
                margin-bottom: 40px;
            }

            .aboutus-section .main-heading {
                font-size: 40px;
            }
        }

        @media (max-width: 767px) {
            .aboutus-section {
                padding: 60px 0;
            }

            .aboutus-section .content-left {
                padding-right: 25px;
                padding-left: 25px;
            }

            .aboutus-section .main-heading {
                font-size: 36px;
            }

            .aboutus-section .bottom-section {
                flex-direction: column;
                align-items: flex-start;
                gap: 30px;
            }

            .aboutus-section .main-image {
                height: 400px;
            }

            .aboutus-section .experience-badge {
                padding: 20px 25px;
                right:10px;
            }

            .aboutus-section .badge-number {
                font-size: 48px;
            }

            .aboutus-section .badge-text {
                font-size: 16px;
            }
        }
