/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    width: 100%;
    height: 100%;
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    color: #0000ff;
    text-decoration: none;
}

a:hover {
    color: #00008b;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p {
    font-family: "Poppins", sans-serif;
}

.tab-pane.active {
    animation: slide-down 1s ease-out;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/*--------------------------------------------------------------
# Back to Top Button
--------------------------------------------------------------*/
.bubble-button {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 999;
    display: flex; /* Ensure it is always displayed */
    flex-direction: column; /* Stack the options vertically */
    opacity: 0; /* Start hidden */
    transition: opacity 0.4s ease; /* Smooth transition for opacity */
}

.toggle-button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #0000ff;
    color: #fff;
    cursor: pointer;
    transition: all 0.4s;
    z-index: 999;
}

.toggle-button i {
    transition: transform 0.4s;
}

.bubble-options {
    display: none; /* Hidden initially */
    opacity: 0;
    transition: opacity 0.4s ease;
    position: absolute;
    right: 0;
    bottom: 40px;
}

.bubble-options a {
    display: block;
    margin-bottom: 10px;
}

.toggle-button:hover {
    background: rgba(19, 20, 27, 0.9);
    color: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.486) !important;
}

#hamburger {
    font-size: 18px; /* Mengubah ukuran ikon, sesuaikan dengan ukuran yang diinginkan */
}

.bubble-whatsapp i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #00df13;
    color: #fff;
    transition: all 0.4s;
}

.bubble-whatsapp i:hover {
    background: #00a00d;
    color: #fff;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #0000ff;
    color: #fff;
    transition: all 0.2s;
}

.back-to-top i:hover {
    background: rgba(19, 20, 27, 0.9);
    color: #fff;
}

.show-bubble-button {
    /* Show bubble-button when scrolled to main section */
    display: flex;
}

/* Bubble Notification */
.bubble-whatsapp {
    position: relative; /* Set the context for positioning the notification */
}

.bubble-notification {
    background-color: #f1c40f; /* Color of the bubble */
    color: #333; /* Text color */
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold; /* Make the text bold */
    display: none; /* Hidden by default */
    position: absolute; /* Position it absolutely */
    right: 115%; /* Position it to the left of the WhatsApp button */
    top: 50%;
    transform: translateY(-50%); /* Center it vertically */
    margin-right: 10px; /* Space between notification and WhatsApp button */
    white-space: nowrap; /* Prevent text from wrapping to a new line */
    text-align: center; /* Center-align the text horizontally */
}

.bubble-whatsapp:hover .bubble-notification {
    display: block; /* Show notification when hovering over the WhatsApp button */
}

.bubble-notification::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 6.8rem; /* Adjust based on the position of the notification bubble */
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #f1c40f; /* Arrow pointing to the right */
}

@media (max-width: 1024px) {
    .bubble-notification {
        display: block;
    }
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 1024px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Bar Progress
--------------------------------------------------------------*/
#bar {
    width: 0;
    height: 4px;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    transition: width 0.3s ease-in-out;
    z-index: 99999;
    border-radius: 50px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 70px;
    transition: all 0.5s;
    z-index: 997;
}

#header.header-transparent {
    background: transparent;
}

#header.header-scrolled {
    background: rgba(19, 20, 27, 0.9);
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
}

@media (max-width: 560px) {
    #header .logo img {
        padding: 0;
        margin: 0;
        max-height: 30px;
    }
}

@media (max-width: 425px) {
    #header .logo img {
        padding: 0;
        margin: 0;
        max-height: 30px;
    }
}

@media (max-width: 375px) {
    #header .logo img {
        padding: 0;
        margin: 0;
        max-height: 30px;
    }
}

@media (max-width: 320px) {
    #header .logo img {
        padding: 0;
        margin: 0;
        max-height: 30px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 15px 7px 15px;
    margin-left: 5px;
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 50px;
}

.navbar a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar .active {
    color: #fff;
    background: #0000ff;
}

.navbar a:hover,
.navbar li:hover > a {
    color: #fff;
    background: #0000ff;
}

