body {
  font-family: 'Inter', sans-serif;
}

/* ================= HEADER ================= */
.erdam-login-btn {
    border-color: #FFF;
    background-color: #171C74;  /* hover bg */       /* border */

  }
  
  .erdam-login-btn:hover {
    background-color: #171C74;  /* hover bg */
    color: #ffffff;
  }
  
.top-access-bar {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  font-size: 12px;
  padding: 6px 0;
  position: sticky;
  font-weight: 500;
}

.top-access-bar a {
  color: #000;
  text-decoration: none;
  margin: 0 6px;
}

.access-left span {
  margin: 0 6px;
  color: #999;
}
  .logo {
    width: 38px;
  }
  
  .main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  
    height: 78px;                 /* EXACT IMAGE HEIGHT */
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
  
    display: flex;
    align-items: center;
  }
  
  .logo {
    width: 42px;
  }
  
  /* ================= BANNER ================= */
  .hero-banner {
    position: relative;
    height: 450px;                /* IMAGE MATCH */
    background: url('./images/1.png') center/cover no-repeat;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(0,0,0,0.88),
      rgba(0,0,0,0.35)
    );
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
  }
  
  .hero-text {
    font-size: 18px;
    max-width: 520px;
    margin-top: 12px;
  }
  
  .hero-buttons .btn {
    border-radius: 6px;
    padding: 14px 20px;
    font-size: 20px;
   
  }
  
  /* Slider arrows */
  .slider-arrows {
    position: absolute;
    bottom: 25px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 2;
  }
  
  .slider-arrows span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

/* COMMON */
.section-padding {
  padding: 60px 0;
}

.section-title {
  font-weight: 700;
  font-size: 36px;
}

/* CARDS */
.feature-card {
    padding: 30px;
    border-radius: 12px;
    border: none;
    height: 250px;
  
    /* Outside soft shadow */
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  }
  
  .erdam-icon-30 {
    width: 45px;
    height: 62px;
    object-fit: contain;
  }
  

.feature-card i {
  font-size: 34px;
  color: #0d6efd;
  margin-bottom: 15px;
}

/* BLUE SECTION */
.blue-section {
  background: #1D1746;
}

.feature-box {
  background:#ebe0e0;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.feature-box i {
  font-size: 28px;
}
.text-black-custom h6{
    color: #000000 !important;
    font-size: 17px !important;
    font-weight: 600;
}

.erdam-reposit-text {
    color: #606060;
    font-size: 14px;
  }
  .apply-text{
    text-align: center;
    font-size: 18px;
    color:#fff;
  }
  .section-title-1{
        font-weight: 700;        /* proper bold */
        font-size: 1.25rem;      /* h5 se thoda strong */
        line-height: 1.4;
        margin-bottom: 1rem;
        color: #111;             /* dark clean text */
        text-align: left;        

    }
   .public-text{
    text-align: left;
    font-size: 16px;

   }
  

/* FOOTER */
.erdam-footer {
    background: #2f4f75;
    color: #ffffff;
    font-size: 13px;
  }
  
  .footer-logo {
    width: 36px;
  }
  
  .footer-text {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
  }
  
  .footer-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  
  .footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-list li {
    margin-bottom: 8px;
  }
  
  .footer-list a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.85;
  }
  
  .footer-list a:hover {
    opacity: 1;
    text-decoration: underline;
  }
  
  .payment-icons img {
    width: 42px;
    margin-right: 6px;
  }
  
  .social-icons a {
    display: inline-flex;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
    text-decoration: none;
  }
  
  .footer-contact {
    font-size: 13px;
    margin-bottom: 6px;
  }
  
  .footer-contact i {
    margin-right: 6px;
  }
  
  .footer-bottom {
    background: #273f60;
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
  }
  
