:root {
    --primary-color: #7fff3a;
    --primary-dark: #758718;
    --primary-light: #a8bd26;
    --secondary-color: #2dd4bf;
    --accent-color: #f59e0b;
    --dark-bg: #0a0f1e;
    --dark-secondary: #111827;
    --dark-card: rgba(17, 24, 39, 0.8);
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.65);
    --border-color: rgba(143, 163, 30, 0.3);
    --gradient-primary: linear-gradient(135deg, #8fa31e, #a8bd26);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    backface-visibility: hidden;
}
/* * {
    outline: 1px solid red;
} */

html,
body {
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

body {
    font-family: "Nunito", "Poppins", sans-serif;
    background: var(--dark-bg);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 95px;
    right: 30px;
    background: var(--primary-color);
    color: rgb(7, 5, 5);
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    font-size: 28px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20b857;
    transform: scale(1.1);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 25px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color, #00ff66);
    color: #0f0f23;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Navigation */
.navbar-custom {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-custom.scrolled {
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white) !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

#logo-navbar {
    height: 55px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand:hover #logo-navbar {
    transform: rotate(360deg);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid var(--primary-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav {
    gap: 0.25rem;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1.25rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.language-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-btn:hover {
    background: rgba(143, 163, 30, 0.1);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.language-btn.active {
    background: var(--primary-color);
    color: var(--dark-bg);
    border-color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    position: relative;
    background: linear-gradient(
        135deg,
        rgb(26, 26, 46) 0%,
        rgb(15, 15, 35) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    transform: translateY(-20px);
}

.main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.italic-word {
    font-weight: 500;
    font-style: italic;
    color: var(--primary-color);
    display: inline-block;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-hero-primary {
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    /* box-shadow: 0 10px 10px rgba(127, 255, 58, 0.15); */
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(127, 255, 58, 0.15);
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brain-core {
    position: absolute;
    width: auto;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -50px;
    animation: floatOrb 4s ease-in-out infinite;
    transition: all 0.3s ease;
    cursor: pointer;
}

.brain-core img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.service-orb {
    position: absolute;
    width: 90px;
    height: 90px;
    background: var(--dark-card);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: floatOrb 4s ease-in-out infinite;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-orb:hover {
    transform: scale(1.15);
    border-color: rgba(127, 255, 58, 0.6);
    box-shadow: 0 12px 40px rgba(127, 255, 58, 0.4);
}

.service-orb i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    transition: transform 0.3s ease;
}

.service-orb:hover i {
    transform: scale(1.2);
}

.service-orb span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-align: center;
    padding: 0 0.5rem;
}

.orb-1 {
    bottom: 20%;
    right: -1%;
    animation-delay: 0s;
}
.orb-2 {
    top: 0%;
    right: 15%;
    animation-delay: 0.7s;
}
.orb-3 {
    top: 10%;
    right: 1%;
    animation-delay: 1.4s;
}
.orb-4 {
    top: 45%;
    right: -8%;
    animation-delay: 2.1s;
}
.orb-5 {
    top: 25%;
    right: -8%;
    animation-delay: 2.8s;
}
.orb-7 {
    top: -5%;
    right: 35%;
    animation-delay: 4.2s;
}

/* Section Base Styles */
.section {
    padding: 5rem 0;
    background: linear-gradient(
        180deg,
        var(--dark-secondary) 0%,
        var(--dark-bg) 100%
    );
}

.section:nth-child(even) {
    background: linear-gradient(
        180deg,
        var(--dark-bg) 0%,
        var(--dark-secondary) 100%
    );
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.about-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.about-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.check-icon {
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--dark-bg);
    padding: 1rem;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Vision Mission Section - Consolidated */
.vision-mission-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
}

.vm-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vm-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(127, 255, 58, 0.3);
}

.vm-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.vm-icon i {
    font-size: 1.8rem;
    color: rgb(0, 0, 0);
}

.vm-card h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.vm-card p,
.vm-card li {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.vm-card ul {
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.vm-card ul li {
    margin-bottom: 1rem;
    position: relative;
}

/* Vision Mission Content Styles */
.vm-content {
    max-height: 300px;
    overflow: hidden;
    position: relative;
}

.vm-content.expanded {
    max-height: none;
}

.vm-content.expanded::after {
    display: none;
}

.vm-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, var(--dark-card));
    pointer-events: none;
}

.read-more-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more-btn:hover {
    background: var(--primary-color);
    color: rgb(0, 0, 0);
    transform: translateY(-2px);
}

.vm-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mission-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.mission-icon i {
    font-size: 0.7rem;
    color: rgb(0, 0, 0);
}

.mission-text {
    flex: 1;
}

/* Our Product */
#products-preview {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
    /* padding: 5rem 0; */
}

.product-preview-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-preview-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(127, 255, 58, 0.3);
}

.product-preview-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.8);
}

.product-preview-card:hover .product-preview-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.product-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(10, 15, 30, 0.9) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.product-preview-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #5fd420);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(127, 255, 58, 0.4);
}

.product-preview-icon i {
    font-size: 1.5rem;
    color: var(--dark-bg);
}

.product-preview-content {
    padding: 25px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-preview-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
}

.product-preview-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* Projects Preview Section */
#projects-preview {
    background: var(--dark-bg);
    padding: 5rem 0;
}

.project-preview-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-preview-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(127, 255, 58, 0.3);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.8);
}

