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

a {
  color: #af404f;
  text-decoration: none;
}

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

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

/*--------------------------------------------------------------
# Back to Top Button
--------------------------------------------------------------*/
.bubble-button {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 999;
  display: flex; 
  flex-direction: column; 
  opacity: 0; 
  transition: opacity 0.4s ease;
}

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

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

.bubble-options {
  display: none;
  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; 
}

.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: #af404f;
  color: #fff;
  transition: all 0.2s;
}

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

.show-bubble-button { 
  display: flex;
}

/* Bubble Notification */
.bubble-whatsapp {
  position: relative; 
}

.bubble-notification {
  background-color: #f1c40f; 
  color: #333;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: bold; 
  display: none;
  position: absolute;
  right: 115%; 
  top: 50%;
  transform: translateY(-50%);
  margin-right: 10px; 
  white-space: nowrap;
  text-align: center;
}

.bubble-whatsapp:hover .bubble-notification {
  display: block; 
}

.bubble-notification::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 6.8rem;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #f1c40f;
}

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

@media (max-width: 425px) {
  .toggle-button {
    font-size: 16px;
    width: 35px;
    height: 35px;
    background: #af404f;
  }
  
  .bubble-options {
    bottom: 35px;
  }

  .bubble-whatsapp i {
    font-size: 16px;
    width: 35px;
    height: 35px;
  }

  .back-to-top i {
    font-size: 16px;
    width: 35px;
    height: 35px;
  }

  .bubble-notification {
    padding: 8px 14px;
    font-size: 10px;
    top: 45%;
    right: 100%; 
  }

  .bubble-notification::before {
    content: '';
    top: 55%;
    left: 132px;
    margin-top: -4px;
    border-width: 5px;
  }
}

/*--------------------------------------------------------------
# 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;
  background-color: 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: #af404f;
}

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

/* Dropdown Styles */
.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: 2px 5px;
  font-size: 14px;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  background: rgba(175, 65, 79, 0.9);
  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 #af404f;
}

.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;
  }
}

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

.section-bg {
  background-color: #f3f5fa;
}

.section-bc {
  background-color: #fff;
}

.featured {
  margin-top: 70px;
}

.section-title {
  text-align: center;
}

.section-title h2 {
  font-family: "Jost", sans-serif;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #af404f;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background-color: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background-color: #af404f;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 20px;
  font-size: 18px;
}

