
*{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  
}

/* Reset & base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

/* header */





/* pricing plans */

.custom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing-wrapper {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  margin-top: 2rem;
}

.pricing-card {
  width: 100%;
  max-width: 280px;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  transition: all 0.3s linear;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.pricing-card:hover {
  background: linear-gradient(
    55deg,
    #004d2f 0%,
    #1f5745 50%,
    #004d2f 100%
  );
  color: white;
  transform: scale(1.05);
}
.pricing-card:hover a {
  color: rgba(82, 0, 60, 0.687);
  background-color: white;
}
.pricing-card:hover ul li::before {
  color: rgb(245, 255, 182); /* Changes the checkmark color to white on hover */
}

.pricing-card h2 {
  font-size: 35px;
  font-weight: 800;
}

.pricing-card h2 small {
  font-size: 14px;
  color: gray;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.pricing-card ul li {
  margin: 6px 0;
  position: relative;
  padding-left: 20px;
}

.pricing-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #004d2f;
}

.pricing-card ul li.not-allowed::before {
  content: "✕";
  color: #f44336;
}

.pricing-card .btn-filled {
  width: 100%;
  max-width: 180px;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  border-radius: 20px;
  border: 2px solid #004d2f;
  background-color: white;
  color: #004d2f;
  align-self: center;
}
.pricing-card a {
  text-decoration: none;
}
.btn-filled:hover {
  background-color: lightyellow;
  text-decoration: none;
}

.btn-filled:focus {
  outline: none;
  box-shadow: none;
}

@media (max-width: 1200px) {
  .pricing-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
  .pricing-card {
    max-width: 300px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .pricing-card {
    max-width: 100%;
  }
}




.pricing-header {
  font-weight: bold;
  color: #474646;
}

.plan-title {
  font-weight: 500;
  text-align: center;
  color: #515151;
}

.plan-price {
  font-size: 30px;
  font-weight: 900;
}

.plan-sub {
  font-size: 14px;
  color: #888;
}

.btn-outline-orange {
  border: 1px solid #f28c5c;
  color: #f28c5c;
  border-radius: 14px;
  padding: 8px 50px;
  background: transparent;
}

.btn-outline-orange:hover {
  background-color: #f28c5c;
  color: white;
  text-decoration: none;
}

.feature-row {
  border-top: 1px solid #eee;
  padding: 15px 0;
}

.checkmark {
  color: #f28c5c;
  font-size: 20px;
}

.small-desc {
  font-size: 12px;
  color: #999;
}






  
/* card */
.body {

  padding: 100px 20px;
}

.rectangle-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: auto;
  height: 200px;
}

.rectangle-blue,
.rectangle-yellow {
  border-radius: 12px;
  position: absolute;
  top: 0;
  height: 180px;
}
.rectangle-container a{
  text-decoration: none;
}
.rectangle-blue {
  background-color: #b3daf5a4;
  width: 70%;
  z-index: 1;
position: absolute;
left: -100px;
}

.rectangle-yellow {
  background-color: #cdde81;
  width: 80%;
  left: 20%;
  top: 25%;
  z-index: 0;
}

.content {
  position: absolute;
  top: 45px;
  left: 270px;
  z-index: 2;
}

.content h3 {
  font-weight: bold;
  color: black;
  margin-bottom: 10px;
}

.body .btn-pink {
  background-color: rgb(126, 82, 126);
  color: white;
  border-radius: 25px;
  padding: 8px 22px;
  border: none;
  margin-left: -40px
}

.btn-pink:hover {
  background-color: rgb(79, 47, 79);
  color: white;
}


.arrow {
  position: absolute;
  top: 60px;     
  left: 370px;   
  width: 120px;
  height: 80px;
  z-index: 1;
}
@media (max-width: 575.98px) {
  /* Rectangle container and background layers */
  .rectangle-container {
    height: 260px;
    padding: 0 10px;
  }

  .rectangle-blue {
    width: 95%;
    left: 2.5%;
  }

  .rectangle-yellow {
    width: 100%;
    left: 0;
    top: 35%;
  }
 .arrow{
  display: none;
 }
  /* Text and button block */
  .content {
    left: 50%;
    top: 70px;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
  }

  .content h3 {
    font-size: 18px;
  }

  .btn-pink {
    margin-left: 0;
    padding: 10px 25px;
    font-size: 14px;
    width: auto;
  }

}

@media (max-width: 575.98px) {
  .pricing-table{
    display: none;
  }
  .plans-mobile {
    display: block;
    margin-top: 40px;
  }

  .plan-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  .plan-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
  }

  .plan-price {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
  }

  .plan-sub {
    font-size: 12px;
    color: #888;
  }
.plan-card a {
  display: block;
  width: 100%;
  margin: 10px 0 15px;
  border: 1px solid #f28c5c; 
  outline: none;
  text-align: center;
}
.plan-card a:hover{
  text-decoration: none;
}
.plan-card a:focus {
  box-shadow: none;
}

.plan-features {
  list-style: none;
  padding: 0;
  font-size: 14px;
  color: #444;
}

.plan-features li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.plan-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f28c5c;
}

.plan-features li:has(.cross)::before {
  content: "✖";
  color: #ccc;
}

.plan-features .cross {
  color: #aaa;
}
}
@media (min-width: 576px) {
  .plans-mobile {
    display: none;
  }
}








.headingg {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  color: #454545;
}

.support-card {
  border: 1px solid #0029268c;
  border-radius: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.support-card .card-title {
  font-weight: 600;
  color: #1c4e46;
}

.support-card ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #444;
  font-weight: 500;
}
.tick {
  color: #fb8f76;
  font-size: 20px;
  margin-right: 10px;
}
.support-card .card-footer {
  background:linear-gradient(
    55deg,
    #002926 0%,
    #1c4e46 50%,
    #002923 100%
  );
  color: #fff;
  font-weight: 600;
  text-align: center;
  border-top: none;
  font-size: 16px;
  padding: 15px 0;
}

.support-card .price {
  display: inline-block;
}
