/*---------------------Roots-----------------*/

:root {
    ---green: #1BB46D;
    ---white: #ffffff;
    ---black: #1F1F5F;
    ---border: #e5e5e5;
    ---paragraph: #919191;
}

/*---------------------Roots-----------------*/

/* Section */

/* Main Box */
.cta-box {
  max-width: 1200px;
  margin: auto;
  padding: 70px 40px;
  border-radius: 25px;
  text-align: center;
  color: var(---white);

  /* Gradient Background */
  background: linear-gradient(135deg, #1fb36b, #0c7a3e);
  position: relative;
  overflow: hidden;
}

/* Pattern overlay (optional like your image) */
.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Content */
.cta-box h2 {
  font-size: 70px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
      font-family: "Bebas Neue", sans-serif;
}

.cta-box p {
  max-width: 700px;
  margin: auto;
  font-size: 14px;
  line-height: 35px;
  position: relative;
  z-index: 1;
}

/* Buttons */
.cta-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn {
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  transition: 0.3s;
}

.btn i{
    background-color: var(---green);
    color: var(---white);
    padding: 10px 10px;
    font-size: 18px;
     border-radius: 100px;
     display: flex;
     align-items: center;
     justify-content: center;
}

/* Primary button */
.btn.primary {
  background: var(---white);
  color: var(---black);
  font-weight: 500;
}

/* Outline button */
.btn.outline {
  border: 2px solid #fff;
  color: var(---white);
  font-weight: 500;
}
.btn.outline:hover{
    background-color: var(---white);
    border: none;
    color: var(---green);

}

/* Hover */
.btn:hover {
  transform: translateY(-3px);
}

/* Tablet */
@media (max-width: 992px) {
  .cta-box {
    padding: 50px 25px;
  }

  .cta-box h2 {
    font-size: 50px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .cta-box {
    padding: 40px 20px;
    border-radius: 18px;
  }

  .cta-box h2 {
    font-size: 35px;
  }

  .cta-box p {
    font-size: 12px;
    line-height: 30px;
  }

  .btn {
    width: 100%;
  }
}