.fullscreen-slider {
    width: 100%;
    height: 600px; /* ekran yüksekliği */
}

.fullscreen-slider img {
    width: 100%;
    height: 600px;
    object-fit: cover; /* resmi ekrana orantılı kırp */

}
.slide-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);

    z-index: 1;
}
.slide-content {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
}

.slide-content .hero-box {
    max-width: 650px;
    margin: auto;
    text-align: center;
    color: #fff;
}

.slide-content h5 {
    margin-bottom: 10px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: .9;
}

.slide-content h1 {
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.slide-content p {
    font-size: 1.8rem;
    margin-bottom: 25px;
    opacity: .95;
}

.slide-content .btn {
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 4px;
}

/* Responsive */
@media(max-width: 768px) {
    .slide-content h1 {
        font-size: 1.8rem;
    }
    .slide-content p {
        font-size: .9rem;
    }
}

.services-grid {
    background: #f7f9fc;
    padding-top: 50px;
    padding-bottom: 50px;
}

.service-box {
    display: block;
    background: #fff;
    padding: 28px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: .3s;
    box-shadow: 0 3px 10px rgba(0,0,0,.08);

}

.service-box i {
    font-size: 34px;
    margin-bottom: 10px;
    display: block;
}

/* ================== COLORS =================== */

.service-box.academy {
    background: #4B77BE;
    color: #fff !important;
}

.service-box.organize {
    background: #16A085;
    color: #fff !important;
}

.service-box.membership {
    background: #27AE60;
    color: #fff !important;
}

.service-box.law {
    background: #1A2B4C;
    color: #fff !important;
}
.service-box.academy:hover {
    background: #3a5f96;
}

.service-box.organize:hover {
    background: #138a72;
}

.service-box.membership:hover {
    background: #1f8c4e;
}

.service-box.law:hover {
    background: #122033;
}
/* ================== HOVER =================== */

.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 16px rgba(0,0,0,.15);
    opacity: .95;
    color: #fff !important;
}

/* Responsive yazılar */
.service-box h5 {
    font-size: 1.8rem;
    margin-top: 8px;
}

@media(max-width: 768px) {
    .service-box {
        padding: 20px 5px;
        margin-top: 10px;
    }
    .service-box i {
        font-size: 26px;
    }
    .service-box h5 {
        font-size: 1.3rem;
    }
}
