
/* Desktop Version only*/
@media (min-width: 992px) {

/*  1. BAGIAN SEMUA NAVBAR MENU DESKTOP */
/*  Bagian Posisi Logo FMI  */
.navbar-brand {
	margin-left: 10px;
}
/*  Bagian Posisi Tombol Menu  */
ul {
	list-style: none;
	background: #05f2ab;
}
ul li {
	display: inline-block;
	position: relative;
}

ul li a{
	display: block;
	padding: 20px 25px;
	color: black;
	text-decoration: none;
	text-align: center;
	font-size: 16px;
}
ul li ul.dropdown1 li {
	display: block;
}
ul li ul.dropdown1 {
	width: 100%;
	background: white;
	position: absolute;
	z-index: 999;
	display: none;
}

ul li a:hover {
	background: white;
}

ul li:hover ul.dropdown1 {
	display: block;
}

.nav-item{
	font-size: 14px; 
	margin-left: 300px;;
	margin-top: 2px;

}

/* tombol Free Consultant*/
nav .tombol{
	text-transform: uppercase;
	font-size: 12px;
	border-radius: 20px;
	}

/* Icon Instagram*/
.instagram-icon img {
  width: 40px; /* Ukuran icon */
  height: 40px;
  transition: transform 0.3s ease;
  margin-left: 12px;
}

.instagram-icon img:hover {
  transform: scale(1.1); /* Efek membesar saat hover */
}

/* Icon youtube*/
.youtube-icon img {
  width: 50px; /* Ukuran icon */
  height: 50px;
  transition: transform 0.3s ease;
  margin-left: 4px;
}

.youtube-icon img:hover {
  transform: scale(1.1); /* Efek membesar saat hover */
}
/* Bagian Khusus tombol menu*/
        .menu {
            display:block;
            list-style: none;
            position: relative;
			background: #ffffff;
			padding-left: 40px;
        }
        .menu-item {
            position:sticky;
            flex:auto;
            text-align: center;
			width: 115px;
        }
        .menu-item:hover {
            background: #037bf4 !important;
        }
	/* Main Menu Links */
        .menu-link {
            color: #0a0a0a;
            text-decoration: none;
            display: block;
            padding: 10px 15px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .menu-item:hover .menu-link {
            color: #0e0d0d;
            transform: translateY(-2px);
			background: #8fcaf1 !important;
        }
	/* Dropdown Submenu */
        .submenu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #faf9f9;
            border-radius: 0 0 10px 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 100;
        }
        .menu-item:hover .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
	/* Submenu Items */
        .submenu-item {
            text-align: left;
        }

        .submenu-item:last-child {
            border-bottom: none;
        }

        .submenu-link {
            color: #2c3e50;
            text-decoration: none;
            display: block;
            padding: 15px 20px;
            font-size: 12px;
            transition: all 0.3s ease;
        }

        .submenu-link:hover {
            background: #2051a5;
            color: #fbfbfb;
			font-weight: bold;
            padding-left: 50px;
			padding-right: 80px;
        }

    /* Animation Indicator */
        .menu-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: #3498db;
            transition: all 0.3s ease;
        }

        .menu-item:hover::after {
            width: 100%;
            left: 0;
        }
	/* Saat dropdown pemilihan bahasa di hover*/
   		.dropdown-item:hover {
            background: #2051a5;
            color: #f2ecec;
			font-weight: bold;
         
        }

 /*2. Bagian Judul Gallery*/
.header {
  background-image: url('img/Background_02.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  text-align: center;
  color: white;
  position: relative;
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 60, 120, 0.6); /* filter biru transparan */
  z-index: 1;
}

.header h1 {
  position: relative;
  z-index: 2;
  font-size: 40px;
  font-weight: bold;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}


/*3. Body Gallery*/
    .body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      background: #f7f7f7;
      color: #333;
    }

    .section-title {
      font-size: 20px;
      margin: 40px auto 20px;
      max-width: 1200px;
      padding: 0 20px;
      font-weight: 600;
      color: #222;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      padding: 0 20px 40px;
      max-width: 1200px;
      margin: auto;
      margin-bottom: -40px;
    }

    .gallery img {
      width: 80%;
      min-height: 80px;
      max-height: 160px;
      object-fit:contain;
      border-radius: 8px;
      padding: 5px;
      cursor: pointer;
      transition: transform 0.2s ease;
      
    }

    .gallery img:hover {
      transform: scale(1.13);
    }

    /*4. Lightbox Modal */
    .lightbox {
      display: none;
      position: fixed;
      z-index: 9999;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.95);
      justify-content: center;
      align-items: center;
    }

    .lightbox.active {
      display: flex;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 90%;
      object-fit: contain;
    }

    .close-btn, .prev-btn, .next-btn {
      position: absolute;
      color: #fff;
      font-size: 2.5rem;
      background: rgba(0, 0, 0, 0.4);
      padding: 10px;
      border-radius: 50%;
      cursor: pointer;
      user-select: none;
    }

    .close-btn {
      top: 20px;
      right: 30px;
    }

    .prev-btn {
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
    }

    .next-btn {
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
    }

    .fade-in {
    opacity: 1 !important;
    transition: opacity 0.4s ease-in-out;
}
    