/* Dropdown Styles */
.dropdown-end > ul {
    left: auto !important;
    right: 0 !important;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 5px;
    top: calc(100% + 30px);
    margin: 5px 0 0 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 15px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    color: #14151c;
    margin: 0 5px;
    font-size: 14px;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul a.active,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    background: #0000ff;
    color: white;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/* Get Started Button */
.get-started-btn {
    margin-left: 25px;
    color: #fff;
    border-radius: 50px;
    padding: 8px 20px 7px 20px; /* bottom-right-top-left*/
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
    background: transparent;
    border: 2px solid #0000ff;
}

.get-started-btn:hover {
    background: rgba(175, 65, 79, 0.9);
    color: #fff;
}

@media (max-width: 768px) {
    .get-started-btn {
        margin: 0 48px 0 0;
        padding: 6px 20px 7px 20px;
    }
}

@media (max-width: 580px) {
    .get-started-btn {
        margin-top: 8px;
    }
}

@media (max-width: 425px) {
    .get-started-btn {
        margin-top: -5px;
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 1230px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(20, 21, 28, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a {
    padding: 10px 20px;
    margin: 5px;
    font-size: 15px;
    color: #2a2c39;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #fff;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: #fff;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

@media (max-width: 560px) {
    .navbar-mobile a {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    background:
        linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.8)),
        url("../img/bg-hero.jpg") center/cover no-repeat;
    display: flex;
    padding: 0;
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    position: relative;
    height: 80vh;
    padding-top: 50px;
}

#hero h2 {
    margin-bottom: 30px;
    font-family: "Jost", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

#hero p {
    width: 60%;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #fff;
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
    width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 48px;
    line-height: 1;
    width: auto;
    height: auto;
}

#hero .btn-get-started {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid #0000ff;
}

#hero .btn-get-started:hover {
    background: #0000ff;
    color: #fff;
    text-decoration: none;
}

.hero-waves {
    display: block;
    width: 100%;
    height: 60px;
    position: relative;
}

.wave1 use {
    -webkit-animation: move-forever1 10s linear infinite;
    animation: move-forever1 10s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.wave2 use {
    -webkit-animation: move-forever2 8s linear infinite;
    animation: move-forever2 8s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.wave3 use {
    -webkit-animation: move-forever3 6s linear infinite;
    animation: move-forever3 6s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }
    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }
    100% {
        transform: translate(-90px, 0%);
    }
}

@-webkit-keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}

@-webkit-keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}

@media (max-width: 1024px) {
    #hero h2 {
        font-size: 28px;
    }

    #hero p {
        font-size: 14px;
    }

    #hero .btn-get-started {
        font-size: 14px;
        padding: 10px 15px;
    }
}

@media (max-width: 990px) {
    #hero h2 {
        font-size: 28px;
    }

    #hero p {
        font-size: 14px;
    }

    #hero .btn-get-started {
        font-size: 14px;
        padding: 10px 15px;
    }
}

@media (max-width: 550px) {
    #hero h2 {
        font-size: 24px;
    }

    #hero p {
        font-size: 12px;
    }

    #hero .btn-get-started {
        font-size: 12px;
        padding: 10px 15px;
    }
}

@media (max-width: 375px) {
    #hero h2 {
        font-size: 24px;
    }

    #hero p {
        font-size: 12px;
        padding-left: 10px;
        padding-right: 10px;
    }

    #hero .btn-get-started {
        font-size: 12px;
        padding: 10px 15px;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding-top: 30px;
    padding-bottom: 30px;
    overflow: hidden;
}

.about .section-title {
    margin-bottom: 0;
}

.about .section-title h2 {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    color: #aaaaaa;
    text-transform: uppercase;
}

.about .section-title h2::after {
    /*-- Garis Panjang */
    content: "";
    width: 100px;
    height: 2px;
    display: inline-block;
    background: #0000ff;
    margin-bottom: 4px;
    margin-left: 10px;
}

.about .section-title h1 {
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #2a2c39;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about .content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.about .content img {
    width: 70%;
}

.sekapur-sirih .content img {
    width: 90%;
}

.about .content p {
    font-size: 16px;
    text-align: justify;
}

