
    body {
      font-family: 'Inter', sans-serif;
      background: #fff;
      color: #1a1a1a;
      padding-top: 20px;
    }
header{
    column-gap: 1rem;
}
    .logo {
      font-size: 40px;
      font-weight: 800;
      border: 2px solid black;
      padding: 0px 10px;
      display: inline-block;
    }

    .btn-login {
      background-color: #006d5b;
      color: white;
      border-radius: 999px;
      padding: 10px 20px;
      font-weight: 600;
      font-family: "Lato", sans-serif;
    }
.btn-login:hover{
      border: 2px solid #006d5b;
      color:#006d5b;
      background-color: white;
}
    .btn-register {
      border-radius: 999px;
      padding: 10px 20px;
      font-weight: 600;
      border: 2px solid #006d5b;
      background-color: white;
      font-family: "Lato", sans-serif;
    }
    .btn-register:hover{
        background-color: #006d5b;
      color: white;
     
    }
    h1{
      font-family: "Playfair Display", serif;
      font-size: 40px;
      line-height: 55px;
      font-weight: 800;
    }
    h1 span {
      color: #006d5b;
    }

    .cta {
      background-color: #006d5b;
      color: white;
      padding: 14px 30px;
      border-radius: 999px;
      font-size: 16px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      font-family: "Lato", sans-serif;
    }
.cta:hover{
     border-radius: 999px;
      border: 2px solid #006d5b;
      color:#006d5b;
      background-color: white;
}

.speech-bubble {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.15);
 width: 280px;
  font-size: 14px;
  line-height: 1.4;
  color:#586A5E;
}
.speech-bubble2 {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.15);
  width: 280px;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 20px;
  color:#586A5E;
}
.speech-bubble .caret {
  position: absolute;
  bottom: -10px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ffffff;
}
.speech-bubble2 .caret2 {
  position: absolute;
  top: -10px;
  right: 30px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
   border-bottom: 10px solid #ffffff;
}

.chart {
  width: 260px;
  border: 2px solid #00c851;
  border-radius: 20px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  font-family: 'Inter', sans-serif;
}

.chart-header {
  font-weight: 500;
  color: #555;
  font-size: 14px;
}

.chart-value {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 4px 0 10px;
}

.chart-growth {
  color: #00c851;
  font-size: 16px;
  font-weight: 600;
  margin-left: 8px;
  vertical-align: middle;
}
.chart-growth img {
    width:18px;
}
.chart-graphic {
  position: relative;
  height: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 6px;
  margin-top: 10px;
}

.bar {
  width: 40px;
  border-radius: 4px;
  background: #00c851;
}

.bar1 {
  height: 35%;
  background: #D3EFE8;
}

.bar2 {
  height: 55%;
  background: #8AD2C2;
}

.bar3 {
  height: 70%;
  background: #00D2A1;
}

.bar4 {
  height: 85%;
  background: #1CB08E;
}
.bar5 {
  height: 100%;
  background: #00674F;
}

.arrow img{
    position: absolute;
   margin-top: -12px;
   left: 35px;
    width:45%;
    transform: rotate(5deg);
}
.arrow i{
    position: absolute;
   margin-top: -14px;
   left: 145px;
   transform: rotate(182.76deg);
   
}
.label-left, .label-right {
  font-size: 8.72px;
  line-height:10.46px;
  font-weight: 800;
  color: #111;
  position: absolute;
}

.label-left {
  bottom: 35px;
  left:4px;
}

.label-right {
  bottom: 100px;
  right: 8px;
}


    .review1 img, .review2 img {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      margin-right: 10px;
    }

      .image-overlays {
        position: relative;
      }
      .bottom-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%; /* Adjust height as needed */
  background: linear-gradient(to top, #fffafada 50%, transparent 100%);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  pointer-events: none; /* Prevents it from blocking clicks */
}
      .chart {
        position: absolute;
        top: 30px;
        left: -80px;
        animation: float 3s ease-in-out infinite;
      }
      .review1 {
        position: absolute;
        top: 30px;
        right: -90px;
        animation: float 3s ease-in-out infinite;
      }
      .review2 {
        position: absolute;
        bottom: 20px;
        left: -80px;
        animation: float 3s ease-in-out infinite;
      }
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* General Reset */

.rev .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 40px;
}
.rev .section-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 40px;
}

.section-subtitle {
  color: #00674F;
}

.section-description {
  font-size: 0.95rem;
  color: #555;
  width: 60%;
  margin: 10px auto 30px;
  font-family: "Lato", sans-serif;
}
/* .review{
   width: 90%;
} */
.chart-overlay{
    position: absolute;
  top: 18%;
  right: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
  padding: 10px;
  width: 560px;
 animation: float 3s ease-in-out infinite;
}
.chart-overlay img{
    width: 530px;
}
.feature-section{
    background-color: #F4F8F6;
    height: 130vh;
}
.feature-section .title{
      color: #00674F;
}
.feature-section .subtitle{
      color: #000000;
}

