/* ======= Typography style ======= */
:root {
    --primary-blue: #13FFFF;
    --secondary-blue: #153CAF;
    --text-gray: #67696c;
    --bg-color: #FAFAF7;
    --light-gray: #F5F4EE;
    --soft-white: #F9F9F9;
    --black: #000000;
    --white: #FFFFFF;

    /* font */
    --font-body: "Poppins", sans-serif;
    --font-head: "Libre Baskerville", serif;

}






/* BreadCrumb Section */
.breadcrumb-box {
    position: relative;
    background: url('../img/weld-1.webp') center center / cover no-repeat;
    width: 100%;
    padding: clamp(4rem, 10vw, 8rem) 1rem;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.breadcrumb-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.breadcrumb-content {
    max-width: 900px;
}


.breadcrumb-content>* {
    position: relative;
    z-index: 2;
}

.breadcrumb-content h1 {
    text-transform: uppercase;
    font-size: clamp(35px, 6vw, 55px);
    color: var(--white);
}

.breadcrumb-content p {
    text-transform: capitalize;
    font-size: 16px;
    color: var(--white);
}


.breadcrumb-content a {
    position: relative;
    color: var(--white);
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: background-size 0.3s ease;
}

.breadcrumb-content a:hover {
    background-size: 100% 2px;
}



.breadcrumb-content span {
    text-transform: capitalize;
    text-decoration: none;
    color: var(--white);
}





@media (max-width:945px) {
    .breadcrumb-content {
        max-width: 900px;
        margin-top: 40px;
    }
}

/* BreadCrumb Section */

































/* INTRO SECTION  */

.service-intro-container {
    display: flex;
    justify-content: center;
    align-items: center;
}


.servive-intro {
    text-align: center;
    max-width: 1000px;

}


.welding-type {
    position: relative;
    height: 300px;
    padding: 20px;
    margin: 10px 0px;
    border-radius: 10px;
    overflow: hidden;

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    cursor: pointer;
}

/* dark overlay */
.welding-type::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    transition: 0.4s;
}

/* title */
.welding-type h3 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-weight: 600;
    font-size: clamp(20px, 5vw, 30px);
    transition: 0.4s;
}

/* hidden paragraph */
.welding-type p {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;

    color: #fff;
    font-size: 15px;
    line-height: 1.5;

    opacity: 0;
    transform: translateY(30px);
    transition: 0.4s;

    z-index: 2;
}

/* hover effect */
.welding-type:hover::before {
    background: rgba(0, 0, 0, 0.75);
}

/* hide title */
.welding-type:hover h3 {
    opacity: 0;
    transform: translateY(-20px);
}

/* show paragraph */
.welding-type:hover p {
    opacity: 1;
    transform: translateY(0);
}


/* ===== Mobile & Tablet View ===== */
@media (max-width: 991.98px) {

    .welding-type {
        display: block;
        height: auto;
        padding: 25px;
    }

    .welding-type::before {
        background: rgba(0, 0, 0, 0.6);
    }

    .welding-type h3 {
        opacity: 1;
        transform: none;
        margin-bottom: 10px;
    }

    .welding-type p {
        position: relative;
        opacity: 1;
        transform: none;
        bottom: auto;
        left: auto;
        right: auto;
    }

}








.service-img-container {
    display: flex;
    justify-content: center;
    align-items: center;

}


.service-intro-img {
    border-radius: 10px;
    max-width: 1000px;
}

.service-intro-img img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    aspect-ratio: 16/7;
    object-fit: cover;
    object-position: center;
}


/* INTRO SECTION  */