.custom-navbar {
    transition: background-color 0.3s ease;
    background-color: transparent;
    padding: 10px 0;
}

.custom-navbar.scrolled {
    background-color: black !important;
}

.custom-nav-link {
    color: white !important;
    margin: 0 10px;
    transition: all 0.3s;
}

.custom-nav-link:hover {
    text-decoration: underline;
}

.custom-social-icons a {
    color: white;
    margin-left: 15px;
    font-size: 18px;
}

.custom-hero-section {
    background: url('arkaplan.svg') top center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
}

/* Vizyon misyon */

.custom-vizyonmisyon-section {
    background-color: #f7f9fc;
}

.custom-vizyonmisyon-box {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.custom-vizyonmisyon-box:hover {
    transform: translateY(-5px);
}

.custom-icon i {
    background-color: #eaf0f8;
    border-radius: 50%;
    padding: 20px;
}

/* Nasıl çalışır */

.custom-nasil-calisir {
    background-color: #f9fafc;
}

.custom-nc-box {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.custom-nc-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.custom-nc-icon i {
    background-color: #eef3f8;
    padding: 18px;
    border-radius: 50%;
}




/* Başlangıç hali (gizli) */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
}

/* Scroll ile tetiklenince animasyonu uygula */
.animate-on-scroll.animate {
    animation: fadeUp 0.6s ease forwards;
    animation-delay: var(--delay);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*Yorumlar  */


.yorumlar-section {
    padding: 60px 0;
}

.yorum-box {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
}

.yorum-avatar {
    background-color: #007bff;
    color: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    font-size: 22px;
    margin: 0 auto 15px;
    font-weight: bold;
}

.yorum-stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 10px;
}

.yorum-text {
    font-size: 15px;
    color: #444;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}


/* SSS */

.sss-section {
    background-color: #f8f9fa;
}

.accordion-button {
    font-weight: 600;
}

.accordion-body {
    font-size: 15px;
    color: #444;
}

.cta-box {
    background: linear-gradient(135deg, #007bff, #0056b3);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.cta-box h3,
.cta-box p {
    color: #fff;
}

/* footer */

.footer a:hover {
    text-decoration: underline;
}

.footer i {
    font-size: 18px;
}

.footer img {
    transition: transform 0.3s ease;
}

.footer img:hover {
    transform: scale(1.05);
}