﻿
@font-face {
    font-family: 'matnha';
    src: url(../font/Kalameh-SemiBold[@mimvid].ttf);
}

@font-face {
    font-family: 'sartitr';
    src: url(../font/Anjoman-UltraBold[@mimvid].ttf);
}
body {
    background-color: #ffff;
    color: #333;
}

.container {
    width: 100%;

}

.header {
    width: 100%;
    padding: 65px 0px 0px 0px;
}

.header-content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}


.text-section {
    flex: 1;
    padding: 10px; 
    box-sizing: border-box;
}


    .text-section h1 {
        font-size: 28px;
        margin-bottom: 15px;
        text-align: end;
        font-family: 'sartitr';
    }

    .text-section .subtext {
        font-size: 16px;
        margin-bottom: 25px;
        color: #777;
        text-align: justify;
        font-family: 'matnha';
        direction:rtl;
    }

.small-boxes {
    display: flex;
    flex-direction: row-reverse;
    gap: 31px;
    padding: 0px 0px;
}

    .small-boxes .box {
        background-color: #ff9b00;
        padding: 10px;
        width: 190px;
        text-align: center;
        border-radius: 6px;
        font-family: 'matnha';
        color: white;
    }
    .image-section {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.video-placeholder {
    max-width: 100%;
    width: 425px;
    height: auto;
    border-radius: 12px;
}

.features {
    background-color: #0d436c;
    padding: 30px 18px;
    text-align: center;
    color: #fff;
    border-radius: 15px;
    margin: 0px 70px 10px 70px;
}

    .features h2 {
        font-size: 30px;
        margin-bottom: 10px;
        color: white;
        font-family: 'sartitr';
    }
    .features h3 {
        font-size: 13px;
        margin-bottom: 24px;
        color: white;
        font-family: 'matnha';
        margin-top: 21px;
    }
.features-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature-box {
    background-color: #ff7f00!important;
    padding: 15px!important;
    border-radius: 8px!important;
    width: 300px!important;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .feature-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    }

    .feature-box .icon {
        font-size: 40px;
        margin-bottom: 15px;
        color: #0d436c;
    }

    .feature-box h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .feature-box p {
        font-size: 14px;
        color: black;
        font-family: 'matnha';
    }


.special-proposition {
    background: #fff;
    padding: 25px;
    text-align: center;
}

    .special-proposition h3 {
        font-size: 26px;
        margin-bottom: 10px;
        font-family:'sartitr';
    }

    .special-proposition .subtext {
        color: #999;
        margin-bottom: 20px;
        font-family:'matnha';
    }

    .special-proposition .description {
        max-width: 100%;
        margin: -6px 0px;
        font-family: matnha;
    }
/* 🌐 Responsive Design */
@media (max-width: 992px) {
    .header-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }

    .text-section h1 {
        text-align: center;
        font-size: 24px;
    }

    .text-section .subtext {
        font-size: 15px;
    }

    .small-boxes {
        justify-content: center;
        gap: 15px;
    }

    .video-placeholder {
        display:none;
    }

    .features h2 {
        font-size: 26px;
    }

    .features h3 {
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .video-placeholder {
      display:none;
    }
    .text-section h1 {
        font-size: 20px;
    }

    .text-section .subtext {
        font-size: 14px;
        line-height: 1.7;
    }

    .small-boxes .box {
        width: 100%;
    }

    .feature-box {
        width: 100%;
        padding: 20px;
    }

        .feature-box .icon {
            font-size: 32px;
        }

        .feature-box h3 {
            font-size: 16px;
        }

        .feature-box p {
            font-size: 13px;
        }

    .special-proposition h3 {
        font-size: 22px;
    }

    .special-proposition .subtext {
        font-size: 14px;
    }

}
