* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Header & Navigation */
.top-bar {
    background-color: #1a1a1a;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
}

/* Modern Header/Navigation Styles */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav .logo {
    height: 45px;
    transition: transform 0.3s ease;
}

.nav .logo:hover {
    transform: scale(1.05);
}

.nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease ,transform 0.3s ease;
}

.nav ul li a:active {
    transform: scale(0.95);
}

.nav ul li a.active {
    color: #2196F3;
}

.nav ul li a.active::after {
    width: 100%;
}

.nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2196F3, #00BCD4);
    transition: width 0.3s ease;
}

.nav ul li a:hover {
    color: #2196F3;
}

.nav ul li a:hover::after {
    width: 100%;
}

/* Scrolled Header State */
.nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav .container {
        padding: 1rem;
    }
    
    .nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav ul.active {
        left: 0;
    }
    
    .nav .menu-toggle {
        display: block;
        cursor: pointer;
    }
}

/* Additional Animation Classes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav.visible {
    animation: fadeInDown 0.5s ease forwards;
}

.sustainable-heading {
    text-align: left;
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-top: 20px;
    margin-bottom: 60px;
    animation: fadeIn 1s ease-in-out;
}

.head-h2{
    margin-bottom: 20px;
}

/* Animasi untuk tampilan lebih menarik */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsif untuk layar kecil */
@media (max-width: 768px) {
    .sustainable-heading {
        font-size: 1.8rem;
        padding: 10px 20px;
    }
}

/* Translate */
#languageSwitcher {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 20px;
    border: none;
    background: linear-gradient(145deg, #f0f0f0, #e6e6e6);
    box-shadow: 5px 5px 10px rgba(0,0,0,0.1),
                -5px -5px 10px rgba(255,255,255,0.8);
    cursor: pointer;
    margin-left: 10px;
    transition: all 0.3s ease;
    color: #333;
    font-weight: 500;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 12px top 50%;
    background-size: 10px auto;
    padding-right: 28px;
}

#languageSwitcher:hover {
    background: linear-gradient(145deg, #e6e6e6, #f0f0f0);
    transform: translateY(-2px);
    box-shadow: 6px 6px 12px rgba(0,0,0,0.15),
                -6px -6px 12px rgba(255,255,255,0.9);
}

#languageSwitcher:focus {
    outline: none;
    border: 2px solid rgba(0,123,255,0.5);
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.1),
                inset -2px -2px 5px rgba(255,255,255,0.5);
}

/* Animasi saat mengganti bahasa */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

#languageSwitcher:active {
    animation: pulse 0.3s ease-out;
}


/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Sesuaikan dengan tinggi layar */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Agar video menyesuaikan ukuran tanpa distorsi */
    z-index: -1; /* Agar video berada di belakang teks */
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
}

.hero-content h1{
    font-size: 2rem;
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5em;
    margin-bottom: 50px;
    text-align: center;
    color: #2c1810;
}

/* About Section */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Styling untuk section */
.about {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

/* Container utama */
.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Judul section */
.section-title-about {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    text-align: left;
}

/* Kontainer teks dan gambar */
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Styling untuk teks */
.about-text {
    flex: 1;
    text-align: justify;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Styling untuk gambar */
.about-content img {
    flex: 1;
    max-width: 600px;
    width: 100%;
    border-radius: 5px;
}

/* Responsif untuk layar kecil */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        text-align: justify;
    }

    .about-content img {
        margin-top: 20px;
    }
}

/* supplier */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}
.sup {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background-color: white;
}
.container-sup{
    display: flex;
    max-width: 1200px;
    margin: 0;
    align-items: center;
}
.image-container {
    position: relative;
    width: 600px;
}
.image-container img {
    width: 80%;
    display: block;
    border-radius: 10px;
}
.text-container {
    margin-left: 50px;
    max-width: 500px;
}
.text-container h2 {
    font-size: 32px;
    color: #333;
}
.text-container p {
    font-size: 16px;
    color: #666;
}
.link {
    display: inline-block;
    margin-top: 10px;
    color: #0033cc;
    font-weight: bold;
    text-decoration: none;
}
.link:hover {
    text-decoration: underline;
}

