:root {
      --primary: #2c5282;
      --accent: #d4a84b;
      --accent2: #b8c5d6;
      --light: #f8fafc;
      --dark: #2c5282;
      --gray: #6b7280;
      --white: #ffffff;
      --shadow: 0 4px 20px rgba(30,58,95,0.08);
      --shadow-lg: 0 10px 40px rgba(30,58,95,0.12);
      --transition: all 0.3s ease;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; line-height: 1.6; color: #333; background: var(--light); }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; height: auto; display: block; }

    /* ===== NAVIGATION ===== */
    nav { background: #1e3a5f; padding: 12px 24px; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 12px rgba(0,0,0,0.2); }
    .nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
    .logo { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; font-size: 20px; }
    .logo-icon { width: 44px; height: 44px; background: #d4a84b; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800; color: #1e3a5f; }
    .nav-links { display: flex; gap: 8px; }
    .nav-links a { color: rgba(255,255,255,0.88); padding: 8px 14px; border-radius: 6px; font-size: 14px; font-weight: 500; transition: var(--transition); }
    .nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,0.15); color: var(--white); }
    .nav-cta { background: #d4a84b !important; color: #1e3a5f !important; font-weight: 700 !important; padding: 8px 18px !important; border-radius: 6px !important; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }

    /* Language Switcher */
    .lang-switcher {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-left: 16px;
      padding-left: 16px;
      border-left: 1px solid rgba(255,255,255,0.2);
    }

    .lang-switcher a {
      font-size: 14px;
      font-weight: 500;
      padding: 6px 12px;
      border-radius: 6px;
      color: rgba(255,255,255,0.8);
      transition: var(--transition);
    }

    .lang-switcher a.active {
      background: rgba(255,255,255,0.25);
      color: var(--white);
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }

    .lang-switcher a:hover:not(.active) {
      color: var(--white);
    }

    /* ===== HERO ===== */
    .hero { background: linear-gradient(135deg, var(--primary) 0%, #1e3a5f 100%); padding: 80px 24px; text-align: center; color: var(--white); }
    .hero h1 { font-size: 42px; font-weight: 800; margin-bottom: 16px; }
    .hero p { font-size: 18px; opacity: 0.9; max-width: 600px; margin: 0 auto; }

    /* ===== BREADCRUMB ===== */
    .breadcrumb { background: var(--light); padding: 12px 0; border-bottom: 1px solid rgba(26,60,110,0.08); }
    .breadcrumb-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; font-size: 13px; color: var(--gray); }
    .breadcrumb-inner a { color: var(--primary); text-decoration: none; }
    .breadcrumb-inner a:hover { text-decoration: underline; }
    .breadcrumb-sep { margin: 0 8px; color: var(--gray); }

    /* ===== MAIN CONTENT ===== */
    .container { max-width: 1200px; margin: 0 auto; padding: 60px 24px; }

    /* ===== ABOUT SECTIONS ===== */
    .about-section { margin-bottom: 80px; }
    .about-section:last-child { margin-bottom: 0; }

    .section-header { text-align: center; margin-bottom: 48px; }
    .section-header h2 { font-size: 32px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
    .section-header p { font-size: 16px; color: var(--gray); max-width: 600px; margin: 0 auto; }

    /* ===== COMPANY INTRO ===== */
    .intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .intro-content h3 { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
    .intro-content p { font-size: 16px; color: #4b5563; margin-bottom: 16px; line-height: 1.8; }
    .intro-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; }
    .stat-item { text-align: center; padding: 24px; background: var(--white); border-radius: 12px; box-shadow: var(--shadow); }
    .stat-number { font-size: 36px; font-weight: 800; color: var(--accent); display: block; }
    .stat-label { font-size: 14px; color: var(--gray); margin-top: 4px; }

    .intro-image { position: relative; }
    .intro-image img { border-radius: 16px; box-shadow: var(--shadow-lg); }

    /* ===== WHY CHOOSE US ===== */
    .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .feature-card { background: var(--white); padding: 32px; border-radius: 16px; box-shadow: var(--shadow); text-align: center; transition: var(--transition); }
    .feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .feature-icon { width: 64px; height: 64px; border: 2px solid var(--accent2); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--primary); background: transparent; }
    .feature-icon svg { width: 32px; height: 32px; stroke: var(--primary); }
    .feature-card h3, .feature-card h4 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
    .feature-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

    /* ===== CERTIFICATIONS ===== */
    .cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .cert-item { background: var(--white); padding: 32px 24px; border-radius: 12px; text-align: center; box-shadow: var(--shadow); }
    .cert-icon { width: 48px; height: 48px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; color: var(--primary); }
    .cert-icon svg { width: 100%; height: 100%; }
    .cert-item h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
    .cert-item p { font-size: 13px; color: var(--gray); }

    /* ===== PROCESS ===== */
    .process-steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
    .process-step { text-align: center; position: relative; }
    .process-step:not(:last-child)::after { content: '→'; position: absolute; right: -18px; top: 30px; color: var(--accent); font-size: 20px; font-weight: 700; }
    .step-number { width: 60px; height: 60px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; margin: 0 auto 16px; }
    .process-step h4 { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
    .process-step p { font-size: 12px; color: var(--gray); }

    /* ===== CTA SECTION ===== */
    .cta-section { background: linear-gradient(135deg, var(--primary), #1e3a5f); padding: 80px 24px; text-align: center; color: var(--white); border-radius: 24px; margin-top: 80px; }
    .cta-section h2 { font-size: 36px; font-weight: 700; margin-bottom: 16px; }
    .cta-section p { font-size: 18px; opacity: 0.9; margin-bottom: 32px; }
    .cta-btn { display: inline-block; background: #1a3c6e; color: #ffffff; padding: 16px 40px; border-radius: 8px; font-size: 16px; font-weight: 700; transition: var(--transition); }
    .cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,168,75,0.4); }
    .cta-btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
    .cta-btn-outline:hover { background: var(--primary); color: var(--white); }

    /* ===== FOOTER ===== */
    footer { background: var(--primary); color: var(--white); padding: 60px 24px 24px; margin-top: 80px; }
    .footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
    .footer-section h4 { font-size: 16px; font-weight: 700; margin-bottom: 20px; color: #ffffff; }
    .footer-section p, .footer-section li { font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 12px; line-height: 1.6; }
    .footer-section a { color: rgba(255,255,255,0.8); transition: var(--transition); }
    .footer-section a:hover { color: var(--accent); }
    .footer-bottom { max-width: 1200px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 14px; color: rgba(255,255,255,0.95); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .intro-grid { grid-template-columns: 1fr; }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .cert-grid { grid-template-columns: repeat(2, 1fr); }
      .process-steps { grid-template-columns: repeat(3, 1fr); }
      .process-step:nth-child(3)::after { display: none; }
      .footer-content { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .hero h1 { font-size: 32px; }
      .features-grid { grid-template-columns: 1fr; }
      .cert-grid { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: repeat(2, 1fr); }
      .process-step::after { display: none; }
      .footer-content { grid-template-columns: 1fr; }
      .lang-switcher { margin-left: 8px; padding-left: 8px; }
    }
  
    /* ===== TOPIC CLUSTER DROPDOWN NAV ===== */
    .dropdown { position: relative; }
    .dropdown > a::after,
    .dropbtn::after { content: " ▼"; font-size: 10px; opacity: 0.7; margin-left: 4px; }
    .dropdown-content {
      display: none; position: absolute; top: 100%; left: 0;
      background: var(--primary, #1a1a1a); min-width: 220px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.25); border-radius: 8px;
      padding: 8px 0; list-style: none; z-index: 1000;
    }
    .dropdown-content a {
      display: block; padding: 10px 18px; color: rgba(255,255,255,0.9);
      font-size: 14px; white-space: nowrap; text-decoration: none;
    }
    .dropdown-content a:hover { background: rgba(255,255,255,0.12); color: #fff; }
    .dropdown:hover .dropdown-content { display: block; }
    .dropdown-header {
      padding: 8px 18px; font-size: 12px; text-transform: uppercase;
      letter-spacing: 0.5px; color: var(--accent, #e8a020); font-weight: 700;
    }
    .dropdown-divider { height: 1px; background: rgba(255,255,255,0.12); margin: 6px 0; }
    @media (max-width: 991px) {
      .dropdown-content { position: static; box-shadow: none; background: rgba(0,0,0,0.15); min-width: auto; margin-left: 12px; }
      .dropdown-content a { padding: 8px 16px; }
    }
    button.hamburger { background: transparent; border: none; padding: 8px; }




    .nav-links.open { display: flex; }



.float-btns {
  position: fixed; bottom: 28px; right: 24px;
  display: flex; flex-direction: column; gap: 12px;
  z-index: 999;
}
.float-btn { position: fixed; right: 20px; z-index: 999; background: #1a3c6e; color: #ffffff; border-radius: 50px; padding: 13px 20px; font-size: 14px; font-weight: 700; box-shadow: 0 4px 18px rgba(0,0,0,0.2); transition: var(--transition); text-decoration: none; }
.float-btn:hover { background: #2a4a7a; transform: translateY(-3px); }
.float-wa { background: #146c3c !important; color: #ffffff !important; box-shadow: 0 4px 18px rgba(20,108,60,0.35); }
.float-wa:hover { background: #0f522d !important; }
