:root {
    --theme-color1: #ffffff;
    --theme-color2: #0C2F25;
    --theme-color3: #10551F;
    --theme-color1-rgb: 199, 220, 73;
    --theme-color2-rgb: 12, 47, 37;
    --theme-color3-rgb: 16, 85, 31;
    --theme-color1-text-color: #0C2F25;
    --theme-color2-text-color: #fff;
    --theme-color3-text-color: #0F0B19;
    --body-bg: #fff;
    --theme-color-white: #ffffff;
    --bg-color: #F7F8ED;
    --theme-color-white-rgb: 255, 255, 255;
    --theme-color-silver: #eee;
    --theme-color-black: #000000;
    --theme-color-black-rgb: 0, 0, 0;
    --bg-theme-color1: var(--theme-color1);
    --bg-theme-color2: var(--theme-color2);
    --bg-theme-color3: var(--theme-color3);
    --border-color1-rgba: rgba(255, 255, 255, 0.2);
    --border-color2-rgba: rgba(255, 255, 255, 0.13);
    --text-color: #6D827C;
    --headings-color: #0C2F25;
    --link-color: var(--theme-color1);
    --link-hover-color: var(--theme-color2);
    --body-font-family: "Bricolage Grotesque";
    --heading-font-family: "Bricolage Grotesque";
    --body-font-size: 16px;
    --body-line-height: 1.5;
    --body-font-weight: 400;
    --line-height-heading-h1: 100%;
    --line-height-heading: 120%;
    --line-height-heading-small: 1.4em;
    --h1-font-size: 80px;
    --h2-font-size: 50px;
    --h3-font-size: 30px;
    --h4-font-size: 24px;
    --h5-font-size: 20px;
    --h6-font-size: 16px;
    --h1-font-weight: 400;
    --h2-font-weight: 400;
    --h3-font-weight: 400;
    --h4-font-weight: 400;
    --h5-font-weight: 600;
    --h6-font-weight: 700;
    --sec-title-subtitle-color: #7e8596;
    --sec-title-subtitle-font-size: 16px;
    --sec-title-subtitle-font-weight: 500;
    --sec-title-subtitle-line-height: 1;
    --sec-title-color: var(--headings-color);
    --sec-title-font-size: 50px;
    --sec-title-font-weight: var(--h2-font-weight);
    --container-width: 1320px;
    --small-container-width: 1000px;
    --large-container-width: 1550px;
    --container-pt: 120px;
    --container-pb: 120px;
    --gradient-1: linear-gradient(90deg, #88ff2a 0%, #fff 100%);
}



/*=======================
    Preloader
=======================*/

/* background */

.fix {
    overflow: hidden;
}



.line-shape-animation span:nth-child(2)::backdrop {
    -webkit-animation: dscroll 4.1s linear infinite;
    animation: dscroll 4.1s linear infinite;
}

@-webkit-keyframes dscroll {
    100% {
        -webkit-transform: translateY(100vh);
        transform: translateY(100vh);
    }
}

@keyframes dscroll {
    100% {
        -webkit-transform: translateY(100vh);
        transform: translateY(100vh);
    }
}



/*** 

====================================================================
  Anim Icons
====================================================================

***/
/*img-animation**********************/
@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
        transform: translate3d(-25%, 0, 0) rotate(-5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
        transform: translate3d(20%, 0, 0) rotate(3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
        transform: translate3d(-15%, 0, 0) rotate(-3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
        transform: translate3d(10%, 0, 0) rotate(2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
        transform: translate3d(-5%, 0, 0) rotate(-1deg);
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}


@keyframes wobble {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
        transform: translate3d(-25%, 0, 0) rotate(-5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
        transform: translate3d(20%, 0, 0) rotate(3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
        transform: translate3d(-15%, 0, 0) rotate(-3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
        transform: translate3d(10%, 0, 0) rotate(2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
        transform: translate3d(-5%, 0, 0) rotate(-1deg);
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* background */


.service-section {
    margin: 0 40px;
    border-radius: 20px;
}

@media (max-width: 1699.98px) {
    .service-section {
        margin: 0 35px;
    }
}

@media (max-width: 1399.98px) {
    .service-section {
        margin: 0 28px;
    }
}

@media (max-width: 1199.98px) {
    .service-section {
        margin: 0 20px;
    }
}

@media (max-width: 469.98px) {
    .service-section {
        margin: 0 16px;
    }
}

.service-block-1 {
    position: relative;
    padding: 40px 0;

    /* Glass Effect */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    /* Border and Shadow */
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

    /* Rounded Corners */
    border-radius: 20px;

    /* Optional */
    overflow: hidden;
}

.service-block-1::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(12, 47, 37, 0.1);
}

.service-block-1::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 10px;
    height: 1px;
    background: var(--theme-color1);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.service-block-1 .content .icon {
    position: relative;
    display: inline-block;
    z-index: 1;
    font-size: 60px;
    line-height: 1;
}

.service-block-1 .content .icon::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    content: "";
    width: 24px;
    height: 24px;
    background-color: var(--theme-color1);
    border-radius: 50%;
    z-index: -1;
}

.service-block-1 .content .title {
    margin-top: 30px;
}

.service-block-1 .content .title a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.service-block-1 .content .title a:hover {
    color: var(--theme-color1);
}

.service-block-1 .service-image {
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.service-block-1 .service-image .number {
    height: 65px;
    line-height: 65px;
    text-align: center;
    font-size: 50px;
    color: var(--theme-color-white);
    background: rgba(253, 253, 253, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    border-radius: 10px;
    display: inline-block;
    padding: 0 20px;
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 9;
}

.service-block-1 .service-image .number b {
    color: var(--theme-color1);
}

.service-block-1 .service-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.service-block-1 .service-image img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translate(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.service-block-1 .content-2 {
    max-width: 336px;
    margin-left: auto;
}

@media (max-width: 767.98px) {
    .service-block-1 .content-2 {
        margin-left: initial;
        max-width: initial;
    }
}

.service-block-1 .content-2 .link-btn {
  display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #ffffff;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    position: relative;
    background: orangered;
    padding-bottom: 5px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    margin-top: 40px;
    padding: 13px;
    border-radius: 8px;
}

@media (max-width: 767.98px) {
    .service-block-1 .content-2 .link-btn {
        margin-top: 20px;
    }
}

.service-block-1 .content-2 .link-btn::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(12, 47, 37, 0.1);
}

.service-block-1 .content-2 .link-btn::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 10px;
    height: 1px;
    background: var(--theme-color1);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.service-block-1 .content-2 .link-btn i {
    color: var(--theme-color1);
}

.service-block-1 .content-2 .link-btn:hover {
    color: var(--theme-color1);
}

.service-block-1 .content-2 .link-btn:hover::after {
    opacity: 1;
    visibility: visible;
    width: 100%;
}

.service-block-1:hover .service-image img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.service-block-1:hover .service-image img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.service-block-1:hover .content .icon img {
    -webkit-animation: wobble 1.5s ease-in-out;
    animation: wobble 1.5s ease-in-out;
}

.service-block-1:hover::after {
    opacity: 1;
    visibility: visible;
    width: 100%;
}



/* background */
@media (max-width: 767.98px) {
    br {
        display: none;
    }
}

.fix {
    overflow: hidden;
}

@media (max-width: 1199.98px) {
    br {
        display: none;
    }
}

/*** 

====================================================================
      Mobile Menu
====================================================================

***/

/*** 

====================================================================
  Search Popup
====================================================================

***/

/*** 

====================================================================
Section Title
====================================================================

***/
.hero-1 .banner-image .hero-form form .form-clt .custom-file-input::file-selector-button {
    background-color: var(--theme-color-white);
    color: var(--theme-color2);
    padding: 8px 18px;
    border-radius: 10px;
    border: 1px solid rgba(12, 47, 37, 0.1);
    margin-right: 15px;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
}

.hero-1 .banner-image .hero-form form .form-clt .custom-file-input::file-selector-button:hover {
    background-color: var(--theme-color1);
}

@media (max-width: 991.98px) {
    .experience-speaks-card-items {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .experience-speaks-card-items p {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .experience-speaks-card-items .count-box {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

.experience-speaks-card-items .count-box {
    font-size: 60px;
    color: var(--theme-color3);
    margin-top: 85px;
}

@media (max-width: 991.98px) {
    .experience-speaks-card-items .count-box {
        margin-top: 30px;
    }
}

.experience-speaks-card-items .count-box.style-2 {
    margin-top: 0;
    margin-bottom: 85px;
}

@media (max-width: 991.98px) {
    .experience-speaks-card-items .count-box.style-2 {
        margin-bottom: 30px;
    }
}

.experience-speaks-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 1199.98px) {
    .experience-speaks-wrapper {
        gap: 30px;
    }
}

@media (max-width: 991.98px) {
    .experience-speaks-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 767.98px) {
    .experience-speaks-wrapper {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
    }
}

@media (max-width: 575.98px) {
    .experience-speaks-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        -ms-grid-columns: auto;
        grid-template-columns: auto;
    }
}

@media (max-width: 991.98px) {
    .experience-speaks-wrapper .line-shape {
        display: none;
    }
}

.experience-text {
    text-align: center;
    font-size: 24px;
    color: var(--theme-color2);
    background-color: var(--theme-color-white);
    padding: 0 20px;
    position: relative;
    z-index: 1;
    max-width: 390px;
    margin: 0 auto 60px;
}

@media (max-width: 991.98px) {
    .experience-text {
        margin-bottom: 30px;
    }
}

.experience-speaks-section {
    position: relative;
    border-bottom: 1px solid rgba(12, 47, 37, 0.1);
    padding-bottom: 60px;
    margin-top: 60px;
}

.experience-speaks-section::before {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    background-color: rgba(12, 47, 37, 0.1);
    top: 23px;
}

.content h3{
    color: white;
}
.text{
    color: white;
}

.tz-itm-title {
    color: white;
    padding: 20px 0px;
}
.tz-sub-tilte{
    color: white;
}

.tp-service-pin {
    position: relative;
}

.tp-service-panel {
    position: relative;
    width: 100%;
    margin-bottom: 30px; /* bottom gap */
    border-radius: 20px;
      max-width: 1385px;
}

/* Tablet */
@media (max-width: 1300px) {
    .tp-service-panel {
        margin-bottom: 25px;
     
          
    }
}

/* Mobile */
@media (max-width: 767px) {
    .tp-service-panel {
        margin-bottom: 20px;
        width: 100%;
            max-width: 1385px;
    }
}

.tp-service-pin {
  position: relative;
}

.tp-service-panel {
  position: relative;
  width: 100%;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  margin-bottom: 30px; /* spacing between cards on mobile */
}

/* Tablet */
@media (max-width: 1198px) {
  .tp-service-panel {
    margin-bottom: 25px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .tp-service-panel {
    margin-bottom: 20px;
  }
}