.project-preview-card:hover .project-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(10, 15, 30, 0.9) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.project-category {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(127, 255, 58, 0.3);
}

.project-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--dark-card);
}

.project-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
}

.project-content p {
    color: var(--text-muted);
    margin: 0;
    flex: 1;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    #products-preview,
    #projects-preview {
        padding: 8rem 0;
    }

    .product-preview-card,
    .project-preview-card {
        margin-bottom: 20px;
    }

    .product-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .project-image {
        height: 220px;
    }
}
@media (max-width: 992px) {
    .about-section .row {
        display: flex;
        flex-direction: column;
    }

    .about-section .col-lg-6:nth-child(2) {
        order: -1; /* Pindah ke atas */
        margin-bottom: 2rem;
    }

    .about-section .col-lg-6:nth-child(1) {
        order: 1;
    }
}
@media (max-width: 576px) {
    .product-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    #about {
        text-align: center !important;
    }
    .project-image {
        height: 200px;
    }

    .project-content {
        padding: 20px;
    }
}
.projects-section {
    padding-top: 8rem !important;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%) !important;
}

.section-label {
    display: inline-block;
    background: rgba(127, 255, 58, 0.1);
    color: var(--primary-color);
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.project-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-1-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(127, 255, 58, 0.3);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.8);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(10, 15, 30, 0.9) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.project-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #5fd420);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(127, 255, 58, 0.4);
}

.project-icon i {
    font-size: 1.5rem;
    color: var(--dark-bg);
}

.project-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.project-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .projects-section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 0 4rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .projects-section {
        padding: 3rem 0;
    }

    .project-card {
        margin-bottom: 20px;
    }

    .project-image {
        height: 220px;
    }

    .project-content {
        padding: 20px;
    }

    .project-icon {
        width: 45px;
        height: 45px;
    }

    .project-icon i {
        font-size: 1.3rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .project-image {
        height: 200px;
    }

    .project-content h3 {
        font-size: 1.1rem;
    }

    .project-content p {
        font-size: 0.9rem;
    }

    .project-icon {
        width: 40px;
        height: 40px;
    }

    .project-icon i {
        font-size: 1.1rem;
    }
}
.products-section {
    padding: 8rem 0;
    /* background: var(--dark-bg); */
}

