  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy: #0B1F4B;
      --gold: #C8972B;
      --light-gold: #F5E6C8;
      --teal: #1A6B7A;
      --light-gray: #F4F6F9;
      --text: #2C2C2C;
      --muted: #6B7280;
      --white: #FFFFFF;
    }

    body {
      font-family: 'Segoe UI', Arial, sans-serif;
      color: var(--text);
      line-height: 1.7;
    }

    a { text-decoration: none; color: inherit; }

    /* ─── NAV ─── */
    nav {
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 60px;
      height: 75px;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 14px;
    }


    .logo-text { color: var(--white); }
    .logo-text .company { font-size: 17px; font-weight: 700; letter-spacing: 0.5px; }
    .logo-text .tagline { font-size: 10px; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; }

    .nav-links {
      display: flex;
      gap: 30px;
      list-style: none;
    }

    .nav-links a {
      color: rgba(255,255,255,0.85);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.3px;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--gold); }

    .nav-cta {
      background: var(--gold);
      color: var(--navy) !important;
      padding: 9px 22px;
      border-radius: 4px;
      font-weight: 700 !important;
      transition: background 0.2s !important;
    }

    .nav-cta:hover { background: #E5AB3A !important; color: var(--navy) !important; }

    /* ─── HERO ─── */
    .hero {
      background: linear-gradient(135deg, var(--navy) 0%, #163372 50%, var(--teal) 100%);
      color: var(--white);
      padding: 100px 60px;
      position: relative;
      overflow: hidden;
      min-height: 580px;
      display: flex;
      align-items: center;
    }

    .hero::before {
      content: '';
      position: absolute;
      right: -80px;
      top: -80px;
      width: 500px;
      height: 500px;
      border: 80px solid rgba(200,151,43,0.12);
      border-radius: 50%;
    }

    .hero::after {
      content: '';
      position: absolute;
      right: 80px;
      bottom: -120px;
      width: 350px;
      height: 350px;
      border: 60px solid rgba(200,151,43,0.08);
      border-radius: 50%;
    }

    .hero-content { max-width: 700px; position: relative; z-index: 2; }

    .hero-badge {
      display: inline-block;
      background: rgba(200,151,43,0.2);
      border: 1px solid var(--gold);
      color: var(--gold);
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 24px;
    }

    .hero h1 {
      font-size: clamp(32px, 4vw, 54px);
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 22px;
    }

    .hero h1 span { color: var(--gold); }

    .hero p {
      font-size: 17px;
      color: rgba(255,255,255,0.85);
      max-width: 600px;
      margin-bottom: 38px;
    }

    .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

    .btn-primary {
      background: var(--gold);
      color: var(--navy);
      padding: 14px 32px;
      border-radius: 5px;
      font-weight: 700;
      font-size: 15px;
      transition: background 0.2s, transform 0.2s;
    }
 .btn-primary:hover { background: #E5AB3A; transform: translateY(-1px); }

    .btn-outline {
      border: 2px solid rgba(255,255,255,0.5);
      color: var(--white);
      padding: 14px 32px;
      border-radius: 5px;
      font-weight: 600;
      font-size: 15px;
      transition: border-color 0.2s, background 0.2s;
    }

    .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

    /* ─── STATS STRIP ─── */
    .stats-strip {
      background: var(--white);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-bottom: 3px solid var(--light-gold);
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    }

    .stat-item {
      padding: 28px 20px;
      text-align: center;
      border-right: 1px solid #E8ECF0;
    }

    .stat-item:last-child { border-right: none; }

    .stat-item .number {
      font-size: 36px;
      font-weight: 800;
      color: var(--navy);
      line-height: 1;
    }

    .stat-item .number span { color: var(--gold); }

    .stat-item .label {
      font-size: 13px;
      color: var(--muted);
      margin-top: 6px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* ─── SECTIONS ─── */
    section { padding: 80px 60px; }

    .section-tag {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }

    h2 {
      font-size: clamp(26px, 3vw, 38px);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 18px;
    }

    .section-intro {
      font-size: 16px;
      color: var(--muted);
      max-width: 650px;
      margin-bottom: 50px;
    }

    /* ─── ABOUT ─── */
    .about-section { background: var(--white); }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .about-visual {
      background: linear-gradient(145deg, var(--navy), var(--teal));
      border-radius: 12px;
      padding: 50px 40px;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .about-visual::before {
      content: 'AC';
      position: absolute;
      right: -20px;
      bottom: -30px;
      font-size: 150px;
      font-weight: 900;
      color: rgba(255,255,255,0.05);
      line-height: 1;
    }

    .about-visual h3 {
      font-size: 22px;
      margin-bottom: 20px;
      color: var(--gold);
    }

    .about-visual p {
      font-size: 15px;
      color: rgba(255,255,255,0.85);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .about-values {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 24px;
    }

    .value-chip {
      background: rgba(200,151,43,0.15);
      border-left: 3px solid var(--gold);
      padding: 10px 14px;
      border-radius: 4px;
      font-size: 13px;
      font-weight: 600;
    }

    .about-text p { margin-bottom: 16px; font-size: 16px; color: #444; }

    .mission-box {
      background: var(--light-gold);
      border-left: 4px solid var(--gold);
      padding: 20px 24px;
      border-radius: 0 8px 8px 0;
      margin-top: 24px;
    }

    .mission-box strong { color: var(--navy); display: block; margin-bottom: 6px; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; }

    /* ─── SERVICES ─── */
    .services-section { background: var(--light-gray); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .service-card {
      background: var(--white);
      border-radius: 10px;
      padding: 36px 30px;
      border: 1px solid #E2E8F0;
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
      position: relative;
      overflow: hidden;
    }

    .service-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform 0.3s;
    }
 .service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); border-color: var(--gold); }
    .service-card:hover::after { transform: scaleX(1); }

    .service-icon {
      width: 56px;
      height: 56px;
      background: var(--navy);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      margin-bottom: 20px;
    }

    .service-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 12px;
    }

    .service-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

    /* ─── WHY US ─── */
    .why-section {
      background: var(--navy);
      color: var(--white);
    }

    .why-section h2 { color: var(--white); }
    .why-section .section-tag { color: var(--gold); }
    .why-section .section-intro { color: rgba(255,255,255,0.75); }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .why-item {
      display: flex;
      gap: 20px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px;
      padding: 28px 24px;
      transition: background 0.2s;
    }

    .why-item:hover { background: rgba(255,255,255,0.1); }

    .why-number {
      font-size: 40px;
      font-weight: 900;
      color: var(--gold);
      opacity: 0.4;
      line-height: 1;
      flex-shrink: 0;
    }

    .why-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--gold); }
    .why-item p { font-size: 14px; color: rgba(255,255,255,0.75); }

    /* ─── SECTORS ─── */
    .sectors-section { background: var(--white); }

    .sectors-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .sector-card {
      background: var(--light-gray);
      border-radius: 10px;
      padding: 30px 20px;
      text-align: center;
      transition: transform 0.2s, background 0.2s;
      border: 2px solid transparent;
    }

    .sector-card:hover { transform: translateY(-4px); background: var(--light-gold); border-color: var(--gold); }

    .sector-icon { font-size: 36px; margin-bottom: 14px; }

    .sector-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .sector-card p { font-size: 13px; color: var(--muted); }

    /* ─── PROCESS ─── */
    .process-section { background: var(--light-gray); }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      position: relative;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(to right, var(--gold), var(--teal));
      z-index: 0;
    }

    .step {
      text-align: center;
      padding: 0 10px;
      position: relative;
      z-index: 1;
    }

    .step-circle {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--navy);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 28px;
      border: 4px solid var(--white);
      box-shadow: 0 4px 15px rgba(11,31,75,0.25);
    }

    .step h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .step p { font-size: 13px; color: var(--muted); }

    /* ─── TESTIMONIAL ─── */
    .testimonial-section {
      background: linear-gradient(135deg, var(--teal), var(--navy));
      color: var(--white);
      text-align: center;
      padding: 90px 60px;
    }

    .testimonial-section h2 { color: var(--white); margin-bottom: 50px; }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .testimonial-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 12px;
      padding: 32px;
      text-align: left;
    }
 .quote-mark { font-size: 48px; color: var(--gold); line-height: 1; margin-bottom: 10px; }
    .testimonial-card p { font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 20px; line-height: 1.7; }
    .testimonial-author strong { display: block; color: var(--gold); font-size: 14px; }
    .testimonial-author span { font-size: 12px; color: rgba(255,255,255,0.55); }

    /* ─── CONTACT ─── */
    .contact-section { background: var(--white); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 60px;
      align-items: start;
    }

    .contact-info h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }

    .contact-detail {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      margin-bottom: 20px;
      padding: 16px;
      background: var(--light-gray);
      border-radius: 8px;
    }

    .contact-detail .icon {
      font-size: 22px;
      flex-shrink: 0;
    }

    .contact-detail strong { display: block; font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
    .contact-detail p { font-size: 15px; color: var(--navy); font-weight: 500; }

    .contact-form { display: flex; flex-direction: column; gap: 18px; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

    .form-group { display: flex; flex-direction: column; }

    label { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }

    input, select, textarea {
      border: 1.5px solid #D1D5DB;
      border-radius: 6px;
      padding: 12px 16px;
      font-size: 14px;
      font-family: inherit;
      color: var(--text);
      background: var(--white);
      transition: border-color 0.2s;
      outline: none;
    }

    input:focus, select:focus, textarea:focus { border-color: var(--navy); }

    textarea { resize: vertical; min-height: 120px; }

    .form-submit {
      background: var(--navy);
      color: var(--white);
      border: none;
      padding: 14px 32px;
      border-radius: 6px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.2s;
      align-self: flex-start;
    }

    .form-submit:hover { background: var(--teal); }

    /* ─── FOOTER ─── */
    footer {
      background: #07122E;
      color: rgba(255,255,255,0.7);
      padding: 60px 60px 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 50px;
    }

    .footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; }

    .footer-col h4 {
      color: var(--white);
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 18px;
    }

    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--gold); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
    }

    .footer-bottom a { color: var(--gold); }

    .rc-badge {
      background: rgba(200,151,43,0.15);
      border: 1px solid rgba(200,151,43,0.3);
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 12px;
      color: var(--gold);
    }
    @media (max-width: 1024px) {

nav {
  padding: 0 25px;
}

section {
  padding: 60px 25px;
}

.services-grid {
  grid-template-columns: repeat(2, 1fr);
}

.sectors-grid {
  grid-template-columns: repeat(2, 1fr);
}

.about-grid,
.contact-grid {
  grid-template-columns: 1fr;
}

.testimonials-grid {
  grid-template-columns: 1fr;
}

.footer-grid {
  grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 768px) {

nav {
  flex-wrap: wrap;
  height: auto;
  padding: 15px;
}

.nav-links {
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
}

.hero {
  padding: 70px 20px;
}

section {
  padding: 50px 20px;
}

.stats-strip {
  grid-template-columns: 1fr 1fr;
}

.services-grid {
  grid-template-columns: 1fr;
}

.sectors-grid {
  grid-template-columns: 1fr;
}

.why-grid {
  grid-template-columns: 1fr;
}

.process-steps {
  grid-template-columns: 1fr;
  gap: 30px;
}

.process-steps::before {
  display: none;
}

.form-row {
  grid-template-columns: 1fr;
}

.footer-grid {
  grid-template-columns: 1fr;
}

.footer-bottom {
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
}
.logo-img {
  height: 48px;
  width: auto;
}
