:root{
    --primary: #0d9e92;
}

.has-accent-color{
    color: var(--primary);
}

/* hide language switcher */
/* .vlt-language-switcher{
    display: none;
} */


.vlt-default-menu__navigation .sf-menu>li.active>a, .vlt-default-menu__navigation .sf-menu>li:hover>a{
    color: var(--primary);
}

.vlt-language-switcher a.is-active{
    color: var(--primary);
}

.vlt-progress-bar__bar span{
    background-color: var(--primary);
}

.vlt-fullpage-slider-progress-bar span{
    background: var(--primary);
}

.vlt-btn--primary {
    background: var(--primary);
}

.vlt-slider-controls .vlt-swiper-pagination .swiper-pagination-bullet-active{
    background: var(--primary);
}

::-webkit-scrollbar-thumb{
    background: var(--primary);
}

.vlt-navbar .vlt-navbar-logo img{
    height: 55px;
}

.overlay-dark::before{
    height: 100%;
    width: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgb(0 0 0 / 0%), rgb(0 0 0 / 85%));
    z-index: 1;
}

.vlt-navbar-inner{
    padding: 40px;
}

.vlt-project-excerpt{
    margin-bottom: 20px;
}

.vlt-offcanvas-menu__navigation .sf-menu>li.active>a, .vlt-offcanvas-menu__navigation .sf-menu>li:hover>a{
    color: var(--primary);
}

.vlt-partners{
    grid-template-columns: repeat(2, 1fr);
    padding: 0px 3.5rem;
}

::selection{
    background-color: var(--primary);
    color: white;
}

.content p{
    color: white;
}

.vlt-post-title a:hover, .vlt-read-more-link:hover{
    color: var(--primary);
}

.double-bounce-one, .double-bounce-two{
    background-color: var(--primary);
}

.swiper-wrapper-height{
    height: 544px !important;
}

.dark-bg {
    position: relative;
}

.dark-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 56%);
    pointer-events: none;
}

.about-para{
    font-size: 20px !important;
    line-height: 1.2;
    text-align: justify;
    max-width: 100% !important;
}

.subtitle{
    color: var(--primary);
    font-weight: 800;
    font-size: 1.3rem;
}

/* .video-container{
    background: var(--primary);
    border-radius: 20px;
    padding: 20px;
} */

.glass {
  background: rgba(37, 39, 39, 0.45); /* translucent base */
  border-radius: 20px;
  padding: 20px;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.vlt-slider-controls--style-1 .vlt-swiper-button-next:hover, .vlt-slider-controls--style-1 .vlt-swiper-button-prev:hover{
    background-color: var(--primary);
    box-shadow:  0 0 0 1px var(--primary);
}

.solutions-container{
    flex-direction: column;
    gap: 10px; height: 100%; 
    justify-content: space-around; 
    display: flex;
}

.solutions-content{
    border: 2px solid rgba(255,255,255,.4); 
    border-bottom: 8px solid var(--primary); 
    height: 50%; display: flex;    
    align-items: start;    
    flex-direction: column;    
    justify-content: center;
}

.image-card {
  position: relative;
  width: 100%;
  max-width: 600px;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Dark overlay */
.image-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* small dark overlay */
  z-index: 1;
}

/* Text on image */
.image-card .content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  z-index: 2;
}

.image-card .content h3 {
  margin: 0 0 8px;
  font-size: 23px;
  font-weight: 600;
}

.image-card .content p {
  margin: 0;
  line-height: 1.4;
}


.border-light {
    flex-grow: 1;
    height: 2px;
    /* box-shadow: 2px 2px 10px color-mix(in srgb, var(--primary) 50%, transparent); */

    display: inline-block;
    margin-bottom: 8px;
    width: 25%;
    background: linear-gradient(to right,
            var(--primary) 0%,
            transparent 100%);
}

/* Overlay container */
.terms-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    padding: 15px 20px;
    background: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0)); /* light black overlay */
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Optional subtle slide */
.terms-overlay span {
    display: block;
    text-align: center;
}

/* On hover hide ONLY the top overlay */
.vlt-post:hover .terms-overlay {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

@media (max-width: 768px){
    .content-vlt{
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .about-gap{
        gap: 30px;
    }

    .mh-img{
        min-height: 250px;
    }

    .image-card .content h3{
        font-size: 17px !important;
    }

    .image-card .content p{
        font-size: 15px;
    }
}

.mh-120{
    max-height: 120px !important;
}

@media (max-width: 1280px) {
    .rm-gap{
        display: none;
    }

    .vlt-video-button a svg{
        margin-left: -20px !important;
        margin-top: -20px !important;
    }

    .vlt-video-button a::after{
        height: 80%;
        width: 80%;
    }
}


/* responsiveness */

@media (max-width: 768px){
    .rm-gap{
        display: none !important;
    }

    .vlt-large-heading{
        font-size: 3.5rem !important;
    }

    .vlt-project-title{
        font-size: 3.5rem !important;
    }

    .about-text{
        font-size: 2rem !important;
    }

    .svg-h{
        height: 40px !important;
    }

    .testimonials-heading{
        font-size: 1.5rem;
    }

    .vlt-testimonial__meta{
        margin-top: 20px !important;
    }

    .gap-l{
        height: 2rem !important;
    }

    .phone-number{
        font-size: 1rem !important;
    }

    [data-anchor=Contact] .tel{
        font-size: 1rem !important;
    }

    address{
        margin-bottom: 0 !important;
    }

    .vlt-post--masonry .vlt-post-content{
        padding: 1rem !important;
    }

    .vlt-video-button a::after {
        height: 60% !important;
        width: 60% !important;
    }

    .vlt-video-button a svg{
        height: 1.2rem !important;
        margin-left: -36px !important;
        margin-top: -42px !important;
    }

    .contact-title{
        font-size: 1.2rem !important;
    }
}