.about .content a {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 20px;
    transition: 0.3s;
    line-height: 1;
    color: #0000ff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid #0000ff;
    justify-content: center;
}

@media (max-width: 990px) {
    .about .section-title h2 {
        font-size: 14px;
    }

    .about .section-title h1 {
        font-size: 24px;
    }

    .about .content img {
        width: 50%;
        margin-top: -20px;
        margin-bottom: 20px;
    }

    .sekapur-sirih .content img {
        width: 80%;
        margin-top: 20px;
        margin-bottom: -20px;
    }

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

    .about .content a {
        font-family: "Poppins", sans-serif;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        line-height: 1;
        color: #0000ff;
        display: inline-block;
        padding: 12px 32px;
        border-radius: 20px;
        border: 2px solid #0000ff;
        transition: 0.3s;
        -webkit-animation-delay: 0.8s;
        animation-delay: 0.8s;
    }
}

@media (max-width: 768px) {
    .about .section-title h2 {
        font-size: 14px;
    }

    .about .section-title h2::after {
        width: 100px;
    }

    .about .section-title h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .about .content img {
        width: 80%;
        margin-top: -20px;
        margin-bottom: 20px;
    }

    .sekapur-sirih .content img {
        width: 90%;
        margin-top: 20px;
        margin-bottom: -20px;
    }

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

    .about .content a {
        font-size: 14px;
        padding: 12px 32px;
    }
}

@media (max-width: 590px) {
    section {
        padding-left: 30px;
        padding-right: 30px;
    }

    .about .section-title h2 {
        font-size: 12px;
    }

    .about .section-title h2::after {
        width: 50px;
        height: 2px;
    }

    .about .section-title h1 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .about .content img {
        width: 80%;
        margin-top: -20px;
        margin-bottom: 20px;
    }

    .sekapur-sirih .content img {
        width: 100%;
        margin-top: 20px;
        margin-bottom: -20px;
    }

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

    .about .content a {
        font-size: 12px;
        padding: 8px 25px;
    }
}

