		html, body {
			min-height: 100%; 
			width: 100%;
			overflow-x: hidden;
			margin: 0;
			padding: 0;
		}       
		body {
			font-family: 'Poppins', sans-serif;
			margin: 0;
			padding: 0;
			background: url('images/bgindex.jpg') no-repeat center center/cover;
			background-size: cover;
			color: #333;
			display: flex;
			flex-direction: column;
			min-height: 100%;
		}
		.container {
            max-width: 1100px;
			width: 90%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.9);
            padding: 20px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
			display: flex;
			flex-direction: column;
			justify-content: center;
			min-height: 100vh;
			overflow: hidden;
        }
        .header {
            margin-bottom: 10px;
			display: flex;
            justify-content: space-between;
            align-items: center;
            background: #2c3e50;
            color: white;
            padding: 20px;
            border-radius: 10px;
        }
        .biurotext {
            font-size: 24px;
            font-weight: bold;
			text-align: center;
			display: flex;
			flex-direction: column;
			align-items: center;
			line-height: 1.2;
        }
		.photo-container {
			display: flex;
			gap: 20px;
			align-items: center;
			margin: 0;
		}
        .photo {
            width: 395px;
            height: 245px;
			overflow: hidden;
            background: gray;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
		.photo img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			object-position: 50% 40%;
		}
        .photo:hover {
            transform: scale(1.05);
        }
        .menu {
			background: #34495e;
            padding: 15px;
            text-align: center;
            border-radius: 10px;
        }
        .menu ul {
            list-style: none;
            padding: 0;
            display: flex;
            justify-content: center;
        }
        .menu ul li {
            margin: 0 15px;
        }
        .menu ul li a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            padding: 10px 15px;
            transition: background 0.3s ease, color 0.3s ease;
            border-radius: 5px;
        }
        .menu ul li a:hover {
            background: white;
            color: #34495e;
        }
		.menu ul li a.active {
			background: white;
			color: #34495e;
		}
		.contentuslugi {
			text-align: center;
			padding: 50px 20px;
			background-color: #f9f9f9;
		}
		.uslugibox {
			display: flex;
			flex-direction: column;
			align-items: center;
			gap: 20px;
			justify-content: center;
		}
		.card {
			width: 90%;
			max-width: 950px;
			background: white;
			padding: 20px;
			border-radius: 10px;
			box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
			text-align: left;
			transition: transform 0.3s ease-in-out;
		}
		.card:hover {
			transform: translateY(-5px);
		}
		.card h3 {
			font-size: 1.4rem;
			margin-bottom: 10px;
			text-align: center;
		}
		.card p {
			font-size: 1rem;
			color: #555;
		}	
        .content, .contentuslugi {
            padding: 30px;
            background: white;
            min-height: 300px;
            text-align: justify;
            font-size: 18px;
            line-height: 1.6;
            border-radius: 10px;
			flex-grow: 1;
        }
		.contentuslugi ul {
			list-style-type: none;
			padding-left: 0;
        }
		.contentuslugi ul li {
			gap: 10px;
			margin-bottom: 10px;
			display: flex;
			align-items: center;
		}
		.contentuslugi ul li i {
			width: 25px;
			text-align:center ;
			color: #2c3e50;
		}
	    .content h2, .contentuslugi h2 {
            color: #34495e;
			text-align: center;
			margin-top: 0;
			opacity: 0;
			transform: translateY(20px);
			animation: fadeInUp 1s ease-out forwards;
			text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
			transition: color 0.3s ease-in-out;
        }
		@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
		}
    to {
        opacity: 1;
        transform: translateY(0);
		}
	}
		.contact-info .contact-icons a {
			text-decoration: none; 
			color: inherit; 
		}
		.contact-info .contact-icons a:hover {
			color: inherit; 
			text-decoration: none; 
		}
		.footer {
			background-color: rgba(44, 62, 80, 0.9); 
			color: white;
			padding: 40px 0;
			font-family: 'Poppins', sans-serif;
			text-align: center;
			margin-top: 10px;
			border-radius: 10px;
		}
		.footer-container {
			max-width: 1100px;
			width: 90%;
			margin: 0 auto;
			display: flex;
			justify-content: space-between;
			flex-wrap: wrap;
		}
		.footertext h3 {
			font-size: 24px;
			font-weight: bold;
			margin-bottom: 10px;
		}
		.footertext p {
			font-size: 14px;
			color: #ccc;
		}
		.footer-contact, .footer-links {
			font-size: 14px;
			margin-bottom: 20px;
		}
		.footer-contact ul, .footer-links ul  {
			list-style: none;
			padding: 0;
		}
		.footer-contact li, .footer-links li {
			margin-bottom: 10px;
		}
		.footer-contact a, .footer-links a {
			color: #ccc;
			text-decoration: none;
		}
		.footer-contact a:hover, .footer-links a:hover {
			color: #fff;
		}
		.footer-bottom {
			margin-top: 20px;
			font-size: 12px;
			color: #ccc;
		}
		.footer-bottom p {
			margin: 0;
		}
        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                text-align: center;
            }
            .menu ul {
                flex-direction: column;
            }
            .menu ul li {
                margin: 10px 0;
            }
            .photo {
                width: 100%;
                height: auto;
            }
			.footer-container {
				flex-direction: column;
				text-align: center;
			}

			.footer-logo, .footer-contact, .footer-links {
				margin-bottom: 20px;
			}
        }
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.contact-info div {
    margin: 10px 0;
    font-size: 18px;
}
.contact-icons i {
	color: #2c3e50;
}
.map {
	margin-top: 15px;
	width: 100%;
    height: 300px;
    border-radius: 10px;
}
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 250px;
    background-color: #34495e;
    color: white;
	width: 40px;
	height: 40px;
    border-radius: 50%;
    padding: 10px;
    font-size: 18px;
    opacity: 0;
	transform: translateY(30px);
    transition: opacity 0.3s ease, transform 0.3s ease; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
	text-align: center;
	align-content: center;
}

.scroll-to-top.show {
	opacity: 1; 
    transform: translateY(0); 
}

.scroll-to-top.hide {
    opacity: 0; 
    transform: translateY(30px); 
}

.scroll-to-top i {
    font-size: 30px; 
    transition: transform 0.3s ease; 
}

.scroll-to-top:hover {
    background-color: #2c3e50;
    transform: scale(1.1); 
}

@media (max-width: 768px) {
    #scrollToTopBtn {
        right: 10px; 
        left: auto;  
        bottom: 10px; 
    }
}

