/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 29 2026 | 07:03:03 */
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --orange: #DE071A;
    --orange-light: #ff6b1a;
    --text: #1a1a2e;
    --muted: #1e1e1e;
    --card-bg: #f8f9fb;
    --card-border: #e5e7eb;
    --accent-bg: #fff5f0;
    --white: #ffffff;
  }

  body {
    font-family: 'Roboto Condensed', sans-serif;
    background: #ffffff;
    color: var(--text);
    overflow-x: hidden;
  }

   /* ── HERO ── */
  .hero {
    padding: 64px 60px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .hero h1 {

    font-size: clamp(44px, 5.5vw, 65px);
    line-height: 1.02;

    color: var(--text);
    margin-bottom: 20px;
  }
  .hero h1 em { color: var(--orange); font-style: normal; }
  .hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 32px;
  }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
 
  /* Hero right — product image panel */
  .hero-img-wrap {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    position: relative;
  }
  .hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  /* Fallback illustrated placeholder when image doesn't load */
  .hero-img-placeholder {
    width: 100%;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 40px;
    background: linear-gradient(135deg, #fff5f0 0%, #fef3ec 100%);
  }
  .placeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 320px;
  }
  .placeholder-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .placeholder-item svg { width: 28px; height: 28px; }
  .placeholder-item span { font-size: 10px; font-weight: 600; color: var(--muted); line-height: 1.3; }
  .placeholder-badge {
    background: var(--orange);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 18px;
    border-radius: 20px;
    text-transform: uppercase;
  }
 
  /* ── INFO CARDS BELOW HERO ── */
  .below-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 36px 60px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .info-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    position: relative;
    overflow: hidden;
  }
  .info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--orange);
    border-radius: 14px 14px 0 0;
  }
  .info-card h3 { font-size: 17px; text-transform: uppercase;  color: var(--orange); font-weight: 700; margin-bottom: 10px; }
  .info-card p { font-size: 16px; color: var(--muted); line-height: 1.7; }
  .tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
  .tag {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
  }

  /* DIVIDER */
  .divider { height: 1px; background: #e5e7eb; margin: 0 60px; }
	
	/* ── BUTTONS ── */
  .btn-primary {
    background: var(--orange);
	  font-family: 'Roboto Condensed', sans-serif;
    color: white;
    padding: 13px 26px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
    text-decoration: none;
  }
  .btn-primary:hover { background: var(--orange-light); transform: translateY(-1px); }
  .btn-outline {
    border: 1.5px solid #d1d5db;
	  font-family: 'Roboto Condensed', sans-serif;
    background: transparent;
    color: var(--text);
    padding: 13px 26px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
  }
  .btn-outline:hover { border-color: var(--orange); color: var(--orange); }

  /* SECTION */
  .section { max-width: 1200px; margin: 0 auto; padding: 60px 60px; }
  .section-tag { font-size: 15px; text-transform: uppercase;  color: var(--orange); font-weight: 600; margin-bottom: 10px; }
  .section-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(30px, 3.5vw, 32px);
    color: var(--text);
    margin-bottom: 32px;font-weight: 600;
  }

  /* WHY + INDUSTRIES — SIDE BY SIDE */
  .two-col {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .col-block {}
  .col-block .section-tag { margin-bottom: 8px; }
  .col-block .section-title { margin-bottom: 24px; }

  .why-list { display: flex; flex-direction: column; gap: 14px; }
  .why-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: border-color 0.2s, transform 0.2s;
  }
  .why-item:hover { border-color: var(--orange); transform: translateX(3px); }
  .why-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
  

  .apps-list { display: flex; flex-direction: column; gap: 12px; }
  .app-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text);
    font-weight: 500;
    transition: all 0.2s;
  }
  .app-item:hover { border-color: var(--orange); background: var(--accent-bg); }
  .app-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }

  /* SUPPORT GRID */
  .support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .support-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 30px;
    position: relative;
    overflow: hidden;
  }
  .support-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--orange);
    border-radius: 14px 14px 0 0;
  }
  .support-card h3 { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 18px; line-height: 1.45; }
  .support-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
  .support-list li { font-size: 16px; color: var(--muted); display: flex; align-items: center; gap: 10px; }
  .support-list li::before { content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }

  /* ENQUIRY STRIP */
  .enquiry-strip { max-width: 1200px; margin: 0 auto; padding: 0 60px 60px; }
  .enquiry-inner {
    background: var(--accent-bg);
    border: 1.5px solid rgba(232,82,10,0.2);
    border-radius: 14px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .enquiry-inner strong { color: var(--text); font-size: 19px; display: block; margin-bottom: 5px; }
  .enquiry-inner p { font-size: 17px; color: var(--muted); }

  

  /* FAQ — 2 COLUMNS */
  .faq-section { max-width: 1200px; margin: 0 auto; padding: 60px 60px; }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
  .faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
    align-self: start;
  }
  .faq-item.open { border-color: var(--orange); }
  .faq-q {
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    line-height: 1.45;
  }
  .faq-icon { color: var(--orange); font-size: 18px; flex-shrink: 0; transition: transform 0.2s; }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-a {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
    padding: 0 20px;
  }
  .faq-item.open .faq-a { max-height: 120px; padding: 0 20px 18px; }

  /* WHY ORBITAL MEKATRONIK */
  .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
  .why-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.2s, transform 0.2s;
  }
  .why-card:hover { border-color: var(--orange); transform: translateY(-3px); }
  .why-icon-box {
    width: 40px; height: 40px;
    background: var(--accent-bg);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
  }
  .why-icon-box svg { width: 18px; height: 18px; }
  .why-card h3 { font-size: 16px; font-weight: 600; color: var(--text); line-height: 1.5; }

  /* ── RESPONSIVE ── */
  @media (max-width: 860px) {
    .hero, .below-hero, .two-col, .faq-grid, .support-grid { grid-template-columns: 1fr; }
    .hero, .below-hero, .two-col, .section, .faq-section, .enquiry-strip { padding-left: 24px; padding-right: 24px; }
    .divider { margin: 0 24px; }
    .hero { padding-top: 40px; }
  }