@import url("https://fonts.googleapis.com/css2?family=Bungee&family=Changa+One:ital@0;1&family=Changa:wght@50..800&display=swap");

:root {
    --color: rgb(10, 107, 10);
    --bg: rgba(255, 255, 255, 0.912);
    --bg2: rgba(10, 107, 10, 0.39);
    --oren: rgb(255, 162, 0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Changa One", serif;
    font-weight: 50;
    list-style: none;
}

body {
    background-position: center;
    background-size: cover;
    height: 100vh;
}

.header-image img {
    width: 100%;
    height: auto;
    display: block;
}

header {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 0 10px #000;
    background: var(--bg);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-image {
    width: 40px;
    height: auto;
    margin-left: 20px;
    margin-right: 10px;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 30px;
    font-weight: bold;
    color: var(--color);
    text-transform: uppercase;
}

.logo-text {
    font-size: 18px;
    color: var(--color);
    margin-top: 5px;
}

header ul {
    flex: 2;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

header ul li {
    position: relative;
}

header ul li a {
    text-decoration: none;
    color: var(--color);
    font-weight: 600;
    padding: 10px 5px;
    text-transform: capitalize;
    margin: 0 1px;
    display: inline-block;
    transition: all 0.4s ease;
}

header ul li a:hover {
    border-bottom: 2px solid chartreuse;
}

header .menu {
    font-size: 2.5rem;
    display: none;
    color: white;
    cursor: pointer;
    margin-right: 20px;
    z-index: 100;
}

#chk1:checked ~ ul {
    right: 0;
}
#chk1 {
    display: none;
}
label {
    display: none;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg);
    min-width: 160px;
    z-index: 1001;
    border-radius: 5px;
    padding: 10px 0;
}

.dropdown-menu li {
    padding: 10px 20px;
}

.dropdown-menu li a {
    color: var(--color);
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: var(--bg);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.sosmed {
    display: none;
}

.home {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.text1 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: inline-block;
    background: var(--bg2);
    padding: 1rem;
    border-radius: 1rem;
}

.text2 {
    font-size: 1.5rem;
    background-color: #ffffffac;
    margin-top: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 0.5rem;
    color: var(--oren);
    display: inline-block;
}

.carousel {
    position: relative;
    margin-left: -1rem;
    width: 110%;
    height: 100vh;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -100;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: white;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 2rem;
    z-index: 10;
}

.carousel-control.prev {
    left: -100px;
    background-color: var(--color);
    border-radius: 0.5rem;
}

.carousel-control.next {
    margin-right: 6.8rem;
    right: -100px;
    background-color: var(--color);
    border-radius: 0.5rem;
}

.overlay-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 102%;
    height: 100%;
    background-image: url("/assets/img/bg.png");
    display: inline;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 10;
}

section {
    padding: 0px;
    position: relative;
    z-index: 1;
}

.sambutan {
    background-image: url("/assets/img/atas.png");
    background-size: cover;
    background-color: #f9f9f9;
    padding: 40px 0;
    display: flex;
    align-items: center;
    width: 100vw;
}

.sambutan .box-container {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
}

.sambutan .box-container .title {
    font-size: 3rem;
    color: var(--color);
    margin-left: 5rem;
    text-align: center;
    justify-items: center;
    border-radius: 1rem;
    border: 2px solid var(--oren);
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.8);
}

.sambutan .box-container .box {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.sambutan .box-container .box img {
    width: 40%;
    height: 40%;
    margin-left: 2rem;
    object-fit: cover;
    border-radius: 2rem;
    border: 3px solid var(--color);
}

.sambutan .box-container .box .info h3 {
    font-size: 2rem;
    color: var(--color);
    margin-bottom: 1rem;
}

.sambutan .box-container .box .info p {
    font-size: 1rem;
    color: var(--oren);
    line-height: 1.6;
    text-align: justify;
}

.profil {
    background-color: #f9f9f9;
    border-radius: 10px;
}

.profil .box-cont {
    padding: 20px;
    background-color: #fff;
    background: url("/assets/img/bg.webp");
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profil .box-cont .title {
    font-size: 3rem;
    text-align: center;
    border-radius: 1rem;
    justify-items: center;
    border: 2px solid var(--oren);
    display: inline-block;
    color: var(--color);
    margin-bottom: 20px;
    margin-left: 33rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.8);
}

.profil .counting {
    min-height: 40vh;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.profil .counting .box {
    margin: 2rem 4rem;
    text-align: center;
    border: 2px solid var(--color);
    border-radius: 10px;
    padding: 1rem;
    background-color: #f1f1f1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 20rem;
    width: 20rem;
}

.profil .counting .box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--oren);
    margin-bottom: 1rem;
}

.profil .counting .box h1 {
    font-size: 1.5rem;
    color: var(--color);
    margin-bottom: 0.5rem;
}

.profil .counting .box .count {
    font-size: 2.5rem;
    color: var(--oren);
    margin-bottom: 0.5rem;
}

.prestasi {
    padding: 1px 0;
    background-color: #f9f9f9;
}

.prestasi .containerr {
    background-image: url("/assets/img/bg.webp");
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.prestasi .containerr .title {
    font-size: 3rem;
    text-align: center;
    border-radius: 1rem;
    justify-items: center;
    border: 2px solid var(--oren);
    display: inline-block;
    color: var(--color);
    margin-left: 35rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.8);
}

.prestasi-item {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 25px;
    margin-top: -20rem;
}

.prestasi-img {
    width: 200px;
    height: 200px;
    margin-bottom: 10px;
    border-radius: 70%;
    object-fit: cover;
    border: 2px solid var(--color);
}

.prestasi-item h3 {
    font-size: 1.4rem;
    color: var(--color);
    margin-bottom: 0.5rem;
}

.prestasi-item h4 {
    font-size: 1.2rem;
    color: var(--oren);
    margin-bottom: 1rem;
}

.prestasi-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    text-align: justify;
    padding-left: 1.6rem;
}

