#about-us-container {
    margin: 50px auto;
    max-width: 1600px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

body {
    background: linear-gradient(25deg, #00a4ff, #003e9d, #001c2d);
}


#about-title {
    margin: 15px auto 0;
    display: block;
    width: 100%;
    aspect-ratio: 1920 / 700;
    object-fit: cover;
    max-width: 1920px;
}

#about-us-descriptions {
    max-width: 1400px;
}

#about-us-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#about-us-container p {
    font-size: 1.7rem;
}

#backup {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

#backup a {
    color: black;
    align-items: center;
    display: flex;
    gap: 20px;
}

#tel-wh {
    display: flex;
    gap: 40px;
}

.feature-item {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.feature-item img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.feature-item:hover img {
    transform: scale(1.2);
}
.header-g-img{
    background: none;
}
.about-section {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, rgb(255, 255, 255), rgba(255, 255, 255, 0.62));
    border-radius: 20px;
}

.about-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 400px;
    height: 400px;
    border-radius: 1rem;
    box-shadow: 0 0 25px rgba(0, 56, 105, 0.72);
}

.about-text li {
    margin: 10px 0;
    font-size: 1.4rem;
}

.about-text ul {
    padding: 0 40px;
}

.about-text {
    flex: 1 1 300px;
    max-width: 900px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.about-btn {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: goldenrod;
    color: white;
    text-decoration: none;
    border-radius: 999px;
    transition: background 0.3s ease;
}

.about-btn:hover {
    background: #c79100;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    direction: rtl;
}

.contact-image-side {
    flex: 1 1 40%;
    text-align: center;
}

.contact-image-side img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.contact-text {
    flex: 1 1 55%;
}

.contact-text h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.contact-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.feature-item img {
    width: 32px;
    height: 32px;
}

#tel-wh a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f0f0;
    padding: 10px 14px;
    margin: 5px 10px 5px 0;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: all 0.3s ease;
}

#tel-wh a:hover {
    background: #ddd;
}

.support-note {
    margin-top: 20px;
    font-style: italic;
    color: #888;
}

#title {
    text-align: center;
    color: white;
}

/*==========================================================*/
@media (max-width: 1020px) {
    #about-us-container {
        margin-top: 0;
    }
    #title{
        margin-top: 20px;
        font-size: 1.8rem;
    }
    #about-title {
        margin-top: 40px;
        aspect-ratio: 1000 / 500;
    }

    section {
        padding: 10px!important;
    }

    .contact-text {
        width: 97%;
    }
    .about-image img{
        width: 80vw;
        height: 80vw;
        max-width: 400px;
        max-height: 400px;
    }
    #tel-wh {
        display: block;
    }

    #tel-wh a {
        width: 80%;
        justify-content: space-between;
    }
    .about-block.reverse{
        flex-direction: column-reverse;

    }
}