/* Poppins font TTF */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 800;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif !important;
    font-size: 15px;
    font-weight: 400;
}

img:focus-visible {
    outline: none;
}

input::placeholder, select::placeholder, textarea::placeholder {
    color: #707070;
    font-weight: 400;
}

nav {box-shadow: none !important;}

nav a:hover, nav > div a:hover,
nav button:hover,
#mobileMenu a:hover {
    background: linear-gradient(90deg, #008190, #00B47E) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-decoration: underline !important;
}
nav a.active, nav > div a.active,
#mobileMenu a.active {
    background: linear-gradient(90deg, #008190, #00B47E) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-decoration: underline !important;    
}

#scrollToTop {
    background: linear-gradient(45deg, #008190, #00B47E 70%) !important;
    z-index: 10;
}

/* Poppins font weight utilities */
.font-poppins-light {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}
.font-poppins-regular {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}
.font-poppins-medium {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}
.font-poppins-semibold {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.font-poppins-bold {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}
.font-poppins-extrabold {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

.font-light {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}
.font-normal {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}
.font-medium {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}
.font-semibold {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.font-bold {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}
.font-extrabold {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

/* Typing cursor animation */
.typing-cursor {
    display: inline-block;
    animation: blink 1.2s infinite;
    color: #16a34a;
    transition: opacity 0.3s ease-in-out;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.text-gradient {
    background: linear-gradient(4deg, #5FE26B, #03A8BC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-tab-gradient {
    background: linear-gradient(6deg, rgba(92,220,104,0.18), rgba(255,255,255,0.04));
}

.faq-item.active {
    background: #FFFFFF;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    border: none;
}
.faq-item {
    border-bottom: 1px solid;
    border-image: linear-gradient(to right, #FFFFFF, #EBEBEB 13%, #EBEBEB 43%, #FFFFFF) 1;
}
.faq-item:last-child {border: none !important;}

.bg-footer {
    background-image: url(../images/footer-section.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}

footer ul li:hover {
    text-decoration: underline !important;
    text-decoration-color: #01848F !important;
}
footer ul li a:hover {
    background: linear-gradient(4deg, #01848F, #21A12D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#green-gradient {
    --color-stop-1: #01848F;
    --color-stop-2: #21A12D;
}

.contact-us-btn:hover svg path,
.contact-us-btn:hover svg g,
.contact-us-btn:hover svg clipPath {
    fill: #ffffff;
}

/* For Index Page Only */
.product-features-section .tab-btn {
    border-color: white !important;
}
.product-features-section .tab-btn.active {
    background-image: linear-gradient(6deg, rgba(92, 220, 104, 0.18), rgba(255, 255, 255, 0.04));
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1) !important;
}

.mute-unmute-video {
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    position: absolute;
    bottom: 15px;
    right: 15px;
    border-radius: 100%;
    padding: 5px;
}

/* For about Page */
.product-ecosystem-section .tab-btn {
    border-right: none !important;
}
.product-ecosystem-section .tab-btn.active {
    background-image: linear-gradient(to right, #008190, #21A12D) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    background-clip: text !important;
    box-shadow: none !important;
    font-weight: 600;
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 28px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn.hidden {
  display: none;
}

#calendarGrid div.bg-\[\#05A879\] {
    color: #FFFFFF !important;
}

#timeSlotsList button.bg-\[\#05A879\] {
    background: #05A879 !important;
    color: #FFFFFF !important;
}
#timeSlotsList button:hover {
    background: #F3F4F6 !important;
}
#timeSlotsList button {
    background: #FFFFFF !important;
    border: 1px solid #e5e5e5 !important;
}

#timeSlotsList button.bg-\[\#05A879\]:hover {
    background: #05A879 !important;
}

#calendarGrid div.bg-\[\#05A879\]:hover {
    background: #05A879 !important;
}

.product-ecosystem-section .tab-content.active {
    display: grid !important;
}

.product-ecosystem-section .tab-btn {
    position: relative !important;
    font-weight: 500 !important;
    margin-bottom: 0 !important;
    overflow: unset;
}
.product-ecosystem-section .tab-btn.active {
    background-image: linear-gradient(to right, #008190, #21A12D) !important;
    webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    background-clip: text !important;
    border: none;
    box-shadow: none !important;
    padding: 0 0 5px 0;
}
.product-ecosystem-section .tab-btn:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 18px;
    display: block;
    background: #F0F0F0;
    top: 2px;
    left: -20px;
}
.product-ecosystem-section .tab-btn.active::after {
    content: "";
    position: relative;
    width: 80px;
    height: 4px;
    display: block;
    margin: auto;
    background: #05A879;
    border-radius: 100px;
    top: 5px;
}
.product-ecosystem-section .tab-btn:nth-child(1):before {
    display: none !important;
}

.how-it-works-btn:hover svg path,
.how-it-works-btn:hover svg g,
.how-it-works-btn:hover svg clipPath {
    fill: #ffffff;
}

/* .card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
} */
.insights-boxes .card-hover h3:after {
    content: '';
    position: relative;
    width: 30px;
    height: 4px;
    display: block;
    background: green;
    margin: 12px 0;
    border-radius: 100px;
    transform-origin: center;
    transform: translateY(0) rotate(0deg);
    transition: transform 0.8s ease-in-out;
}
.insights-boxes .card-hover:hover h3:after {
    width: 150px;
    transform: translateY(60px) rotate(-180deg);
}
.insights-boxes .large-box:hover h3:after {
    width: 150px;
    transform: translateY(85px) rotate(-180deg);
}
.insights-boxes .card-hover:hover p {
    transition: transform 0.5s ease-in-out;
}
.insights-boxes .card-hover:hover p {
    transform: translateY(-12px);
}

.card-hover:hover {
    transform: translateY(0) !important;
    box-shadow: none !important;
}
.how-it-works-btn br {
    display: none !important;
}