/* Manufacturing & Designing Page Styles */

.webuild-page .hero {
    position: relative;
    background-image: url('../images/services-006.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    font-family: Arial, sans-serif;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 22px;
    margin-top: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Center all h2 and add hover effect */
.webuild-page h2 {
    font-size: 36px;
    color: #333;
    text-align: center;
    margin: 0 auto 20px;
    border-bottom: 3px solid #D50505;
    display: inline-block;
    padding-bottom: 10px;
    transition: color 0.3s ease;
}

.manufacturing-designing-page h2:hover {
    color: #D50505;
}

/* Overview Section */
.service-overview {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.service-overview p {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-overview p:hover {
    transform: scale(1.05);
    color: #333;
}

/* Key Capabilities Section */
.key-capabilities {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.key-capabilities ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.key-capabilities li {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.key-capabilities li:before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #D50505;
    font-weight: bold;
    transition: color 0.3s ease;
}

.key-capabilities li:hover {
    color: #D50505;
    transform: translateX(10px);
}

.key-capabilities li:hover:before {
    color: #333;
}

/* Our Process Section */
.our-process {
    padding: 60px 20px;
    background-color: #f0f0f0;
    text-align: center;
}

.our-process h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
    border-bottom: 3px solid #D50505;
    display: inline-block;
    padding-bottom: 10px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

/* Styling for Icons in Our Process */
.step {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: calc(45% - 20px);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.step .icon {
    font-size: 36px;
    color: #D50505; /* Theme color */
    margin-bottom: 15px;
}

.step h3 {
    font-size: 24px;
    color: #D50505;
    margin-bottom: 10px;
    font-weight: bold;
}

.step p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        width: 100%;
        max-width: 90%;
    }
}


/* Responsive Styling */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
        padding: 20px;
    }

    .service-overview, .key-capabilities, .our-process {
        padding: 40px 10px;
    }

    .key-capabilities ul {
        text-align: center;
    }

    .key-capabilities li {
        text-align: center;
        padding-left: 0;
    }

    .key-capabilities li:before {
        display: none;
    }
}
