body {
    font-family: Arial, sans-serif;
    background: #0b0f18;
    color: white;
    padding-top: 70px; /* Navbar ke niche content */
}

/* Navbar */
.navbar {
    background: linear-gradient(90deg, #000000, #1a1a1a, #330000);
    border-bottom: 1px solid gold;
}

.navbar-brand {
    font-weight: bold;
    color: gold !important;
}

/* Menu Button */
.menu-btn {
    background: linear-gradient(45deg, gold, orange, red);
    color: black;
    font-size: 20px;
}

/* Sidebar */
.offcanvas {
    background: linear-gradient(180deg, #000000, #1a1a1a, #330000);
    color: white;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
}

.sidebar-menu li {
    margin: 15px 0;
}

.sidebar-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px;
    border-radius: 8px;
    transition: 0.3s;
}

.sidebar-menu a:hover {
    background: linear-gradient(45deg, gold, red);
    color: black;
}

.sidebar-menu i {
    margin-right: 10px;
    color: gold;
}

/* Buttons */
.btn-login {
    background: linear-gradient(45deg, green, limegreen);
    border: none;
    color: white;
}

.btn-register {
    background: linear-gradient(45deg, gold, orange, red);
    border: none;
    color: black;
}

/* News Ticker */
.news-ticker {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #000000, #330000, #000000);
    border-top: 1px solid gold;
    border-bottom: 1px solid gold;
    overflow: hidden;
}

.news-title {
    background: linear-gradient(45deg, gold, orange, red);
    color: black;
    padding: 10px 20px;
    font-weight: bold;
    white-space: nowrap;
}

.news-scroll {
    overflow: hidden;
    width: 100%;
}

.news-text {
    display: inline-block;
    white-space: nowrap;
    color: white;
    padding-left: 100%;
    animation: scrollNews 20s linear infinite;
}

@keyframes scrollNews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.hero-section {
    width: 100%;
    background: black;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
}

/* About Section */
.about-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #000000, #0b0f18);
}

.about-img-box {
    text-align: center;
}

.about-img {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    border: 2px solid gold;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.about-content h2 {
    color: gold;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-content p {
    color: #ccc;
    line-height: 1.7;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    padding: 8px 0;
    color: white;
}

.about-list li::before {
    content: "★ ";
    color: gold;
    margin-right: 5px;
}

/* Feature Boxes */
.feature-box {
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    background: linear-gradient(145deg, #000000, #1a1a1a);
    border: 1px solid gold;
    transition: 0.3s;
    margin-bottom: 20px;
}

.feature-box i {
    font-size: 30px;
    color: gold;
    margin-bottom: 10px;
}

.feature-box h5 {
    color: white;
}

.feature-box:hover {
    transform: translateY(-10px);
    background: linear-gradient(45deg, gold, red);
    color: black;
}

.feature-box:hover h5,
.feature-box:hover i {
    color: black;
}

/* Mission Vision Values */
.mvv-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #000000, #0b0f18);
}

.section-title {
    color: gold;
    font-weight: bold;
}

.section-subtitle {
    color: #ccc;
    margin-top: 10px;
}

.mvv-box {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: linear-gradient(145deg, #000000, #1a1a1a);
    border: 1px solid gold;
    transition: 0.3s;
    height: 100%;
}

.mvv-box i {
    font-size: 40px;
    color: gold;
    margin-bottom: 15px;
}

.mvv-box h3 {
    color: white;
    margin-bottom: 15px;
}

.mvv-box p {
    color: #ccc;
}

.mvv-box:hover {
    transform: translateY(-10px);
    background: linear-gradient(45deg, gold, red);
}

.mvv-box:hover h3,
.mvv-box:hover p,
.mvv-box:hover i {
    color: black;
}

/* Gallery */
.gallery-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #000000, #0b0f18);
}

.gallery-img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid gold;
    margin-bottom: 20px;
    transition: 0.3s;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px gold;
}

.view-btn {
    background: linear-gradient(45deg, gold, orange, red);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    color: black;
    font-weight: bold;
}

/* Management Section */
.management-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #000000, #0b0f18);
}

.director-card {
    background: linear-gradient(145deg, #000000, #1a1a1a);
    border: 1px solid gold;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.director-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid gold;
    margin-bottom: 15px;
    object-fit: cover;
}

.director-card h3 {
    color: gold;
    margin-top: 10px;
}

.director-position {
    color: white;
    font-weight: bold;
}

.director-exp {
    color: #ccc;
}

.director-message h3 {
    color: gold;
    margin-bottom: 15px;
}

.director-message p {
    color: #ccc;
    line-height: 1.7;
}

/* Product Section */
.product-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #000000, #0b0f18);
}

.product-img {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    border: 2px solid gold;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.price {
    color: gold;
    font-weight: bold;
    font-size: 18px;
}

.plan-box {
    background: linear-gradient(145deg, #000000, #1a1a1a);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid gold;
}

.plan-box h4,
.plan-box h5 {
    color: gold;
}

.plan-box ul {
    color: #ccc;
}

.highlight {
    color: gold;
    font-weight: bold;
}

/* Footer */
.footer-section {
    background: linear-gradient(180deg, #000000, #0b0f18);
    padding: 60px 0 20px;
    border-top: 2px solid gold;
}

.footer-title {
    color: gold;
    margin-bottom: 20px;
}

.footer-section p {
    color: #ccc;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: gold;
    padding-left: 5px;
}

.footer-section hr {
    border-color: gold;
}

.copyright {
    color: #aaa;
    margin-top: 10px;
}