/*--------------------------------------------------------------
  Template Name: Simply Construction HTML Template.
  Template URI: #
  Description: Simply Construction is a unique website template designed in HTML with a simple & beautiful look. There is an excellent solution for creating clean, wonderful and trending material design corporate, corporate any other purposes websites.
  Author: DevItems
  Version: 1.0
---------------------------------------------------------------*/

/* ----------------------------------------------------
	You can put your custom css code here: 
-------------------------------------------------------*/
.brand__carousel {
    padding: 30px 0;
}

.brand__item {
    background: #fff;
    border: 1px solid #eee;
   
    transition: 0.3s;
}

.brand__item img {
    max-width: 100px;
    margin: auto;
    
   
    transition: 0.3s;
}

.brand__item:hover {
    border-color: #ff6600;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.brand__item:hover img {
  
   
}
.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* IMAGE */
.service-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* ICON FIX */
.service-icon {
    width: 70px;
    height: 70px;
    background: #ff3e0a;
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    left: 50%;
    top: 190px;   /* 👈 PERFECT POSITION */
    transform: translateX(-50%);
    
    box-shadow: 0 10px 25px rgba(255,102,0,0.4);
    z-index: 2;
}

/* CONTENT */
.service-content {
    padding: 50px 20px 25px;
}

.service-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 14px;
    color: #777;
}
/* ===== DROPDOWN ARROW FOR NAV MENU ===== */

.main__menu li.drop > a::after {
    content: "\f107"; /* Font Awesome down arrow */
    font-family: "FontAwesome";
    margin-left: 6px;
    font-size: 18px;
    transition: 0.3s;
}

/* Rotate arrow on hover */
.main__menu li.drop:hover > a::after {
    transform: rotate(180deg);
}
/* ===== TOP BAR FIX ===== */

.top-contact {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.top-contact li {
    margin-left: 20px;
    font-size: 13px;
}

.top-contact i {
    margin-right: 6px;
    color: #ff6600;
}



/* MOBILE FIX */
@media (max-width: 767px) {
    
    .top-contact {
        justify-content: center;
        text-align: center;
    }

    .top-contact li {
        display: block;
        margin: 5px 0;
    }

}