/* Ripple Effect */
.ripple-container {
  width: 280px;
  height: 180px;
}

.ripple-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background-color: #00674F;
  animation: ripple 3s infinite ease-in-out;
}

.ripple-1 { width: 240px; height: 240px; opacity: 0.05; }
.ripple-2 { width: 200px; height: 200px; opacity: 0.1; animation-delay: 0.3s; }
.ripple-3 { width: 160px; height: 160px; opacity: 0.2; animation-delay: 0.6s; }

@keyframes ripple {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

.ripple-center {
  width: 120px;
  height: 120px;
  background: #00674F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.trc-logo {
  color: white;
  border: 2px solid white;
  padding: 4px 10px;
  font-weight: bold;
  font-size: 20px;
}
.svg-overlay {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,-10%);
  z-index: 0;
  pointer-events: none;
}
/* Info Boxes */
.info-box {
  position: absolute;
  z-index: 1;
}
.box-left { left: 7.5%; top: 70%; transform: translateY(-50%); }
.box-right { right: 8%; top: 70%; transform: translateY(-50%);}
.box-bottom { bottom:-240px; left: 50%; transform: translate(-50%,100%); }

/* Number Styling */
.big-number {
  font-size: 120px;
  color: #157a6e;
  font-weight: 800;
  position: absolute;
  z-index: 0;
  opacity: 0.3;
  font-family: "Lato", sans-serif;
}

/* Specific positioning for each */
.box-left .big-number {
  top: 0%;
  right:-80px;
  transform: translateY(-50%);
}

.box-right .big-number {
  top: 0%;
  left:-80px;
  transform: translateY(-50%);
}

.box-bottom .big-number {
 top: 50%;
  left: 50%;
  transform: translateX(-50%);
}

.card-text{
  width: 250px;
  padding: 20px 20px;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 103, 79, 0.05);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid #00674F;
  border-radius: 30px;
  text-align: justify;
  font-family: "Inter", sans-serif;
}

 .center-image {
      width: 360px;
      margin: auto;
      
    }

    .icon-column {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 28px;
    }

    .icon-box {
      display: flex;
      align-items: center;
      gap: 12px;
      background:transparent;
    }

    .icon-box img {
      width: 50px;
      height: 50px;
      padding: 10px;
      background-color: white;
      border-radius: 10px;
      border: 1px solid rgba(0, 103, 79, 0.15);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    }

    .icon-text {
      font-size: 0.95rem;
      color: #003c30;
      
    }
    .ellipce .title{
      color: #000000;
}
.ellipce .subtitle{
      color: #00674F;
}
    .elliptical-left{
      left:0;
      text-align: left;
    } 
    .elliptical-right .icon-text{
      text-align: right;
      right:0;
    }
.icon-column.elliptical-left .icon-box:nth-child(1) { width:80%; transform: translateX(160px); }
.icon-column.elliptical-left .icon-box:nth-child(2) { width:80%; transform: translateX(110px); }
.icon-column.elliptical-left .icon-box:nth-child(3) { width:80%; transform: translateX(60px); }
.icon-column.elliptical-left .icon-box:nth-child(4) { width:80%; transform: translateX(60px); }
.icon-column.elliptical-left .icon-box:nth-child(5) { width:80%; transform: translateX(60px); }
.icon-column.elliptical-left .icon-box:nth-child(6) { width:80%; transform: translateX(100px); }
.icon-column.elliptical-left .icon-box:nth-child(7) { width:80%; transform: translateX(150px); }

.icon-column.elliptical-right .icon-box:nth-child(1) { width:80%; transform: translateX(-80px); }
.icon-column.elliptical-right .icon-box:nth-child(2) { width:80%; transform: translateX(-30px); }
.icon-column.elliptical-right .icon-box:nth-child(3) { width:85%; transform: translateX(0px); }
.icon-column.elliptical-right .icon-box:nth-child(4) { width:80%; transform: translateX(85px); }
.icon-column.elliptical-right .icon-box:nth-child(5) { width:80%; transform: translateX(55px); }
.icon-column.elliptical-right .icon-box:nth-child(6) { width:80%; transform: translateX(-30px); }
.icon-column.elliptical-right .icon-box:nth-child(7) { width:80%; transform: translateX(-80px); }
   
    
.pricing{
  background-image: url("images/back.png");
   background-size: cover;       
  background-repeat: no-repeat; 
  background-position: center center;
  background-attachment: fixed;  
    }
