

/* //////////////////////// */
.product-container {
    display: flex;
    flex-direction: row-reverse;
    max-width: 1200px;
    margin: 2rem auto;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));

    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    position: relative;
    color: #ededed;
}

.product-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 10%, transparent 10%);
    background-size: 25px 25px;
    transform: rotate(30deg);
    animation: backgroundMove 60s linear infinite;
    
}


@keyframes backgroundMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 500px 500px;
    }
}

.product-container:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product__image-container {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.product__primary-image-wrapper {
    width: 100%;
    padding-bottom: 75%;
    /* 4:3 Aspect Ratio */
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.product__primary-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product__primary-image-wrapper img:hover {
    transform: scale(1.05);
}

.product_thumbnail-list {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.product_thumbnail img {
    width: 80px;
    /* height: 60px; */
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product_thumbnail img:hover {
    transform: scale(1.1);
}

.product-details {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-details h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.course-description {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: justify;
}

.features-list {
    list-style-type: none;
    margin-bottom: 1rem;
}

.features-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-right: 1.5rem;
}

.features-list li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    right: 0;
}

.buy-now {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 3;
}

.buy-now:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .product-container {
        margin-top: 70px;
        flex-direction: column;
    }

    .product__image-container,
    .product-details {
        padding: 1rem;
    }

    .product_thumbnail-list {
        flex-wrap: wrap;
    }

    .product_thumbnail img {
        width: 60px;
        height: 45px;
    }
}

/* ///////////// */
/* .my-slider-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.my-slider-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.my-slider-header {
    text-align: center;
    margin-bottom: 40px;
}

.my-slider-header h2 {
    font-size: 32px;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 700;
}

.my-slider-header p {
    font-size: 18px;
    color: #101111;
}

.my-swiper-container {
    width: 100%;
    overflow: hidden;
}

.my-swiper-wrapper {
    display: flex;
}

.my-swiper-slide {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.my-swiper-slide img {
    max-width: 100%;
    height: 30px;
}

.my-swiper-button-prev,
.my-swiper-button-next {
    color: #01579b;
    font-size: 24px;
}

.my-swiper-button-prev:hover,
.my-swiper-button-next:hover {
    color: #0288d1;
}

@media (max-width: 768px) {
    .my-slider-header h2 {
        font-size: 28px;
    }

    .my-slider-header p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .my-slider-header h2 {
        font-size: 24px;
    }

    .my-slider-header p {
        font-size: 14px;
    }
} */

/* ////////////////////// */
.fas1 {
    margin-top: 10px;
    font-size: 35px;
    /* حجم الأيقونات */
    color: #ffffff;
    /* لون الأيقونات */
}

/* /////////////// */
.info1 {
    padding: 60px 0;
    background-color: var(--background-color);
    border-top: 5px solid var(--accent-color);
}

.info1 .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.info1 .content {
    text-align: center;
}

.info-box {
    margin-bottom: 40px;
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-box h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.info-box p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.8;
}

.info1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.info1 li {
    /* display: flex; */
    align-items: center;
    margin: 20px;
    background: var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.info1 li:hover {
    transform: translateY(-5px);
}

.info1 img {
    max-width: 60px;
    margin: 15px;
    filter: drop-shadow(2px 2px 2px rgb(0, 0, 0));
}

.info1 .dis {
    padding: 15px;
}

.info1 .dis h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 0;
    font-weight: 900;
}

.info1 .dis p {
    font-size: 14px;
    color: #ffffff;
}

.text-bottom {
    margin-top: 40px;
    text-align: center;
    background: var(--secondary-color);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    font-size: 14px;
}

.text-bottom img {
    max-width: 30px;
    margin-right: 10px;
}

.text-bottom span {
    line-height: 1.6;
}

@media (max-width: 768px) {
    .info1 ul {
        flex-direction: column;
        align-items: center;
    }

    .info1 li {
        max-width: 100%;
        margin: 10px 0;
    }
}