@media (max-width: 375px) {
    section {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* --------------------------------------------------------------
# Program Studi
--------------------------------------------------------------*/
.features {
    padding-bottom: 20px;
}

.carousel-nav {
    /*-- Garis --*/
    width: 100%;
    margin-bottom: 30px;
    border-bottom: 2px solid #0000ff;
}

.carousel-nav a {
    /*-- Tabel --*/
    color: #999;
    padding: 3px;
    text-align: center;
    display: inline-block;
    margin-bottom: 5px;
}

.carousel-nav a:hover {
    color: #0000ff;
}

.carousel-nav a.active {
    color: #0000ff;
}

.media-29101 {
    align-items: center;
    justify-content: center; /* Selaraskan secara vertikal */
}

.owl-1 .img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

.owl-1 .text {
    margin-top: 10px;
    margin-left: 20px;
    margin-right: 20px;
}

.owl-1 .text h2 {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1px;
    letter-spacing: 2px;
    margin-bottom: -5px;
    text-transform: uppercase;
    color: #aaaaaa;
    margin-bottom: 3px;
}

.owl-1 .text h2::after {
    /*-- Garis Panjang */
    content: "";
    width: 100px;
    height: 2px;
    display: inline-block;
    background: #0000ff;
    margin-bottom: 4px;
    margin-left: 10px;
}

.owl-1 .text a {
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #2a2c39;
    text-transform: uppercase;
}

.owl-1 .text p {
    /*-- Deskripsi --*/
    text-align: justify;
    margin-top: 15px;
}

@media (max-width: 1365px) {
    .media-29101 {
        flex-direction: column;
        align-items: center;
        padding-left: 5px;
        padding-right: 5px;
    }

    .owl-1 img {
        flex: 0 0 auto;
        width: 100%; /* Gambar menyesuaikan dengan lebar kontainer */
        margin-bottom: 20px;
        border-radius: 10px;
    }
}

@media (max-width: 990px) {
    .owl-1 .text h2 {
        font-size: 14px;
    }

    .owl-1 .text a {
        font-size: 24px;
    }
}

@media (max-width: 590px) {
    .carousel-nav a {
        /*-- Tabel --*/
        font-size: 12px;
    }

    .owl-1 .text h2 {
        font-size: 12px;
    }

    .owl-1 .text h2::after {
        width: 50px;
    }

    .owl-1 .text a {
        font-size: 20px;
    }

    .owl-1 .text {
        font-size: 12px;
    }

    .owl-1 .text p {
        font-size: 12px;
        margin-bottom: 5px;
    }
}

@media (max-width: 550px) {
    .media-29101 {
        padding-left: 5px;
        padding-right: 5px;
    }
}

/*--------------------------------------------------------------
# Profil Lulusan
--------------------------------------------------------------*/
.services {
    padding-bottom: 50px;
}

.services .section-title h2 {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    color: #aaaaaa;
    text-transform: uppercase;
}

.services .section-title h2::after {
    content: "";
    width: 100px;
    height: 2px;
    display: inline-block;
    background: #0000ff;
    margin-bottom: 4px;
    margin-left: 10px;
}

.services .section-title h1 {
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #2a2c39;
    text-transform: uppercase;
}

.services .icon-box {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    padding: 32px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.4s ease-in-out;
    width: 100%;
    height: 100%;
}

.services .icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 2px 35px 0 rgba(68, 88, 144, 0.2);
}

.services .icon {
    position: absolute;
    left: -15px;
    top: calc(50% - 30px);
}

.services .icon i {
    font-size: 64px;
    line-height: 1;
    transition: 0.5s;
}

.services .title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.services .title a {
    color: #2a2c39;
    transition: ease-in-out 0.3s;
}

.services .title a:hover {
    color: #0000ff;
}

.services .description {
    font-size: 14px;
    margin-bottom: -15px;
    line-height: 24px;
    text-align: justify;
}

@media (max-width: 990px) {
    .services {
        margin-bottom: -10px;
        margin-top: 10px;
    }

    .services .section-title h2 {
        font-size: 14px;
    }

    .services .section-title h1 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .services {
        margin-bottom: -10px;
    }
}

@media (max-width: 590px) {
    .services {
        margin-bottom: -10px;
    }

    .services .section-title h2 {
        font-size: 14px;
    }

    .services .section-title h2::after {
        width: 50px;
    }

    .services .section-title h1 {
        font-size: 24px;
    }

    .services .icon-box {
        padding: 20px;
    }

    .services .title {
        font-size: 14px;
    }

    .services .description {
        font-size: 12px;
    }
}

@media (max-width: 375px) {
    .services .section-title h2 {
        font-size: 12px;
    }
}

@media (max-width: 320px) {
    .services .section-title h2 {
        font-size: 12px;
    }
}

/*--------------------------------------------------------------
# Fasilitas Pembelajaran Section
--------------------------------------------------------------*/
.portfolio {
    padding-bottom: 80px;
}

.portfolio .section-title {
    margin-bottom: 0;
}

.portfolio .section-title h2 {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    color: #aaaaaa;
    text-transform: uppercase;
}

.portfolio .section-title h2::after {
    /*-- Garis Panjang */
    content: "";
    width: 100px;
    height: 2px;
    display: inline-block;
    background: #0000ff;
    margin-bottom: 4px;
    margin-left: 10px;
}

.portfolio .section-title h1 {
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #2a2c39;
    text-transform: uppercase;
}

.portfolio .portfolio-flters {
    list-style: none;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 20px;
}

.portfolio .portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    padding: 10px 20px;
    margin: 0 5px;
    line-height: 1;
    color: #444444;
    transition: all 0.3s;
    border-radius: 20px;
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
    background: #0000ff;
    color: #fff;
}

.portfolio .portfolio-flters li:first-child {
    margin-left: 0;
}

.portfolio .portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-wrap {
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    height: 100%;
    overflow: hidden;
}

