body {
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url('../img/bg_sekolah.jpg') no-repeat center center fixed;
    background-size: cover;
}

.colr{
	color: #1D809F;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(255,255,255,0.8);
}

.content-section h2 {
    text-shadow: 0 1px 3px rgba(255,255,255,0.8);
    color: #333;
}

.box{
    padding: 40px 20px;
    color: #1D809F;
    text-align: center;
    cursor: pointer;
    font-size: 22px;
    font-weight: 500;
    border-radius: 16px;
    background: #ffffff;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-top: 20px;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2ABB9B 0%, #1D809F 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.box:hover{
    color: #ffffff;
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(29, 128, 159, 0.2);
}

.box:hover::before {
    opacity: 1;
}

.box:hover .icon-menu {
    transform: scale(1.1);
    color: #ffffff;
}

.icon-menu{
	font-size: 80px;
    margin-bottom: 20px;
    color: #2ABB9B;
    transition: all 0.4s ease;
}

a{
	text-decoration: none !important;
}