/* Reset and Basic Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f9f9f9;
}

/* Header Section */
.services-header {
    margin-top: 80px;
    /* background: url('/assets/images/homepage/Sood Infra , construction , Soodinfra office.webp') no-repeat center center/cover; */
    padding: 4rem;
    text-align: center;
    color: #ffffff;
    background-color: #151B54;

}

.header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.2rem;
    text-align: justify;
}

/* Services Section */
/* Services Section */
.services {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
    justify-content: space-around;
    background-color: rgb(255, 255, 255);
}

.service-item {
    flex: 1 1 300px;
    margin: 1rem;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;

    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 1s ease-in-out;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-item .icon {
    width: 50px;
    /* Increased size */
    height: 60px;
    /* Increased size */
    margin-bottom: 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    color: black;
    font-size: 2.5rem;
}


.service-item h2 {
    color: #151B54;
    margin-bottom: 1rem;
}

.service-item p {
    font-size: 1em;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.service-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 1.5rem;
    font-size: 0.9em;
    color: #333;
}

.service-item li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.service-item li::before {
    content: "✔";
    /* Check mark symbol for the bullet */
    margin-right: 8px;
    color: #151B54;
    /* Color for the check mark */
    font-weight: bold;
}

.cta-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #151B54;
    color: #fff;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #107592;
}

/* Keyframes for Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Our Process Section */
/* Our Process Section */
.our-process {
    padding: 4rem 2rem;
    background: #ffffff;
    text-align: center;
}

.our-process h2 {
    font-size: 3em;
    color: #151B54;
    margin-bottom: 2.5rem;
    animation: fadeInDown 1s ease-in-out;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.step {
    flex: 1 1 220px;
    margin: 1rem;
    padding: 2rem;
    background: linear-gradient(145deg, #ffffff, #e0e0e0);
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    animation: fadeInUp 1s ease-in-out;
}

.step:hover {
    transform: translateY(-12px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background-color: #d9f7ff;
}

.step .icon {
    font-size: 3em;
    color: #151B54;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.6em;
    color: #151B54;
    margin-bottom: 1rem;
}

.step p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    text-align: justify;
}

/* Keyframes for Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .our-process h2 {
        font-size: 2.2em;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        width: 90%;
    }

    .header-content {
        width: 90%;
        margin: 0 auto;
    }

    .header-content p {
        
        text-align: justify;
      
        width: 90%;
    }

}


html {
    scroll-behavior: smooth;
}