.elementor-146 .elementor-element.elementor-element-cda9422{--display:flex;}.elementor-146 .elementor-element.elementor-element-d3213b9{--display:flex;}/* Start custom CSS for html, class: .elementor-element-e94062c */:root {
    --lime: #d4ff00;
    --dark-bg: #000000;
    --card-bg: #0a0a0a;
}

body {
    background-color: var(--dark-bg);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

.products-page {
    direction: ltr;
    padding: 100px 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #fff;
}

.products-header {
    text-align: center;
    margin-bottom: 80px;
}

.products-title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin: 0;
}

.products-title span { color: var(--lime); }

.products-subtitle {
    color: #666;
    font-size: 18px;
    margin-top: 15px;
    font-weight: 500;
}

/* Grid Configuration */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
}

/* Card Styling */
.product-card {
    background-color: var(--card-bg);
    padding: 50px 40px;
    position: relative;
    border: 1px solid #111;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.product-card:hover {
    background-color: #111;
}

/* Bracket Corners */
.corner {
    position: absolute;
    width: 14px;
    height: 14px;
    border: 1.5px solid var(--lime);
    opacity: 0.5;
}

.tl { top: 20px; left: 20px; border-right: 0; border-bottom: 0; }
.tr { top: 20px; right: 20px; border-left: 0; border-bottom: 0; }
.bl { bottom: 20px; left: 20px; border-right: 0; border-top: 0; }
.br { bottom: 20px; right: 20px; border-left: 0; border-top: 0; }

/* Icon & Typography */
.product-icon {
    font-size: 32px;
    color: var(--lime);
    margin-bottom: 25px;
}

.product-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.desc-main {
    font-size: 16px;
    color: #efefef;
    line-height: 1.6;
    margin-bottom: 12px;
    opacity: 0.9;
}

.desc-logistics {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
    margin-bottom: 40px;
}

/* Footer Labels */
.card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
}

.tag {
    font-size: 13px;
    font-weight: 800;
    color: var(--lime);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 1150px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .products-grid { 
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    .products-title { font-size: 36px; }
    .product-card { padding: 40px 30px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7506dfd */:root {
    --lime: #d4ff00;
    --bg-black: #000000;
    --text-gray: #a0a0a0;
}

.company-info-wrapper {
    background-color: var(--bg-black);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    direction: ltr;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Titles with Lime side line */
.side-line-title {
    font-size: 42px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.side-line-title::before {
    content: '';
    width: 60px;
    height: 3px;
    background-color: var(--lime);
    display: inline-block;
}

/* About Section */
.mission-text-section {
    padding: 100px 0;
    border-bottom: 1px solid #111;
}

.mission-paragraph {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    text-align: justify;
}

/* FAQ Split Section */
.faq-split-section {
    padding: 100px 0;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    padding: 0 20px;
}

.faq-image-side {
    flex: 1;
}

.faq-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.faq-content-side {
    flex: 1.2;
}

.faq-tiny-subtitle {
    color: var(--lime);
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.faq-intro {
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* FAQ Accordion Boxes */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-box {
    border: 1px solid #222;
    border-radius: 4px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-box.active {
    border-color: var(--lime);
}

.faq-box-header {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 800;
    font-size: 18px;
}

.faq-box-header i {
    font-size: 14px;
    color: var(--text-gray);
}

.faq-box.active .faq-box-header i {
    color: var(--lime);
}

.faq-box-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 25px;
}

.faq-box.active .faq-box-body {
    max-height: 200px;
    padding-bottom: 25px;
}

.faq-box-body p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .faq-container { flex-direction: column; }
    .faq-image-side { height: 400px; }
    .side-line-title { font-size: 32px; }
}/* End custom CSS */