/* IMAGE HOLDER WRAPPER */
.img-container {
    display: flex;
    gap: 20px;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* EACH IMAGE BOX */
.img-container .img-box {
    flex: 1 1 calc(50% - 10px);
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    transition: all 0.4s ease;
}

/* IMAGE STYLE */
.img-container .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.4s ease;
}

/* HOVER EFFECT (PRO LOOK) */
.img-container .img-box:hover img {
    transform: scale(1.08);
    filter: brightness(0.9);
}

/* OPTIONAL OVERLAY EFFECT */
.img-container .img-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.img-container .img-box:hover::after {
    opacity: 1;
}

/* 📱 TABLET */
@media (max-width: 768px) {
}

/* 📱 SMALL MOBILE */
@media (max-width: 480px) {
    .img-container {
        gap: 12px;
    }
}

/* ============================= */
/* FAQ SECTION STYLE */
/* ============================= */

.faq-section {
    padding: 80px 0;
    background: #f9fbfc;
}

.faq-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #073D51;
}

.faq-header p {
    color: #777;
    margin-bottom: 40px;
}

/* CONTAINER */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* ITEM */
.faq-item {
    border: 1px solid #e5e5e5;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* QUESTION */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    background: #fff;
    transition: all 0.3s ease;
}

.faq-question h4 {
    font-size: 18px;
    color: #073D51;
    margin: 0;
}

/* ICON */
.faq-icon {
    font-size: 22px;
    color: #FD8404;
    transition: transform 0.3s ease;
}

/* HOVER */
.faq-question:hover {
    background: #FD8404;
}

.faq-question:hover h4 {
    color: #fff;
}

.faq-question:hover .faq-icon {
    color: #fff;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: all 0.4s ease;
}

.faq-answer p {
    padding: 15px 20px;
    margin: 0;
    color: #555;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* MOBILE */
@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 28px;
    }
}

.clearfix img{
    width: 120px;
    height: 90px;
}

.sidebar-cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    width: 100%;
    margin-top: 25px;
    padding: 14px 18px;

    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;

    color: #fff;
    background: linear-gradient(135deg, #073D51, #0a5b75);

    border-radius: 8px;
    text-decoration: none;
    overflow: hidden;
    position: relative;

    transition: all 0.4s ease;
}

/* ICON */
.sidebar-cta-btn i {
    transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.sidebar-cta-btn:hover {
    background: linear-gradient(135deg, #FD8404, #ff9d2f);
    box-shadow: 0 10px 25px rgba(253, 132, 4, 0.35);
    transform: translateY(-3px);
}

/* ICON MOVE */
.sidebar-cta-btn:hover i {
    transform: translateX(6px);
}

/* SHINE EFFECT */
.sidebar-cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.sidebar-cta-btn:hover::before {
    left: 125%;
}

/* ACTIVE CLICK */
.sidebar-cta-btn:active {
    transform: scale(0.98);
}

/* MOBILE */
@media (max-width: 576px) {
    .sidebar-cta-btn {
        font-size: 14px;
        padding: 12px 15px;
    }
}

.carousel-projects img{
    width: 193px;
    height: 53px;
}

.faq-icon{
    display: none;
}