  :root {
            
			--header-height:50px;
			--main-bg:#2e3a59;
			--bg-weak:#ffffff;
			--bg:#f7f7f7;
			--bg-stronger:#f2f2f2;
			--primary-color: #4a6bff;
            --secondary-color: #f8f9fa;
            --text-color: #333;
            --light-text: #777;
			--default-bg:linear-gradient(100deg, #3f68b5, #113c8f);
			--default-bg2:#729ae8;
			--default-bg:linear-gradient(to right, #3f68b5 25%, #113c8f 100%);
			--default-bg-r:linear-gradient(to right, #113c8f 25%, #3f68b5 100%);
			
			--bg-stronger-rgb:242, 242, 242;
			--bg-strongest:#afc4c9;
			--bg-strongest-rgb:175,196,201;
			
			
			--text-shadow2:1px 1px 0px black,0 0 2px #f9b233,1px 2px 3px rgba(0, 0, 0, 0.5);
			--text-shadow3:1px 1px 1px #000,0 0 3px #000;
			--text-shadow4:1px 1px 0px #000,2px 2px 1px rgba(0, 0, 0, 0.6);
			
			--text-shadow: 0.5px 0.5px 0.5px rgba(255, 255, 255,0.9),1px 1px 1.2px rgba(255, 255, 255,0.8),1.5px 1.5px 1.5px rgba(255, 255, 255,0.7);
			--text-shadow-r:0px 0px 0 #0D0D0D,0px 1px 0 #0D0D0D,1px 1px 0 #0D0D0D,1px 2px 0 #171717,2px 2px 0 #171717,2px 3px 1px black,3px 3px 2px black,3px 3px 3px white;
			--text-shadow-r2:0px 0px 0 #0D0D0D,0px 1px 3px #0D0D0D,1px 1px 5px #0D0D0D,1px 2px 0 #171717,2px 2px 5px #171717,2px 3px 5px black,3px 3px 2px black,3px 3px 3px white;
			--text-shadow-soft: 1px 1px 2px rgba(0,0,0,0.3), 2px 2px 4px rgba(0,0,0,0.2);
			--menu-text-shadow:0px 0px 0 #0D0D0D,0px -1px 0 #0D0D0D,1px -1px 0 #0D0D0D,1px -2px 0 #171717,2px -2px 0 #171717,2px -2px 1px black,3px -2px 2px black,3px -2px 3px white;
			--text-shadow-w :0px 1px 0 #999,1px 1px 0 #888,2px 2px 1px #666,3px 3px 2px rgba(0, 0, 0, 0.3);
			--text-shadow-w2:0 1px 1px #bbb,1px 1.5px 1.5px #999,1.5px 2px 2px rgba(0, 0, 0, 0.35);
			--text-shadow-w3:0 0 2px rgba(0, 0, 0, 0.2),0 0 4px rgba(0, 0, 0, 0.3),0 0 6px rgba(0, 0, 0, 0.5);
			



        }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      display: flex;
      flex-direction: column;
	  height: 100dvh;
	  background: var(--default-bg);
	  box-sizing: border-box;
    }

    .mobile-header {
		display: none;
		color: white;
		padding: 15px;
		justify-content: space-between;
		align-items: center;
		position: fixed;        /* menempel di atas layar */
		top: 0;                 /* posisinya di bagian atas */
		left: 0;
		right: 0;
		z-index: 1;          /* di atas elemen lain */
		background: var(--default-bg);
    }

    .menu-toggle {
      background: none;
      border: none;
      color: white;
      font-size: 24px;
      cursor: pointer;
	  margin-right:5px;
    }

    .menu-container {
       display: flex;
  flex: 1;
    }

    .menu {
      width: 250px;/************************************************************************************				MENU WIDTH*/
      
      color: white;
      padding: 20px 0;
      transition: transform 0.3s ease;
      margin: 10px;
      border-radius: 10px;
	  text-shadow:var(--text-shadow-r);
	  
	  user-select: none;
	  -webkit-user-select: none; /* Safari */
	  -moz-user-select: none;    /* Firefox */
	  -ms-user-select: none;     /* IE/Edge */
    }

    .content {
      flex: 1;
      padding: 10px;
      overflow:hidden;
	  height:100dvh;
    }
	
	.PCHedaer {
      color: white;
	  width: calc(100% + 20px); 
	  margin-left: -10px;
	  margin-top: -10px;  
	  padding: 10px; 
	  padding-bottom:5px;
	  
	  display: flex;
		align-items: center; /* supaya vertikal sejajar tengah */
		gap: 15px;
		
		text-shadow:var(--text-shadow-r);
    }
	
	.content2 {
		border:1px solid black;
		border:2px solid var(--bg-stronger);
		height:calc(100% - 48px);
		width: calc(100% + 10px);
		border-radius: 10px 0 0 0; /* Top-left 10px, lainnya 0 */
		background-color: var(--secondary-color);
		background: #e6ecfa;
		height:calc(100dvh - 68px);
		overflow:hidden;
		box-shadow: inset 6px 6px 10px 0 rgba(0, 0, 0, 0.7),inset -5px -5px 10px -3px rgba(74, 66, 66, 0.25); 
	}

    .menu-header {
      padding: 1px 0px 10px 15px;
	  text-shadow:var(--text-shadow-r);  
	  height:50px;
	  vertical-align:middle;
    }

    .menu-item {
      padding: 10px 20px;
      cursor: pointer;
      transition: background-color 0.3s;
      display: flex;
      align-items: center;
      gap: 3px;
	  color:white	;
	  border-radius: 5px;
    }
	
	.mobile-visible > .menu-items {
		background-color: var(--secondary-color);
		background: var(--default-bg);
		border-top:1px solid white;
		border-bottom:1px solid white;
		margin-left:-3px !important;
		padding-top:20px;
		padding-bottom:20px;
	}
    .menu-item i {
      width: 22px;
      text-align: left;
      font-size: 1em;
      flex-shrink: 0;
    }

    .menu-item:hover {
      background-color: #34495e;
	  	background-color: var(--secondary-color);
		background: #e6ecfa;
		background: #4c9cc2;
	  border-radius: 5px;
    }
	
	.submenu-arrow {
	  transition: transform 0.3s ease;
	  transform: scaleX(-1);
	}
	.menu-item.active .submenu-arrow {
	  transform: rotate(180deg);
	  text-shadow:none;
	}
	.submenu-arrow2 {
	  
	  transition: transform 0.3s ease;
	  opacity: 1;
	  visibility: visible;
	  transition: opacity 1s ease, visibility 1s ease;
	  
	  
	  
	}
	.menu-item.active > .submenu-arrow2 {
	  opacity: 0;
	  visibility: hidden;
	  transition: opacity 0.5s ease, visibility 0.5s ease;
	}

    .has-submenu {
      display: flex;
      flex-direction: column;
    }

    .has-submenu > .submenu {
      margin-top:-5px !important;/*my setting*/
    }
	
	.submenu > .has-submenu:not(:first-child) {
      margin-top:5px !important;/*my setting*/
    }
	
	.has-submenu .submenu .has-submenu .submenu  > .menu-item:first-child {
		margin-top:5px;
	}
	.has-submenu .submenu .has-submenu .submenu  > .menu-item:last-child {
		margin-bottom:15px;
	}
	.has-submenu .submenu > .menu-item:not(:first-child) {
	
      margin-top:3px !important;/*my setting*/
    }
	
	.has-submenu .submenu > .menu-item {
      margin-left:-3px !important;/*my setting*/
    }

    .submenu {
      display: none;
      padding-left: 30px;
      flex-direction: column;
      width: 100%;
    }

    .submenu .menu-item:hover {
      
    }

    .submenu .menu-item {
      padding: 8px 15px;
      border-radius: 5px;
    }

    .menu-item.active + .submenu {
      display: flex;
    }

    .user-logged-in .login-item {
      display: none;
    }

    .user-logged-in .user-menu {
      display: block;
    }

    .user-menu {
      display: none;
    }
	
	.home-class {
		padding:8px 0 0 8px;
	}
	.div-cont {
		border:1px solid var(--bg-weak);
		padding:10px 5px 2px 7px;
		box-sizing: border-box;
		box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.7); 
		border-top-left-radius: 10px; /* bisa disesuaikan */
		margin:10px 5px 5px 10px;
		height: calc(100% - 17px);
	}

    @media (max-width: 400px) {
		#MBHeader {
			font-size	:20px !important;
			size		:20px !important;;
		}
		.home-class {
			/*height:500px !important;overflow:hidden;*/
		}
	}
	@media (max-width: 800px) {
      .home-class {
		  height:calc(100dvh - 50px);
		  overflow-y:auto;
		  padding:0px;
	  }
	  .div-cont {
		  height:calc(100dvh - 50px);
		  overflow-y:auto;
	  }
	  .mobile-header {
        display: flex;
		padding:5px;
		padding-left:10px;
		height:50px;
		
		display: flex;
		align-items: center;
		justify-content: space-between;
		/*padding: 8px;
		/*background-color: #333; /* atau sesuaikan */
		color: white;
		/*background-color:red !important;		background:red !important;*/
      }
		.mobile-header img {
			height: 50px;
			margin-left: 0; /* biar nempel ke button */
		}
		
		#MBHeader {
		  flex: 1;
		  text-align: center;
		  margin: 0;
		  text-shadow: var(--text-shadow-r);
		}
		
		.mobile-header > div:last-child {
  width: 24px; /* spacer kanan */
}
      .menu {
        position: fixed;
        top: 0;
        left: -10px;
        bottom: 0;
        z-index: 350;
        transform: translateX(-100%);
      }

      .menu-header {

		text-shadow:var(--text-shadow-r);
      }

      .menu.mobile-visible {
        transform: translateX(0);
        left: -10px;
		top:-1px;
        margin: 2px;
		padding-left:10px;
		background-color: #153dad;
		background: grey;
		border:0.5px solid white;
		width:75%;
		max-width:275px;
		height:99.5%;
		box-shadow: 5px 5px 3px rgba(31, 41, 69, 0.5);
		overflow-y:auto;
      }
	  .stickier {
		  padding-left:0px !important;
	  }
      .content {
        margin-left: 0;
      }

      .overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 325;
        display: none;
      }

      .overlay.visible {
        display: block;
      }
    }

    
	
	
	.features {
			padding-bottom:70px;
		}
    @media (max-width: 820px) {
		.PCHedaer {
			margin: 0;
			padding: 0;
			display: none;
		}
		.div-cont.s {
			padding:5px 5px 5px 3px;
		}
		.div-cont {
			border:none;
			padding:0;
			margin:0;
			box-shadow:none;
			width:100%;
			/*border:1px solid var(--bg-weak);
			padding:10px 5px 2px 7px;
			box-sizing: border-box;
			box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.7); 
			border-top-left-radius: 10px; /* bisa disesuaikan 
			margin:10px 5px 5px 10px;
			height: calc(100% - 17px);*/
		}
		.content2 {
			margin:0;
			margin-top:40px;
			border:none;
			height:calc(100vh - 50px);
			width: calc(100% + 20px);
			margin-left:-10px;
			border-radius:0px;
			padding:0;
			
			box-shadow:none;
		}
		.db_pd {
			padding:4px;
		}
		.features {
			padding-bottom:20px;
		}
    }
	
	    .heros {
            padding:15px;
            text-align: center;
            background-color: var(--secondary-color);
            flex: 1;
			border-radius:10px;
			margin-bottom:10px;
        }
		.hero {
            padding: 15px;
            text-align: center;
            background-color: var(--secondary-color);
            flex: 1;
			border-radius:10px;
			margin-bottom:10px;
        }
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--light-text);
            max-width: 700px;
            margin: 0 auto 30px;
        }
		
		.features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
			
        }

        .feature-card {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
			border:0.3px solid #e6ebf5;
			cursor:pointer;
        }
		
		.feature-card:hover {
			box-shadow: 0 5px 15px rgba(249, 249, 249, 0.25);
			border:0.3px solid #d5e0f5;
			background-color:#b9f0f0;
		}

        .feature-card i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .feature-card h3 {
            margin-bottom: 15px;
        }
		.section-title {
            text-align: center;
            margin-bottom: 30px;
        }

        .section-title h2 {
            font-size: 2rem;
            margin-bottom: 15px;
        }
		.sub-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
		/* Footer */
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 15px 0;
            text-align: center;
            flex-shrink: 0;
			width:100vw;
			margin-left:0px;
			margin-bottom:-11px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            list-style: none;
            margin-bottom: 15px;
        }

        .footer-links li {
            margin: 0 15px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
		@media (min-width: 1024px) {
            /* Mobile Styles */		
			footer {
				position: fixed;
				bottom: 0;
				width: 100%;
				left:0;
				margin-left:0px;
				margin-bottom:0px;
			}
			.container {
				padding-bottom:50px;
			}
        }
		.btn {
            cursor:pointer;
			display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.3s;
        }

        .btn:hover {
            background-color: #3a56d4;
        }
		
		.noscroll {
			overflow: hidden !important;
		}
  

.futuristic-gallery-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 20px;
  background: linear-gradient(135deg, #ffffff, #e3f2fd);
  background: #e6ecfa;;
  border: 1px solid #dee2e6;
  box-shadow: 0 0 20px rgba(33, 150, 243, 0.1);
  margin-bottom:20px;
  border-top-left-radius:10px;
}

.futuristic-gallery {
  display: flex;
  white-space: nowrap;
}

.gallery-track {
  display: flex;
  animation: infinite-scroll 30s linear infinite;
}

.gallery-track img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-right: 16px;
  box-shadow: 0 0 12px rgba(33, 150, 243, 0.2);
  transition: transform 0.3s;
  cursor:pointer;
}

