
/* სარეკლამო ბანერის სტილები */
.banner-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    margin-bottom: 50px;
    margin-top: 140px;
}

.banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 300px;
}

.banner-item {
    display: none;
    width: 100%;
    height: 100%;
}

.banner-item .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.banner-controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.banner-control {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}
/*პარტნიორების კარუსელი*/
.carousel{
    margin-bottom: 30px;
    padding: 0px 10px;
}

.carusel_image_frame {
    text-align: center;
    position: relative;
    height: 140px;
    border-radius: 5px;
    opacity: 0.9;
}

.carusel_image_frame > img{
    max-width: 170px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}


/* სტატისტიკური ინფორმაციის სტილები */
.stats-section {
    margin: 50px 0;
    display: flex;
    justify-content: space-around;
}

.stat {
    opacity: 0.9;
    cursor: pointer;
    padding: 20px;
    border-radius: 10px;
    width: 20%;
}

.stat h2 {
    font-size: 48px;
    margin: 10px 0 0;
    font-weight: bold;
}

.stat p {
    margin: 10px 0 0;
    font-size: 18px;
}

.stat i {
    font-size: 50px;
    margin-bottom: 10px;
    /*animation: shake 1s infinite ease-in-out;*/
}

@keyframes shake {
    0% {
        transform: rotateZ(0rad) translateX(0) scale(1);
    }
    10% {
        transform: rotateZ(-0.1rad) translateX(-2px) scale(1.05);
    }
    20% {
        transform: rotateZ(0.1rad) translateX(2px) scale(1.05);
    }
    30% {
        transform: rotateZ(-0.2rad) translateX(-4px) scale(1.1);
    }
    40% {
        transform: rotateZ(0.2rad) translateX(4px) scale(1.1);
    }
    50% {
        transform: rotateZ(0rad) translateX(0) scale(1);
    }
    60% {
        transform: rotateZ(0.2rad) translateX(4px) scale(1.1);
    }
    70% {
        transform: rotateZ(-0.2rad) translateX(-4px) scale(1.1);
    }
    80% {
        transform: rotateZ(0.1rad) translateX(2px) scale(1.05);
    }
    90% {
        transform: rotateZ(-0.1rad) translateX(-2px) scale(1.05);
    }
    100% {
        transform: rotateZ(0rad) translateX(0) scale(1);
    }
}


/* სერვისების სექციის სტილები */
.services-section {
    margin: 20px 0 0 0;
    display: flex;
    justify-content: space-around;
}

.service {
    opacity: 0.9;
    cursor: pointer;
    padding: 20px;
    border-radius: 10px;
    width: 20%;
}

.service h2 {
    font-size: medium;
    margin: 0 0 15px;
}

.service p {
    margin: 10px 0 0;
    font-size: 16px;
}

.service i {
    margin-bottom: 10px;
}

h1{
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    margin-left: 12px;
}


@media (max-width: 768px){
    
    h1{
        font-size: medium;
    }
    .service p,
    .stat p{
        font-size: 10px;
    }
    .stat h2{
        font-size: x-large;
    }
    .service h2{
        margin-top: 7px;
        font-size: 8px;
    }
    .service,
    .stat{
        padding: 7px;
    }
    .service i{
        font-size: 30px;
    }
    .stat i{
        font-size: 40px;
    }
    .banner{
        height: 180px;
    }

}