body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #222;
}

.header {
    background: #0b1c2d;
    color: #fff;
    padding: 30px;
    text-align: center;
}
.slider-container {
    /* place-items: center; */
     margin-left: 200px;
    /* justify-content: center;  */
    width: 50%;
    overflow: hidden;          /* مهم */
    border-radius: 6px;
    border: 1px solid #ccc;
}

.slider {
    
    display: flex;
    transition: transform 1s ease-in-out; /* الحركة هنا */
}

.slider img {
    width: 100%;
    flex-shrink: 0;
    object-fit: cover;
}

.section {
    padding: 40px 10%;
    background: #fff;
    margin-bottom: 20px;
}

.section h2 {
    border-bottom: 3px solid #0b1c2d;
    padding-bottom: 5px;
}

.two-column {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.text {
    flex: 1;
}

.image-box {
    flex: 1;
    text-align: center;
}
.gallery .rr{
    border:1px solid #ccc;
    border-radius:10px ;
    height: 280px;
    width: auto;
}
.gallery .rr img{
height: 100%;

}
.image-box img,
.full-image img {
    max-width: 100%;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.caption {
    display: block;
    font-size: 0.85rem;
    margin-top: 5px;
    color: #555;
}

.full-image {

    text-align: center;
    margin: 20px 0;
}

.full-image img{
    width: 70%;
}
.gallery {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    border-radius: 6px;
}



@media (max-width: 768px) {
    .two-column {
        flex-direction: column;
    }
}