.portfolio .portfolio-wrap img {
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.portfolio .portfolio-wrap .portfolio-info {
    padding: 25px 20px;
    background-color: #fff;
    position: relative;
    border-top: 1px solid #f3f3f3;
    z-index: 2;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 18px;
    font-weight: 600;
    padding-top: 5px;
    padding-right: 50px;
}

.portfolio .portfolio-wrap .portfolio-info h4 a {
    color: #000;
}

.portfolio .portfolio-wrap .portfolio-info h4 a:hover {
    color: #0000ff;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 0;
    padding-right: 50px;
}

.portfolio .portfolio-wrap:hover img {
    transform: scale(1.1);
}

@media (max-width: 990px) {
    .portfolio {
        margin-top: 10px;
        padding-bottom: 40px;
    }

    .portfolio .section-title h2 {
        font-size: 14px;
    }

    .portfolio .section-title h1 {
        font-size: 24px;
    }

    .portfolio .portfolio-flters li {
        font-size: 14px;
        padding: 10px 15px;
    }

    .portfolio .portfolio-wrap .portfolio-info {
        padding: 10px 20px;
        z-index: 2;
    }

    .portfolio .portfolio-wrap .portfolio-info h4 {
        font-size: 14px;
        padding-top: 5px;
        padding-right: 50px;
    }
}

@media (max-width: 575px) {
    .portfolio {
        padding-bottom: 40px;
    }

    .portfolio .section-title h2::after {
        width: 50px;
    }

    .portfolio .portfolio-flters li {
        font-size: 14px;
    }
}

@media (max-width: 425px) {
    .portfolio .portfolio-flters {
        margin-left: -20px;
    }

    .portfolio .portfolio-wrap .portfolio-info h4 {
        font-size: 12px;
    }
}

@media (max-width: 375px) {
    .portfolio {
        padding-bottom: 40px;
    }

    .portfolio .section-title h2 {
        font-size: 12px;
    }

    .portfolio .portfolio-flters {
        display: flex;
        align-items: center;
        justify-items: center;
        margin-left: -15px;
    }

    .portfolio .portfolio-wrap .portfolio-info h4 {
        font-size: 12px;
    }
}

@media (max-width: 320px) {
    .portfolio {
        padding-bottom: 40px;
    }

    .portfolio .section-title h2 {
        font-size: 12px;
    }

    .portfolio .section-title h2::after {
        margin-left: 165px;
        margin-top: -6px;
    }

    .portfolio .portfolio-flters {
        display: flex;
        align-items: center;
        justify-items: center;
        font-size: 12px;
        padding: 8px 15px;
        margin-left: -25px;
    }
}

/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/
/* .modal-dialog {
    max-width: 800px;
    margin: 30px auto;
}

.modal-body {
    position: relative;
    padding: 0px;
} */

.close {
    position: absolute;
    right: -30px;
    top: 0;
    z-index: 999;
    font-size: 2rem;
    font-weight: normal;
    color: #fff;
    opacity: 1;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    border-top: 2px solid #e5e5e5;
}

#footer .footer-top {
    padding: 50px 0 0px 0;
    /* background: #000000; */
}

#footer .footer-top a img {
    width: 75%;
    padding: 0 0 20px 0;
}

#footer .footer-top p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: black;
}

#footer .footer-top h4 {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #0000ff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links h4 {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #0000ff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #0000ff;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: black;
    transition: 0.3s;
    display: inline-block;
    line-height: 1.5;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #0000ff;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #0000ff;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: white;
    color: #0000ff;
    text-decoration: none;
}

#footer .footer-bottom {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 15px;
    background: #0000ff;
    color: #fff;
}

#footer .copyright {
    background: #0000ff;
    text-align: center;
    padding-top: 24px;
    padding-bottom: 24px;
    color: white;
}

@media (max-width: 1080px) {
    #footer .footer-top {
        display: none;
    }
    #footer .footer-top .footer-links {
        display: none;
    }
    #footer .copyright {
        text-align: center;
        float: center;
    }
}

/* Scrollbar Width */
::-webkit-scrollbar {
    width: 10px;
}

/* Scrollbar Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Scrollbar Handle */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 50px;
}

/* Scrollbar Handle on Hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Section Fasilitas */

.section-fasilitas {
    padding-bottom: 40px;
}

.section-fasilitas h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
    font-family: "Poppins", sans-serif;
}

