/*
Template Name: Maxus Luxury Auto
File: About CSS (Updated with Icon Blocks & Layout Fixes)
*/

/********************* Breadcrumb Hero ****************/
.center_about {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url(../img/hero_image/banner-maxus.jpg);
    background-position: center;
    background-size: cover;
}
.center_om {
    padding-top: 150px;
    padding-bottom: 100px;
}

/********************* About Main Section ****************/
.about_pgl img {
    box-shadow: 15px 15px 0px rgba(0, 76, 151, 0.1);
    transition: 0.4s ease;
}
.about_pgl img:hover {
    box-shadow: 20px 20px 0px #004C97;
    transform: translateY(-5px);
}
.about_pgr p {
    color: #666;
    line-height: 1.8;
}
.about_pgr i {
    color: #004C97; 
    font-size: 1.2rem;
    margin-right: 10px;
}

/********************* NEW: Icon Blocks (Replaces Missing Images) ****************/
.icon-box-feature {
    height: 200px;
    background: #F4F7FA;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #EBEBEB;
    border-radius: 2px;
    transition: all 0.4s ease;
}
.work_i {
    transition: all 0.4s ease;
}
.work_i:hover .icon-box-feature {
    background: #004C97;
    border-color: #004C97;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 76, 151, 0.15);
}
.icon-box-feature i {
    font-size: 60px;
    color: #004C97;
    transition: all 0.4s ease;
}
.work_i:hover .icon-box-feature i {
    color: #fff;
    transform: scale(1.1);
}

.icon-box-dept {
    height: 240px;
    background: #121212; /* Sleek dark background for departments */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}
.team_1i:hover .icon-box-dept {
    background: #004C97;
}
.icon-box-dept i {
    font-size: 70px;
    color: #fff;
    transition: all 0.4s ease;
}
.team_1i:hover .icon-box-dept i {
    transform: scale(1.1);
}


/********************* Departments Styling ****************/
.team_1i {
    background: #fff;
    border: 1px solid #EBEBEB;
    transition: all 0.4s ease;
    overflow: hidden;
    border-radius: 2px;
}
.team_1i:hover {
    box-shadow: 0 20px 40px rgba(0, 76, 151, 0.08);
    border-color: #004C97;
    transform: translateY(-10px);
}
.team_1i1 {
    background: #fff !important;
}
.team_1i1 a {
    color: #004C97;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
}
.team_1i1 a:hover {
    color: #121212;
}

@media screen and (max-width : 767px){
    .about_pgr { margin-top:30px; text-align:center; }
    .about_pgr p { text-align:left; }
    .team_1i { margin-top: 15px; }
    .center_om { padding-top: 120px; padding-bottom: 60px; }
}

@media (min-width:768px) and (max-width:991px) {
    .about_pgl img { height: auto; }
}