.gallery-track img:hover {
  transform: scale(1.15);
}

@keyframes infinite-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 800px) {
  .gallery-track img {
    width: 220px;
    height: 130px;
    margin-right: 12px;
  }
  body {
	  overflow-y: scroll;     /* paksa scroll walau tidak dibutuhkan */
	  min-height: calc(100dvh + var(--header-height));
  }
}

td[lt] {
	vertical-align: top !important;
	text-align:left !important;
}
td[lc] {
	vertical-align: middle !important;
	text-align:left !important;
}
td[rt] {
	vertical-align: top !important;
	text-align:right !important;
}
td[ct] {
	vertical-align: top !important;
	text-align:center !important;
}
td[cc], th[cc] {
	vertical-align: middle !important;
	text-align:center !important;
}

.dropdown {
	
	background:url(images/down.png)  no-repeat right #ddd;
	background-position-x: calc(100% - 8px);
	background-position-y: calc(100% - 5px);
	background-z-index:9999;
	
   -webkit-appearance: none;
   
    text-overflow: ellipsis;
	height:40px;
	padding:1px 40px 0px 15px;
	
	border:1px solid var(--bg-weak);
	border-radius:10px;
	align:center;
	font-size:16px;
	color				: var(--font-color);
	
	-moz-box-shadow		: inset 3px 3px 3px var(--shadow-color);
    -webkit-box-shadow	: inset 3px 3px 3px var(--shadow-color);
    box-shadow			: inset 3px 3px 3px var(--shadow-color);
	background-color:var(--bg-weak);
	border-color:#66afe9;
}
.dropdown:focus {
	border-color:#66afe9;
	outline:0;
	-webkit-box-shadow	: inset 3px 3px 3px var(--shadow-color);
	box-shadow			: inset 3px 3px 3px var(--shadow-color);
}

.dropdown::-moz-placeholder {
	color:#d5f7f5;
	background-color:#36454f;
}
.dropdown:-ms-input-placeholder{
	color:#d5f7f5;
	background-color:#36454f;
}

.dropdown::-webkit-input-placeholder{
	color:#d5f7f5;
	background-color:#36454f;
}
@media (max-width: 1024px) {
	.dropdown {
		width:250px !important;
	}
}

.form-edit label {
  margin-top: 10px;
  display: block;
  font-weight: bold;
  color:#666666;
}

.form-input {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-top: 5px;
}