    body{
      font-family: 'Poppins', sans-serif;
      background:#f7f9fc;
      color:#222;
    }

    .navbar{
      background:#ffffff;
      box-shadow:0 2px 10px rgba(0,0,0,0.05);
    }

    .navbar-brand{
      font-weight:700;
      color:#0d3b66 !important;
      font-size:1.4rem;
    }

    .nav-link{
      font-weight:500;
      color:#333 !important;
      margin-left:10px;
    }

    .hero-section{
      padding:90px 0;
      background:linear-gradient(135deg,#0d3b66,#145da0);
      color:white;
    }

    .hero-title{
      font-size:3rem;
      font-weight:700;
      line-height:1.3;
    }

    .hero-subtitle{
      font-size:1.1rem;
      margin-top:20px;
      line-height:1.8;
      opacity:0.95;
    }

    .hero-btn{
      padding:14px 28px;
      border-radius:12px;
      font-weight:600;
      margin-right:10px;
      margin-top:20px;
    }

    .hero-image{
      width:100%;
      border-radius:20px;
      box-shadow:0 10px 30px rgba(0,0,0,0.2);
    }

    .section-title{
      font-size:2rem;
      font-weight:700;
      margin-bottom:20px;
      color:#0d3b66;
    }

    .section-subtitle{
      color:#666;
      margin-bottom:40px;
    }

    .feature-card{
      background:white;
      border-radius:18px;
      padding:30px;
      transition:0.3s;
      box-shadow:0 5px 15px rgba(0,0,0,0.05);
      height:100%;
    }

    .feature-card:hover{
      transform:translateY(-5px);
    }

    .feature-icon{
      font-size:2.3rem;
      color:#145da0;
      margin-bottom:15px;
    }

    .feature-title{
      font-size:1.2rem;
      font-weight:600;
      margin-bottom:10px;
    }

    .step-box{
      background:white;
      padding:25px;
      border-radius:18px;
      text-align:center;
      box-shadow:0 5px 15px rgba(0,0,0,0.05);
      height:100%;
    }

    .step-number{
      width:60px;
      height:60px;
      background:#145da0;
      color:white;
      font-size:1.4rem;
      font-weight:700;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      margin:auto;
      margin-bottom:15px;
    }

    .checker-box{
      background:white;
      border-radius:20px;
      padding:40px;
      box-shadow:0 5px 20px rgba(0,0,0,0.08);
    }

    .form-control{
      height:55px;
      border-radius:12px;
    }

    .btn-main{
      background:#145da0;
      border:none;
      color:white;
      padding:14px 25px;
      border-radius:12px;
      font-weight:600;
    }

    .btn-main:hover{
      background:#0d3b66;
      color:white;
    }

    .faq-section .accordion-button{
      font-weight:600;
    }

    .download-card{
      background:white;
      border-radius:18px;
      padding:25px;
      text-align:center;
      box-shadow:0 5px 15px rgba(0,0,0,0.05);
      height:100%;
    }

    .footer{
      background:#0d3b66;
      color:white;
      padding:50px 0 20px;
    }

    .footer a{
      color:white;
      text-decoration:none;
    }

    .footer a:hover{
      text-decoration:underline;
    }
    
    .search-box {
    position: relative;
    max-width: 700px;
}

.search-results {
    position: absolute;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    z-index: 9999;
    display: none;
    top: 100%;
    left: 0;
    margin-top: 10px;
}

.search-result-item {
    transition: 0.2s;
    background: #fff;
}

.search-result-item:hover {
    background: #f8f9fa;
}

.search-result-item h6 {
    font-weight: 700;
}

/* SEARCH DARK MODE FIX */

[data-bs-theme="dark"] .search-results {
    background: #1e1e1e;
    border: 1px solid #333;
}

[data-bs-theme="dark"] .search-result-item {
    background: #1e1e1e;
    color: #fff !important;
    border-color: #333 !important;
}

[data-bs-theme="dark"] .search-result-item h6 {
    color: #fff !important;
}

[data-bs-theme="dark"] .search-result-item small {
    color: #bbb !important;
}

[data-bs-theme="dark"] .search-result-item:hover {
    background: #2c2c2c;
}

[data-bs-theme="dark"] #searchInput {
    background: #1e1e1e;
    color: #fff;
    border-color: #444;
}

[data-bs-theme="dark"] #searchInput::placeholder {
    color: #aaa;
}

    @media(max-width:768px){

      .hero-title{
        font-size:2rem;
      }

      .hero-section{
        text-align:center;
      }

      .hero-btn{
        width:100%;
        margin-bottom:10px;
      }

    }