/* General Styles */
body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}



.slogan {
    color: #f16232;
    font-weight: bold;
}

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

/* Hero Section */
.hero-about {
    background: url("/images/Hero/Flux_Dev_A_futuristic_and_dynamic_visual_representation_of_dat_3.jpeg") 
        no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    text-align: center;
}

.hero-about::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-about h1 {
    position: relative;
    z-index: 1;
    font-size: 46px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.highlight {
    color: #f16232;
}

/* Sections */
.mission, .why-choose-us, .our-story, .client-success, .our-process {
    padding: 50px 5%;
    background: #fff;
    margin: 40px auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}



/* Section Headings */
.mission h2, .why-choose-us h2, .our-story h2, .client-success h2, .our-process h2 {
    color: #f16232;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Team & Features Section */
.team-grid, .features, .process-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-member, .feature, .step {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    transition: transform 0.3s ease-in-out;
    text-align: center;
}

.team-member:hover, .feature:hover, .step:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
}

.team-member img {
    width: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Testimonials */
.testimonial {
    background: #eef;
    padding: 25px;
    border-radius: 10px;
    margin: 15px auto;
    max-width: 650px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 20px 10px;
    background-color: #f16232;
    color: white;
   
}

.cta h2 {
    font-size: 36px;
    font-weight: 700;
}

.cta p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-btn {
    background-color: white;
    color: #f16232;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.cta-btn:hover {
    background-color: black;
    color: white;
}

/* Footer */
.footer {
    background: #222;
    color: white;
    text-align: center;
}

.footer a {
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 900px) {
    .team-grid, .features, .process-steps {
        flex-direction: column;
        align-items: center;
    }
    .feature, .step {
        max-width: 100%;
    }
    .hero-about h1 {
        font-size: 32px;
    }
    .cta {
        padding: 40px 10px;
    }
}