.swiper {
    width: 100%;
    padding: 10px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-pagination-bullet {
    background-color: #ffa200;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    margin-bottom: 50rem;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}
.prestasi-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.prestasi-link:hover {
    opacity: 0.9;
}

.program {
    padding: 1px 0;
    background-color: #f9f9f9;
}

.program .container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 80px 0px;
    flex-wrap: wrap;
}
.title {
    font-size: 3rem;
    text-align: center;
    border-radius: 1rem;
    border: 2px solid var(--oren);
    display: inline-block;
    color: var(--color);
    margin-top: 20px;
    margin-left: 31rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.8);
}
.program .title {
    font-size: 3rem;
    text-align: center;
    border-radius: 1rem;
    border: 2px solid var(--oren);
    display: inline-block;
    color: var(--color);
    margin-top: 20px;
    margin-left: 31rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.8);
}
.container .card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 350px;
    height: 350px;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    border: 2px solid var(--oren);
    transition: 0.5s;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.15);
    margin-left: 10rem;
}

.container .card .img-box {
    width: 300px;
    height: 260px;
    position: absolute;
    top: 20px;
    border-radius: 12px;
    transition: 0.5s;
}

.container .card:hover {
    height: 350px;
    margin-top: 1rem;
}

.container .card:hover .img-box {
    top: -50px;
    scale: 100%;
    z-index: 100;
}

.container .card .img-box img {
    width: 100%;
    height: 80%;
    padding-top: 1rem;
    padding-left: 3rem;
}

.container .card .info {
    position: absolute;
    top: 260px;
    text-align: center;
    height: 35px;
    overflow: hidden;
}

.container .card:hover .info {
    height: 200px;
    top: 190px;
    padding-left: 3rem;
}

.container .card .info p {
    padding: 15px 0 25px 0;
    color: var(--oren);
}

.container .card .info h2 {
    font-size: 20px;
    color: var(--color);
}

.container .card .info a {
    text-decoration: none;
    margin: auto;
    border: 1px solid var(--color);
    border-radius: 10px;
    padding: 10px 20px;
    color: var(--color);
    background-color: transparent;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.container .card .info a:hover {
    background-color: var(--color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.container .card .info a:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
}

.swiper-slide {
    flex: 0 0 auto;
    width: 500px;
    margin-right: 20px;
}
.swiper-container {
    width: 100%;
    padding: 20px 0;
}

.swiper-slide {
    align-items: center;
    margin-right: 40rem;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.lokasi {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 100px;
    max-width: 1800px;
    margin: 0 auto;
}

.lokasi .boxi {
    flex: 1;
    max-width: 50%;
    text-align: left;
}

.lokasi .boxi h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--color);
}

.lokasi .boxi p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--oren);
}

.lokasi iframe {
    flex: 1;
    max-width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero {
    height: 40vh;
    background-color: #f9f9f9;
}

section .shap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    animation: round 6s linear infinite;
    transform-origin: bottom center;
    margin-bottom: 4rem;
    margin-left: 2rem;
}

@keyframes round {
    0% {
        transform: rotateZ(0deg);
    }
    50% {
        transform: rotateZ(-5deg);
    }
    100% {
        transform: rotateZ(0deg);
    }
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 200px;
    transition: transform 0.3s;
    z-index: 1000;
}

.whatsapp-icon img {
    width: 120%;
    border-radius: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

.contain {
    width: 70%;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
}

.contain .rows {
    padding: 45px 0px 0px 40px;
}

.contain .rows .logo h2 {
    font-size: 24px;
    font-weight: 600;
}

.contain .rows .logo p {
    padding: 15px 10px;
    color: var(--oren);
    font-size: 15px;
}

.contain .rows .support h3 {
    font-size: 20px;
    position: relative;
    color: var(--color);
}

.contain .rows .support h3::after {
    position: absolute;
    content: "";
    width: 70px;
}
.contain .rows .support ul {
    padding: 20px 0 0 0;
}

.contain .rows .support ul li {
    padding-bottom: 7px;
    white-space: nowrap;
}

.contain .rows .support a {
    color: var(--oren);
}

.contain .rows .support span {
    color: var(--color);
}

.contain .rows .contact .social {
    display: flex;
    gap: 10px;
    align-items: center;
}

.contain .rows .contact .social i {
    padding: 10px;
    font-size: 17px;
    color: #333;
    transition: color 0.3s ease;
}

.contain .rows .contact .social i:hover {
    color: var(--color);
}

.hero .footer {
    background: linear-gradient(to bottom, #b2f3de 0%, #ffffff 100%);
    position: relative;
}

.contain .rows .logo p {
    color: var(--oren);
    font-size: 15px;
}

.credit {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 4rem;
}
.credit p {
    font-size: 20px;
    color: var(--oren);
}
.credit span {
    font-size: 24px;
    color: var(--color);
}

.berita {
    background-image: url("/assets/img/bg.webp");
}
.berita .title {
    margin-left: 37rem;
}

.course-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.course-container {
    flex: 1 1 calc(33.333% - 20px);
    max-width: 400px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 2rem;
}
.course-image {
    background: linear-gradient(to right, #202020, #101010);
    height: 200px;
    position: relative;
}
.course-date {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(rgba(255, 0, 0, 0), rgba(0, 0, 0, 0.6));
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
}
.course-date span {
    margin-right: 15px;
}
.course-detail {
    padding: 20px;
}
.course-detail h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: var(--color);
}
.course-detail h2 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: var(--oren);
}
.course-detail p {
    margin: 0;
    font-size: 14px;
    color: var(--oren);
}
.course-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
}
.course-price {
    background: #29ca8e;
    border-radius: 4px;
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
}
.course-image img {
    background-size: cover;
    width: 100%;
}

