/* Reset and Base Styles */
        

        /* Header Styles */
        .coreimpact-page-about-header {
            position: relative;
            margin-top: 80px;
            height: 30vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            overflow: hidden;
            background:  #3e2d94 !important;
            background-size: cover;
            background-position: center;
        }

        .coreimpact-page-about-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #3e2d94 !important;
            background-size: cover;
            background-position: center;
            filter: brightness(0.5);
            z-index: -1;
        }

        .coreimpact-page-about-header-content {
            max-width: 800px;
            padding: 0 20px;
            z-index: 1;
        }

        .coreimpact-page-about-header-title {
            font-size: 2.9rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: white;
            text-shadow: 2px 2px 5px rgba(225, 220, 220, 0.52);
            font-weight: 700;
        }

        .coreimpact-page-about-header-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            font-weight: 300;
        }

        /* Container */
        .coreimpact-page-about-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Section Styles */
        .coreimpact-page-about-section {
            padding: 80px 0;
        }

        .coreimpact-page-about-section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            position: relative;
            font-weight: 600;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
        }

        .coreimpact-page-about-section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: #3e2d94;
            margin: 15px auto 0;
        }

        /* About Company Section */
        .coreimpact-page-about-company {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .coreimpact-page-about-company-content {
            flex: 1;
            min-width: 300px;
        }

        .coreimpact-page-about-company-image {
            flex: 1;
            min-width: 300px;
            height: 400px;
            background-image: url('https://5.imimg.com/data5/SELLER/Default/2023/7/330021698/JB/CL/CI/43565776/kitchen-interior-designing-services.jpg');
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* CEO Section */
        .coreimpact-page-about-ceo {
            background-color: #f1f1f1;
        }

        .coreimpact-page-about-ceo-speech {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .coreimpact-page-about-ceo-speech::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 5rem;
            color: #3e2d94;
            opacity: 0.3;
        }

        .coreimpact-page-about-ceo-name {
            text-align: right;
            font-weight: bold;
            margin-top: 20px;
            font-size: 1.2rem;
        }

        .coreimpact-page-about-ceo-position {
            text-align: right;
            color: #777;
        }

        /* Team Section */
        .coreimpact-page-about-team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 40px;
        }

        .coreimpact-page-about-team-member {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .coreimpact-page-about-team-member:hover {
            transform: translateY(-10px);
        }

        .coreimpact-page-about-team-member-image {
            height: 300px;
            background-size: cover;
            background-position: center;
        }

        .coreimpact-page-about-team-member-info {
            padding: 20px;
            text-align: center;
        }

        .coreimpact-page-about-team-member-name {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .coreimpact-page-about-team-member-designation {
            color: #777;
            font-size: 0.9rem;
        }

        /* Vision & Mission Section */
        .coreimpact-page-about-vision-mission {
            background-color: #f1f1f1;
        }

        .coreimpact-page-about-vision-mission-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .coreimpact-page-about-vision, 
        .coreimpact-page-about-mission {
            flex: 1;
            min-width: 300px;
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .coreimpact-page-about-vision-title,
        .coreimpact-page-about-mission-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #3e2d94;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .coreimpact-page-about-header-title {
                font-size: 2.5rem;
            }

            .coreimpact-page-about-header-subtitle {
                font-size: 1.2rem;
            }

            .coreimpact-page-about-section {
                padding: 60px 0;
            }

            .coreimpact-page-about-section-title {
                font-size: 2rem;
                margin-bottom: 40px;
            }
        }

        @media (max-width: 480px) {
            .coreimpact-page-about-header-title {
                font-size: 2rem;
            }

            .coreimpact-page-about-header {
                height: 20vh;
            }
            
            .coreimpact-page-about-section {
                padding: 40px 0;
            }

            .coreimpact-page-about-ceo-speech {
                padding: 30px;
            }
        }
        .coreimpact-page-about-join-team {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .coreimpact-page-about-join-subtitle {
            font-size: 1.5rem;
            margin: 30px 0 15px;
            color: #3e2d94;
        }

        .coreimpact-page-about-benefits-list {
            list-style-position: inside;
            margin-bottom: 30px;
            padding-left: 20px;
        }

        .coreimpact-page-about-benefits-list li {
            margin-bottom: 10px;
        }

        .coreimpact-page-about-opportunities {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .coreimpact-page-about-job {
            background-color: #f9f9f9;
            border-radius: 8px;
            padding: 25px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 4px solid #3e2d94;
        }

        .coreimpact-page-about-job:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .coreimpact-page-about-job-title {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #333;
        }

        .coreimpact-page-about-job-section {
            margin-bottom: 15px;
        }

        .coreimpact-page-about-job-section h5 {
            font-weight: 600;
            margin-bottom: 5px;
            color: #555;
        }

        .coreimpact-page-about-apply-section {
            background-color: #f1f1f1;
            padding: 30px;
            border-radius: 8px;
            margin-top: 20px;
            text-align: center;
        }

    /* Responsive Adjustments */
        @media (max-width: 768px) {
            .coreimpact-page-about-header-title {
                font-size: 2.5rem;
            }

            .coreimpact-page-about-header-subtitle {
                font-size: 1.2rem;
            }

            .coreimpact-page-about-section {
                padding: 60px 0;
            }

            .coreimpact-page-about-section-title {
                font-size: 2rem;
                margin-bottom: 40px;
            }
            
            .coreimpact-page-about-opportunities {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .coreimpact-page-about-header-title {
                font-size: 2rem;
            }

            .coreimpact-page-about-header {
                height: 20vh;
            }
            
            .coreimpact-page-about-section {
                padding: 40px 0;
            }

            .coreimpact-page-about-ceo-speech {
                padding: 30px;
            }
        }




        /* project */
         
        .coreimpact-finalview-container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            gap: 30px;
        }
        
        .coreimpact-finalview-section {
            flex: 1;
            padding: 20px;
            background-color: #fff;
            border-radius: 20px;
            box-shadow: 0 4px 5px rgba(0, 0, 0, 0.27);
            
        }
        
        .coreimpact-finalview-heading {
            font-size: 24px;
            margin-bottom: 20px;
            font-weight: 600;
            position: relative;
        }
        
        .coreimpact-finalview-text {
            font-size: 16px;
            color: #555;
            margin-bottom: 15px;
        }
        
        @media (max-width: 768px) {
            .coreimpact-finalview-container {
                flex-direction: column;
            }
            
            .coreimpact-finalview-section {
                margin-bottom: 20px;
            }
        }

        * {
            margin: 0;
            box-sizing: border-box;
          }
          
          .list-little-gallery {
            padding: 1rem;
            /*  column-count: 4; */
            columns: 300px 4;
          }
          
          .list-little-gallery img {
            width: 100%;
            margin-bottom: 0.7rem;
            box-shadow: 0 0 2px 5px transparent;
            border-radius: 1.5rem;
          }