:root {
    /* Primary Colors */
    --primary-blue: #25aae1;
    --primary-green: #8cc63f;
    --secondary-blue: #8a2be2;
    --secondary-green: #056839;
    --team-bg: #f2f6df;

    /* Backgrounds */
    --background-light: #ffffff;
    --background-dark: #1e1e1e;

    /* Text Colors */
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #ffffff;
    --text-grey: #666666;
    --text-color: #484848;
    --text-grey-light: #858585;

    /* Shadows */
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.3);

    /* Fonts */
    --font-primary: "Open Sans", sans-serif;
    --font-secondary: "Inter", sans-serif;

    --header-height: 108px;
}

html {
    scroll-behavior: smooth;
}

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

/* Example Usage */
body {
    background-color: var(--background-light);
    color: var(--text-primary);
    font-weight: 400;
    font-family: var(--font-secondary);
}

h1,
h2,
h3,
h4,
h5,
h5,
.heading,
a,
button {
    font-family: var(--font-primary) !important;
}

a {
    text-decoration: none;
}

.underlined {
    text-decoration: underline !important;
}

a,
button,
.cursor-pointer {
    cursor: pointer;
}

.font-primary {
    font-family: var(--font-primary) !important;
}

.font-secondary {
    font-family: var(--font-secondary) !important;
}

p {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
}

p.text-base,
.text-base {
    font-size: 16px;
}

.text-xs {
    font-size: 14px !important;
}

.text-md {
    font-size: 18px;
}

.heading-md {
    font-size: 20px;
}

.heading-default {
    font-size: 16px;
}

.text-lg {
    font-size: clamp(18px, 4vw, 20px);
}

.fw-extra-bold {
    font-weight: 900;
}

.bg-green-sec {
    background-color: var(--secondary-green);
}

.bg-green-pri {
    background-color: var(--primary-green);
}

.text-nowrap {
    white-space: nowrap;
}

.text-lowrcase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.descriptions-sm {
    font-size: 16px;
}

.light-descriptions :is(p, li, span, div) {
    color: var(--text-grey-light);
}

.descriptions :is(img) {
    border-radius: 16px;
}

