/* 
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}
 */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
    margin: 0;
    padding: 0;
}

.slider-dot {
    transition: all 0.3s ease;
}

.slider-dot.active {
    width: 2rem;
    background-color: #0ea5e9;
}

/* Info Box'lar için geçiş animasyonları */
.info-box {
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

/* Aktif Info Box için ek stiller */
.info-box.active {
    transform: scale(1.05);
    box-shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.4);
    background-color: #f0f9ff;
    /* sky-50 */
    border-color: #0ea5e9;
}

/* Aktif Info Box ikonları için stil */
.info-box.active .w-12 {
    background-color: rgba(14, 165, 233, 0.2);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Responsiveness için düzeltmeler */
@media (max-width: 768px) {
    .info-box.active {
        transform: scale(1.03);
        /* Mobilde daha az ölçeklendirme */
    }
}

/* İkon arka planları için temalar */
.info-box:nth-child(1) .w-12 {
    background-color: rgba(14, 165, 233, 0.1);
}

.info-box:nth-child(2) .w-12 {
    background-color: rgba(34, 197, 94, 0.1);
}

.info-box:nth-child(3) .w-12 {
    background-color: rgba(168, 85, 247, 0.1);
}

.info-box:nth-child(4) .w-12 {
    background-color: rgba(245, 158, 11, 0.1);
}

/* Aktif Info Box'ta vurgulu metin */
.info-box.active h3 {
    color: #0369a1;
    /* sky-700 */
}


.counter-value {
    display: inline-block;
}

.service-icon {
    transition: all 0.3s ease;
}

.service-icon.active {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.6);
    border: 2px solid #0ea5e9;
}

.service-icon-container p {
    transition: all 0.3s ease;
}

/* Accordion Stilleri */
.service-tab.active button {
    font-weight: 700;
    color: #0ea5e9;
}

/* Service Icon Container için ek stiller */
.service-icon-container {
    position: relative;
    margin-bottom: 1rem;
    cursor: pointer;
}

/* Slider Dot Stilleri */
.slider-dot {
    transition: all 0.3s ease;
}

.slider-dot.active {
    width: 2rem;
    background-color: #0ea5e9;
}

/* Animasyon için genel sınıflar */
.transition-all {
    transition: all 0.3s ease;
}

/* Mobil menü düzeltmeleri */
#mobile-menu {
    width: 100%;
    background-color: white;
    left: 0;
    right: 0;
    z-index: 30;
}

#mobile-menu a {
    padding: 12px 16px;
    display: block;
    border-bottom: 1px solid #f3f4f6;
}

#mobile-menu a:last-child {
    border-bottom: none;
}

/* Mobil boşluk düzeltmeleri */
.container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}


/* Mobil görünüm için düzeltmeler */
@media (max-width: 768px) {
    .service-icon-container {
        margin-bottom: 0.5rem;
    }

    #solution-description {
        margin-top: 1rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .owl-carousel {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}
