
    .az-advanced-support {
        width: 100%;
        padding: 20px 2%;
        background: #fdfdfd;
        font-family: 'Poppins', sans-serif;
        box-sizing: border-box;
overflow-x: hidden;
    }



    .az-support-wrapper {
        width: 100%;
        display: flex;
        gap: 30px;
        justify-content: center;
    }

    .az-support-item {
        flex: 1;
        position: relative;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        background: #fff;
        border-radius: 8px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .az-img-box {
        width: 100%;
        height: 400px;
        overflow: hidden;
        transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .az-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }


    .az-content-overlay {
        padding: 20px;
        background: #fff;
        transition: all 0.4s ease;
    }

    .az-content-overlay h3 {
        font-size: 11px;
font-weight: 500;
      
        letter-spacing: 0.5px;
        color: #cc0000; 
        margin: 0 0 5px 0;
    }

    .az-content-overlay h2 {
        font-size: 22px;
        font-weight: 500;
        color: #111;
        margin: 0 0 15px 0;
    }

  
    .az-drawer-content {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.4s ease;
    }

.az-support-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #555; 
    font-size: 13px;
    font-weight: 600;
    margin-top: 15px;
    padding: 5px 0;
    transition: color 0.3s ease;
    position: relative;
}


.az-support-link:hover {
    color: #cc0000; 
text-decoration: none !important;
}


.az-support-link::after {
    content: '→';
    margin-left: 6px;
    font-size: 16px;
    font-family: serif;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
text-decoration: none !important;
}


.az-support-link:hover::after {
    transform: translateX(8px);
text-decoration: none !important;
}


.az-support-item:hover .az-drawer-content {
    max-height: 120px; 
    opacity: 1;
    padding-top: 5px;
}

   
    .az-support-link::after {
        content: '→';
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

   
    .az-support-item:hover {
text-decoration: none !important;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

    .az-support-item:hover .az-img-box {
        height: 320px; 
    }

    .az-support-item:hover .az-img-box img {
        transform: scale(1.1);
    }

    .az-support-item:hover .az-drawer-content {
        max-height: 100px; 
        opacity: 1;
        padding-top: 5px;
    }

    .az-support-item:hover .az-support-link::after {
        transform: translateX(5px);
text-decoration: none !important;
    }

    @media (max-width: 768px) {
        .az-support-wrapper { flex-direction: column; gap: 40px; }
        .az-img-box { height: 300px; }
      
        .az-drawer-content { max-height: 100px; opacity: 1; }
    }