.descriptions :is(h1, h2, h3, h4, h5, h6) {
    color: var(--primary-color);
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.lh-default {
    line-height: 1.5 !important;
}

.lh-boosted {
    line-height: clamp(34px, 4vw, 44px) !important;
}

.light-contents .lightable {
    color: var(--text-light) !important;
}

.list-highlighted :is(ul, ol) {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 20px;
    margin: 1rem 0;
}

.list-highlighted li {
    padding: 0;
    list-style: none;
    display: inline-flex;
    align-items: flex-start;
    font-family: var(--font-primary);
}

.list-highlighted svg {
    margin-right: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

.list-highlighted-icon-sm svg {
    width: 16px;
    height: 16px;
}

.hover-link-secondary a:hover {
    color: var(--secondary-color) !important;
}

.white-bg {
    background-color: #fff;
}

.light-bg {
    background-color: #f9f9ff;
}

.dark-bg {
    background-color: var(--primary-color);
}

.primary-bg {
    background-color: var(--primary-color);
}

.secondary-bg {
    background-color: var(--secondary-color);
}

.line-clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clamp-1 {
    -webkit-line-clamp: 1;
}

.clamp-2 {
    -webkit-line-clamp: 2;
}

.clamp-3 {
    -webkit-line-clamp: 3;
}

.rounded-0 {
    border-radius: 0;
}

.rounded-16 {
    border-radius: 16px;
}

.rounded-8 {
    border-radius: 8px;
}

.rounded-20 {
    border-radius: 20px;
}

.rounded-24 {
    border-radius: 24px;
}

.rounded-bottom-0 {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.rounded-top-0 {
    border-top-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
}

.light-border {
    border: 1px solid #f5f5f5;
}

.rounded-circle {
    border-radius: 50%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1420px;
    }
}

.smooth {
    transition: all 0.3s ease;
}

.z-boost {
    z-index: 9999;
}

.list-unstyled {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul,
ol {
    padding-left: 1.5rem;
}

/* text colors  */
.text-grey {
    color: var(--text-grey);
}

.text-color {
    color: var(--text-color);
}

.text-light {
    color: #fff !important;
}

.text-grey-light {
    color: var(--text-grey-light) !important;
}

.fw-light {
    font-weight: 300 !important;
}

.fw-regular {
    font-weight: 400 !important;
}

.fw-semibold {
    font-weight: 500 !important;
}

/* form inputs  */
.app-form-ui > * {
    font-family: var(--font-primary) !important;
}

.app-form-ui ::placeholder,
.app-form-ui select {
    color: #bdbdbd;
    font-family: var(--font-secondary) !important;
}

.app-form-ui option {
    color: #777 !important;
}

.app-form-ui label {
    margin-bottom: 0.25rem;
}

.app-form-ui input,
.app-form-ui select {
    width: 100%;
    height: 44px;
    padding-left: 20px;
    border-radius: 4px;
    border-width: 1px;
    outline: none;
    border: 1px solid #d7d7d7;
}

.app-form-ui-border-lg :is(input, textarea) {
    border: 1px solid #dcdcdc !important;
}

.app-form-ui :is(input:focus, textarea:focus, select:focus) {
    outline: none !important;
    border-color: var(--primary-blue) !important;
    border-width: 2px !important;
    box-shadow: none;
}

.app-form-ui textarea {
    width: 100%;
    height: 152px;
    padding: 12px 0 0 20px;
    border-radius: 4px;
    border-width: 1px;
    border: 1px solid #d7d7d7;
    outline: none;
    resize: none;
}

.app-form-ui.hasBackground {
    background-color: var(--primary-green);
    padding: 48px;
    border-radius: 20px;
}
.app-form-ui.hasBackground #submit-btn {
    background-color: var(--primary-blue);
}

@media (max-width: 768px) {
    .app-form-ui.hasBackground {
        padding: 24px;
    }
}

.custom-pill-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
    scroll-padding-left: 1rem;
    overflow-x: auto;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.custom-pill-nav li {
    flex-shrink: 0;
    display: inline-block;
}

.custom-pill-nav a {
    border-radius: 40px;
    padding: 4px 16px;
    color: #333;
    white-space: nowrap;
    background-color: #edf0f5;
}

.custom-pill-nav a.active {
    background-color: var(--primary-blue);
    color: #fff;
}

/* Hide default file input */
input[type="file"] {
    display: none;
}

.file-upload-wrapper {
    display: inline-flex;
    align-items: center;
    width: 100%;
    height: 50px;
    padding-left: 20px;
    border-radius: 24px;
    border-width: 1px;
    outline: none;
    border: 1px solid #dcdcdc;
    padding: 0 0.5rem;
}

/* Custom File Upload Button */
.custom-file-upload {
    display: inline-block;
    background: #acacac;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
}

.custom-file-upload:hover {
    background: #999;
}

.fileName {
    margin-left: 10px;
    font-size: 14px;
    color: #666;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    flex: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
}

.circle-seperator {
    display: inline-block;
    width: 7px;
    height: 7px;
    background-color: #bdbdbd;
    border-radius: 50%;
}

@media (max-width: 992px) {
    .custom-file-upload span {
        visibility: hidden;
    }

    .custom-file-upload span::before {
        position: relative;
        top: 8px;
        left: 18px;
        content: "+" !important;
        visibility: visible;
    }

    .custom-file-upload {
        max-width: 50px;
        padding: 0;
    }
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: end;
}

.text-justify {
    text-align: justify;
}

.text-white {
    color: white;
}

.img-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

/* aspect ratios */
.img-container {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.hvr-zoom:hover img {
    transform: scale(1.3) !important;
}

.ar-11 {
    aspect-ratio: 1/1;
}

.ar-5_3 {
    aspect-ratio: 5/3;
}

.ar-5_4 {
    aspect-ratio: 5/4;
}

.ar-3_4 {
    aspect-ratio: 3/4;
}

.ar-4_5 {
    aspect-ratio: 4/5;
}

.ar-16_9 {
    aspect-ratio: 16/9;
}

.ar-16_10 {
    aspect-ratio: 16/10;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

@media (min-width: 992px) {
    .position-sticky {
        position: sticky;
        top: 120px;
    }
}

.position-fixed {
    position: fixed;
}

.overflow-hidden {
    overflow: hidden;
}

.animate-delay-0_5 {
    animation-delay: 0.5s;
}

.aminate-delay-1 {
    animation-delay: 1s;
}

.duration-1_5 {
    animation-duration: 1.5s;
}

.duration-2 {
    animation-duration: 2s;
}

.hvr-grow img {
    transition: all 500ms ease-in-out;
}

.hvr-grow:hover img {
    transform: scale(1.1);
}

/* Header */
.site-header {
    background: #fff;
    color: white;
    padding: 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0px 2px 8px 0px #8cc63f33;
}

.logo img {
    max-width: 200px;
    height: auto;
    position: relative;
    z-index: 9999;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-toggler {
    width: 60px;
    padding: 0.5rem;
    background-color: var(--primary-green);
    color: #fff;
    font-size: 20px;
    border: 0;
    border-radius: 8px;
}

.nav {
    display: flex;
    flex-direction: column;
}

.nav-menu {
    list-style: none;
    display: flex;
}

.nav-menu li {
    margin-left: 20px;
}

.main-nav .nav-link {
    color: #484848;
    text-decoration: none;
    font-weight: 500;
    font-family: var(--font-primary);
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-right: 1rem;

    &:hover,
    &.active {
        color: var(--primary-green);
        /* font-weight: 700; */
    }

    &:after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        width: 28px;
        height: 28px;
        background-image: url("/assets/icons/fav-icon.png");
        background-size: contain;
        background-repeat: no-repeat;
        opacity: 0;
        z-index: 9999;
        transition: all 0.3s ease;
    }

    &:hover::after {
        opacity: 1;
    }
}

.nav-menu a::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    transition: all 0.4s ease-in;
    background-color: var(--secondary-color);
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
    width: calc(100% / 1.5);
}

.dropdown .dropdown-menu {
    display: block !important;
}

.sub-menu-container {
    left: 0;
    top: calc(var(--header-height) -10px);
    width: 100%;
    padding: 5rem 0;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    /* transition: opacity 400ms ease, visibility 400ms ease 0ms; */
    box-shadow: 0px 8px 24px 0px rgba(140, 149, 159, 0.2);
    /* z-index: 1; */
}

.nav-item-sub-drop:hover .sub-menu-container {
    opacity: 1;
    visibility: visible;
    /* transition-delay: 0ms */
}

.service-pills-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-pills-nav .nav-tab-link {
    border: 0;
    background-color: transparent;
    font-size: 20px;
    font-family: var(--font-primary);
    width: fit-content;
    transition: all 300ms ease;
}

.service-pills-nav .nav-tab-link.active {
    color: var(--primary-green);
    font-weight: 700;
}

.service-pills-nav .nav-tab-link:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.app-btn {
    background: #25aae1;
    color: #fff;
    font-family: var(--font-primary);
    font-weight: 400;
    padding: 10px 20px;
    height: 50px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    text-align: center;
    gap: 6px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.app-btn .bg-green-sec {
    background-color: var(--secondary-green) !important;
    color: #fff !important;
}

.app-btn.bg-green-pri {
    background-color: var(--primary-green) !important;
    color: #fff !important;
}

.app-btn-outline-dark {
    background-color: transparent;
    border: 1px solid #333333;
    color: #333333;
}

.app-btn-light {
    background-color: #fff;
    color: var(--text-color);
}

.outline-btn {
    border: 1px solid #484848;
    color: #484848;
    border-radius: 40px;
    padding: 8px 20px;
}

.app-btn.outline-secondary {
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.link-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--secondary-color);
}

.search-btn {
    background-color: transparent;
    width: 50px;
    height: 50px;
    font-size: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.search-btn:hover {
    background-color: #e9f5f5;
}

.hasIcon:hover i {
    padding-left: 4px;
}

.link-icon .link-text {
    text-decoration: underline;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f5f5ff;
}

@media (max-width: 992px) {
    .logo img {
        max-width: 150px;
        height: auto;
    }

    .nav-menu {
        position: fixed;
        display: flex;
        flex-direction: column;
        gap: 10px;
        flex-wrap: wrap;
        bottom: -500px;
        left: 0;
        width: 100%;
        height: auto;
        background: #fff;
        padding: 10px;
        box-shadow: 0px 10px 1px rgba(221, 221, 221, 1),
            0 10px 20px rgba(204, 204, 204, 1);
        padding: 2rem 0 5rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .nav-menu.active {
        opacity: 1;
        bottom: 0;
        visibility: visible;
    }

    .nav-menu a {
        margin: 0;
    }
}

@media (min-width: 992px) {
    .mt-lg-0 {
        margin-top: 0 !important;
    }

    .mt-lg-5 {
        margin-top: 1.5rem !important;
    }
}

.fullscreen-offcanvas {
    width: 100vw !important;
    height: 100vh !important;
    top: 0;
    left: 0;
    z-index: 999999;
    /* transform: none !important; */
}

/* banner carousel  */
.abs-31 {
    left: 0;
}

.abs-32 {
    right: 0;
}

.abs-31,
.abs-32 {
    position: absolute;
    top: 0;
    height: 100%;
    backdrop-filter: blur(200px);
}

/* .abs- .abs-vector {
    opacity: 0;
    transition: all 300ms ease;
} */

.carousel-item {
    height: 100vh !important;
}

.carousel-inner{
    height: 100%;
}
#appBanner{
    height: 100% !important;
}
.carousel-item.item3 {
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.flip-row {
    transform: scaleX(-1);
    animation: flipRow 2s ease forwards;
}

.flip-row .left-col {
    transform: scaleX(-1);
}

.flip-row > .right-col {
    transform: scaleX(-1);
}

@keyframes flipRow {
    0% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(-1);
    }
}

.bg-first-item {
    background-color: #e0f6ff;
    border-radius: 50%;
}

.bg-second-item {
    background-color: #e9fdcd;
    border-radius: 45% 45% 0 0;
}

/* services clipped images */

.clipped-service-images {
    border-radius: 200px 200px 200px 0;
}

.rounded-200 {
    border-radius: 200px;
}

.rounded-br-200 {
    border-radius: 0 0 200px;
}

.rounded-b-0 {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.rounded-diagonal-200 {
    border-radius: 0 200px 0 200px;
}

.rounded-diagonal-200-inverted {
    border-radius: 200px 0 200px 0 !important;
}

.rounded-diagonal-80 {
    border-radius: 0 80px 0 80px;
}

.rounded-diagonal-80-inverted {
    border-radius: 80px 0 80px 0 !important;
}

/* ends  */

.carousel-indicators {
    margin: 0;
    justify-content: start;
    align-items: center;
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    border: 1px solid #989898 !important;
    background: #edf0f5 !important;
}

.carousel-indicators button.active {
    background-color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
    width: 16px !important;
    height: 16px !important;
}

.custom-pills {
    display: flex;
    justify-content: center;
    flex-direction: unset;
    align-items: center;
    gap: 6px;
}

.custom-pills .nav-link {
    background-color: #edf0f5;
    border-radius: 40px;
    padding: 4px 16px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
}

.custom-pills .nav-link.active {
    background-color: var(--primary-blue);
    color: #fff;
}

.py-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.p-64 {
    padding: 64px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pt-70 {
    padding-top: 70px;
}

.mt-70 {
    margin-top: 70px;
}

.section-bg-image {
    background-size: cover;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.bg-contain {
    background-size: contain !important;
}

@media (min-width: 992px) {
    .cta-section {
        /* min-height: 550px; */
        display: flex;
        align-items: center;
    }
}
@media screen and  (max-width: 1024px) {
    .home-banner{
        height: 60vh !important;
    }
    .carousel-item {
       height: 60vh !important;
    }
}
@media screen and (max-width:992px) {
    .home-banner {
            height: 100vh !important;
    }
    .carousel-item{
        height: 100vh;
    }
}
@media screen and (max-width:425px) {
    .home-banner {
            height: 100vh !important;
        }
    .carousel-item{
        height:100vh !important;
    }
}
.abs-section-bg-stack {
    position: absolute;
    top: 0;
    height: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    z-index: -1;
}

.abs-section-bg-stack.z-front {
    z-index: unset !important;
}

.faq-icon-stack {
    position: absolute;
    top: -64px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 107px;
    height: 107px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2ffe2;
    color: var(--primary-green);
    border: 6.48px solid var(--primary-green);
    border-radius: 50%;
}

.z-front {
    z-index: 1;
}

.abs-section-bg-stack.stack-opac-05 {
    opacity: 0.05;
}

.overlay-general,
.pseudo-overlay-bg-general {
    background-color: #00000080;
}

.pseudo-overlay {
    position: relative;
}

.pseudo-overlay::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3a125f66;
    /* z-index: -1; */
}

.pseudo-overlay-grad {
    background: linear-gradient(0deg, #d9d9d9, #d9d9d9),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0) 42.77%,
            rgba(0, 0, 0, 0.6) 100%
        ) !important;
}

.dark-overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

.abs-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* hero section  */
.site-hero {
    background-color: var(--primary-color);
}

.site-hero .hero-title {
    font-size: clamp(28px, 4vw, 64px);
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--secondary-color);
}

.shadow-card {
    box-shadow: 2px 4px 24px 0px #f3eafc;
}

.box-card {
    border: 1px solid #f2f2f2;
    border-radius: 24px;
    background: #fbfbfb;
    padding: 24px 16px;
}

@media (min-width: 992px) {
    .site-hero .container .entity-left {
        width: 70%;
    }

    .site-hero .container .entity-right {
        width: 30%;
    }
}

.hero-image {
    border-radius: 28px;
}

@media (max-width: 768px) {
    .items-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .achv-items-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .items-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

.icon-sm {
    border: 0;
    width: 48px;
    height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-blue);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 0;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 1;

    &:hover {
        background: var(--secondary-blue);
    }
}

.story-card::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    opacity: 0;
    transition: opacity 0.3s;
}

.story-card:hover::after {
    opacity: 1;
}

.story-card:hover .play-btn {
    opacity: 1;
}

@media (max-width: 992px) {
    .story-card {
        margin-bottom: 20px;
    }

    .story-card .play-btn {
        opacity: 1;
    }

    .story-col {
        margin: 0 !important;
    }
}

.custom-close {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #c7c7c7;
    background-color: #f0f0ff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
    flex-shrink: 0;
}

.custom-close-green {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.video-modal .video-modal-content {
    position: relative;
    background: #fff;
    width: 70%;
    height: 70%;
    border-radius: 14px;
}

@media (max-width: 768px) {
    .video-modal .video-modal-content {
        width: 90%;
        height: 50%;
    }
}

/* testimonial */

@media (min-width: 992px) {
    .tm-col-container {
        min-height: 50vh;
        max-height: 70vh;
        overflow-y: auto;

        &::-webkit-scrollbar {
            display: none;
        }
    }
}

@media screen and (min-width: 769px) and (max-width: 992px) {
    .tm-col-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

.tm-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e6e6e6;
}

.tm-avatar {
    width: 48px;
    height: 48px;
    background-color: #f5f5ff;
}

/* About section */
.about-overview-text {
    display: inline-block;
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 900;
    color: #333;
}

.subtitle {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.primary-green {
    color: var(--primary-green) !important;
}

.primary-blue {
    color: var(--primary-blue) !important;
}

.secondary-green {
    color: var(--secondary-green) !important;
}

.subtitle-sm {
    font-size: 16px;
}

.heading-section {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
}

.heading-24 {
    font-size: 24px;
}

.heading-28 {
    font-size: clamp(22px, 4vw, 28px);
}

.heading-section-large {
    font-size: clamp(32px, 4vw, 48px);
}

.ultra-heading {
    font-size: clamp(32px, 4vw, 64px);
    font-weight: 900;
}

.ultra-heading-extreme {
    font-size: clamp(40px, 4vw, 80px) !important;
}

.heading-about {
    color: var(--primary-green);
}

.banner-short-heading {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 400;
    color: #484848;
}

.abs-v3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: center center;
}

.owl-dots span {
    width: 12px;
    height: 12px;
    background-color: #25aae14d !important;
    transition: all 200ms ease-in !important;
    border-radius: 50%;
}

.owl-dots .owl-dot.active span {
    width: 40px !important;
    border-radius: 20px;
    background-color: var(--primary-blue) !important;
}

.slider-dots-style .owl-dots .owl-dot span {
    border: 1px solid #989898 !important;
    width: 14px !important;
    height: 14px !important;
}

.slider-dots-style .owl-dots .owl-dot.active span {
    border-radius: 50% !important;
}

.owl-dots .owl-dot:hover span {
    background-color: var(--primary-blue) !important;
}

.owl-nav :is(.owl-prev, .owl-next) {
    position: absolute;
    top: 30%;
    border: 0;
    background-color: transparent !important;
    opacity: 1 !important;
}

.owl-nav .owl-next {
    right: -20px;
}

.owl-nav .owl-prev {
    left: -20px;
}

.owl-nav :is(.owl-prev span, .owl-next span) {
    width: 40px;
    height: 40px;
    background-color: #bee6f6 !important;
    color: var(--text-color);
    border-radius: 50% !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 300ms ease;

    &:hover {
        background-color: #47cafd !important;
    }
}

.owl-nav :is(.owl-prev.disabled span, .owl-next.disabled span) {
    display: none !important;
    /* cursor: not-allowed;
    background-color: #bee6f68a !important; */
}

.service-slide .img-container {
    border-radius: 80px 0 80px 0;
    transition: all 300ms ease;
}

.service-slide .img-container:hover {
    outline-width: 18px, 0px, 18px, 0px;
    outline-style: solid;
    outline-color: #8cc63f;
    outline-offset: -10px;
}
.slider-btn-container {
    top: 55%;
}
.clouser-btn {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-green);
    color: var(--text-light);
    outline: none;
    border: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.clouser-btn:hover {
    background-color: var(--primary-green);
    color: var(--text-light);
}
.clouser-btn:nth-child(1) {
    position: absolute;
    top: 50%;
    left: 0px;
    float: right;
}
.clouser-btn:nth-child(2) {
    position: absolute;
    top: 50%;
    right: 0px;
}
@media (max-width: 768px) {
    .slider-btn-container {
        top: 38%;
    }
}

/* gallery section  */
.gallery-wrapper {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    gap: 10px;
}
.image-wrapper {
    flex: 0 0 150px;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.6s ease-in-out;
    cursor: pointer;
}

.image-wrapper:hover {
    flex: 1 0 400px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease-in-out;
}

.gallery-links {
    display: none;
    bottom: -10px;
    align-items: center;
}
.gallery-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-green);
    color: var(--text-light);
    transition: all 0.5s ease-in-out;
}
.gallery-links a:hover {
    background-color: var(--primary-green);
}
.image-wrapper:nth-child(1) {
    flex: 1;
}

.image-wrapper:hover .gallery-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gallery-wrapper:hover .image-wrapper:not(:hover) {
    flex: 0 0 120px;
}
@media (max-width: 768px) {
    .gallery-wrapper {
        padding: 2px;
    }
    .image-wrapper {
        flex: 0 0 50px;
    }
    .image-wrapper:hover {
        flex: 1 0 200px;
    }
    .gallery-links {
        padding: 1px;
    }
    .gallery-links h3 {
        font-size: 14px;
    }
}

/* contact section */
.contact-container {
    background-image: url(../images/bg-holder.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    min-height: fit-content;
    margin-top: 70px;
    padding: 10px 0 25px 0;
}
/* INNER PAGES STYLING */
.inner-banner {
    width: 100%;
    position: relative;
    height: 80vh;
    background-position: center center;
    background-repeat: no-repeat;
}

.bg-position-bottom {
    background-position: bottom !important;
}

.bg-position-center {
    background-position: center !important;
}

.inner-banner-sm {
    height: 60vh !important;
}


@media (max-width: 768px) {
    .inner-banner:not(.inner-banner-sm) {
        height: 50vh;
    }
}

.overlay-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 0, 39, 0.35);
    display: flex;
    align-items: center;
}

.abs-case-title {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    max-height: 300px;
    overflow-y: auto;
}


@media (min-width: 992px) {
    .abs-case-title {
        width: calc(50% - 30px);
    }
}

/* contact section */
.contact-container {
    margin-top: 70px;
}

/* FAQ Items */
.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #484848;
    padding-bottom: 1rem;
}

/* FAQ Question (Button) */
.faq-question {
    width: 100%;
    text-align: left;
    font-size: 24px;
    font-weight: 500;
    border: none;
    background-color: transparent;
    color: var(--heading-color);
    font-family: var(--font-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    color: var(--secondary-color);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--secondary-green);
    color: var(--secondary-green);
    background-color: transparent;
    font-weight: 400;
    font-size: 24px;
    border-radius: 50%;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 11;
}

.faq-icon::before {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0;
    z-index: -1;
}

.faq-question:hover .faq-icon::before {
    opacity: 11;
}

.faq-question[aria-expanded="true"] .faq-icon::before {
    opacity: 1;
    background-color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding-top: 1rem;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

@media (max-width: 600px) {
    .faq-question {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}

/* FOOTER  */
footer .stack-vector {
    position: absolute;
    top: -200px;
    display: flex;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.stack-vector svg {
    height: 100%;
}

.footer-social-icons a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.news-form {
    display: flex;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    /* border: 1px solid #e6e6e6; */
    border: 1px solid #a9a9a9;
    padding: 8px 8px 8px 20px;
    border-radius: 40px;
}

.news-form input {
    flex: 1;
    border: 0;
    box-shadow: none;
    outline: none;
}

.news-form button {
    padding: 8px 20px;
    border-radius: 40px;
    background-color: var(--primary-blue);
    color: #fff;
    font-weight: 400;
    border: 0;
}

.footer-nav-section {
    border-top: 1px solid #484848;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

@media (min-width: 992px) {
    .news-column {
        min-width: 400px;
    }
}

.foot-col-title {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

.foot-col-title-lg {
    font-size: 24px;
}

.award-icon {
    width: 72px;
    height: 72px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border-radius: 50%;
    background-color: var(--secondary-green);
    color: var(--primary-green);
}

footer .nav a {
    width: fit-content;
    color: var(--text-color);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-family: var(--font-primary);
    font-weight: 400;
    transition: all 300ms ease;
}

footer .nav a:hover {
    opacity: 0.65;
}

.copyright-section {
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid #d1cdcde6;
}

.news-input {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    display: flex;
    height: 50px;
    background-color: #fff;
}

.clean-input,
.clean-input:focus {
    background-color: transparent;
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
}

.clean-btn {
    border: 0;
    outline: 0;
    background: transparent;
}

.map-container {
    width: 100%;
    height: 250px;
}

.contact-info-label {
    font-family: var(--font-secondary);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--secondary-green);
    color: var(--primary-green);
    border-radius: 50%;
}
.request-an-appointment-btn:hover {
    background-color: var(--primary-blue);
    color: white;
}
.btn-blue {
    background-color: var(--primary-blue) !important;
}

#submit-btn {
    background-color: var(--primary-green);
}

/* === hover effect on service section === */
.service-card-img {
    position: relative;
}
.service-card-img .bottom-desc {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    gap: 1rem;
    transition: all 0.3s ease;
}
.bottom-desc img {
    width: 200px;
    height: 90px;
    object-fit: contain;
}
.service-card-img:hover .bottom-desc {
    opacity: 1;
}

.whats-app-wrapper {
    position: fixed;
    bottom: 100px;
    right: 16px;
    z-index: 9;
    color: #fff !important;
    height: 44px;
    width: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(255, 255, 255, 1);
    font-size: 20px;
}
.whats-app-wrapper:hover {
    background-color: var(--heading-text);
}
/* === slider third image==== */
.bg-third-item {
    width: 100%;
    height: 700px !important;
}
.bg-third-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* image-resolution: 16/9; */
}
/* === pricing card height === */
.pricing-card {
    height: 320px;
}
.card-title{
    height:120px ;
}
.pricing-card .card-body button{
    margin-bottom: 25px;

}
.card-body {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 210px;
}
/* === blog card == */
.blog-card{
    height: 500px;
}
.success-overlay{
    width: 100% !important;
    bottom: 0 !important;
    left: 0;
    right: 0;
}
.success-overlay > div > p{
    margin-bottom: 0;
}
.service-image{
    height: 33vw !important;
    width: 100%;
}
@media screen and (max-width:425px) {
    .service-image{
        height: 50vw !important;
    }
    .service-image .abs-case-title{
        width: 100% !important;
        max-width: 100% !important;
        bottom: 0;
        left: 0;
    }
    .service-image .abs-case-title p{
        margin-bottom: 0;
    }
}
.offcanvas-backdrop{
   display: none;
}
.modal-backdrop{
 z-index: 100;
}
.home-banner{
    height: 100vh;
}
