/* about start */

.bi-search::before {
    padding:8px !important;
}
.about-thumbv3 {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: radial-gradient(circle at 70% 30%, #f7fdfc, #ffffff);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  max-width: 100%;
}

.about-thumbv3 img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
  border-radius: 10px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* about end */


/* faq start */

/* FAQ Section Styling */
.faq-section {
  background-color: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.faq-section .section__header-title {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
  color: #022b26; /* Dark green from header */
}

.faq-section .section__header-content {
  font-size: 16px;
  color: #4f5e57;
}

.faq-section .nav-tabs {
  border: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-section .nav-tabs .nav-link {
  border: none;
  background: #ffffff;
  border-radius: 10px;
  padding: 16px 20px;
  font-weight: 600;
  color: #022b26;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: all 0.3s ease;
}

.faq-section .nav-tabs .nav-link:hover,
.faq-section .nav-tabs .nav-link.active {
  background: #075c4c; /* Primary green */
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(7, 92, 76, 0.2);
}

.faq-section .accordion-item {
  background-color: #ffffff;
  border-radius: 10px;
  /*margin-bottom: 15px;*/
  border: 1px solid #d6e1db;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.faq-section .accordion-button {
  background-color: transparent;
  border: none;
  padding: 5px 10px;
  font-weight: 600;
  font-size: 16px;
  color: #022b26;
  transition: all 0.3s ease;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: #075c4c;
  color: #ffffff;
  border-radius: 10px 10px 0 0;
}

.faq-section .accordion-body {
  padding: 16px 20px;
  font-size: 15px;
  color: #4f5e57;
  border-top: 1px solid #d6e1db;
}

.faq-section .btn_theme {
  background-color: #075c4c;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}

.faq-section .btn_theme:hover {
  background-color: #043b31;
  color: #FF9900;
}
 .bh-heading {
  font-size: 35px;
 }

/* Responsive Fixes */
@media (max-width: 768px) {
  .faq-section .nav-tabs {
    flex-direction: column;
    overflow-x: auto;
    gap: 8px;
  }

  .faq-section .nav-link {
    min-width: 220px;
    white-space: nowrap;
  }

  .faq-section .section__header-title {
    font-size: 28px;
  }
}


.faq-section .accordion-button::after {
 
  font-size: 30px;
  color: #ffffff;
  margin-left: auto;
  transition: transform 0.3s ease;
  text-align: center;
}

.faq-section .accordion-button:not(.collapsed)::after {
  
  color: #ffffff;
  font-size: 30px;
}

/* faq end */



.hover-scale {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-scale:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}



.forms {
      margin: 0;
      background-color: #e9e9e9;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
    }
    .contain {
      background: white;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgb(0 0 0 / 0.12);
      padding: 3rem 2rem 4rem;
      max-width: 900px;
      width: 90%;
      text-align: center;
    }
    .title {
      font-weight: 700;
      font-size: 1.6rem;
      margin-bottom: 3rem;
      color: #000;
    }
    .stepper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 650px;
      margin: 0 auto 2.5rem;
      position: relative;
    }
    /* The line between steps */
    .stepper::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50px;
      right: 50px;
      height: 6px;
      background: #ddd;
      transform: translateY(-50%);
      border-radius: 4px;
      z-index: 0;
    }
    /* The line fill from step 1 to step 2 */
    .stepper[data-step="2"]::before {
      background: linear-gradient(to right, #114a91 0%, #5387e8 100%);
    }
    .step {
      position: relative;
      background: white;
      z-index: 10;
      text-align: center;
      width: 80px;
      min-width: 80px;
      cursor: default;
    }
    .circle {
      border-radius: 50%;
      width: 36px;
      height: 36px;
      margin: 0 auto 0.5rem;
      line-height: 36px;
      color: white;
      font-weight: 600;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 0 3px white;
      position: relative;
    }
    /* Step 1 circle */
    .step-1 .circle {
      background-color:green; /* dark blue */
    }
    /* Step 2 circle */
    .step-2 .circle {
      background-color: #fbb84f; /* lighter blue */
    }
    /* Step 3 circle */
    .step-3 .circle {
      background-color: white;
      color: #333;
      border: 1px solid #ccc;
      font-weight: 600;
    }
    .label {
      font-size: 0.85rem;
      color: #333;
      line-height: 1.2;
      user-select: none;
    }
    .step-1 .label {
      color: #114a91;
    }
    .step-2 .label {
      color: #4d8dfb;
    }
    .step-3 .label {
      color: #333;
    }
    .download-tip {
      font-size: 0.85rem;
      color: #222;
      max-width: 600px;
      margin: 4rem auto 0;
    }
    .download-tip a {
      color: #114a91;
      text-decoration: underline;
      cursor: pointer;
    }
    .download-tip a:hover,
    .download-tip a:focus {
      color: #0a2a61;
      text-decoration: none;
    }
    /* Responsive tweaks */
    @media (max-width: 480px) {
      .stepper {
        max-width: 100%;
        padding: 0 10px;
      }
      .step {
        width: 60px;
        min-width: 60px;
      }
      .circle {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
        line-height: 28px;
      }
      .label {
        font-size: 0.75rem;
      }
    }

/* testnimail css start  */
    .testimonial-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  padding: 0 20px;
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  background-color: #004C3F; /* Dark Green background */
  border: 2px solid #004C3F;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.testimonial-btn:hover {
  background-color: #FFFFFF; /* White on hover */
  color: #004C3F;             /* Icon becomes green */
  border: 2px solid #004C3F;
}


/* testnimail css end  */


/* smefunding.com adavantage  hover effect css start  */



  .advantage-box {
    flex: 1 1 250px;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
  }

  .advantage-box:hover {
    background-color: #FCB650;
  }


/* smefunding.com adavantage  hover effect css end  */




/* trusted client border effect css start  */

.client-card {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 15px;
  background-color: #fff;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: none;
}

.client-card:hover {
  border-color: #FCB650; /* Optional: highlight on hover */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


/* trusted client border effect css end  */



.accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 25px !important;
}

.faq-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #005847; /* Or your desired bg */
}

.faq-icon {
    font-size: 18px;
    color: #fff;
    line-height: 1;
}



.banner {
  padding: 10px 0; /* पहले शायद 80px या 100px होगी, अब घटा दी */
  background-color: #002b23; /* अपनी theme के हिसाब से dark green या जो भी color हो */
}

.banner__thumb img {
  max-width: 50%; /* Image थोड़ी छोटी हो जाएगी */
  height: auto;
}



/* About why choose  start */


.what-we-do-section {
  background-color: #F9F5ED;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
}

.section-title .text-highlight {
  color: #FCB650; /* Your secondary theme color */
}

.section-subtitle {
  font-size: 1rem;
  color: #333;
}

.info-box {
  background-color: #fff;
  border: 1px solid #e0dcd0;
  border-radius: 10px;
  padding: 1.2rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.info-box:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.section-footer {
  font-size: 1.1rem;
  color: #222;
  font-weight: 500;
}


.what-we-do-section {
  background: linear-gradient(to right, #EDF0EB 50%, #F3F2EC 50%);
  padding-top: 60px;
  padding-bottom: 60px;
}
/* About why choose  end */




/* About why choose  start  */

.why-choose-us {
  background: linear-gradient(to right, #EDF0EB 50%, #F3F2EC 50%);
  padding: 80px 20px;
}

.why-choose-us .container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-us .section-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #073B3A;
  margin-bottom: 3rem;
}

.why-choose-us .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.why-choose-us .feature-item {
  background: #fff;
  padding: 1.8rem;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: all 0.3s ease;
}

.why-choose-us .feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.why-choose-us .feature-icon {
  width: 64px;
  height: 64px;
  background: #EDF0EB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem auto;
  color: #074C3E;
}

.why-choose-us h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #074C3E;
  margin-bottom: 0.5rem;
}

.why-choose-us p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}
/* About why choose  end  */


/* Header base */
.site-header {
  background-color: transparent; /* Removed background */
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  position: relative;
  z-index: 999;
  box-shadow: none; /* Remove shadow if present */
}

/* Navigation Menu */
/* .navbar {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.navbar a {
  color: #073B3A;
  font-weight: 500;
  text-decoration: none;
 
  transition: color 0.2s ease;
}

.navbar a:hover {
  color: #FCB650;
}


.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%; 
  left: 0;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  display: none;
  min-width: 180px;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  display: block;
}


.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: #073B3A;
  text-decoration: none;
  font-size: 0.95rem;
}

.dropdown-menu a:hover {
  background-color: #67725f;
  color: #074C3E;
} */

/*detail page */
.news {
    padding-left: 20px;
    padding-bottom: 15px;
}

/* why semfunding start */
 
.why-sme-section {
  padding: 60px 0;
  background-color: #E6EDEB;
}
 
.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #002f27;
}
 
