:root {
      --primary: #0a2e5e;
      --accent: #e8a020;
      --light-bg: #f4f7fc;
      --text-dark: #1a1a2e;
      --text-muted: #5a6a85;
      --white: #ffffff;
      --border: #d8e3f0;
    }
    .text-justify{
      text-align:justify;
    }
    .border-25{
      border-radius:10px;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Open Sans', sans-serif;
      color: var(--text-dark);
      background: #fff;
    }

    h1, h2, h3, h4, h5 {
      font-family: 'Montserrat', sans-serif;
    }

    /* ── NAVBAR ── */
    .navbar {
      /* background: var(--primary) !important; */
      background: #0a2e5ef7;
      padding: 0.75rem 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    }
    .navbar-brand {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 1.1rem;
      color: var(--white) !important;
      letter-spacing: 0.03em;
    }
    .navbar-brand span { color: var(--accent); }
    .nav-link {
      color: rgba(255,255,255,0.85) !important;
      font-weight: 600;
      font-size: 0.82rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.5rem 0.9rem !important;
      transition: color 0.2s;
    }
    .nav-link:hover, .nav-link.active {
      color: var(--accent) !important;
    }
    .navbar-toggler { border-color: rgba(255,255,255,0.4); }
    .navbar-toggler-icon { filter: invert(1); }

    /* ── HERO ── */
    #hero {
      background: linear-gradient(135deg, #0a2e5e 0%, #163d7c 55%, #1e4f9c 100%);
      min-height: 88vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 80px 0 60px;
    }
    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .hero-logo-wrap {
      background: rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 18px 22px;
      display: inline-block;
      margin-bottom: 28px;
      border: 1px solid rgba(255,255,255,0.2);
      backdrop-filter: blur(6px);
    }
    .hero-logo-wrap img {
      max-height: 70px;
      max-width: 220px;
      object-fit: contain;
    }
    #hero h1 {
      font-size: clamp(1.9rem, 4vw, 3rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
    }
    #hero h1 span { color: var(--accent); }
    #hero p.lead {
      color: rgba(255,255,255,0.82);
      font-size: 1.08rem;
      max-width: 560px;
      margin-top: 18px;
      line-height: 1.7;
    }
    .hero-btns { margin-top: 32px; gap: 14px; display: flex; flex-wrap: wrap; }
    .btn-accent {
      background: var(--accent);
      color: #fff;
      font-weight: 700;
      border: none;
      padding: 13px 32px;
      border-radius: 8px;
      font-family: 'Montserrat', sans-serif;
      letter-spacing: 0.04em;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-accent:hover { background: #c9870d; color: #fff; transform: translateY(-2px); }
    .btn-outline-white {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255,255,255,0.6);
      padding: 11px 30px;
      border-radius: 8px;
      font-weight: 700;
      font-family: 'Montserrat', sans-serif;
      transition: all 0.2s;
    }
    .btn-outline-white:hover { background: rgba(255,255,255,0.12); color: #fff; }

    .hero-image-col img {
      max-width: 100%;
      border-radius: 18px;
      box-shadow: 0 24px 64px rgba(0,0,0,0.35);
    }

    /* ── SECTION COMMON ── */
    section { padding: 80px 0; }
    .section-title {
      font-size: clamp(1.5rem, 3vw, 2.1rem);
      font-weight: 800;
      color: var(--primary);
      position: relative;
      display: inline-block;
      margin-bottom: 12px;
    }
    .section-title::after {
      content: '';
      display: block;
      width: 52px;
      height: 4px;
      background: var(--accent);
      border-radius: 2px;
      margin-top: 10px;
    }
    .section-title.center { display: block; text-align: center; }
    .section-title.center::after { margin: 10px auto 0; }
    .section-eyebrow {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 8px;
    }

    /* ── ABOUT ── */
    #about { background: var(--light-bg); }
    .about-card {
      background: #fff;
      border-radius: 14px;
      padding: 36px;
      border: 1px solid var(--border);
      height: 100%;
    }
    .about-card p {
      color: var(--text-muted);
      line-height: 1.8;
      font-size: 0.97rem;
    }
    .about-img-wrap {
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 12px 40px rgba(10,46,94,0.12);
    }
    .about-img-wrap img { width: 100%; display: block; }

    /* ── MISSION ── */
    #mission {
      background: var(--primary);
      position: relative;
      overflow: hidden;
    }
    #mission::before {
      content: '"';
      position: absolute;
      font-size: 28rem;
      color: rgba(255,255,255,0.04);
      font-family: Georgia, serif;
      line-height: 1;
      top: -80px;
      left: -30px;
    }
    .mission-text {
      font-size: clamp(1.25rem, 2.5vw, 1.8rem);
      font-weight: 700;
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      line-height: 1.55;
    }
    .mission-text span { color: var(--accent); }

    /* ── SERVICES / VALUE ADDED ── */
    #services { background: #fff; }
    .service-card {
      border-radius: 14px;
      padding: 30px 26px;
      border: 1px solid var(--border);
      background: var(--light-bg);
      height: 100%;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 40px rgba(10,46,94,0.1);
    }
    .service-icon {
      width: 56px;
      height: 56px;
      background: var(--primary);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }
    .service-icon i { color: var(--accent); font-size: 1.4rem; }
    .service-card h5 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 10px;
    }
    .service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

    /* ── CLIENTELE ── */
    #clientele { background: var(--light-bg); }
    .client-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 10px 22px;
      font-weight: 600;
      color: var(--primary);
      font-size: 0.92rem;
      transition: all 0.2s;
    }
    .client-badge:hover {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }
    .client-badge i { color: var(--accent); font-size: 1rem; }

    /* ── CORE TEAM ── */
    #team { background: #fff; }
    .team-card {
      background: var(--light-bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 30px 24px;
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    .team-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: var(--accent);
    }
    .team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f1f1f1;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
    /* .team-avatar {
      width: 64px;
      height: 64px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }
    .team-avatar i { color: var(--accent); font-size: 1.6rem; } */
    .team-card h5 {
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 4px;
    }
    .team-role {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 14px;
    }
    .team-card p {
      color: var(--text-muted);
      font-size: 0.88rem;
      line-height: 1.7;
    }
    .addon-badge {
      display: inline-block;
      background: var(--primary);
      color: var(--white);
      font-size: 0.76rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 50px;
      margin-top: 12px;
      letter-spacing: 0.04em;
    }

    /* ── BACKGROUND ── */
    #background { background: var(--primary); }
    .bg-fact {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .bg-fact:last-child { border-bottom: none; }
    .bg-fact-icon {
      width: 44px;
      height: 44px;
      background: rgba(232,160,32,0.18);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .bg-fact-icon i { color: var(--accent); font-size: 1.1rem; }
    .bg-fact p {
      color: rgba(255,255,255,0.8);
      font-size: 0.92rem;
      line-height: 1.65;
      margin: 0;
    }

    /* ── BELIEF SYSTEM ── */
    #belief { background: var(--light-bg); }
    .belief-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 18px 20px;
      background: #fff;
      border-radius: 12px;
      border: 1px solid var(--border);
      margin-bottom: 14px;
      transition: box-shadow 0.2s;
    }
    .belief-item:hover { box-shadow: 0 8px 24px rgba(10,46,94,0.08); }
    .belief-num {
      width: 36px;
      height: 36px;
      background: var(--primary);
      color: var(--accent);
      font-weight: 800;
      font-size: 0.85rem;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-family: 'Montserrat', sans-serif;
    }
    .belief-item p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.65; margin: 0; }

    /* ── EXCELLENCE ── */
    #excellence { background: #fff; }
    .excellence-card {
      background: var(--light-bg);
      border-radius: 14px;
      padding: 28px 24px;
      height: 100%;
      border: 1px solid var(--border);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .excellence-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 36px rgba(10,46,94,0.09);
    }
    .excellence-card .icon-wrap {
      width: 52px;
      height: 52px;
      background: var(--primary);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }
    .excellence-card .icon-wrap i { color: var(--accent); font-size: 1.3rem; }
    .excellence-card h6 {
      font-weight: 700;
      color: var(--primary);
      font-size: 0.95rem;
      margin-bottom: 8px;
    }
    .excellence-card p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.65; margin: 0; }

    /* ── INDUSTRY EXPERTISE ── */
    #industry { background: var(--light-bg); }
    .industry-pill {
      display: flex;
      align-items: center;
      gap: 12px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 14px 20px;
      font-weight: 600;
      color: var(--primary);
      font-size: 0.93rem;
      transition: all 0.2s;
      height: 100%;
    }
    .industry-pill:hover {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }
    .industry-pill:hover i { color: var(--accent); }
    .industry-pill i { color: var(--primary); font-size: 1.1rem; transition: color 0.2s; }

    /* ── CONTACT ── */
    #contact { background: var(--primary); }
    .contact-info-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 14px;
      padding: 28px;
      backdrop-filter: blur(4px);
    }
    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .contact-info-item:last-child { border-bottom: none; }
    .contact-info-icon {
      width: 44px;
      height: 44px;
      background: var(--accent);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contact-info-icon i { color: #fff; font-size: 1.1rem; }
    .contact-info-item h6 {
      color: rgba(255,255,255,0.6);
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }
    .contact-info-item p {
      color: #fff;
      font-size: 0.93rem;
      margin: 0;
      line-height: 1.5;
    }

    /* Contact Form */
    .contact-form-card {
      background: #fff;
      border-radius: 14px;
      padding: 36px 32px;
    }
    .contact-form-card h4 {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 6px;
    }
    .contact-form-card .sub {
      color: var(--text-muted);
      font-size: 0.9rem;
      margin-bottom: 24px;
    }
    .form-control, .form-select {
      border: 1.5px solid var(--border);
      border-radius: 8px;
      padding: 11px 14px;
      font-size: 0.9rem;
      color: var(--text-dark);
      background: var(--light-bg);
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(10,46,94,0.1);
      background: #fff;
    }
    .form-label { font-weight: 600; font-size: 0.85rem; color: var(--primary); margin-bottom: 6px; }
    .btn-submit {
      background: var(--primary);
      color: #fff;
      font-weight: 700;
      border: none;
      padding: 13px 36px;
      border-radius: 8px;
      font-family: 'Montserrat', sans-serif;
      letter-spacing: 0.04em;
      width: 100%;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-submit:hover { background: #0d3b78; transform: translateY(-1px); color: #fff; }

    /* ── FOOTER ── */
    footer {
      background: #08203f;
      color: rgba(255,255,255,0.6);
      padding: 24px 0;
      text-align: center;
      font-size: 0.85rem;
    }
    footer span { color: var(--accent); }

    /* ── UTILITIES ── */
    .divider {
      height: 1px;
      background: linear-gradient(to right, transparent, var(--border), transparent);
      margin: 0;
    }

    @media (max-width: 768px) {
      section { padding: 60px 0; }
      .contact-form-card { padding: 26px 20px; }
      .about-card { padding: 24px 20px; }
    }