
@font-face{
    font-family: shabnam;
    src: url(Fonts/Shabnam.ttf);
}
body {
    font-family: shabnam;
    margin: 0;
    padding: 0;
    text-decoration: none;
    background: linear-gradient(0deg, #dfe9f3 0%,white 100%);
}
.gallery {
    width: 1280px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 24px;
}

.gallery-child img {
    width: 240px;
}

@media (max-width: 1024px) {
    .gallery {
        width: 100%;
        gap: 16px;
    }

    .gallery-child img {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .gallery {
        width: 100%;
        gap: 12px;
    }

    .gallery-child img {
        width: 160px;
    }
}

@media (max-width: 480px) {
    .gallery {
        width: 100%;
        gap: 8px;
    }

    .gallery-child img {
        width: 100%;
    }
}
.text {
    max-width: 1030px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h3 {
    color: #333333;
}

p, ul, ol {
    margin-bottom: 15px;
}

ul {
    list-style-type: none;
    margin-left: 20px;
}

ol {
    list-style-type: none;
    margin-left: 20px;
}

@media (max-width: 768px) {
    .text {
        padding: 15px;
    }

    h3 {
        font-size: 1.2rem;
    }

    p, ul, ol {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .text {
        padding: 10px;
    }

    h3 {
        font-size: 1rem;
    }

    p, ul, ol {
        font-size: 0.9rem;
    }
}
.slideshow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}
.card {
    width: 100%;
    max-width: 600px;
    margin-bottom: 20px;
}
.card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}
.mySlides {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 74px;
}
.mySlides .box, .mySlides .box2, .mySlides .box3 {
    background-color: #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(29, 28, 27, 0.46);
    width: 100%;
    max-width: 600px;
    text-align: center;
}
@media (min-width: 768px) {
    .mySlides {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .mySlides .box, .mySlides .box2, .mySlides .box3 {
        flex: 1 1 30%;
        max-width: 40%;
        margin-bottom: 20px;
    }
}
.web-title {
    margin-top: 80px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh;
    padding: 0 15px; 
    text-align: center;
}
.web-title h1 {
    font-size: 3vw;
    font-weight: bold;
    color: #1a237e;
    background: linear-gradient(to right, #2196f3, #e91e63);
    background: linear-gradient(180deg, #fe8c00 0%,#f83600 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    animation: fadeIn 2s ease-in-out;
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease;
    white-space: nowrap; 
}

.web-title h1:hover {
    transform: scale(1.1);
}


@media (max-width: 768px) {
    .web-title {
        height: auto;
        margin-top: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-right: 0px;
    }

    .web-title h1 {
        font-size: 5vw;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


.container-picture {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 54%;
    margin: 20px auto;
    transition: all 0.3s ease;
}

.picture-about {
    text-align: center;
}

.picture-about img {
    width: 80%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.picture-about img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.picture-about ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.picture-about ul li {
    margin: 10px 0;
    font-size: 1.1rem;
    color: #333;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .container-picture {
        flex-direction: column;
        padding: 10px;
    }

    .picture-about ul {
        margin-top: 15px;
    }

    .picture-about ul li {
        font-size: 1rem;
    }
}