.pricing .title{
      color: #00674F;
}
.pricing .subtitle{
      color: #000000;
}
    .plan-toggle {
      display: flex;
      justify-content: center;
      margin-bottom: 40px;
    }

    .plan-toggle .btn {
      padding: 10px 30px;
      border-radius: 25px;
      font-weight: 500;
    }

    .pricing-card {
      border: .3px solid #00674F;
      border-radius: 20px;
      padding: 30px;
      background: white;
      position: relative;
    }

    .pricing-card h2 {
      font-family: "Playfair Display", serif;
      font-weight: 800;
    }

    .price-box {
      margin: 0px;
      
    }
    .original-price {
      text-decoration: line-through;
      color: #888;
      font-size: 1.8rem;
      font-weight: 800;
      font-family: "Lato", sans-serif;
    }

    .discounted-price {
      font-size: 2rem;
      font-weight: bold;
      color: #00795d;
      font-weight: 800;
      font-family: "Lato", sans-serif;
    }

    .features-list::before {
  content: '';
  display: block;
  height: 20px;
    }
    .features-list {
      border-top: .5px dashed #161616;
      list-style: none;
      padding-left: 0;
      margin-bottom: 25px;
    }

    .features-list li {
      display: flex;
      align-items: center;
      margin-bottom: 12px;
      color: #000000;
      font-size: 14px;
      font-family: "Inter", sans-serif;
    }


    .cta-button {
      background-color: #006d5b;
      color: white;
      padding: 14px 30px;
      border-radius: 999px;
      font-size: 16px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      font-family: "Lato", sans-serif;
      width: 100%;
    }

    .form-card {
      border: .3px solid #00674F;
      border-radius: 20px;
      padding: 30px;
      background: white;
    }

    .form-card h2 {
      font-weight: bold;
      margin-bottom: 10px;
      font-family: "Playfair Display", serif;
      text-align: center;
    }

    .form-card p {
       width: 90%;
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 25px;
     text-align: center;
      font-family: "Lato", sans-serif;
    }
    .form-control {
      padding: 16px 10px;
      border-radius: 8px;
      background-color: #f5f5f5;
      border: none;
    }

    .risk-button {
      background-color: #006d5b;
      color: white;
      padding: 14px 30px;
      border-radius: 999px;
      font-size: 16px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      font-family: "Lato", sans-serif;
      width: 100%;
    }

    .badge-discount {
      background-color: #2c2c2c;
      color: white;
      font-size: 1.2rem;
      padding: 8px 20px;
      border-top-right-radius: 20px;
      border-bottom-left-radius: 20px;
      position: absolute;
      top: 0px;
      right: 0px;
    }
  
.toggle-wrapper {
      display: inline-flex;
      border: 1px solid #004d40;
      border-radius: 999px;
      overflow: hidden;
      background: #F4F8F6;
    }

    .toggle-option {
      background-color: transparent;
      color: #000000;
      padding: 10px 20px;
      margin:5px;
      border-radius: 999px;
      font-size: 16px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      font-family: "Lato", sans-serif;
    }

    .toggle-option.active {
      background-color: #00674f;
      color: #fff;
    }

    .plan-section {
      display: none;
      margin-top: 30px;
    }

    .plan-section.active {
      display: flex;
    }

.about{
  background-color: transparent;
  margin: auto;
    }
    .about-image-wrapper {
      position: relative;
      overflow: hidden;
      width: 100%;
    }

    .about-image-wrapper img {
      width: 100%;
      height: auto;
      display: block;
      background-color: transparent;
    }

    .about-text h2 {
      font-weight: 700;
      font-size: 2rem;
      font-family: "Playfair Display", serif;
    }

    .about-text h2 span {
      color: #00674F;
    }

    .about-text p {
      font-size: 1rem;
      color: #333;
      margin-top: 10px;
      font-family: "Lato", sans-serif;
      
    }

    .about-button {
      margin-top: 20px;
    }
  .faq{
    background-color: #F4F8F6;
  }
 .faq-title {
      font-weight: 700;
      text-align: center;
      font-size: 32px;
      margin-bottom: 30px;
      font-family: "Playfair Display", serif;
    }

    .faq-title span {
      color: #00674F;
    }

    .faq-box {
      border: 1px solid #00674F;
      border-radius: 10px;
      padding: 20px;
      background-color: white;
      margin-bottom: 20px;
      transition: box-shadow 0.3s ease;
    }

    .faq-box {
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .faq-question {
      font-weight: bold;
      font-size: 16px;
    }

    .faq-answer {
      margin-top: 10px;
      font-size: 14px;
      color: #333;
    }

    .toggle-icon {
      float: right;
      color: #00674F;
      cursor: pointer;
      font-size: 18px;
    }

.rev-btn {
      text-align: center;
      margin-top: 40px;
    }

    .review-button{
      background-color: #00674F;
      color: white;
      padding: 14px 30px;
      border-radius: 5px;
      font-size: 16px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      font-family: "Lato", sans-serif;
      align-items: center;
    }
.footer {
      padding: 40px 0 20px;
      background-color: #fff;
      border-top: 1px solid #ddd;
      font-family: 'Segoe UI', sans-serif;
    }

    .footer .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 20px;
    }
    .footer .social-icons a {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 36px;
      height: 36px;
      background-color: #00674F;
      color: white;
      border-radius: 50%;
      margin-left: 10px;
      text-decoration: none;
      font-size: 16px;
    }

    .footer hr {
      margin: 0 0 10px;
      color: #161616;
    }

    .footer .copyright {
      text-align: center;
      font-size: 0.9rem;
      color: #161616;
    }