/* Core Styling Configurations & Colors Variables Layout setup */
:root {
    --primary-orange: #FF6600;
    --primary-orange-hover: #E05500;
    --bg-dark-core: #121212;
    --bg-dark-card: #1A1A1A;
    --bg-darker: #0A0A0A;
    --text-white: #FFFFFF;
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Theme Variables Override mapping configuration */
[data-bs-theme="light"] {
    --bg-dark-core: #FAFAFA;
    --bg-dark-card: #FFFFFF;
    --bg-darker: #F0F0F0;
    --text-white: #121212;
}

/* General Layout Structural Rules Definitions */
body {
    background-color: var(--bg-dark-core);
    color: var(--text-white);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    transition: var(--transition-smooth);
}

/* Custom Text and Color utility mappings styling */
.text-primary-orange { color: var(--primary-orange) !important; }
.bg-orange { background-color: var(--primary-orange) !important; }
.bg-darker { background-color: var(--bg-darker) !important; }
.max-w-600 { max-width: 600px; }
.max-w-700 { max-width: 700px; }
.max-w-300 { max-width: 300px; }
.fs-xs { font-size: 0.75rem; }
.fs-xxs { font-size: 0.65rem; }
.tracking-wide { tracking-letter: 0.05em; letter-spacing: 0.05em; }
.tracking-wider { letter-spacing: 0.1em; }
.tracking-widest { letter-spacing: 0.15em; }
.section-padding { padding: 90px 0; }

/* Elegant Navbar High-Contrast Custom Theme Layout rules */
.custom-navbar {
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 102, 0, 0.15);
    transition: var(--transition-smooth);
}
[data-bs-theme="light"] .custom-navbar {
    background-color: rgba(250, 250, 250, 0.85);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.custom-navbar .nav-link {
    color: #CCCCCC;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1.2rem !important;
    transition: var(--transition-smooth);
}
.custom-navbar .nav-link:hover, 
.custom-navbar .nav-link.active {
    color: var(--primary-orange) !important;
}

/* Buttons Design styling layout configuration framework setup */
.btn-orange {
    background-color: var(--primary-orange);
    color: #121212 !important;
    font-weight: 600;
    border: 1px solid var(--primary-orange);
    transition: var(--transition-smooth);
}
.btn-orange:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}
.btn-outline-orange {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    font-weight: 600;
    transition: var(--transition-smooth);
}
.btn-outline-orange:hover {
    background-color: var(--primary-orange);
    color: #121212 !important;
    transform: translateY(-2px);
}

/* Underline Aesthetic Title element layout graphic design rules */
.section-title { position: relative; padding-bottom: 15px; }
.title-underline {
    width: 60px;
    height: 4px;
    background-color: var(--primary-orange);
    margin: 0 auto;
    border-radius: 2px;
}

/* Interactive Hero Slider Carousel Elements Configuration setup block layout rules */
.carousel-item {
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.carousel-caption {
    bottom: 25%;
    z-index: 2;
}

/* Premium Export Cards Elements UI Configuration setup structural architecture rules */
.product-card {
    background-color: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}
[data-bs-theme="light"] .product-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.15);
    border-color: rgba(255, 102, 0, 0.4);
}
.product-img-wrapper {
    overflow: hidden;
    height: 250px;
}
.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.product-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}

/* Custom Specifications List layout */
.custom-spec-list li {
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
[data-bs-theme="light"] .custom-spec-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* About Section structural Layout Badge Frame Design rules specifications */
.about-img-frame { padding-right: 30px; padding-bottom: 30px; }
.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    min-width: 140px;
    z-index: 2;
}

/* Corporate Core Missions Block Elements Configuration layout style mechanics rules */
.mission-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}
[data-bs-theme="light"] .mission-card {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.mission-card:hover {
    background: rgba(255, 102, 0, 0.03);
    border-color: var(--primary-orange);
}
.icon-circle {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Premium Business Partnerships Feedback Testimonials Card components rules */
.testimonial-card {
    background-color: var(--bg-dark-card);
    border-radius: 8px;
    transition: var(--transition-smooth);
}
.avatar-init {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

/* High Contrast Contact details elements blocks wrapper setup configuration mappings */
.contact-details-wrapper {
    background-color: var(--bg-dark-card);
    border: 1px solid rgba(255, 102, 0, 0.2);
}
.contact-icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.phone-link { transition: var(--transition-smooth); }
.phone-link:hover {
    color: var(--text-white) !important;
    transform: scale(1.02);
}

/* Social Icon Channels button items configuration elements definitions */
.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.3rem;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
}
.gmail-btn:hover { background-color: #D14836; color: white; transform: translateY(-3px); }
.instagram-btn:hover { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); color: white; transform: translateY(-3px); }

/* Custom Highlighted Manufacturing Division Card element rules layout specifications */
.custom-highlight-panel {
    background: linear-gradient(135deg, rgba(26,26,26,0.95), rgba(10,10,10,0.98));
}
.custom-highlight-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-orange);
}

/* Universal Page Header Banner mapping parameters setup rules specifications */
.page-header-banner {
    height: 40vh;
    background-size: cover;
    background-position: center;
}

/* Shared Core Footer Component Area Design configurations styling framework layout mapping */
.footer-bg { background-color: var(--bg-darker); }
.footer-links-list li a {
    color: #888888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}
.footer-links-list li a:hover { color: var(--primary-orange); }
.footer-icon-link {
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}
.footer-icon-link:hover { color: var(--primary-orange) !important; }

/* Functional Floating LINE Messenger Support Application Tool Interface Block Layout rules */
.line-toggle-trigger {
    width: 60px;
    height: 60px;
    background-color: #06C755;
    border-radius: 50%;
    font-size: 2rem;
    transition: var(--transition-smooth);
}
.line-toggle-trigger:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #05b34c;
}
.line-popout-card {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 290px;
    z-index: 4;
    border-width: 2px !important;
    animation: fadeInUp 0.3s ease-out forwards;
}

/* Micro Animations System Keyframes declarations mapping specifications matrix configuration */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adaptive Sizing tweaks optimization framework rules modifications */
@media (max-width: 768px) {
    .carousel-item { height: 65vh; }
    .carousel-caption h1 { font-size: 2rem !important; }
    .section-padding { padding: 60px 0; }
    .page-header-banner { height: 30vh; }
}