.ekstra {
    background: linear-gradient(to bottom, #b2f3de 0%, #ffffff 100%);
}
.ekstra .title {
    margin-left: 50rem;
    margin-bottom: 3rem;
}

.event-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.event-container {
    max-width: 400px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex: 1 1 calc(33.333% - 40px);
    margin: 10px;
}

.event-image {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    height: 250px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.event-container:hover .event-image img {
    transform: scale(1.2);
}

.event-date {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}

.event-details {
    padding: 15px;
    background: #f9f9f9;
}

.event-details h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: var(--color);
}

.event-details p {
    margin: 0;
    font-size: 14px;
    color: var(--oren);
}

.event-info {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: var(--color);
    color: #fff;
}

.event-info small {
    display: flex;
    align-items: center;
}

.event-info small i {
    margin-right: 5px;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.about-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.about-us {
    background: linear-gradient(to bottom, #b2f3de 0%, #ffffff 100%);
    padding: 50px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-us .title {
    margin-bottom: 3rem;
    margin-left: 34rem;
}
.about-content {
    max-width: 600px;
}
.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
}
.about-content h1 {
    font-size: 36px;
    color: var(--color);
    margin-bottom: 20px;
    margin-left: 2rem;
}

.about-content p {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 30px;
    margin-left: 2rem;
}

.learning {
    padding: 50px 0;
    background: linear-gradient(to bottom, #b2f3de 0%, #ffffff 100%);
    text-align: center;
}

.learn-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px;
    padding: 20px;
}

.learning .title {
    font-size: 2.5rem;
    color: var(--color);
    margin-bottom: 3rem;
    margin-left: 1rem;
}

.img-learn img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.learn-container {
    width: 100%;
    max-width: 400px;
    margin: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 2px 4px rgb(255, 255, 255);
}

.img-learn {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.img-learn iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.learn-description {
    font-size: 1.2rem;
    color: var(--oren);
    line-height: 1.6;
    margin-top: 20px;
}
.learn-title {
    font-size: 1.5rem;
    color: var(--color);
    line-height: 1.6;
}

.fasilitas-section {
    padding: 50px 20px;
    background: linear-gradient(to bottom, #b2f3de 0%, #ffffff 100%);
    text-align: center;
}

.title {
    font-size: 2.5rem;
    color: var(--color);
    margin-left: 1rem;
    margin-bottom: 3rem;
}

.fasilitas-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fasilitas-item {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.fasilitas-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px 10px 0 0;
}

.fasilitas-item .item-name {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    transition: bottom 0.3s ease;
}

.fasilitas-item:hover .item-name {
    bottom: 0;
}

.fasilitas-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.fasilitas-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.item-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px 10px 0 0;
}

.item-name {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    transition: bottom 0.3s ease;
}

.fasilitas-item:hover .item-name {
    bottom: 0;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

.close {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 0 0;
}
.blog .title {
    font-size: 2.5rem;
    margin-left: 36rem;
}

.blog .blog-item {
    position: relative;
    width: 80%;
    margin: auto;
}

.blog .blog-img {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    z-index: 1;
}

.blog .blog-img img {
    width: 100%;
}

.blog .blog-content {
    position: relative;
    width: calc(100% - 60px);
    top: -60px;
    left: 30px;
    padding: 25px 30px 30px 30px;
    background: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    z-index: 2;
}
.blog-item {
    width: 83%;
}

.blog .blog-content h2.blog-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color);
}

.blog .blog-meta {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.blog .blog-meta p {
    margin: 0 10px 0 0;
    font-size: 14px;
    color: #333;
}

.blog .blog-meta i {
    color: #fbaf32;
    margin-right: 5px;
}

.blog .blog-meta p:last-child {
    margin: 0;
}

.blog .blog-text {
    position: relative;
}

.blog .blog-text p {
    margin-bottom: 10px;
    color: var(--oren);
}

.blog .blog-item a.btn {
    margin-top: 10px;
    padding: 5px 15px;
}

.blog .pagination .page-link {
    color: #fbaf32;
    border-radius: 5px;
    border-color: #fbaf32;
    margin: 0 2px;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #ffffff;
    background: #fbaf32;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}
.container1 {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.btn.custom-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--color);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn.custom-btn:hover {
    background-color: #e99e1f;
    transform: translateY(-2px);
}

.btn.custom-btn:active {
    transform: translateY(0);
}

.book-table-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.book-table-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.book-table-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    flex: 1 1 calc(50% - 20px);
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}

.form-group input {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}

.book-now-btn {
    width: 100%;
    padding: 15px;
    background-color: #fbaf32;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.book-now-btn:hover {
    background-color: #e99e1f;
}

.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-container.hidden {
    display: none;
}

.pencil {
    display: block;
    width: 10em;
    height: 10em;
}

.pencil__body1,
.pencil__body2,
.pencil__body3,
.pencil__eraser,
.pencil__eraser-skew,
.pencil__point,
.pencil__rotate,
.pencil__stroke {
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.pencil__body1,
.pencil__body2,
.pencil__body3 {
    transform: rotate(-90deg);
}

.pencil__body1 {
    animation-name: pencilBody1;
}

.pencil__body2 {
    animation-name: pencilBody2;
}

.pencil__body3 {
    animation-name: pencilBody3;
}

.pencil__eraser {
    animation-name: pencilEraser;
    transform: rotate(-90deg) translate(49px, 0);
}

.pencil__eraser-skew {
    animation-name: pencilEraserSkew;
    animation-timing-function: ease-in-out;
}

.pencil__point {
    animation-name: pencilPoint;
    transform: rotate(-90deg) translate(49px, -30px);
}

.pencil__rotate {
    animation-name: pencilRotate;
}

.pencil__stroke {
    animation-name: pencilStroke;
    transform: translate(100px, 100px) rotate(-113deg);
}

@keyframes pencilBody1 {
    from,
    to {
        stroke-dashoffset: 351.86;
        transform: rotate(-90deg);
    }
    50% {
        stroke-dashoffset: 150.8;
        transform: rotate(-225deg);
    }
}

@keyframes pencilBody2 {
    from,
    to {
        stroke-dashoffset: 406.84;
        transform: rotate(-90deg);
    }
    50% {
        stroke-dashoffset: 174.36;
        transform: rotate(-225deg);
    }
}

@keyframes pencilBody3 {
    from,
    to {
        stroke-dashoffset: 296.88;
        transform: rotate(-90deg);
    }
    50% {
        stroke-dashoffset: 127.23;
        transform: rotate(-225deg);
    }
}

@keyframes pencilEraser {
    from,
    to {
        transform: rotate(-45deg) translate(49px, 0);
    }
    50% {
        transform: rotate(0deg) translate(49px, 0);
    }
}

@keyframes pencilEraserSkew {
    from,
    32.5%,
    67.5%,
    to {
        transform: skewX(0);
    }
    35%,
    65% {
        transform: skewX(-4deg);
    }
    37.5%,
    62.5% {
        transform: skewX(8deg);
    }
    40%,
    45%,
    50%,
    55%,
    60% {
        transform: skewX(-15deg);
    }
    42.5%,
    47.5%,
    52.5%,
    57.5% {
        transform: skewX(15deg);
    }
}

@keyframes pencilPoint {
    from,
    to {
        transform: rotate(-90deg) translate(49px, -30px);
    }
    50% {
        transform: rotate(-225deg) translate(49px, -30px);
    }
}

@keyframes pencilRotate {
    from {
        transform: translate(100px, 100px) rotate(0);
    }
    to {
        transform: translate(100px, 100px) rotate(720deg);
    }
}

@keyframes pencilStroke {
    from {
        stroke-dashoffset: 439.82;
        transform: translate(100px, 100px) rotate(-113deg);
    }
    50% {
        stroke-dashoffset: 164.93;
        transform: translate(100px, 100px) rotate(-113deg);
    }
    75%,
    to {
        stroke-dashoffset: 439.82;
        transform: translate(100px, 100px) rotate(112deg);
    }
}

.chart-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.chart {
    flex: 0 0 auto;
    width: 455px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.guru .title {
    font-size: 3rem;
    color: var(--color);
    margin-left: 38rem;
    text-align: center;
    justify-items: center;
    border-radius: 1rem;
    border: 2px solid var(--oren);
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.container-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.container1 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

.container1 .card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(33.33% - 20px);
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    border: 2px solid orange;
    transition: 0.5s;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 2rem;
}

.container1 .card:hover {
    transform: translateY(-10px);
}

.container1 .card:active {
    transform: translateY(-5px);
}

.container1 .card img {
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.container1 .card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color);
    margin-bottom: 10px;
}

.container1 .card p {
    font-size: 1rem;
    color: #555;
    margin: 5px 0;
}

.container1 .card p.role {
    font-weight: 500;
    color: var(--oren);
}

.container1 .card p.education {
    font-style: italic;
    color: var(--color);
}

.pagination {
    margin-top: 2rem;
    justify-content: center;
}
.pagination .page-item .page-link {
    color: white;
    background-color: green;
    border-color: green;
}
.pagination .page-item.active .page-link {
    background-color: darkgreen;
    border-color: darkgreen;
}
.pagination .page-item .page-link:hover {
    background-color: lightgreen;
    border-color: lightgreen;
}

.pres .title {
    font-size: 3rem;
    color: var(--color);
    margin-left: 35rem;
    text-align: center;
    justify-items: center;
    border-radius: 1rem;
    border: 2px solid var(--oren);
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}
.title-tpq {
    font-size: 3rem;
    color: var(--color);
    margin-left: 33rem;
    text-align: center;
    justify-items: center;
    border-radius: 1rem;
    border: 2px solid var(--oren);
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}
.title-th {
    font-size: 3rem;
    color: var(--color);
    margin-left: 27rem;
    text-align: center;
    justify-items: center;
    border-radius: 1rem;
    border: 2px solid var(--oren);
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}
.title-icp {
    font-size: 3rem;
    color: var(--color);
    margin-left: 27rem;
    text-align: center;
    justify-items: center;
    border-radius: 1rem;
    border: 2px solid var(--oren);
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}
.title-hae {
    font-size: 3rem;
    color: var(--color);
    margin-left: 27rem;
    text-align: center;
    justify-items: center;
    border-radius: 1rem;
    border: 2px solid var(--oren);
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}
.title-lal {
    font-size: 3rem;
    color: var(--color);
    margin-left: 35rem;
    text-align: center;
    justify-items: center;
    border-radius: 1rem;
    border: 2px solid var(--oren);
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}
.card-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: calc(33.333% - 15px);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color);
    margin-bottom: 10px;
    text-align: justify;
}

.card p {
    font-size: 1rem;
    color: var(--oren);
    margin: 5px 0;
    text-align: justify;
}

.card p.role {
    font-weight: 500;
    color: var(--oren);
    text-align: justify;
}

.card p.education {
    font-style: italic;
    color: var(--color);
    text-align: justify;
}

.card img {
    max-width: 50%;
    border-radius: 10px;
    margin-bottom: 20px;
    margin-left: -10rem;
    margin: 0 auto 20px auto;
}

.card .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.card .btn:hover {
    background-color: var(--oren);
}

.vismis {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}
.vismis .title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--color);
}

.vismis .visi-card,
.misi-card {
    background-color: #ffffff6c;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.visi-card h4,
.misi-card h4 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: var(--color);
}

.visi-card p {
    font-size: 1.1em;
    text-align: center;
    color: var(--oren);
}

.misi-card ul {
    list-style-type: disc;
    padding-left: 20px;
}

.misi-card ul li {
    font-size: 1.1em;
    color: var(--oren);
    margin-bottom: 10px;
}

@media (min-width: 1366px) {
    .overlay-image {
        background-size: cover;
        background-position: top center;
    }
    .hero {
        height: 26vh;
        background-color: #f9f9f9;
    }
    .home {
        height: 100vh;
    }

    .text1 {
        font-size: 4rem;
    }

    .text2 {
        font-size: 1.8rem;
    }

    .container .card {
        margin-left: 2rem;
    }

    .program .card {
        margin-left: 2rem;
    }

    .berita .title {
        margin-left: 33rem;
    }
    .ekstra .title {
        margin-left: 32rem;
    }
    .course-wrapper {
        display: flex;
        flex-wrap: nowrap;
        justify-items: center;
    }
    .profil .counting {
        align-items: center;
        display: flex;
        flex-wrap: nowrap;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .hero {
        height: 20vh;
    }
    .guru .title {
        margin-left: 27rem;
        font-size: 2rem;
    }
    header ul {
        position: fixed;
        top: 70px;
        right: -100%;
        background: var(--bg);
        width: 50%;
        height: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transition: right 0.5s ease;
        z-index: 1000;
    }

    header ul li {
        margin: 20px 0;
        border-bottom: solid 1px var(--color);
    }

    header .menu {
        display: block;
    }

    #chk1:checked ~ ul {
        right: 0;
        z-index: 100;
    }
    .sosmed {
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none;
        padding: 0;
        gap: 20px;
    }

    .sosmed a {
        color: var(--color);
        font-size: 24px;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .sambutan .box-container .title {
        justify-items: center;
        margin-left: 0;
        font-size: 2rem;
    }
    .profil .box-cont .title {
        margin-left: 24rem;
        font-size: 2rem;
    }
    .about-us .title {
        margin-left: 24rem;
        font-size: 2rem;
    }
    .profil .counting {
        display: flex;
        flex-wrap: nowrap;
        justify-items: center;
    }
    .prestasi .containerr .title {
        margin-left: 24rem;
        font-size: 2rem;
    }
    .program .title {
        justify-items: center;
        margin-left: 24rem;
        font-size: 2rem;
    }
    .berita .title {
        justify-items: center;
        margin-left: 25rem;
        font-size: 2rem;
    }
    .ekstra .title {
        justify-items: center;
        margin-left: 25rem;
        font-size: 2rem;
    }
    .course-wrapper {
        display: flex;
        flex-wrap: nowrap;
        justify-items: center;
    }
    section .shap {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 90px;
        animation: round 6s linear infinite;
        transform-origin: bottom center;
        margin-bottom: 5rem;
        margin-left: 2rem;
    }
    .credit {
        flex-direction: column;
        margin-top: -5rem;
    }
    .credit p {
        font-size: 12px;
        color: var(--oren);
        margin-top: 10rem;
    }
    .credit span {
        font-size: 14px;
        color: var(--color);
    }
    .learn-wrapper {
        display: flex;
        flex-wrap: nowrap;
        justify-items: center;
    }
    .blog .title {
        font-size: 2rem;
        margin-left: 25rem;
    }
}

@media only screen and (min-width: 1180px) and (max-width: 1180px) and (orientation: landscape) {
    .profil .box-cont .title {
        margin-left: 27rem;
    }
    .guru .title {
        margin-left: 32rem;
        font-size: 2rem;
    }
    .profil .counting {
        display: flex;
        flex-wrap: nowrap;
        justify-items: center;
    }
    .prestasi .containerr .title {
        margin-left: 27rem;
    }
    .program .title {
        margin-left: 27rem;
    }
    .berita .title {
        margin-left: 27rem;
    }
    .about-us .title {
        margin-left: 26rem;
    }
    .ekstra .title {
        margin-left: 25rem;
    }
    section .shap {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 90px;
        animation: round 6s linear infinite;
        transform-origin: bottom center;
        margin-bottom: 5rem;
        margin-left: 2rem;
    }
    .course-wrapper {
        display: flex;
        flex-wrap: nowrap;
        justify-items: center;
    }
    .learn-wrapper {
        display: flex;
        flex-wrap: nowrap;
        justify-items: center;
    }
    .blog .title {
        font-size: 2rem;
        margin-left: 30rem;
    }
}

@media only screen and (min-width: 820px) and (max-width: 820px) and (orientation: portrait) {
    header ul {
        position: fixed;
        top: 70px;
        right: -100%;
        background: var(--bg);
        width: 50%;
        height: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transition: right 0.5s ease;
        z-index: 1000;
    }
    .guru .title {
        margin-left: 20rem;
        font-size: 2rem;
    }
    .blog {
        margin-left: -1rem;
    }

    header ul li {
        margin: 20px 0;
        border-bottom: solid 1px var(--color);
    }

    header .menu {
        display: block;
    }

    #chk1:checked ~ ul {
        right: 0;
        z-index: 100;
    }
    .sosmed {
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none;
        padding: 0;
        gap: 20px;
    }

    .sosmed a {
        color: var(--color);
        font-size: 24px;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .sambutan .box-container .title {
        justify-items: center;
        margin-left: 0;
        font-size: 2rem;
    }
    .about-us .title {
        margin-left: 18rem;
        font-size: 2rem;
    }
    .profil .box-cont .title {
        justify-items: center;
        margin-left: 18rem;
        font-size: 2rem;
    }
    .prestasi .containerr .title {
        justify-items: center;
        margin-left: 16rem;
        font-size: 2rem;
    }
    .program .title {
        justify-items: center;
        margin-left: 16rem;
        font-size: 2rem;
    }
    .berita .title {
        justify-items: center;
        margin-left: 18rem;
        font-size: 2rem;
    }

    .ekstra .title {
        justify-items: center;
        margin-left: 18rem;
        font-size: 2rem;
    }
    .course-wrapper {
        display: flex;
        flex-wrap: nowrap;
        justify-items: center;
    }
    section .shap {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 90px;
        animation: round 6s linear infinite;
        transform-origin: bottom center;
        margin-bottom: 5rem;
        margin-left: 2rem;
    }
    .credit {
        flex-direction: column;
        margin-top: -15rem;
    }
    .credit p {
        font-size: 12px;
        color: var(--oren);
        margin-top: 10rem;
    }
    .credit span {
        font-size: 14px;
        color: var(--color);
    }
    .learn-wrapper {
        display: block;
        justify-items: center;
    }
    .learn-container {
        margin-bottom: 2rem;
        margin-left: 1rem;
    }
    .fasilitas-container {
        display: block;
    }
    .fasilitas-item {
        transition: transform 0.3s, box-shadow 0.3s;
        margin-bottom: 2rem;
    }
    .title {
        margin-left: 1rem;
        font-size: 2rem;
    }
    .fasilitas-item.hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }
    .blog .title {
        font-size: 2rem;
        margin-left: 19.5rem;
    }
}

@media only screen and (min-width: 768px) and (max-width: 768px) and (orientation: portrait) {
    .sambutan .box-container .title {
        justify-items: center;
        margin-left: 0;
        font-size: 2rem;
    }
    .guru .title {
        margin-left: 19rem;
        font-size: 2rem;
    }
    .sambutan .box-container .box {
        flex-direction: column;
        text-align: center;
    }
    .sambutan .box-container .box img {
        margin-bottom: 0;
    }
    .about-us .title {
        margin-left: 16rem;
        font-size: 2rem;
    }
    .profil .box-cont .title {
        justify-items: center;
        margin-left: 16rem;
        font-size: 2rem;
    }
    .profil .box-cont .box {
        flex-direction: column;
        text-align: center;
    }
    .profil .box-cont .box img {
        margin-bottom: 1rem;
    }
    .prestasi .containerr .title {
        justify-items: center;
        margin-left: 16rem;
        font-size: 2rem;
    }

    .program .title {
        justify-items: center;
        margin-left: 16rem;
        font-size: 2rem;
    }
    .ekstra .title {
        justify-items: center;
        margin-left: 16rem;
        font-size: 2rem;
    }
    .container .card {
        margin-left: -0.5rem;
        gap: 1rem;
        row-gap: 5rem;
    }

    .lokasi {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .lokasi .boxi h1 {
        font-size: 2rem;
        margin-bottom: 15px;
        text-align: center;
    }

    .lokasi .boxi p {
        font-size: 1rem;
        text-align: justify;
    }

    .lokasi iframe {
        height: 300px;
    }

    .hero {
        height: 15vh;
    }
    .berita .title {
        justify-items: center;
        margin-left: 16rem;
        font-size: 2rem;
    }
    .course-wrapper {
        display: flex;
        flex-wrap: nowrap;
        justify-items: center;
    }
    section .shap {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        animation: round 6s linear infinite;
        transform-origin: bottom center;
        margin-bottom: 5rem;
        margin-left: 2rem;
    }
    header ul {
        width: 100%;
        position: fixed;
        top: 70px;
        right: -100%;
        background: var(--bg);
        height: 100%;
        overflow-y: auto;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transition: right 0.5s ease;
        z-index: 1000;
        padding: 0;
        margin: 0;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    header ul li {
        margin: 20px 0;
        border-bottom: solid 1px var(--color);
        width: 100%;
        text-align: center;
    }

    header ul li a {
        padding: 15px;
        display: block;
        color: var(--color);
        text-decoration: none;
    }

    header .menu {
        display: block;
        font-size: 24px;
        cursor: pointer;
        color: var(--color);
        z-index: 1100;
    }

    #chk1 {
        display: none;
    }

    #chk1:checked ~ ul {
        right: 0;
    }

    .dropdown-menu {
        position: static;
        display: none;
        background: var(--bg);
        width: 100%;
        padding: 0;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    .dropdown-menu li {
        padding-top: -10rem;
    }

    .dropdown-menu li a {
        padding-top: -10rem;
        display: block;
        color: var(--color);
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }
    .credit {
        flex-direction: column;
        margin-top: -6rem;
    }
    .credit p {
        font-size: 12px;
        color: var(--oren);
        margin-top: 10rem;
    }
    .credit span {
        font-size: 14px;
        color: var(--color);
    }
    .contain .rows .logo p {
        color: var(--oren);
        font-size: 8px;
    }
    .contain {
        width: 90%;
        grid-template-columns: 1fr 1fr 1fr;
        padding: 20px 0 0 0;
    }

    .contain .rows {
        padding: 20px 0;
        text-align: center;
        margin-left: 2rem;
    }

    .contain .rows .logo h2 {
        font-size: 13px;
    }
    .contain .rows .support h3 {
        font-size: 11px;
    }
    .sosmed {
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none;
        padding: 0;
        gap: 20px;
    }

    .sosmed a {
        color: var(--color);
        font-size: 24px;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .fasilitas-container {
        display: block;
    }
    .fasilitas-item {
        transition: transform 0.3s, box-shadow 0.3s;
        margin-bottom: 2rem;
    }
    .title {
        margin-left: 1rem;
        font-size: 2rem;
    }
    .fasilitas-item.hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }
    .program .container {
        gap: 10px;
    }
    .blog .title {
        font-size: 2rem;
        margin-left: 17.5rem;
    }
    .title-tpq {
        margin-left: 17rem;
        font-size: 2rem;
    }
    .title-th {
        margin-left: 12rem;
        font-size: 2rem;
    }
    .title-lal {
        margin-left: 17rem;
        font-size: 2rem;
    }
    .title-hae {
        margin-left: 11rem;
        font-size: 2em;
    }
    .title-icp {
        margin-left: 10rem;
        font-size: 2rem;
    }
    .pres .title {
        margin-left: 25rem;
        font-size: 2rem;
    }
    .blog {
        margin-left: -1rem;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: landscape) {
    .profil .box-cont .title {
        margin-left: 21rem;
    }
    .guru .title {
        margin-left: 26rem;
        font-size: 2rem;
    }
    .prestasi .containerr .title {
        margin-left: 21rem;
    }
    .about-us .title {
        margin-left: 21rem;
    }
    .program .title {
        margin-left: 21rem;
    }
    .berita .title {
        margin-left: 23rem;
    }
    .ekstra .title {
        margin-left: 21rem;
    }
    .course-wrapper {
        display: flex;
        flex-wrap: nowrap;
        justify-items: center;
    }
    header ul {
        width: 100%;
        position: fixed;
        top: 70px;
        right: -100%;
        background: var(--bg);
        height: 100%;
        overflow-y: auto;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transition: right 0.5s ease;
        z-index: 1000;
        padding: 0;
        margin: 0;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    header ul li {
        margin: 20px 0;
        border-bottom: solid 1px var(--color);
        width: 100%;
        text-align: center;
    }

    header ul li a {
        padding: 15px;
        display: block;
        color: var(--color);
        text-decoration: none;
    }

    header .menu {
        display: block;
        font-size: 24px;
        cursor: pointer;
        color: var(--color);
        z-index: 1100;
    }

    #chk1 {
        display: none;
    }

    #chk1:checked ~ ul {
        right: 0;
    }

    .dropdown-menu {
        position: static;
        display: none;
        background: var(--bg);
        width: 100%;
        padding: 0;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    .dropdown-menu li {
        padding-top: -10rem;
    }

    .dropdown-menu li a {
        padding-top: -10rem;
        display: block;
        color: var(--color);
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }
    section .shap {
        position: absolute;
        width: 100px;
        animation: round 6s linear infinite;
        transform-origin: bottom center;
        margin-bottom: 5rem;
        margin-left: 2rem;
    }

    .sosmed {
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none;
        padding: 0;
        gap: 20px;
    }

    .sosmed a {
        color: var(--color);
        font-size: 24px;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .learn-wrapper {
        display: flex;
        flex-wrap: nowrap;
        justify-items: center;
    }
    .blog .title {
        font-size: 2rem;
        margin-left: 25rem;
    }
    .title-tpq {
        margin-left: 23rem;
        font-size: 2rem;
    }
    .title-th {
        margin-left: 23rem;
        font-size: 2rem;
    }
    .title-lal {
        margin-left: 27rem;
        font-size: 2rem;
    }
    .title-hae {
        margin-left: 22rem;
        font-size: 2em;
    }
    .title-icp {
        margin-left: 23rem;
        font-size: 2rem;
    }
    .pres .title {
        margin-left: 25rem;
        font-size: 2rem;
    }
}

@media (max-width: 896px) and (max-height: 450px) {
    section .shap {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        animation: round 6s linear infinite;
        transform-origin: bottom center;
        margin-bottom: 5rem;
        margin-left: 2rem;
    }
    .guru .title {
        margin-left: 23rem;
        font-size: 2rem;
    }

    .berita .title {
        justify-items: center;
        font-size: 2rem;
        margin-left: 20rem;
    }
    .about-us .title {
        margin-left: 20rem;
        font-size: 2rem;
    }
    .course-wrapper {
        display: flex;
        flex-wrap: nowrap;
        justify-items: center;
    }

    .profil .box-cont .title {
        margin-left: 20rem;
        justify-items: center;
        font-size: 2rem;
    }
    .profil .counting .box {
        display: flex;
    }
    .profil .counting {
        min-height: 40vh;
        align-items: center;
        display: flex;
        flex-wrap: nowrap;
        gap: 1px;
    }
    .profil .counting .box {
        margin: 1rem;
    }

    .prestasi .containerr .title {
        margin-left: 20rem;
        justify-items: center;
        font-size: 2rem;
    }

    .program .title {
        margin-left: 20rem;
        justify-items: center;
        font-size: 2rem;
    }

    .ekstra .title {
        justify-items: center;
        font-size: 2rem;
        margin-left: 20rem;
    }
    .credit {
        margin-top: -7rem;
    }
    .credit p {
        font-size: 9px;
        color: var(--oren);
        margin-top: 10rem;
    }
    .credit span {
        font-size: 10px;
        color: var(--color);
    }

    .contain .rows .logo p {
        color: var(--oren);
        font-size: 8px;
    }
    .contain {
        width: 90%;
        grid-template-columns: 1fr 1fr 1fr;
        padding: 20px 0 0 0;
    }

    .contain .rows {
        padding: 20px 0;
        text-align: center;
        margin-left: 2rem;
    }
    .contain .rows .logo h2 {
        font-size: 14px;
    }
    .contain .rows .support h3 {
        font-size: 12px;
    }
    .learn-wrapper {
        display: block;
        justify-items: center;
    }
    .learn-container {
        margin-bottom: 2rem;
        margin-left: 1rem;
    }
    .program .title {
        margin-left: 20rem;
        font-size: 2rem;
    }
    .program .container {
        margin-left: 2rem;
    }
    .blog .title {
        font-size: 2rem;
        margin-left: 21rem;
    }
    .title-tpq {
        margin-left: 21rem;
        font-size: 2rem;
    }
    .title-th {
        margin-left: 21rem;
        font-size: 1.7rem;
    }
    .title-lal {
        margin-left: 21rem;
        font-size: 2rem;
    }
    .title-hae {
        margin-left: 21rem;
        font-size: 1.4rem;
    }
    .title-icp {
        margin-left: 21rem;
        font-size: 1.4rem;
    }
    .pres .title {
        margin-left: 23rem;
        font-size: 2rem;
    }
    header ul {
        width: 100%;
        position: fixed;
        top: 70px;
        right: -100%;
        background: var(--bg);
        height: 100%;
        overflow-y: auto;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transition: right 0.5s ease;
        z-index: 1000;
        padding: 0;
        margin: 0;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    header ul li {
        margin: 20px 0;
        border-bottom: solid 1px var(--color);
        width: 100%;
        text-align: center;
    }

    header ul li a {
        padding: 15px;
        display: block;
        color: var(--color);
        text-decoration: none;
    }

    header .menu {
        display: block;
        font-size: 24px;
        cursor: pointer;
        color: var(--color);
        z-index: 1100;
    }

    #chk1 {
        display: none;
    }

    #chk1:checked ~ ul {
        right: 0;
    }

    .dropdown-menu {
        position: static;
        display: none;
        background: var(--bg);
        width: 100%;
        padding: 0;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    .dropdown-menu li {
        padding-top: -10rem;
    }

    .dropdown-menu li a {
        padding-top: -10rem;
        display: block;
        color: var(--color);
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

@media (max-width: 600px) {
    header .logo {
        font-size: 18px;
    }

    .logo-text {
        font-size: 10px;
    }
    header ul {
        width: 100%;
        position: fixed;
        top: 70px;
        right: -100%;
        background: var(--bg);
        height: 100%;
        overflow-y: auto;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transition: right 0.5s ease;
        z-index: 1000;
        padding: 0;
        margin: 0;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    header ul li {
        margin: 20px 0;
        border-bottom: solid 1px var(--color);
        width: 100%;
        text-align: center;
    }

    header ul li a {
        padding: 15px;
        display: block;
        color: var(--color);
        text-decoration: none;
    }

    header .menu {
        display: block;
        font-size: 24px;
        cursor: pointer;
        color: var(--color);
        z-index: 1100;
    }

    #chk1 {
        display: none;
    }

    #chk1:checked ~ ul {
        right: 0;
    }

    .dropdown-menu {
        position: static;
        display: none;
        background: var(--bg);
        width: 100%;
        padding: 0;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    .dropdown-menu li {
        padding-top: -10rem;
    }

    .dropdown-menu li a {
        padding-top: -10rem;
        display: block;
        color: var(--color);
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .carousel-control.prev,
    .carousel-control.next {
        display: none;
    }

    .sambutan .box-container .title {
        margin-left: 1rem;
        margin-right: 1rem;
        font-size: 1.5rem;
        align-items: center;
        text-shadow: #000;
    }

    .sambutan .box-container .box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .sambutan .box-container .box img {
        width: 70%;
        margin-left: 0;
        margin-right: 0;
    }

    .sambutan .box-container .box .info h3 {
        font-size: 2rem;
    }

    .profil .box-cont .title {
        margin-left: 5rem;
        font-size: 2rem;
    }

    .guru .title {
        margin-left: 8rem;
        font-size: 2rem;
    }

    .prestasi .containerr .title {
        margin-left: 5rem;
        font-size: 2rem;
    }

    .title {
        font-size: 2rem;
        margin-left: 4rem;
    }

    .container .card {
        margin-left: 1px;
    }

    .lokasi {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .lokasi .boxi h1 {
        font-size: 2rem;
        margin-bottom: 15px;
        text-align: center;
    }

    .lokasi .boxi p {
        font-size: 1rem;
        text-align: center;
    }

    .lokasi iframe {
        height: 300px;
    }

    section .shap {
        display: none;
    }

    .berita .title {
        margin-left: 5.5rem;
    }

    .course-wrapper,
    .event-wrapper {
        display: block;
    }

    .ekstra .title {
        margin-left: 5.5rem;
        font-size: 2rem;
    }

    .about-us .title {
        margin-left: -4rem;
        font-size: 2rem;
    }

    .about-content h1 {
        font-size: 20px;
    }

    .about-content p {
        font-size: 10px;
    }

    .credit {
        flex-direction: column;
        margin-top: -6rem;
    }

    .credit p {
        font-size: 12px;
        color: var(--oren);
        margin: 0;
    }

    .credit span {
        font-size: 14px;
        color: var(--color);
    }

    .contain .rows .logo p {
        color: var(--oren);
        font-size: 8px;
    }

    .contain {
        width: 90%;
        grid-template-columns: 1fr 1fr 1fr;
        padding: 20px 0 0 0;
    }

    .contain .rows {
        padding: 20px 0;
        text-align: center;
        margin-left: 2rem;
    }

    .contain .rows .logo h2 {
        font-size: 10px;
    }

    .contain .rows .support h3 {
        font-size: 9px;
    }

    .contain .rows .support ul {
        padding: 10px 0;
    }

    .contain .rows .support ul li {
        padding-bottom: 5px;
        font-size: 10px;
    }

    .contain .rows .contact .social {
        justify-content: center;
        color: var(--color);
    }

    .contain .rows .contact .social i {
        padding: 8px;
        font-size: 1px;
        color: #333;
    }

    .contain .rows .contact .social i:hover {
        color: var(--color);
    }

    .sosmed {
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none;
        padding: 0;
        gap: 20px;
    }

    .sosmed a {
        color: var(--color);
        font-size: 24px;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .learn-wrapper {
        display: block;
        margin-bottom: 1rem;
    }

    .learn-container {
        margin-bottom: 2rem;
        margin-left: 1rem;
    }

    .fasilitas-container {
        display: block;
    }

    .fasilitas-item {
        transition: transform 0.3s, box-shadow 0.3s;
        margin-bottom: 2rem;
    }

    .title {
        font-size: 2rem;
        margin-left: 1rem;
        justify-items: center;
    }

    .program .title {
        margin-left: 4rem;
        font-size: 2rem;
    }

    .program .container {
        margin-left: 1rem;
    }

    .fasilitas-item.hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .blog .title {
        font-size: 2rem;
        margin-left: 6rem;
    }
    .pres .title {
        margin-left: 5rem;
        font-size: 2rem;
    }
    .card-container {
        display: block;
    }
    .prestasi-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .title-tpq {
        margin-left: 4rem;
        font-size: 2rem;
    }
    .title-th {
        margin-left: 2.5rem;
        font-size: 1.7rem;
    }
    .title-lal {
        margin-left: 6rem;
        font-size: 2rem;
    }
    .title-hae {
        margin-left: 3.2rem;
        font-size: 1.4rem;
    }
    .title-icp {
        margin-left: 2.2rem;
        font-size: 1.4rem;
    }

    .card {
        width: auto;
        margin-bottom: 2rem;
    }
    .blog {
        margin-left: -1rem;
    }

    .whatsapp-icon img {
        width: 70%;
        border-radius: 100%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
}
