/* info                     */
/* info                     */


.cards-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.card-25 {
    background: var(--gradient);
    border: 1px solid var(--border-color);
    border-bottom: 5px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    margin: 20px auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 80%;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.alteco-intro h2 {
    color: var(--text-color-h2);
    text-shadow: 0 0 7px var(--text-shadow-color-h2);
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Droid Arabic Kufi', sans-serif;
}


.alteco-intro p {
    color: var(--text-color);   
    text-align: center; 
    padding: 0 15%;
    font-size: 23px;
    font-weight: bolder;
    font-family: 'Amiri', serif;
    line-height: 1.3;
}


.card-25 p {
    text-align: right;
    padding: 0 15px;
    margin: 10px 0px 0px 0px;
    font-family: 'Cairo', sans-serif;
    font-size: 20px;
    /* line-height: 1.9; */
}




html[lang="en"] .card-25 p {
    text-align: left;
}


.card-25:hover {
    transform: translatex(-5px); 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); 
}


.card-25 h2 {
    font-family: 'Cairo', sans-serif;
    font-size: 40px;
    margin: 15px 0;
    text-align: center;
    color: rgba(255, 153, 0, 0.616);
    /* text-shadow: 0 0 3px var(--text-shadow-color-h2); */
    text-shadow: 0 0 2px rgba(252, 208, 11, 0.7), 0 0 10px rgba(252, 208, 11, 0.5);

}


.card-25 ul, blockquote {
    margin-left: 20px;
    font-size: 18px;
}


.card-25 img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}









.product-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.product-description {
    flex: 0 1 50%;
}

.zoom-container {
    flex: 0 1 50%;
    width: 350px;
    height: 350px;
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    background-color: var(--BGaboutUScard);
    border-radius: 8px;
    touch-action: none;
}

.zoom-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-out;
}

.zoomed {
    transform: scale(2);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.rtl {
    direction: rtl;
    text-align: right;
}





@media (max-width: 768px) {
    .card-25 {
        padding: 15px;

    }
    .card-25 h2 {
        font-size: 20px;
    }
    .product-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center !important;
        gap: 20px;
    }

    .product-description, .zoom-container {
        flex: 1 1 100%;
    }

    .zoom-container {
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .alteco-intro h2 {
        font-size: 30px;
        margin-bottom: 20px;
        text-align: center;
        font-family: 'Droid Arabic Kufi', sans-serif;
    }
    
    
    .alteco-intro p {
        padding: 0 5%;
        font-size: 20px;
        font-weight: bold;
        font-family: 'Amiri', serif;
        line-height: 1.3;
    }
    
}










.centered-logo-container {
    display: flex;                /* Use Flexbox */
    justify-content: center;      /* Center horizontally */
    align-items: center;          /* Center vertically if needed */
    height: 100%;                 /* Set a height if necessary */
    padding: 20px;               /* Optional padding */
}

.centered-logo {
    max-width: 350px;              /* Ensure responsiveness */
    height: auto;                 /* Maintain aspect ratio */
}