.section-fasilitas h2::after {
    content: "";
    width: 60px;
    height: 1px;
    display: inline-block;
    background: #0000ff;
    margin: 4px 10px;
}

.section-fasilitas p {
    margin: 0;
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #0000ff;
}

#hero-tem {
    width: 100%;
    height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)),
        url("../img/prodi/tem.jpg") center/cover no-repeat;
    padding: 0;
}
#hero-ti {
    width: 100%;
    height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)),
        url("../img/prodi/isntrumentasi.jpg") center/cover no-repeat;
    padding: 0;
}
#hero-trpe {
    width: 100%;
    height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)),
        url("../img/prodi/trpe.jpg") center/cover no-repeat;
    padding: 0;
}
#hero-tre {
    width: 100%;
    height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)),
        url("../img/prodi/tre.jpg") center/cover no-repeat;
    padding: 0;
}
#hero-tm {
    width: 100%;
    height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)),
        url("../img/prodi/tm.jpg") center/cover no-repeat;
    padding: 0;
}
#hero-trr {
    width: 100%;
    height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)),
        url("../img/prodi/trr.jpg") center/cover no-repeat;
    padding: 0;
}

.hero-prodi {
    width: 50%;
    text-align: center;
}
.hero-prodi h2 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-prodi p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 100px;
}

/* Tablet */
@media (max-width: 992px) {
    .hero-prodi {
        width: 75%;
    }

    .hero-prodi h2 {
        font-size: 32px;
    }

    .hero-prodi p {
        font-size: 17px;
        margin-bottom: 70px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-prodi {
        width: 90%;
    }

    .hero-prodi h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-prodi p {
        font-size: 16px;
        margin-bottom: 50px;
    }
}

/* Mobile kecil */
@media (max-width: 576px) {
    .hero-prodi {
        width: 95%;
    }

    .hero-prodi h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .hero-prodi p {
        font-size: 15px;
        margin-bottom: 40px;
        line-height: 1.6;
    }
}

.berita-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.berita-card .card-img-top {
    height: 230px;
    /* position: relative; */
    object-fit: cover;
    transition: 0.3s;
    z-index: 1;
}

.berita-card:hover {
    cursor: pointer;
}

.berita-card:hover .card-img-top {
    transform: scale(1.1);
}

.berita-card .card-body {
    background: #fff;
    padding: 1.3rem;
    z-index: 2;
}

.berita-card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.berita-card:hover .card-title {
    color: #0000ff;
}

.berita-card .card-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Maksimal 2 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.6;
    min-height: calc(1.6em * 2); /* Tinggi tetap 2 baris */
}

/* ===========================
   Custom Penelitian
=========================== */

.custom-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.custom-pagination a,
.custom-pagination span {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid #dee2e6;
    background: #fff;
    color: #333;
    font-weight: 600;
    transition: 0.25s;
}

.custom-pagination a:hover {
    background: #0000ff;
    color: #fff;
    border-color: #0000ff;
}

.custom-pagination .active {
    background: #0000ff;
    color: #fff;
    border-color: #0000ff;
}

.custom-pagination .disabled {
    background: #f8f9fa;
    color: #adb5bd;
    cursor: not-allowed;
}

.custom-pagination a,
.custom-pagination span {
    user-select: none;
}

/* custom badge */

/* Gabungkan dengan class dasar .badge dari Bootstrap */
.badge-modern-soft {
    padding: 0.5em 0.85em;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    border-radius: 6px; /* Sudut agak kotak tapi halus, khas UI modern */
    text-transform: uppercase;
}

/* Varian Warna */
.badge-modern-soft.bg-primary {
    background-color: rgba(13, 110, 253, 0.12) !important;
    color: #0d6efd !important;
}

.badge-modern-soft.bg-success {
    background-color: rgba(25, 135, 84, 0.12) !important;
    color: #198754 !important;
}

.badge-modern-soft.bg-danger {
    background-color: rgba(220, 53, 69, 0.12) !important;
    color: #dc3545 !important;
}

.badge-modern-soft.bg-warning {
    background-color: rgba(255, 193, 7, 0.15) !important;
    color: #b58100 !important; /* Dibuat agak gelap sedikit agar kontras */
}
