/* home */

.home-bg {
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: darken;
}

.home-bg {
  padding-top: 120px;
  padding-bottom: 200px;
}

.home-inner {
  width: auto;
  text-align: center !important;
}
.home-title {
  font-size: 36px;
  font-weight: bold;
  color: white;
  padding-bottom: 40px;
}
.home-p {
  color: white;
  font-size: 20px;
  padding-bottom: 40px;
}
.final-title {
  font-size: 36px;
  font-weight: bold;
  color: black;
  padding-bottom: 40px;
}
.final-p {
  color: black;
  font-size: 20px;
  padding-bottom: 20px;
}

.learn {
  font-size: 14px;
  background: goldenrod;
  color: #000;
  padding: 15px 39px;
  border-radius: 7px;
  text-decoration: none;
  transition: background-color 1s, color, 1s;
  font-weight: bold;
  margin: 10px 20px 40px;
  text-transform: uppercase;
}

.learn:hover {
  border: 2px solid goldenrod;
  background: none;
  color: goldenrod;

}

@media (min-width: 200px) and (max-width: 700px) {
  .learn {
    padding: 10px 20px;
    font-size: 11px;
    margin-bottom: 30px;
  }
  .home-p {
    font-size: 12px;
    margin-bottom: 40px;
  }
  .final-p {
    font-size: 12px;
    margin-bottom: 40px;
  }
  .home-title {
    font-size: 25px;
    text-align: center;
    line-height: normal;
  }
  .final-title {
    font-size: 25px;
    text-align: center;
    line-height: normal;
  }
  .home-bg {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.five-col {
  flex: 1 1 20%;
  /* 20% width = 5 equal blocks */
  max-width: 20%;
  text-align: center;
}
.col-four {
  flex: 1 1 25%;
  /* 20% width = 5 equal blocks */
  max-width: 25%;
  text-align: center;
}
.card-col {
  flex: 1 1 20%;
  /* 20% width = 5 equal blocks */
  max-width: 20%;
  text-align: center;
}

/* Responsive: stack one per row on small screens */
@media (max-width: 768px) {
  .five-col {
    display: flex;
    max-width: 100%;
  }
   .col-four {
    display: flex;
    max-width: 100%;
  }
  .card-col {
    display: flex;
    max-width: 100%;
  }
}
.tx-block {
  font-size: 15px;
  font-weight: 70px;
}
.im {
  width: 50px;
  margin-bottom: 20px;
}

@media (min-width: 300px) and (max-width: 600px) {
  .five-col {
    display: flex;
    float: left;
  }
   .col-four {
    display: flex;
    float: left;
  }
  .im {
    margin-right: 30px;
    margin-top: 10px;
  }
  .tx-block {
    display: flex;
    align-items: center;
    font-size: 14px;
  }

  .text-left {
    text-align: left;
  }
}
.card-img:hover {
  transform: translateY(-5px);
}
.card-txt {
  font-size: 13px;
  font-weight: bold;
}

.stats-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 1rem;
  background: #f6f7f9;
}

.stat-card {
  flex: 1 1 25%;
  max-width: 250px;
  padding: 1.5rem;
  border-radius: 12px;
}
.col-four {
  flex: 1 1 25%;
  /* max-width: 250px; */
  padding: 1.5rem;
  border-radius: 12px;
}

.stat-icon-number {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.8rem;
  font-weight: bold;
}

.stat-text {
  margin-top: 0.5rem;
  font-size: 20px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 600px) {
  .stat-card {
    max-width: 100%;
  }
  .sol-col{
    max-width: 100%;
  }
}
.counter {
  font-size: 40px;
  line-height: 1.7;
}
.fs--3 {
  font-size: 30px;
}
.counter-img {
  width: 35px;
}
.counter-line {
  width: 60px;
  color: #034c75;
  border-bottom: 4px solid #034c75;
  padding-top: 20px;
}

/* Add or update inside your existing CSS */

.step {
  background-color: #f9f9f9;
  color: #333;
  border-radius: 12px;
  padding: 2rem 1.2rem;
  max-width: 280px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 250px;
  position: relative;
  box-shadow: 0 0 0 transparent;
}

.how-it-works.dark .step {
  color: #f3f3f3;
}

/* 🟡 Hover effect */
.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid #facc15;
}

/* Optional: Add slight glow to step-circle on hover */
.step:hover .step-circle {
  box-shadow: 0 0 10px #facc15;
}
.how-it-works {
  padding: 4rem 1rem;
  background-color: #ffffff;
  text-align: center;
}

.how-it-works.dark {
  background-color: #111827;
  color: #f9f9f9;
}

.how-it-works h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.step {
  background-color: #f9f9f9;
  color: #333;
  border-radius: 12px;
  padding: 2rem 1.2rem;
  max-width: 280px;
  text-align: center;
  transition: transform 0.3s ease;
  flex: 1 1 250px;
  position: relative;
}

.how-it-works.dark .step {
  background-color: #1f2937;
  color: #f3f3f3;
}

.step:hover {
  transform: translateY(-5px);
}

.step-circle {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #facc15; /* gold */
  color: #111;
  border-radius: 50%;
  font-weight: bold;
  margin: 0 auto 1rem;
  font-size: 1rem;
}

.step-img {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
}

.step-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.95rem;
  color: inherit;
}

/* Responsive */
@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 100%;
  }
}
/* .cw{
  color: white;
} */
.ca-icon {
  background-color: goldenrod;
  border-radius: 15px;
  padding: 6px 12px;
  color: #111;
}
.ca-icon:hover {
  background-color: none;
  border: 2px solid goldenrod;
}
.sol-col {
  flex: 1 1 20%;
  /* 20% width = 5 equal blocks */
  max-width: 20%;
  text-align: center;
}
.card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #333;
  transition: transform 0.3s ease;
  height: 200px;
  width: 200px;
  margin: 10px;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.card-text {
  font-size: 13px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .sol-col {
    max-width: 100%;
  }
  .df{
  display: flex;
  width: 100%;
}
  .card {
    width: 100%;
  }
  .tc{
    width: 100%;
    display: flex;
  }
  .fs-25{
  font-size: 25px;
}
.four-col{
  display: flex;
  text-align: left;
  width: 100%;
}
}
.fs-25{
  font-size: 30px;
}
.tc{
  text-align: center;
}
.cb{
  color: black;
}
.bg-c{
  background: black;
}
.bg-c:hover{
  background: none;
}
.text-left{
  text-align: left !important;
}
.four-col{
  display: block;
  margin: auto;
}
.ptb{
  margin: 60px 0px;
}