.section-label {
    display: inline-block;
    background: rgba(127, 255, 58, 0.1);
    color: var(--primary-color);
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.product-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-1-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(127, 255, 58, 0.3);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.8);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(10, 15, 30, 0.9) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.product-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #5fd420);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(127, 255, 58, 0.4);
}

.product-icon i {
    font-size: 1.5rem;
    color: var(--dark-bg);
}

.product-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.product-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .products-section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 0 4rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .products-section {
        padding: 3rem 0;
    }

    .product-card {
        margin-bottom: 20px;
    }

    .product-image {
        height: 220px;
    }

    .product-content {
        padding: 20px;
    }

    .product-icon {
        width: 45px;
        height: 45px;
    }

    .product-icon i {
        font-size: 1.3rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .product-image {
        height: 200px;
    }

    .product-content h3 {
        font-size: 1.1rem;
    }

    .product-content p {
        font-size: 0.9rem;
    }

    .product-icon {
        width: 40px;
        height: 40px;
    }

    .product-icon i {
        font-size: 1.1rem;
    }
}
/* Akhir Our Product */

/* Services Section */
#services {
    background: var(--dark-bg);
}
.service-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: rgba(127, 255, 58, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(127, 255, 58, 0.2);
}

.service-icon-lg {
    width: 80px;
    height: 80px;
    background: rgba(127, 255, 58, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-lg {
    transform: scale(1.1);
    background: rgba(127, 255, 58, 0.2);
}

.service-icon-lg i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.service-card h4 {
    color: var(--text-white);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Partners Section */

#partners {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
}
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: 12px 30px;
    background: var(--dark-card);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: rgb(247, 246, 246);
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.category-tab::before {
    /* content: ""; */
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(127, 255, 58, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.category-tab:hover::before {
    right: 100%;
}

.category-tab:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(127, 255, 58, 0.3);
}

.category-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #0a0f1e;
    /* box-shadow: 0 5px 10px rgba(50, 100, 10, 0.4); */
}

.category-tab .icon {
    margin-right: 8px;
}

/* Carousel */
.partners-carousel {
    position: relative;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.partners-carousel.transitioning {
    opacity: 0;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    overflow: hidden;
}

.partners-track {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
    user-select: none;
    margin-bottom: 3rem;
}

.partners-track:active {
    cursor: grabbing;
}

.partner-logo {
    flex: 0 0 calc(25% - 1.5rem);
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.partner-logo.hidden {
    display: none;
}

.partner-logo:hover {
    border-color: rgba(127, 255, 58, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(127, 255, 58, 0.2);
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    filter: grayscale(100%) brightness(2);
    transition: all 0.3s ease;
    object-fit: contain;
}

.partner-logo:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.carousel-control {
    position: absolute;
    /* top: 100%; */
    transform: translateY(-50%);
    background: transparent;
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-control:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-control:disabled:hover {
    background: rgba(127, 255, 58, 0.5);
    transform: translateY(-50%) scale(1);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    gap: 10px;
    min-height: 5px;
}
.indicator {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(127, 255, 58, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 4rem;
}

.indicator:hover {
    background: rgba(127, 255, 58, 0.5);
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Contact */

/* Contact Section */
#contact {
    background: var(--dark-bg);
    padding: 5rem 0;
}

.contact-section {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-title {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    /* box-shadow: 0 10px 30px rgba(127, 255, 58, 0.1); */
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--dark-bg);
}

.card-title {
    font-size: 1.25rem;
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-content {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.card-content a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-content a:hover {
    color: var(--primary-color);
}

.send-message-btn {
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    border-radius: 50px;
    padding: 0.875rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 15px rgba(127, 255, 58, 0.2); */
}

.send-message-btn:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 6px 25px rgba(127, 255, 58, 0.3); */
    background: linear-gradient(135deg, #a8bd26);
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-card {
        margin-bottom: 1.5rem;
    }
}
/* Akhir Contact */

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h5 {
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.2rem;
}

.footer p,
.footer a {
    color: var(--text-light);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact i {
    /* color: var(--primary-color); */
    font-size: 1.1rem;
    margin-top: 2px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(127, 255, 58, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(127, 255, 58, 0.3);
}

.social-link i {
    /* color: var(--primary-color); */
    font-size: 1rem;
    transition: color 0.3s ease;
}

.social-link:hover i {
    color: var(--dark-bg);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseGlow {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes rotateSlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatOrb {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-primary {
    box-shadow: 0 10px 40px rgba(127, 255, 58, 0.2);
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Responsive Design */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

@media (max-width: 1200px) {
    .partner-logo {
        flex: 0 0 calc(33.333% - 1.5rem);
    }

    .main-title {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 6rem 0 3rem;
    }

    .hero-section .row {
        flex-direction: column-reverse;
    }

    .hero-visual {
        height: 500px;
        margin-top: 2rem;
        /* margin-bottom: 3rem; */
        order: -1;
    }

    .hero-content {
        order: 2;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .brain-core {
        width: auto;
        height: 500px;
        margin-top: 0;
    }

    .service-orb {
        width: 75px;
        height: 75px;
    }

    .service-orb i {
        font-size: 1.6rem;
    }

    .service-orb span {
        font-size: 0.7rem;
    }

    .partner-logo {
        flex: 0 0 calc(50% - 1rem);
    }

    .carousel-container {
        padding: 0 50px;
    }

    .section {
        padding: 4rem 0;
    }

    .navbar-nav {
        gap: 0;
    }

    .language-switcher {
        margin-left: 0;
        margin-top: 1rem;
    }
    .nav-link {
        text-align: center;
    }

    .about-section,
    .vision-mission-section {
        padding: 3rem 0;
    }

    .image-large,
    .image-small {
        height: 100%;
    }

    .vm-card {
        padding: 2rem;
    }

    .about-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary {
        width: 100%;
        justify-content: center;
    }

    .partner-logo {
        flex: 0 0 calc(50% - 1rem);
        padding: 1.5rem;
        min-height: 120px;
    }

    .carousel-container {
        padding: 0 40px;
    }

    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    #logo-navbar {
        height: 45px;
    }

    .navbar-brand span {
        font-size: 1.2rem;
    }

    .category-tabs {
        gap: 0.5rem;
    }

    .category-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    #logo-navbar {
        height: 40px;
    }

    .navbar-brand span {
        font-size: 1rem;
    }

    .hero-section {
        padding: 4rem 0 2rem;
    }

    .hero-visual {
        height: 400px;
    }

    .brain-core {
        width: auto;
        height: 400px;
    }

    .brain-image {
        width: 180px;
        height: 180px;
    }

    .btn-hero-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .partner-logo {
        flex: 0 0 100%;
        min-height: 100px;
    }

    .carousel-container {
        padding: 0 30px;
    }

    .partners-track {
        gap: 1rem;
    }

    .service-orb {
        width: 65px;
        height: 65px;
    }

    .service-orb i {
        font-size: 1.4rem;
    }

    .service-orb span {
        font-size: 0.65rem;
    }

    .section-subtitle {
        margin-bottom: 3rem;
    }

    .carousel-control {
        width: 35px;
        height: 35px;
    }

    .category-tab {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 375px) {
    .hero-visual {
        height: 350px;
    }

    .brain-core {
        width: 300px;
        height: 300px;
    }

    .service-orb {
        width: 55px;
        height: 55px;
    }

    .service-orb i {
        font-size: 1.2rem;
    }

    .service-orb span {
        font-size: 0.6rem;
    }
}

/* Print Styles */
@media print {
    .navbar-custom,
    .loading-screen,
    .hero-visual,
    .carousel-control,
    .carousel-indicators {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .section {
        page-break-inside: avoid;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

::selection {
    background: var(--primary-color);
    color: var(--dark-bg);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--dark-bg);
}