.section-title .dot-icon {
  color: #fcb650;
  font-size: 32px;
  margin-right: 10px;
}
 
.section-title .highlight {
  color: #074C3E;
}
 
.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
 
.feature-item {
  display: flex;
  gap: 15px;
  border-left: 4px solid #fcb650;
  padding-left: 15px;
  transition: all 0.3s ease;
}
 
.feature-item:hover {
  background-color: #dfe9e6;
  transform: translateY(-2px);
  border-left-color: #074c3e;
}
 
.feature-icon {
  color: #074c3e;
  font-size: 20px;
  line-height: 1;
  margin-top: 5px;
}
 
.feature-item h5 {
  font-weight: 600;
  color: #002f27;
  margin-bottom: 5px;
}
 
.feature-item p {
  color: #444;
  margin-bottom: 0;
}
 
.btn-read-more {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 30px;
  background-color: #074c3e;
  color: #fff;
  font-weight: 500;
  transition: 0.3s ease;
  text-decoration: none;
}
 
.btn-read-more span {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
 
.btn-read-more:hover {
  background-color: #053f34;
}
 
.btn-read-more:hover span {
  transform: translateX(5px);
}
 
/* why smefunding end *

/* faq update bg -color start */
.faq-section {
  background-color: #ffffff;
  padding: 60px 0; /* optional spacing  #E6EDEB*/
}
/* faq end */

.dropdown-item-list {
  display: flex;
  justify-content: normal;
}
.container-document {
      max-width: 900px;
      margin: auto;
      background: #fff;
      padding: 40px 30px;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
 
    h3 {
      font-size: 26px;
      color: #000;
      text-align: center;
      margin-bottom: 10px;
    }
 
    .subtitle {
      color: #666;
      font-size: 15px;
      text-align: center;
      margin-bottom: 30px;
    }
 
    .doc-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
 
    .doc-list li {
      padding: 14px 16px;
      border-bottom: 1px solid #e1e1e1;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 16px;
      color: #333;
    }
 
    .doc-list li span {
      font-weight: bold;
      color: #007BFF;
    }
 
    .error-msg {
            color: red;
            font-size: 0.9rem;
            margin-top: 4px;
            display: block;
        }

        .form-control.invalid {
            border-color: red;
        }

        .step-indicator {
        gap: 10px;
        }

        .step-bullet {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #e0e0e0;
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        transition: all 0.3s ease;
        }

        .step-bullet.active {
        background: #0d6efd;
        color: white;
        }

        .step-bullet.completed {
        background: #198754;
        color: white;
        }
        .step-indicator {
            position: relative;
            }

            .step-bullet {
            width: 50px;
            height: 50px;
            background: #e0e0e0;
            border-radius: 50%;
            color: #555;
            font-weight: bold;
            font-size: 18px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            transition: all 0.3s ease-in-out;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            }

            .step-bullet.active {
            background: #0d6efd;
            color: #fff;
            transform: scale(1.1);
            }

            .step-bullet.completed {
            background: #198754;
            color: white;
            }

            .step-bullet.completed::before {
            content: '✔';
            font-size: 22px;
            font-weight: bold;
            }

            .step-number {
            z-index: 1;
            }

            .step-bullet.completed .step-number {
            display: none;
            }
            
            .balram {
                font-weight: 500;
                font-size: 20px;
                color: #404A60;
            }
            .bh-button {
              margin-right: 10px;
            }
            .balram-result {
              border-radius: 5px;
              
              border: 2px solid #FFD28D; /* FF9900 */
              margin-top: 10px;
	      margin-left: 0px;
            }
            .bh-content {
              font-size: 18px !important;
            }
           
           .bh-space {
            padding-left: 15px;
            font-size: 18px !important;
           }
          .bh-accordion-heading{
            font-size:  20px !important ;
          } 
          .bh-bullet {
            list-style-type: square;
          }
          
           