@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap');
@font-face{
      font-family: 'GothamRndBold';
      src: url('../fonts/GOTHAMRND-BOLD.ttf') format('truetype');
}

@font-face{
    font-family: 'Metropolis-Medium';
    src: url('../fonts/Metropolis-Medium.otf') format('truetype');
}

@font-face{
    font-family: 'Metropolis-Black';
    src: url('../fonts/Metropolis-Black.otf') format('truetype');
}

@font-face{
    font-family: 'Permanent Marker';
    src: url('../fonts/PermanentMarker.ttf') format('truetype');
}

@font-face {
    font-family: 'CentraleSans-Medium';
    src: url('../fonts/CentraleSans-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'centralesansregular';
    src: url('../fonts/centrale_sans_regular-webfont.woff2') format('woff2'),
         url('../fonts/centrale_sans_regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face{
    font-family: 'GothamRndMedium';
    src: url('../fonts/GOTHAMRND-MEDIUM.ttf') format('truetype');
}

.btn-component{
    background-color:  #ef1414;
    color: white;
}

.btn-component:hover{
    background-color: transparent;
    border: 2px solid #ef1414;
    color: black;
}

.hero-content{
    position: relative;
    z-index: 2;
    gap: 40px;
}


.hero-side-img{
    max-height: 350px;
}

.gothamrnd-bold{
    font-family: 'GothamRndBold';
    font-size: 45px;
    line-height: 1.1;
    color: white;
    -webkit-text-stroke: 20px #960701;
    paint-order: stroke fill;
    text-shadow:
        3px 3px 0 #960701,
        -3px 3px 0 #960701,
        3px -3px 0 #960701,
        -3px -3px 0 #960701;
}

.gothamrnd-bold-no-border{
    font-family: 'GothamRndBold';
    color: white;
    font-size: 30px;

}

/* abaout style */
.about-us{
    min-height: 100vh;
}
.title{
    font-family: 'Permanent Marker';
    font-size: 30px;
    font-weight: normal;
}
.abaut-desc-text{
    font-family: 'GothamRndBold';
    font-size: 18px;
    font-weight: normal;
}

.box-syarat{
    background:#e9e0d3;
    border-radius:20px;
    padding:30px;
    position:relative;
    box-shadow:8px 8px 0px #000;
    margin: 30px auto;
    max-width: fit-content;
    font-family: 'Centralesans-Medium';
}

.text-syarat{
  font-family: 'Centralesans-Medium';
    font-size: 18px;
}

.title-terms{
    font-weight: normal;
    background-color:  #ef1414;
    position: relative;
    top: 48px;
    color:#fff;
    padding:15px 20px;
    border-radius:30px;
    z-index: 999;
    font-size: 22px;
   font-family: 'GothamRndBold';

}

.btn-baca{
    font-family:'centralesansregular';
    background-color:  #ef1414;
    color: white;
    position: relative;
    bottom: 48px;
    z-index: 999;
    font-weight: 800;
    border-radius:30px;
    padding:10px 25px;
}

.btn-baca:hover{
    background-color: #fff;
    color:  #ef1414;
}

/* end about css */


/* call to action css */


.cta_title{
    font-family: 'GothamRndBold', sans-serif;
    font-size: 90px;

    color: #960701;
    -webkit-text-fill-color: #960701;
    -webkit-text-stroke: 4px white;
}
.card-cta-text{
    border-radius: 1000px;
}

.cta-text {
   font-family: 'GothamRndBold';
    font-size: 54px;
    line-height: 1.1;
    font-family: 'Metropolis-Black';
    
    color: #960701;

    -webkit-text-stroke: 10px white;
    paint-order: stroke fill;

    text-shadow:
        1px 1px 0 white,
        -1px 1px 0 white,
        1px -1px 0 white,
        -1px -1px 0 white
    
  }

 
/* student portofolio */
.title-student-portofolio{
    background: #ef1414;
    font-family: 'GothamRndBold';
    border-radius: 20px;
    padding: 10px 20px;
    max-width: 300px;
    width: 100%;
    box-shadow: 8px 8px 0px #000;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

#student-portofolio iframe{
    border-radius: 12px;
}

.portfolio-section {
    height: auto;
    display: flex;
    align-items: center;
}


.swiper {
    width: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.video-card {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.video-card .thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.video-modal{
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
}

.video-modal-content {
    width: 90%;
    max-width: 800px;
    margin: 5% auto;
    position: relative;
}

.video-modal iframe {
    width: 100%;
    height: 80dvh;
    border-radius: 12px;
}

.pdf-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}


.close-modal{
     position: absolute;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
  font-size: 30px;
      background: #eee8;
   

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.close-modal:hover{
    background-color: #ef1414;
    color: #fff;

}

.swiper-button-next,
.swiper-button-prev {
    width: 60px !important;
    height: 60px !important;
    background: #960701;
     color: #fff !important; /* warna icon */
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* icon bawaan swiper */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: bold;
}

.pdf-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
}

.pdf-modal-content {
    width: 90%;
    height: 80vh; 
    margin: 5% auto;
    position: relative;
    background: #fff; 
}

.close-modal-pdf {
    position: absolute;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 30px;
    background: #eee8;
   

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.close-modal-pdf:hover{
    background-color: #ef1414;
    color: #fff;
}

.box-term{
    background:#e9e0d3; 
    box-shadow:8px 8px 0px #000;
     border-radius:20px;
}

 .container-img{
    position: relative;
    top: 145px;
    font-family: 'Metropolis-Black';
    z-index: 0;
  }

  .img-smi-start {
    max-width: 600px;
  }
  .img-bg {
    position: absolute;
    bottom: 60%;
    left: 0;
    z-index: 0;
    width: 200%;
    object-fit: cover;
    transform: scale(60deg);
}

.img-front {
    position: relative;
    z-index: 1;
}
  .box-text-start{
    position: relative;
    right: 4%;
    z-index: 3;
  }

  .font-contact-us{
     font-family: 'Metropolis-Black';
  }

.box-icon {
  background: #fff;
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 1;
}

.box-icon-1 {
  background-color: #960701;
  color: #fff;
  width: 40px;
  height: 40px;
  
}
.contact-us-text{
    background-color: #fff;
    color: #960701;
    position: relative;
    right: 30px;
    z-index: 0;
    border-top-right-radius: 20px;
}

  .button-register{
     background:#960701; 
     box-shadow:8px 8px 0px #000;
     color: #fff;
  }

  .button-register:hover{
      background: #fff;
      color:  #960701;
    }

    .box-text-start-1{
        font-size: 48px;
    }

    .audisi-wrapper {
    padding: 40px 20px; /* Memberi ruang agar lingkaran tidak terpotong */
}

/* Container khusus untuk lingkaran */
.circle-container {
    display: inline-block;
    position: relative;
    padding: 10px; /* Jarak antara teks dan garis lingkaran */
}

/* Membuat lingkaran merah */
.circle-container::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-1deg); 
    width: 105%; 
    height: 115%;
    
   
    border: 4px solid #960701;
    border-radius: 50%;
    
    border-left-width: 3px;
    border-bottom-width: 5px;
    
    pointer-events: none; 
    z-index: 2;
}

/* Memastikan warna background warning (kuning) terlihat rapi */
.bg-warning {
    background-color: #ffc107 !important;
    margin: -2px 0; 
}

.font-title-1{
    font-family: "Metropolis-Medium";
}

.font-title-2{
    font-family: "Metropolis-Black";
}

@media (max-width: 992px) {
  .container-img{
    position: relative;
    top: 178px;
    font-family: 'Metropolis-Black';
    z-index: 0;
  }
   .box-text-start-1{
        font-size: 35px;
    
    }
   .img-smi-start{
       max-width: 350px;
    }
}
@media (max-width: 768px) {
  .container-img{
    position: relative;
    top: 178px;
    font-family: 'Metropolis-Black';
    z-index: 0;
  }
  .box-text-start{
    position: absolute;
    right: 13%;
    z-index: 3;
  }
   .img-smi-start{
       max-width: 330px;
    }
    .box-text-start-1{
        font-size: 16px;
    }
    .hero-blink{
        top: 45%;
    }
     .gothamrnd-bold{
            font-size: 26px;
            -webkit-text-stroke-width: 12px;
    }
      .gothamrnd-bold-no-border{
            font-size: 22px;

        }

}

@media (max-width: 576px){
.title-student-portofolio{
        font-size: 20px;
        padding: 8px 16px;
        border-radius: 15px;
        box-shadow:4px 4px 0px #000;
        max-width: 220px;
    }
    .box-text-start{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        position: absolute;
        right: 0;
        left: 0;
        z-index: 3;
        bottom: 60px;
    }
    .img-smi-start{
       width: 360px;
    }
        .about-us{
            height: auto;
        }  
        .box-text-start-1{
            font-size: 18px;
        }

        .container-img{
            margin-top: 15px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .gothamrnd-bold{
            font-size: 24px;
            -webkit-text-stroke-width: 12px;
        }
        .cta-text{
            font-size: 30px;
            -webkit-text-stroke-width: 2px;
            font-family: 'Metropolis-Black';
        }

        .gothamrnd-bold-no-border{
            font-size: 20px;

        }

        .hero-content{
            gap: 20px;
        }

        .hero-blink{
          top: 65%;

        }
}


