    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Prompt", sans-serif;
      scroll-behavior: smooth;
    }

    body {
      background: #f4f7fb;
      color: #1f2937;
      line-height: 1.8;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

    /* =======================
       NAVBAR
    ======================= */
    header {
      width: 100%;
      background: rgba(15, 61, 110, 0.96);
      backdrop-filter: blur(12px);
      position: sticky;
      top: 0;
      z-index: 999;
      box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 0;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 14px;
      color: #fff;
    }

    .logo-circle {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: linear-gradient(135deg, #f4b400, #ffd54f);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: #0f3d6e;
      font-size: 1.15rem;
      box-shadow: 0 8px 24px rgba(244,180,0,0.35);
      flex-shrink: 0;
    }

    .logo-text h1 {
      font-size: 1.05rem;
      line-height: 1.2;
      font-weight: 600;
    }

    .logo-text span {
      font-size: 0.82rem;
      opacity: 0.9;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 24px;
      align-items: center;
    }

    nav ul li a {
      color: #fff;
      font-weight: 400;
      transition: 0.25s ease;
      position: relative;
    }

    nav ul li a:hover {
      color: #ffd54f;
    }

    nav ul li a::after {
      content: "";
      position: absolute;
      width: 0%;
      height: 2px;
      left: 0;
      bottom: -6px;
      background: #ffd54f;
      transition: 0.3s;
    }

    nav ul li a:hover::after {
      width: 100%;
    }

    .nav-btn {
      background: #f4b400;
      color: #0f3d6e !important;
      padding: 10px 18px;
      border-radius: 999px;
      font-weight: 600;
      box-shadow: 0 6px 20px rgba(244,180,0,0.25);
    }

    .nav-btn:hover {
      background: #ffd54f;
    }

    .menu-toggle {
      display: none;
      font-size: 1.8rem;
      color: #fff;
      cursor: pointer;
    }

    /* =======================
       SLIDER
    ======================= */
    .hero-slider {
      position: relative;
      width: 100%;
      height: 72vh;
      min-height: 420px;
      max-height: 760px;
      overflow: hidden;
    }

    .slides {
      display: flex;
      width: 200%;
      height: 100%;
      transition: transform 0.8s ease-in-out;
    }

    .slide {
      width: 100%;
      height: 100%;
      position: relative;
      flex-shrink: 0;
      overflow: hidden;
    }

    .slide-bg {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
      position: absolute;
      inset: 0;
      z-index: 0;
      transform: scale(1.02);
      animation: slowZoom 10s ease-in-out infinite alternate;
    }

    @keyframes slowZoom {
      from {
        transform: scale(1.02);
      }
      to {
        transform: scale(1.08);
      }
    }

    .slide::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        rgba(10, 31, 57, 0.45),
        rgba(10, 31, 57, 0.62)
      );
      z-index: 1;
    }

    .slide-content {
      position: absolute;
      inset: 0;
     /* display: flex;*/
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      z-index: 2;
      padding: 20px;
    }

    .slide-inner {
      max-width: 720px;
      animation: fadeUp 1s ease;
    }

    .badge {
     display: inline-block;
      background: rgba(255,255,255,0.14);
      border: 1px solid rgba(255,255,255,0.24);
      padding: 8px 16px;
      border-radius: 999px;
      margin-bottom: 20px;
      font-size: 0.95rem;
      backdrop-filter: blur(8px);
      color: #fff;
    }

    .slide-inner h2 {
      font-size: 3rem;
      font-weight: 700;
      line-height: 1.25;
      margin-bottom: 18px;
      text-shadow: 0 4px 24px rgba(0,0,0,0.35);
    }

    .slide-inner p {
      font-size: 1.08rem;
      max-width: 580px;
      margin: auto;
      opacity: 0.98;
      text-shadow: 0 3px 16px rgba(0,0,0,0.28);
    }

    .hero-buttons {
      margin-top: 28px;
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-block;
      padding: 14px 26px;
      border-radius: 999px;
      font-weight: 600;
      transition: 0.25s ease;
    }

    .btn-primary {
      background: #f4b400;
      color: #0f3d6e;
      box-shadow: 0 10px 24px rgba(244,180,0,0.3);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      background: #ffd54f;
    }

    .btn-outline {
      border: 1px solid rgba(255,255,255,0.55);
      color: #fff;
      backdrop-filter: blur(6px);
      background: rgba(255,255,255,0.06);
    }

    .btn-outline:hover {
      background: rgba(255,255,255,0.15);
      transform: translateY(-3px);
    }

    .dots {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 10;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      cursor: pointer;
      transition: 0.3s ease;
    }

    .dot.active {
      background: #f4b400;
      transform: scale(1.15);
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(25px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* =======================
       SECTIONS
    ======================= */
    .section {
      background: #fff;
      border-radius: 24px;
      padding: 40px;
      margin: 40px auto;
      box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    }

    .section h3 {
      font-size: 1.8rem;
      color: #0f3d6e;
      margin-bottom: 20px;
      position: relative;
      padding-left: 18px;
    }

    .section h3::before {
      content: "";
      position: absolute;
      left: 0;
      top: 6px;
      width: 6px;
      height: 30px;
      background: #f4b400;
      border-radius: 8px;
    }

    .section p {
      color: #374151;
      margin-bottom: 14px;
      font-size: 1rem;
    }

    .highlight {
      background: linear-gradient(135deg, #fff7e6 0%, #fffdf8 100%);
      border-left: 6px solid #f4b400;
      padding: 22px;
      border-radius: 18px;
      margin-top: 18px;
      color: #5b4a00;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 22px;
      margin-top: 22px;
    }

    .card {
      background: #f8fbff;
      border: 1px solid #e3ebf5;
      padding: 24px;
      border-radius: 20px;
      transition: 0.25s ease;
    }

    .card:hover {
      transform: translateY(-4px);
      background: #f2f7fd;
      box-shadow: 0 12px 28px rgba(0,0,0,0.05);
    }

    .card h4 {
      color: #0f3d6e;
      margin-bottom: 10px;
      font-size: 1.08rem;
    }

    .card p {
      margin: 0;
      color: #4b5563;
      font-size: 0.96rem;
    }

    ul.styled-list {
      list-style: none;
      margin-top: 16px;
    }

    ul.styled-list li {
      background: #f8fbff;
      margin-bottom: 12px;
      padding: 15px 18px;
      border-radius: 14px;
      border-left: 5px solid #1d5fa7;
      transition: 0.2s ease;
    }

    ul.styled-list li:hover {
      background: #f1f7fd;
      transform: translateX(4px);
    }

    /* =======================
       FOOTER
    ======================= */
    footer {
      background: #0f3d6e;
      color: #fff;
      margin-top: 50px;
      padding: 45px 20px 25px;
      text-align: center;
    }

    footer h4 {
      margin-bottom: 10px;
      font-size: 1.2rem;
    }

    footer p {
      opacity: 0.9;
      font-size: 0.96rem;
      margin-bottom: 6px;
    }

    .footer-bottom {
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,0.15);
      font-size: 0.9rem;
      opacity: 0.8;
    }

    /* =======================
       MOBILE
    ======================= */
    @media (max-width: 900px) {
      nav {
        position: absolute;
        top: 80px;
        right: 5%;
        background: #0f3d6e;
        width: 260px;
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        display: none;
        padding: 18px;
      }

      nav.active {
        display: block;
      }

      nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }

      .menu-toggle {
        display: block;
      }

      .slide-inner h2 {
        font-size: 2.2rem;
      }

      .hero-slider {
        height: 62vh;
        min-height: 360px;
      }
    }

    @media (max-width: 600px) {
      .slide-inner h2 {
        font-size: 1.7rem;
      }

      .slide-inner p {
        font-size: 0.98rem;
      }

      .section {
        padding: 28px 22px;
      }

      .section h3 {
        font-size: 1.45rem;
      }

      .logo-text h1 {
        font-size: 0.95rem;
      }

      .logo-text span {
        font-size: 0.75rem;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }
    }


	    /* =======================
       PROCESS / SERVICE FLOW
    ======================= */
    .process-section {
      background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
      border-radius: 28px;
      padding: 46px 34px;
      margin: 40px auto;
      box-shadow: 0 12px 32px rgba(0,0,0,0.06);
      position: relative;
      overflow: hidden;
    }

    .process-section::before {
      content: "";
      position: absolute;
      top: -80px;
      right: -80px;
      width: 220px;
      height: 220px;
      background: radial-gradient(circle, rgba(244,180,0,0.15), transparent 70%);
      z-index: 0;
    }

    .process-header {
      position: relative;
      z-index: 1;
      text-align: center;
      margin-bottom: 34px;
    }

    .process-header h3 {
      font-size: 2rem;
      color: #0f3d6e;
      margin-bottom: 12px;
    }

    .process-header p {
      color: #4b5563;
      max-width: 850px;
      margin: auto;
      font-size: 1rem;
    }

    .quick-info {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
      margin-top: 28px;
      margin-bottom: 34px;
      position: relative;
      z-index: 1;
    }

    .info-box {
      background: #ffffff;
      border: 1px solid #e6edf7;
      border-radius: 22px;
      padding: 24px;
      box-shadow: 0 10px 28px rgba(15,61,110,0.06);
      transition: 0.25s ease;
    }

    .info-box:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 32px rgba(15,61,110,0.08);
    }

    .info-label {
      font-size: 0.9rem;
      color: #6b7280;
      margin-bottom: 8px;
    }

    .info-value {
      font-size: 1.35rem;
      font-weight: 700;
      color: #0f3d6e;
      line-height: 1.4;
    }

    .service-cta {
      text-align: center;
      margin-bottom: 38px;
      position: relative;
      z-index: 1;
    }

    .service-cta .btn {
      font-size: 1rem;
      padding: 15px 30px;
    }

    .steps-wrapper {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 22px;
    }

    .step-card {
      background: #ffffff;
      border: 1px solid #e7eef8;
      border-radius: 24px;
      padding: 26px 24px;
      display: grid;
      grid-template-columns: 84px 1fr;
      gap: 22px;
      align-items: flex-start;
      box-shadow: 0 10px 28px rgba(0,0,0,0.04);
      transition: 0.25s ease;
    }

    .step-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 30px rgba(15,61,110,0.07);
    }

    .step-number {
      width: 64px;
      height: 64px;
      border-radius: 20px;
      background: linear-gradient(135deg, #0f3d6e, #1d5fa7);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.45rem;
      font-weight: 700;
      box-shadow: 0 12px 24px rgba(29,95,167,0.22);
    }

    .step-content h4 {
      font-size: 1.15rem;
      color: #0f3d6e;
      margin-bottom: 10px;
      line-height: 1.5;
    }

    .step-content p {
      color: #4b5563;
      margin: 0;
      font-size: 0.98rem;
    }

    .step-note {
      margin-top: 14px;
      background: #fff8e8;
      border-left: 5px solid #f4b400;
      padding: 14px 16px;
      border-radius: 14px;
      color: #6b4e00;
      font-size: 0.95rem;
    }

    .service-link {
      color: #0f3d6e;
      font-weight: 600;
      word-break: break-word;
    }

    .service-link:hover {
      color: #1d5fa7;
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .process-section {
        padding: 34px 22px;
      }

      .process-header h3 {
        font-size: 1.65rem;
      }

      .step-card {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .step-number {
        width: 58px;
        height: 58px;
        font-size: 1.25rem;
      }
    }