.carousel-item img {
    transition: transform 0.5s ease;
 }

 .carousel-item:hover img {
    transform: scale(1.05);
 }

 .card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }

 .card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
 }

 .card-title {
    font-weight: bold;
    font-size: 1.1rem;
 }

 .card-text {
    font-size: 0.9rem;
    color: #555;
 }

 .img-thumbnail {
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
 }

 .img-thumbnail:hover {
    transform: rotateY(5deg) scale(1.03);
 }

 .jumbotron.jurusan {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 1rem;
    border-radius: 25px;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
 }

 .jumbotron .col-lg-4 img {
    width: 100px;
    height: auto;
    transition: transform 0.4s ease;
 }

 .jumbotron .col-lg-4:hover img {
    transform: scale(1.1) rotate(3deg);
 }

 .single_event {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .single_event:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
 }

 .event_info h4 {
    font-weight: bold;
 }

 /* Efek teks */
 .hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInDown 1s ease-in-out;
 }

 /* Garis pemisah */
 .hero-divider {
    width: 60px;
    height: 4px;
    margin: 0 auto 20px;
    background-color: #fff;
    border-radius: 2px;
    animation: fadeIn 1.2s ease-in-out;
 }

 /* Animasi */
 @keyframes fadeInDown {
    from {
       opacity: 0;
       transform: translateY(-20px);
    }

    to {
       opacity: 1;
       transform: translateY(0);
    }
 }

 @keyframes fadeIn {
    from {
       opacity: 0;
    }

    to {
       opacity: 1;
    }
 }

 /* jurusan */
 .jurusan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    z-index: 1;
 }

 .jurusan .container {
    position: relative;
    z-index: 2;
 }

 .jurusan img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
 }

 .jurusan img:hover {
    transform: scale(1.05);
 }

 .carousel-item {
    position: relative;
 }

 .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* efek overlay gelap */
    z-index: 1;
 }

 .carousel-caption {
    z-index: 2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: fadeSlideUp 1s ease-in-out;
 }

 @keyframes fadeSlideUp {
    from {
       opacity: 0;
       transform: translateY(40px);
    }

    to {
       opacity: 1;
       transform: translateY(0);
    }
 }

 .carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
 }

 .carousel-caption p {
    font-size: 1.2rem;
 }

 .carousel-item {
    position: relative;
 }

 .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
 }

 .carousel-caption {
    z-index: 2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: fadeInCaption 1.5s ease-in-out;
 }

 @keyframes fadeInCaption {
    from {
       opacity: 0;
    }

    to {
       opacity: 1;
    }
 }


css Berita
 .carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
    animation: fadeInTitle 1.5s ease-in-out;
    animation-delay: 0.5s;
    animation-fill-mode: both;
 }

 .carousel-caption p {
    font-size: 1.2rem;
    animation: fadeInText 1.5s ease-in-out;
    animation-delay: 1s;
    animation-fill-mode: both;
 }

 @keyframes fadeInTitle {
    from {
       opacity: 0;
       transform: translateY(10px);
    }

    to {
       opacity: 1;
       transform: translateY(0);
    }
 }

 @keyframes fadeInText {
    from {
       opacity: 0;
       transform: translateY(10px);
    }

    to {
       opacity: 1;
       transform: translateY(0);
    }
 }
 .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000000; /* hijau terang */
    text-shadow: 2px 2px 8px rgba(0, 242, 61, 0.2);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    animation: fadeInDown 1s ease-in-out;
}

.section-title::after {
    content: '';
    width: 60%;
    height: 4px;
    background: #000000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border-radius: 2px;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.btn-baca {
    background: linear-gradient(45deg, #00c44f, #00a2ff);
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.btn-baca i {
    transition: transform 0.3s ease-in-out;
}

.btn-baca:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.btn-baca:hover i {
    transform: translateX(4px);
}

/* Custom Styles for 3D Cards fiel blog */
	.card-berita {
		transition: transform 0.3s ease, box-shadow 0.3s ease;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
		border-radius: 20px;
		overflow: hidden;
		background: #fff;
	}

	.card-berita:hover {
		transform: scale(1.05) rotateX(5deg);
		box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
	}

	.card-berita img {
		object-fit: cover;
		border-top-left-radius: 20px;
		border-top-right-radius: 20px;
	}

	.card-body h5 {
		font-weight: bold;
		font-size: 1.1rem;
		color: #333;
	}

	.card-body p {
		font-size: 0.9rem;
		color: #555;
	}

baca berta
    .btn-baca {
		background: linear-gradient(45deg, #00c44f, #00a2ff);
		color: #fff;
		font-weight: bold;
		border: none;
		border-radius: 30px;
		padding: 8px 18px;
		font-size: 14px;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
		transition: all 0.3s ease-in-out;
	}

	.btn-baca i {
		transition: transform 0.3s ease-in-out;
	}

	.btn-baca:hover {
		transform: translateY(-2px);
		box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
		color: #fff;
	}

	.btn-baca:hover i {
		transform: translateX(4px);
	}



fasilitas
	.card-fasilitas {
		background: #fff;
		border-radius: 20px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		transition: transform 0.3s ease, box-shadow 0.3s ease;
		transform-style: preserve-3d;
		perspective: 1000px;
	}

	.card-fasilitas:hover {
		transform: translateY(-10px) rotateY(5deg);
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	}

	.card-fasilitas img {
		border-top-left-radius: 20px;
		border-top-right-radius: 20px;
		object-fit: cover;
		width: 100%;
		height: 200px;
	}

	.card-title-fasilitas {
		font-size: 1.2rem;
		font-weight: bold;
		margin-top: 10px;
		color: #333;
	}

   .navbar-custom {
		background-color: #4CAF50;
		min-height: 90px;
		padding-top: 20px;
		padding-bottom: 20px;
		border-bottom: 4px solid white; /* Garis putih bawah */
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Bayangan */
	}

	.navbar-brand {
		font-size: 26px;
		color: #fff !important;
	}

	.navbar-nav .nav-link {
		color: #fff !important;
		font-size: 18px;
		transition: color 0.3s ease;
	}

	.navbar-nav .nav-link:hover {
		color: #ffe600 !important;
	}

   .pagination-container ul {
      display: flex;
      justify-content: center;
  }
  
  .pagination-container .page-item {
      margin: 0 5px;
  }
  
  .pagination-container .page-link {
      text-decoration: none;
      padding: 8px 16px;
      border-radius: 5px;
      background-color: #f1f1f1;
      color: #007bff;
  }
  
  .pagination-container .page-item.active .page-link {
      background-color: #007bff;
      color: white;
  }
  
  