.link-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2500c9;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.25rem;
    margin-top: 1rem;
    transition: all 0.3s;
    margin-bottom: 50px;
   }
   
.link-modern:hover {
    color: #666;
    gap: 12px;
}

.process-banner {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.banner-wrapper {
    position: relative;
    z-index: 1;
}

.glowing-border {
    position: relative;
    padding: 3px;
    border-radius: 20px;
    animation: borderGlow 3s ease-in-out infinite;
}

.banner-content {
    border-radius: 18px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}


.banner-text {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner-text h2 {
    color: #1a1a1a;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.geometric-line {
    height: 3px;
    width: 100px;
    background: linear-gradient(90deg, transparent, #3eb905, transparent);
    margin: 20px auto 30px;
}

.futuristic-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: #009843;
    border: none;
    border-radius: 30px;
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.futuristic-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.futuristic-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(62, 185, 5, 0.4);
}

.futuristic-button:hover::before {
    left: 100%;
}

.button-text {
    position: relative;
    z-index: 1;
}

.button-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.futuristic-button:hover .button-icon {
    transform: translateX(5px);
}

@keyframes borderGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .banner-content {
        padding: 40px 20px;
    }
    
    .banner-text h2 {
        font-size: 2rem;
    }
    
    .circle {
        display: none;
    }
}

/* Features Section */
.features {
    background-color: #ffffff;
    background-image: url('data:image/svg+xml,%3Csvg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h100v100H0z" fill="%23f3f4f6"/%3E%3Cpath d="M0 0h50v50H0zm50 50h50v50H50z" fill="%23f9fafb" fill-opacity="0.4"/%3E%3C/svg%3E');
    padding: 6rem 1rem;
    color: #1f2937;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #1f2937;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: white;
}

.feature-item h3 {
    margin: 2rem 0 1rem;
    font-size: 1.25rem;
    color: #1f2937;
}

.feature-item p {
    color: #4b5563;
    line-height: 1.6;
}
.SVLK {
    width: 150px; /* Atur sesuai kebutuhan */
    height: auto;
    margin-bottom: 50px; /* Jarak antara gambar dan div di bawahnya */
}

.feature-text{
    margin-bottom: 50px;
}
/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 15px;
}

.contact-header p {
    color: #636e72;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-item {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: #f1f2f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon img {
    width: 20px;
    height: 20px;
}

.info-details h3 {
    color: #2d3436;
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.info-details p {
    color: #636e72;
    margin: 0;
    line-height: 1.5;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2d3436;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #74b9ff;
    box-shadow: 0 0 0 3px rgba(116, 185, 255, 0.1);
}

.submit-btn {
    background: #0984e3;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #0873c7;
    transform: translateY(-1px);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #1dad50;
}

/* Loading spinner */
.loading {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success message */
.success-message {
    display: none;
    background: #2ecc71;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-info, .contact-form {
        padding: 30px;
    }
}

footer {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: #f5f5f5;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3eb905, #2196F3);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
}

.footer-info {
    position: relative;
}

.footer-info img {
    max-width: 140px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-info img:hover {
    transform: scale(1.05);
}

.footer-info h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.footer-info p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-info p:hover {
    color: #fff;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #3eb905;
    position: relative;
    display: inline-block;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #3eb905;
    transition: width 0.3s ease;
}

.footer-links:hover h4::after {
    width: 100%;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    line-height: 2.2;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}

.copyright p {
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.copyright p:hover {
    color: #fff;
}

@media (max-width: 768px) {
    footer {
        padding: 60px 20px 30px;
    }
    
    .footer-grid {
        gap: 40px;
    }
    
    .footer-info img {
        max-width: 120px;
    }
}