@media (max-width: 1024px) {
  .section-title h2 {
    font-size: 28px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .section-title p {
    margin-bottom: 20px;
    font-size: 16px;
  }
}

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

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

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

  .section-title p {
    margin-bottom: 20px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 22px;
  }

  .section-title p {
    margin-bottom: 20px;
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Spesifikasi & Lokasi Komputer
--------------------------------------------------------------*/
.spesifikasi {
  padding-bottom: 50px;
}

.spesifikasi .spesifikasi-list {
  padding: 0 100px;
}

.spesifikasi .spesifikasi-list ul {
  font-family: "Poppins", sans-serif;
  padding: 0;
  list-style: none;
}

.spesifikasi .spesifikasi-list li+li {
  margin-top: 15px;
  line-height: 1.5;
}

.spesifikasi .spesifikasi-list li {
  position: relative;
  padding: 20px;
  background-color: #fff;
  border-radius: 4px;
}

.spesifikasi .spesifikasi-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.spesifikasi .spesifikasi-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #af404f;
}

.spesifikasi .spesifikasi-list .icon-show,
.spesifikasi .spesifikasi-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.spesifikasi .spesifikasi-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.spesifikasi .spesifikasi-list .icon-show {
  display: none;
}

.spesifikasi .spesifikasi-list a.collapsed {
  color: #192a3d;
  transition: 0.3s;
}

.spesifikasi .spesifikasi-list a.collapsed:hover {
  color: #af404f;
}

.spesifikasi .spesifikasi-list a.collapsed .icon-show {
  display: inline-block;
}

.spesifikasi .spesifikasi-list a.collapsed .icon-close {
  display: none;
}

.table {
  border-collapse: collapse; 
  width: 100%;
  font-family: "Poppins", sans-serif;
}

.table th,
.table td {
  border: 1px solid #dee2e6; 
  padding: 8px;
  vertical-align: middle; 
}

.table thead th {
  background-color: #f8f9fa; 
  font-weight: bold;
}

.table tbody tr:nth-child(even) {
  background-color: #f9f9f9; 
}

.table tbody tr:hover {
  background-color: #f1f1f1;
}


@media (max-width: 1024px) {
  .spesifikasi {
    padding: 10px;
  }

  .spesifikasi .spesifikasi-list {
    padding: 0;
  }
}

@media (max-width: 425px) {
  .spesifikasi .spesifikasi-list li {
    padding: 20px;
  }

  .spesifikasi .spesifikasi-list {
    font-size: 12px;
  }

  .spesifikasi .spesifikasi-list a {
    font-size: 12px;
  }

  .spesifikasi .section .download-silabus {
    font-size: 12px;
  }
  
  .spesifikasi .section .download-akreditasi {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Peluang Kerja Lulusan
--------------------------------------------------------------*/
.services {
  background-color: #f3f5fa;
  padding-bottom: 0;
}

.services .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  margin-bottom: 25px;
  border-radius: 5px;
  transition: all ease-in-out 0.4s;
  background-color: #fff;
}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon i {
  color: #af404f;
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.services .icon-box h4 a {
  color: #192a3d;
  transition: ease-in-out 0.3s;
}

.services .icon-box a:hover {
  color: #d34155;
}

.services .icon-box p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
  color: #af404f;
}

@media (max-width: 1030px) {
  .services {
    padding-bottom: 30px;
  }

  .services .icon-box {
    margin-bottom: -5px;
  }
}

@media (max-width: 425px) {
  .services {
    padding-bottom: 20px;
  }

  .services .icon-box {
    padding: 25px 25px;
    margin-bottom: 0;
  }
  
  .services .icon-box .icon i {
    font-size: 24px;
  }

  .services .icon-box h4 {
    font-size: 14px;
    font-weight: 600;
  }

  .services .icon-box p {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# PIC Laboratorium
--------------------------------------------------------------*/
.team {
  padding-bottom: 80px;
}

.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background-color: #fff;
  transition: 0.5s;
  height: 100%;
}

.team .member .avatar-img {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.team .member .avatar-img img {
  width: 90%;
  overflow: hidden;
  border-radius: 50%;
  transition: ease-in-out 0.3s;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
  font-family: "Poppins", sans-serif;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #37517e;
}

.team .member h5 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #37517e;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background-color: #cbd6e9;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .member-info {
  width: 450px;
  margin-left: -25px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background-color: #eff2f8;
}

.team .member .social a i {
  color: #37517e;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background-color: #af404f;
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a+a {
  margin-left: 8px;
}

@media (max-width: 425px) {
  .team {
    padding: 10px;
  }
  
  .team .member h4 {
    font-size: 16px;
  }
  
  .team .member h5 {
    font-size: 14px;
  }

  .team .member p {
    font-size: 12px;
  }

  .tata-usaha {
    padding-bottom: 50px;
  }
}

/*--------------------------------------------------------------
# Galeri Laboratorium
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  /* font-weight: 500; */
  padding: 12px 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: #af404f;
  color: #fff;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(55, 81, 126, 0.8);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #47b2e4;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  background-color: #af404f;
}

#footer .footer-top {
  padding: 60px 0 0px 0;
  background-color: #000000; /*#14151c*/
}

#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: white;
}

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

#footer .footer-top .footer-links h4 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #af404f;
  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: #af404f;
  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: white;
  transition: 0.3s;
  display: inline-block;
  line-height: 1.5;
}

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

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #af404f;
  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: #af404f;
  text-decoration: none;
}

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

#footer .copyright {
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px;
  color: white;
  float: center;
}

@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-color: #f1f1f1;
}

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

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