    :root {
      --primary-blue: #0d6efd;
      --accent-blue: #1665d8;
      --light-blue: #38bdf8;
      --dark-navy: #061329;
      --card-bg: #f8fafc;
      --text-main: #0f172a;
      --text-muted: #64748b;
      --border-color: #e2e8f0;
    }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: var(--text-main);
      background-color: #ffffff;
      overflow-x: hidden;
    }

    img, svg {
      vertical-align: middle;
      max-width: 100%;
    }

    /* Navigation Header */
    .navbar {
      padding: 1.25rem 0;
      background-color: #f9fbfe;
      transition: all 0.3s ease;
    }

    .navbar-collapse {
      flex-grow: unset;
    }

    .nav-link {
      font-weight: 700;
      font-size: 0.95rem;
      color: #0f172a;
      text-transform: uppercase;
      margin: 0 0.75rem;
      transition: color 0.2s ease;
    }

    @media (max-width: 1024px) {
      .nav-link {
        font-size: 0.65rem;
        margin: 0 0.35rem;
      }
      .navbar .contact-detail-item {
        font-size: 0.75rem;
      }
    }

    .nav-link:hover, .nav-link.active {
      color: var(--primary-blue);
    }

    .logo {
      max-width: 120px;
    }

    @media (max-width: 1366px) {
      .logo {
        max-width: 80px;
      }
    }

    .navbar .contact-detail-item {
      margin-bottom: 0rem;
    }

    .navbar .contact-detail-item {
      font-size: 0.95rem;
    }

    /* Buttons */
    .btn-pill-primary {
      background-color: var(--primary-blue);
      color: #ffffff;
      font-weight: 700;
      font-size: 0.8rem;
      padding: 0.75rem 1.85rem;
      border-radius: 6px;
      border: 2px solid var(--primary-blue);
      text-transform: uppercase;
      transition: all 0.25s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-pill-primary:hover {
      background-color: #0b5ed7;
      border-color: #0b5ed7;
      color: #ffffff;
      box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25);
    }

    .btn-pill-outline {
      background-color: transparent;
      color: var(--primary-blue);
      font-weight: 700;
      font-size: 0.8rem;
      padding: 0.75rem 1.85rem;
      border-radius: 6px;
      border: 2px solid var(--primary-blue);
      text-transform: uppercase;
      transition: all 0.25s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-pill-outline:hover {
      background-color: var(--primary-blue);
      color: #ffffff;
      box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2);
    }

    /* Hero Section */
    .hero-section {
      position: relative;
      padding: 5rem 0;
      overflow: hidden;
    }

    @media (max-width: 1366px) {
      .hero-section {
        padding: 2rem 0;
      }
    }

    .hero-section img {
      border-radius: 40px;
    }

    .hero-tag {
      font-size: 0.85rem;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--primary-blue);
      margin-bottom: 0.75rem;
      display: block;
    }

    .hero-title {
      font-size: 3.2rem;
      font-weight: 800;
      line-height: 1.1;
      color: #0f172a;
      text-transform: uppercase;
    }

    .hero-title span {
      color: var(--primary-blue);
    }

    .hero-desc {
      font-size: 1.35rem;
      max-width: 470px;
      margin-top: 1.5rem;
      margin-bottom: 2.25rem;
      line-height: 1.6;
    }

    .hero-graphic-wrapper {
      position: relative;
      width: 100%;
      min-height: 440px;
    }

    /* Section Headers */
    .section-tag {
      font-size: 0.78rem;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--primary-blue);
      margin-bottom: 0.5rem;
      display: block;
    }

    .section-title {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--text-main);
    }

    .section-subtitle {
      color: var(--text-muted);
      max-width: 580px;
      margin: 0.5rem auto 0 auto;
      font-size: 0.95rem;
    }

    /* Services Section */
    .services-section {
      padding: 5rem 0;
      background-color: #f9fbfe;
    }

    @media (max-width: 1366px) {
      .services-section {
        padding: 2rem 0;
      }
    }

    .service-card {
      background-color: #ffffff;
      border: 1px solid #edf2f7;
      border-radius: 12px;
      padding: 2.25rem 1.5rem;
      height: 100%;
      text-align: center;
      transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
      display: flex;
      flex-direction: column;
      align-items: center;
      cursor: pointer;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 15px 35px rgba(13, 110, 253, 0.1);
      border-color: #dbeaff;
    }

    .service-icon-wrapper {
      width: 128px;
      height: 128px;
      border-radius: 50%;
      background-color: #eff6ff;
      color: var(--primary-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3.4rem;
      margin-bottom: 1.25rem;
      transition: all 0.3s ease;
    }

    .service-card:hover .service-icon-wrapper {
      background-color: var(--primary-blue);
      color: #ffffff;
    }

    .service-card-title {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      color: #0f172a;
    }

    .service-card-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.55;
      margin: 0;
    }

    /* Why Choose Us Banner Section */
    .why-us-banner {
      color: #ffffff;
      padding: 8.5rem 0;
      position: relative;
      overflow: hidden;
      background-image: url(/banner.png);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center center;
    }

    .why-us-banner .section-tag {
      color: #38bdf8;
    }

    .why-us-banner .section-title {
      color: #ffffff;
      font-size: 2.2rem;
    }

    .feature-item-box {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem;
    }

    .feature-icon-circle {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.25rem;
      flex-shrink: 0;
    }

    .feature-label {
      font-size: 1.25rem;
      font-weight: 300;
      color: #ffffff;
    }

    /* Our Approach Timeline */
    .approach-section {
      padding: 5.5rem 0;
      background-color: #ffffff;
    }

    .process-timeline {
      position: relative;
      margin-top: 4rem;
    }

    /* Connector Line */
    .process-timeline::before {
      content: '';
      position: absolute;
      top: 85px;
      left: 10%;
      right: 10%;
      height: 2px;
      border-top: 2px dashed #cbd5e1;
      z-index: 1;
    }

    @media (max-width: 991px) {
      .process-timeline::before {
        display: none;
      }
    }

    .process-step {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .step-icon-circle {
      width: 124px;
      height: 124px;
      border-radius: 50%;
      background: #eff6ff;
      border: 2px solid #3b82f6;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.25rem auto;
      color: var(--primary-blue);
      font-size: 3.4rem;
      box-shadow: 0 4px 12px rgba(13, 110, 253, 0.1);
      transition: all 0.3s ease;
    }

    .process-step:hover .step-icon-circle {
      background-color: var(--primary-blue);
      color: #ffffff;
    }

    .step-title {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: #0f172a;
    }

    /* Contact Section */
    .contact-section {
      padding: 4rem 0 5rem 0;
      background-color: #f8fafc;
    }

    .contact-card {
      background-color: #ffffff;
      border-radius: 16px;
      border: 1px solid #e2e8f0;
      padding: 3.5rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    }

    .contact-title {
      font-size: 2rem;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 0.75rem;
    }

    .contact-desc {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin-bottom: 2rem;
    }

    .contact-detail-item {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      margin-bottom: 1.25rem;
      text-decoration: none;
      color: #0f172a;
      font-weight: 700;
      font-size: 1.1rem;
      transition: color 0.2s;
    }

    .contact-detail-item:hover {
      color: var(--primary-blue);
    }

    @media (max-width: 768px) {
      .contact-detail-item {
        font-size: 0.8rem;
      }
    }

    .contact-icon-box {
      min-width: 52px;
      width: 52px;
      height: 52px;
      border: 1.5px solid #dbeaff;
      border-radius: 12px;
      color: var(--primary-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      background-color: #eff6ff;
    }

    /* Footer */
    footer {
      background-color: #050d1a;
      color: #94a3b8;
      padding: 2.25rem 0;
      font-size: 0.85rem;
    }

    .footer-logo-text {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      text-decoration: none;
    }

     @media (max-width: 768px) {
      .footer-logo-text {
        justify-content: center;
      }
    }