/*5. Footer*/
.container-fluid-copyright img{
	width: 300px;
	height: 100px;
	margin-bottom: 2px;
	margin-top: 20px;
	margin-left: 30px;
}
.container-fluid-copyright h5{
	font-size: 12px;
	margin-top: 80px;
	margin-right: -700px;
}
.container-fluid-copyright {
	margin-bottom: 2px;
	background-color: #feffff
}
.footer-text {
	color: black;
	font-size: 12px;
	width: 1200px;
    margin-left: 200px;

}
}
 
/* ---------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------- */
/* B. Bagian Responsif di Layar HP */
@media (max-width: 991.98px) {
/* 1. Bagian Nav bar Menu dan Tombol Humberger */
    .navbar-collapse {
        position: fixed;
		color: #0a0a0a;
        top: 70px;
        left: 0;
        right: 0;
        background: rgb(255, 255, 255);
        padding: 0 20px; /* Ubah padding top/bottom menjadi 0 */
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        max-height: 20px;
		min-height: 20px;
        overflow: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        display: block !important; /* Ubah ke block penting */
        opacity: 0;
        visibility: hidden;
    }
    
	navbar-collapse .menu-item {
		padding: 20px 20px;
		min-height: 20px;
	}
    .navbar-collapse.show {
        max-height: calc(100vh - 70px);
        padding: 20px; /* Kembalikan padding saat ditampilkan */
        opacity: 1;
        visibility: visible;
        overflow-y: auto;
    }
    
    .menu {
        flex-direction:column;
        width: 80%;
        margin: 0;
        padding: 0;
		color: #0e0d0d;
    }
    .menu-link, .submenu-link {
    text-decoration: none !important;
	 color: #090909 !important; /* Warna abu-abu gelap */
	}
	.menu-link:hover {
    color: #0a0a0a !important; /* Warna pink */
	font-size: 18px;
	font-weight: bold;

	}
	.submenu-link:hover {
    color: #070707 !important; /* Warna hijau */
	font-size: 18px;
	font-weight: bold;
	}
    .menu-item {
        margin: 10px 0;
		color: #0e0d0d;
        width: 100%;
        display: block !important; /* Pastikan semua item ditampilkan saat menu dibuka */
    }
    
	/* Tambahkan Garis pembatas tiap menu */
	    .menu-item {
        border-bottom: 1px solid #bdc8d3; /* Garis horizontal antar item */
        padding: 4px 0;
		width: 600px;
    }
    
    .d-flex.align-items-center {
    flex-direction: column;
    width: 100%;
    margin-top: 5px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    align-items: flex-start !important;
  }

  .d-flex {
	display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
  }
  
  .tombol {
    flex: 1;
    padding: 10px 15px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
  }

   .tombolmore {
    display: none !important; /* Pastikan semua item ditampilkan saat menu dibuka */
	
  }
	.social-media-wrapper {
    display: flex;
    gap: 10px;
  }

    .instagram-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
  }
  
  .youtube-icon {
	width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
  }
  .instagram-icon img {
	width: 40px;
    height: 40px;
	 }
  .youtube-icon img {
	width: 45px;
    height: 45px;
	 }

  .instagram-icon :hover {
    background-color: #e9ecef;
    transform: scale(1.05);
  }
   .youtube-icon :hover {
    background-color: #e9ecef;
    transform: scale(1.05);
  }
/*2. Bagian Judul Gallery*/
.header {
  background-image: url('img/Background_02.jpg');
  background-size: cover;
  background-position: center;
  padding: 40px 20px;
  text-align: center;
  color: white;
  position: relative;
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 60, 120, 0.6); /* filter biru transparan */
  z-index: 1;
}

.header h1 {
  position: relative;
  z-index: 2;
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}


/*3. Body Gallery*/
    .body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      background: #f7f7f7;
      color: #333;
    }

    .section-title {
      font-size: 20px;
      margin: 40px auto 20px;
      max-width: 1200px;
      padding: 0 20px;
      font-weight: 600;
      color: #222;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      padding: 0 20px 40px;
      max-width: 1200px;
      margin: auto;
      margin-bottom: -40px;
    }

    .gallery img {
      width: 80%;
      min-height: 80px;
      max-height: 160px;
      object-fit:contain;
      border-radius: 8px;
      padding: 5px;
      cursor: pointer;
      transition: transform 0.2s ease;
      
    }

    .gallery img:hover {
      transform: scale(1.13);
    }

    /*4. Lightbox Modal */
    .lightbox {
      display: none;
      position: fixed;
      z-index: 9999;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.95);
      justify-content: center;
      align-items: center;
    }

    .lightbox.active {
      display: flex;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 90%;
      object-fit: contain;
    }

    .close-btn, .prev-btn, .next-btn {
      position: absolute;
      color: #fff;
      font-size: 2.5rem;
      background: rgba(0, 0, 0, 0.4);
      padding: 10px;
      border-radius: 50%;
      cursor: pointer;
      user-select: none;
    }

    .close-btn {
      top: 20px;
      right: 30px;
    }

    .prev-btn {
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
    }

    .next-btn {
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
    }

    .fade-in {
    opacity: 1 !important;
    transition: opacity 0.4s ease-in-out;
}
    

/* Bagian Footer */
.container-fluid-copyright h5{
	width: 377px;
	font-size: 10px;
	text-align: center;
}
.container-fluid-copyright p{
	width: 377px;
	font-size: 10px;
	text-align: center;
}
.footer-text {
	color: black;
	font-size: 12px;
	width: 450px;
	text-align: center;

}
}

    