: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 */

 .card-two{
        border: 1.5px solid #efefef !important;
        border-radius: 4px !important;
     }

     .key-features {
      margin: 1em 0em;
      border: 0px;
      transition: all 0.3s;
    }

    .key-features:hover {
      outline: 0px solid #212f3c;
      box-shadow: 0px 0px 8px #212f3c;
    }

    .hov-eff-icon {
      color: black;
    }

    .key-features:hover > .hov-eff-icon {
      color: green;
    }

    .icon
    {
      color: #13b494 !important;
    }


/* New styles for new sections */
       :root {
            --primary-green: #12b08e;
            --light-green: #d2eae7;
            --dark-text: #1a1a1a;
            --light-gray: #f8f9fa;
        }
         /* Example Section */
        .example-box {
            background: var(--light-green);
            border-left: 5px solid var(--primary-green);
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
        }

        .example-box h4 {
            color: var(--primary-green);
            font-weight: 700;
            margin-bottom: 12px;
        }

        .example-box p {
            color: #333;
            line-height: 1.8;
        }
         /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-green) 0%, #0e8f75 100%) !important;
            color: white;
            padding: 60px 0;
            text-align: center;
            margin: 50px 0;
            border-radius: 12px;
        }

        .cta-section h2 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.95;
        }

         /* Feature Cards */
        .feature-card {
            background: white;
            border: none;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(18, 176, 142, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

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

        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 15px;
        }

        .feature-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 12px;
        }

        .feature-card p {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.8;
        }