
        * {
            margin: 0;
            padding: 0;
        }
        body {
            background: #fff;         
            font-family: "Jura", sans-serif;
            font-weight: 500;
            font-size: 18px;
        }
		
		/* Navbar styles */
		.navbar {
			transition: background-color 0.3s ease, box-shadow 0.3s ease;
			background: rgba(255, 255, 255, 1);
			/*
			background: rgba(255, 255, 255, 0);
			*/
		}
        .navbar {
            background: rgba(255,255,255,1) !important;
            transition: background 0.3s ease;
            padding: 0.5rem 1rem;
			position: sticky;
			top: 0;
			z-index: 1000;
			/*
            backdrop-filter: blur(10px);
            background: rgba(255,255,255,0.0) !important;
			*/
        }
        .navbar-nav {
            font-weight: 600;
            gap: 1.5rem;
        }
        .nav-icons i {
            font-size: 1rem;
            cursor: pointer;
        }
        .navbar-brand img {
            height: 40px;
        }
		@media (max-width: 991px) {
		  .navbar {
			background: #ffffff !important;
			box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
		  }
		}
		@media (min-width: 992px) {
		  .navbar.scrolled {
			background: #ffffff !important;
			box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
		  }
		}

        /* Slider full screen */
        .owl-carousel {
            width: 100%;
			margin-top: -70px;
        }
        .owl-carousel .item img {
            width: 100%;
            height: 100vh;
            object-fit: cover;
        }

        /* Dots */
        .owl-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 5;
        }
        .owl-dots .owl-dot span {
            width: 12px;
            height: 12px;
            background: rgba(255,255,255,0.6);
            display: block;
            border-radius: 50%;
        }
        .owl-dots .owl-dot.active span {
            background: #6b8f87;
        }

        /* Nav arrows */
        .owl-carousel .owl-nav {
            position: absolute;
            bottom: 15px;
            right: 20px;
            display: flex;
            gap: 8px;
            z-index: 5;
        }
        .owl-carousel .owl-nav button {
            background: rgba(255,255,255,0.5) !important;
            color: #000 !important;
            border-radius: 10%;
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            border: none;
            cursor: pointer;
            font-size: 18px;
        }
        .owl-carousel .owl-nav button:hover {
            background: rgba(255,255,255,0.8) !important;
            color: #333 !important;
        }
		.text-justify {
			text-align: justify !important;
		}
		.text-right {
			text-align: right !important;
		}
		
		/* card wrapper — shadow + radius */
		.card-wrap {
			border-radius: 1rem;
			box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.12);
			transition: transform .18s ease, box-shadow .18s ease;
		}

		.card-wrap:hover {
			transform: translateY(-6px);
			box-shadow: 0 1.5rem 2.5rem rgba(0,0,0,0.22);
		}

		/* card content */
		.card-solid {
			height: 200px;
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			padding: 1.2rem;
			text-align: center;
		}

		.card-solid h5 {
			margin: 0;
			font-size: 1rem;
		}

		@media (max-width: 575.98px) {
			.card-solid { height: 180px; }
		}		
		
		footer {
			font-size: 16px;
		}
		footer a:hover {
			color: #6b8f87 !important;
		}
		footer .list-unstyled {
			padding-left: 0;
			margin: 0;
		}
		footer .list-unstyled li a {
			transition: color 0.3s ease;
		}
		footer .list-unstyled li a:hover {
			color: #6b8f87 !important;
		}
		
		
		

        .toggle-menu {
            border: 2px solid #2ba8e0;
            border-radius: 8px;
            display: inline-flex;
            overflow: hidden;
        }
        .toggle-menu button {
            border: none;
            padding: 8px 20px;
            background: transparent;
            color: #2ba8e0;
            font-weight: 600;
        }
        .toggle-menu button.active {
            background-color: #2ba8e0;
            color: #fff;
        }
        .toggle-menu button:focus {
            outline: none;
            box-shadow: none;
        }
        .btn-purple {
            background-color: #2ba8e0;
            color: white;
        }
        .btn-purple:hover {
            background-color: #7b1fa2;
            color: white;
        }

		.text-purple {
			color: #2ba8e0 !important;
		}
		.icon-col {
			min-width: 60px;
		}
		.title-col {
			min-width: 200px;
			text-align: right;
		}
		.divider {
			height: 60px;
			border-color: #cba7ff !important;
			margin: 0 20px;
		}

		<!-- Custom Button Styles -->
		.btn-purple {
			background-color: #5a34a1;
			border-color: #5a34a1;
		}
		.btn-purple:hover {
			background-color: #2ba8e0;
			border-color: #2ba8e0;
		}
		.btn-outline-purple {
			color: #2ba8e0;
			border-color: #2ba8e0;
		}
		.btn-outline-purple:hover {
			background-color: #2ba8e0;
			color: white;
		}
		.btn-green {
			background-color: #1bd741;
			border-color: #1bd741;
			color: #fff;
		}
		.btn-green:hover {
			background-color: #fff;
			border-color: #1bd741;
			color: #1bd741;
		}

		@media (max-width: 575.98px) {
			.title-col {
				min-width: 200px;
				text-align: left;
			}
			.btn-purple {
				width: 100%;
			}
			.btn-outline-purple {
				width: 100%;
			}
			.btn-green {
				width: 100%;
			}
		}
		
		.layarpenuh {
			width: 100%;
			height: calc(100vh - 72px);
			object-fit: cover;
		}
		
		.news-title { 
            font-family: "Jura", sans-serif;
            font-weight: 600;
            font-size: 18px;
		}
		
		.foto-caption { 
            font-family: "Jura", sans-serif;
            font-weight: 200;
            font-size: 16px;
		}
				
		.nav-link i {
			display: inline-block;
			width: 24px; /* same width for all icons */
			text-align: center;
		}
		
		
		
		/* Preloader Styles */
		#preloader {
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: #fff;
			z-index: 9999;
			display: flex;
			align-items: center;
			justify-content: center;
			transition: transform 0.8s ease, opacity 0.8s ease;
		}

		#preloader img {
			width: 150px;
			height: auto;
			animation: pulse 1.5s infinite;
		}

		@keyframes pulse {
			0%, 100% { transform: scale(1); opacity: 1; }
			50% { transform: scale(1.05); opacity: 0.8; }
		}

		/* Slide-down hidden state */
		#preloader.hide {
			transform: translateY(100%);
			opacity: 0;
		}

		svg {
		  width: 300px;
		  height: auto;
		}

		/* Stroke animation */
		.st0 {
		  fill: none;
		  stroke: #2ba8e0;
		  stroke-width: 3;
		  stroke-dasharray: 2000;
		  stroke-dashoffset: 2000;
		  animation: draw 5s ease forwards, fillWhite 0.3s ease forwards;
		  animation-delay: 0s, 2s; /* Start fill after stroke is complete */
		}

		@keyframes draw {
		  to {
			stroke-dashoffset: 0;
		  }
		}

		@keyframes fillWhite {
		  to {
			fill: #2ba8e0;
		  }
		}

		/* Fade-in logo image */
		image {
		  opacity: 0;
		  animation: fadeIn 1s ease forwards;
		  animation-delay: 2s;
		}

		@keyframes fadeIn {
		  to {
			opacity: 1;
		  }
		}
		
		/* Fade In Up Animation */
		@keyframes fadeInUp {
		0% {
		opacity: 0;
		transform: translateY(30px);
		}
		100% {
		opacity: 1;
		transform: translateY(0);
		}
		}

		.fade-in-up {
		animation: fadeInUp 2.0s ease-out forwards;
		}

		.about-img {
			border-radius: 15px; /* adjust the curve */
			box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7); /* x, y, blur, opacity */
		}
		
		.social-icon {
			display: flex;
			align-items: center;
			justify-content: center;
			width: 40px;
			height: 40px;
			background-color: #f0f0f0;
			border-radius: 50%;
			color: #333;
			text-decoration: none;
			font-size: 16px;
			transition: all 0.3s ease;
		}
		.social-icon:hover {
			background-color: #007bff;
			color: #fff;
			transform: scale(1.1);
		}
		
		.nav-link i {
			display: inline-block;
			width: 24px; /* same width for all icons */
			text-align: center;
		}
		.social-icon {
			display: flex;
			align-items: center;
			justify-content: center;
			width: 40px;
			height: 40px;
			background-color: #f0f0f0;
			border-radius: 50%;
			color: #333;
			text-decoration: none;
			font-size: 16px;
			transition: all 0.3s ease;
		}
		.social-icon:hover {
			background-color: #007bff;
			color: #fff;
			transform: scale(1.1);
		}