:root {
    --primary-text-color: #00C3A9;
    --secondary-text-color: #ffffff;
    --primary-bg-color: #C5ECE5;
    
    --accent-color: #47EDCC; 
    --secondary-bg-color: #292d33;
    --head-font-family: "Catamaran", sans-serif;
   
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--head-font-family);
     }
     .card-hls:hover{
  box-shadow: 0px 0px 15px #d8d8d8;
}

::selection{
  background: var(--primary-bg-color);
}
.stripes{
  background-color: var(--primary-text-color);
}
.btn-style1{
  border: none;
  background-color: #28a78e;
  padding: 0.5em 3em;
  color: #131313;
  font-weight: 700;
  border-radius: 30px;
  font-size: 18px;
}

.btn-style2{
  border: none;
  background-color: #212F3C;
  padding: 0.5em 3em;
  color: #FFFFFF;
  font-weight: 700;
  border-radius: 30px;
  font-size: 18px;
}
.header-margin{
  margin-top: 4em;

}
.clr-star{
  color: #F5B82B;
}
.clr-green {
  color: #13b494;
}
.animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}
.card-hls:hover{
  box-shadow: 0px 0px 15px #ededed;
}
.accordion-button:not(.collapsed) {
  color: black !important;
  font-weight: 700;
  background-color: #ffffff !important;
  box-shadow: none !important;
}
.accordion-button:focus {
  z-index: 3 !important;
  border-color: #f1d182 !important;
  outline: 0 !important;
  box-shadow: none !important;
}
.makeshadow {
  box-shadow: 0px 39px 0px #C5ECE5;
}
/* Style for Carosuel starts */
.owl-carousel .card {
  height: 305px;
}
.carousel-wrap {
  margin: auto;
  padding: 0 2%;
  position: relative;
}
.owl-carousel .item {
  position: relative;
  z-index: 100;
  --webkit-backface-visibility: hidden;
}
.owl-nav > button {
  margin-top: -26px;
  position: absolute;
  top: 50%;
  color: #CDCBCD !important;
}
.owl-nav i {
  font-size: 30px;
}
.owl-nav .owl-prev {
  left: -30px;
}
.owl-nav .owl-next {
  right: -30px;
}
/* Style for Carosuel ends */

    :root {
            --primary-color: #12b08e;
            --light-bg: #dbfdf9;
            --dark-text: #1a1a1a;
            --border-color: #e0e0e0;
        }
 .feature-card {
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8fdfb 100%);
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(18, 176, 142, 0.15);
}

.feature-card h3 {
    color: var(--primary-color);
    font-weight: 700;
}

.feature-card p {
    color: var(--dark-text);
    line-height: 1.6;
}

/* Icon color only */
.icon-box {
    background: var(--primary-color);
    color: #fff;
    border-radius: 8px;
}

 .gradient-steps-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.step-number {
    min-width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #12b08e, #1ab394);
    color: #ffffff;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.step-item p {
    margin: 0;
    color: var(--dark-text);
    line-height: 1.6;
}

.benefit-list {
            list-style: none;
        }

        .benefit-list li {
            padding: 12px 0;
            padding-left: 35px;
            position: relative;
            line-height: 1.6;
        }

        .benefit-list li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-size: 1.2rem;
        }


       .benefit-card {
    background: linear-gradient(135deg, #dbfdf9 0%, #e8fdfb 100%);
    border-radius: 12px;
    /* Remove left border initially */
    border-left: 0;
    transition: all 0.3s ease;
    text-align: left;
}

.benefit-card h5 {
    color: #12b08e;
    font-weight: 700;
}

.benefit-card p {
    color: #1a1a1a;
    line-height: 1.5;
    margin: 0;
}

/* Hover effect: show left border and shadow */
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(18, 176, 142, 0.15);
    border-left: 5px solid #12b08e; /* show border on hover */
}


 /* CTA Section */
        .conversion-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #0fa378 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
            margin-top: 60px;
        }

        .conversion-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        .conversion-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            font-weight: 300;
        }