#intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 0px 30px;
    font-family: 'Heebo', sans-serif;
    background-image: linear-gradient(to top, rgb(238, 252, 255), rgb(255, 255, 255));
}

.intro-content {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    padding: 30px 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);

    /* מצב התחלתי לאנימציה */
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

 .show {
    transform: scale(1);
    opacity: 1;
}

@media (max-width: 1300px) {
    .intro-content {
        width: 100%;
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 1300px) {
    #introB {
        flex-direction: column-reverse;
    }
}

.intro-text {
    max-width: 50%;
}

@media (max-width: 1300px) {
    .intro-text {
        max-width: 100%;
    }
}

#intro h3 {
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 700;
    color: rgb(0, 160, 184);
}

#intro p {
    font-size: clamp(18px, 3vw, 20px);
    font-weight: 300;
    color: rgb(62, 62, 62);
}

#intro span {
    font-weight: 700;
    color: rgb(62, 62, 62);
}

.intro-img {
    width: 400px;
    height: 300px;
}

@media (max-width: 1300px) {
    .intro-img {
        width: 300px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .intro-img {
        width: 250px;
        height: 160px;
    }
}

#introImgC {
    width: 300px;
    height: 300px;
}

@media (max-width: 768px) {
    #introImgC {
        width: 230px;
        height: 230px;
    }
}
