        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

         /* Hero Section */
        .about-us-hero {
            padding: 35px 0px;
            position: relative;
        
        }

        .section-content {
            display: flex;
            justify-content: space-between;
            gap: 4rem;
            position: relative;
            z-index: 2;
            align-items: center;
        }

        .text-content {
            flex: 1;
            max-width: 500px;
        }

        .text-content h1 {
            font-size: 3rem;
            font-weight: 900;
            color: black;
            line-height: 0.9;
            margin-bottom: 2rem;
            letter-spacing: -0.02em;
        }

        .text-content p {
            font-size: 14px;
            color: black;
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* Image Content */
        .img-content {
            flex: 1;
            position: relative;
            height: 500px;
            max-width: 600px;
        }

        .team-photo {
            position: absolute;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }

        .team-photo:hover {
            transform: translateY(-10px);
        }

        .img-one {
           width: 167px;
        height: 261px;
        object-fit: cover;
        top: 59px;
        left: 50px;
        z-index: 3;
        transform: rotate(-8deg);
        }

        .img-two {
            width: 177px;
            height: 300px;
            object-fit: cover;
            top: 4%;
            right: 30%;
            z-index: 2;
            transform: rotate(12deg);
        }

        .elips{
            position: absolute;
            width: 450px;
            top: 20%;
            left: 0;
            right: 0;

        }

        /* Decorative Elements */
        .decorative-circle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            opacity: 0.8;
        }

        

        
        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-content {
                flex-direction: column;
                text-align: center;
                gap: 3rem;
            }

            .text-content {
                max-width: 100%;
            }

            .text-content h1 {
                font-size: 2.5rem;
            }

            .img-content {
                height: 300px;
                max-width: 400px;
                margin: 0 auto;
            }

            .img-one, .img-two {
                width: 200px;
                height: 250px;
            }

            .img-one {
                transform: rotate(-5deg);
                left: -20px;
            }

            .img-two {
                transform: rotate(8deg);
                right: -20px;
            }
        }


        .last-section{
            padding-top: 60px;
            position: relative;
        }
        .last-section-content{
            display: flex;
            width: 60%;
            gap: 10px;
            align-items: baseline;
        }

        .last-section-content .title{
            width: 500px;
        }

        .last-section-content .title h2{
            color: black;
            font-weight: 700;
            font-size: 3rem;
            margin-bottom: 40px

        }

        .last-section-photo{
            position: absolute;
           border-radius:11px ;
           
        }

        .last-section-photo img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 11px;
        }

        .photo-one{
            width: 150px;
            height: 200px;
            top: 20%;
            right: 20%;
            z-index: 2;
            
        }

        .photo-two{
            top: 56%;
            right: 7%;
            width: 226px;
            height: 160px;
        }
        .photo-three{
            top: 2%;
            right: 5%;
        }

        .view-section{
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 70px;
            margin-top: 30px;
            width: 600px;
            padding: 60px 0px;
            background-color: #F5864A;
            border-top-right-radius: 30px;
            background-image:url(/assets/images/background-section1.png) ;
        }

        .view{
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .view .number{
            font-size: 40px;
        }

        /* banner section */

        .banner{
            background-color: #F58548;
            color: white;
            padding: 40px ;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;

        }

        .banner-img{
            width: 250px;
        }

        .banner-content{
            max-width: 400px;
        }