: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 { position: relative; z-index: 1; 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 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); }

    /* ===== TRUSTED CLIENTS ===== */
    .trusted-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .trusted-card { background: #fff; padding: 40px 28px; border-radius: 16px; text-align: center; box-shadow: 0 4px 20px rgba(30,58,95,0.06); border: 1px solid rgba(26,60,110,0.06); transition: all 0.3s ease; }
    .trusted-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(26,60,110,0.12); }
    .trusted-icon { font-size: 48px; margin-bottom: 16px; }
    .trusted-card h4 { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
    .trusted-region { display: inline-block; font-size: 12px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
    .trusted-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

    /* ===== 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: var(--accent); color: var(--primary); 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: var(--accent); }
    .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.6); }

    /* ===== 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; }
      .trusted-grid { grid-template-columns: 1fr; }
      .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; }
    }
  
.dropdown-header {
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2c5282;
  background: #f7fafc;
  pointer-events: none;
}
.dropdown-divider {
  height: 1px;
  margin: 6px 0;
  background: #e2e8f0;
  overflow: hidden;
}



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



/* Resources dropdown nav */
.dropdown { position: relative; display: inline-block; }
.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 8px;
  background: transparent;
  z-index: 199;
}

.dropdown-toggle { display: inline-flex; align-items: center; gap: 4px; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  min-width: 200px;
  padding: 8px 0;
  list-style: none;
  margin: 0;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  z-index: 200;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: #2d3748;
  white-space: nowrap;
  text-decoration: none;
}
.dropdown-menu a:hover { background: #f7fafc; color: #2b6cb0; }
.dropdown-menu a.active { color: #2b6cb0; font-weight: 600; }




/* Unified header styles */
header {
  background: #1e3a5f !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 1000;
}
nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
.logo {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
header .logo::before {
  content: 'A';
  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;
  list-style: none;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}
.nav-links a:hover { background: rgba(255,255,255,0.15); color: #fff; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 8px;
  right: 8px;
  height: 2px;
  background: #d4a84b;
  border-radius: 1px;
}
.nav-cta {
  background: #d4a84b;
  color: #1e3a5f !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
}
.nav-cta:hover { background: #d49010; transform: translateY(-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: all 0.3s ease;
  text-decoration: none;
}
.lang-switcher a.active {
  background: rgba(255,255,255,0.25);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.lang-switcher a:hover:not(.active) { color: #fff; }
/* Resources dropdown nav */
.dropdown { position: relative; display: inline-block; }
.dropdown-toggle { display: inline-flex; align-items: center; gap: 4px; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  min-width: 200px;
  padding: 8px 0;
  list-style: none;
  margin: 0;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  z-index: 200;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu li { list-style: none; }
.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: #2d3748;
  white-space: nowrap;
  text-decoration: none;
}
.dropdown-menu a:hover { background: #f7fafc; color: #2b6cb0; }
.dropdown-menu a.active { color: #2b6cb0; font-weight: 600; }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
}




.float-btns {
  position: fixed; bottom: 28px; right: 24px;
  display: flex; flex-direction: column; gap: 12px;
  z-index: 999;
}
.float-btn {
  background: var(--accent); color: var(--primary);
  border-radius: 50px; padding: 13px 20px;
  font-size: 13px; font-weight: 800;
  box-shadow: 0 4px 18px rgba(232,160,32,0.45);
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition); white-space: nowrap;
}
.float-btn:hover { background: #f5b840; transform: translateY(-3px); }
.float-wa { background: #25d366 !important; color: #fff !important; box-shadow: 0 4px 18px rgba(37,211,102,0.35); }
.float-wa:hover { background: #20c55b !important; }
