@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alef:wght@400;700&display=swap');

:root {
    --title: #2f3934;
    --monte: "Lato", sans-serif;
    --p-color: #00674A;
    --alef: "Alef", sans-serif;
    --btn-bg-color: #0C6C44;
    --sec-color: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "Lato", sans-serif;
    background-color: #F0F6FF;
    overflow-x: scroll;
}

.about-body {
    font-family: var(--alef);
}

.main-container {
    width: 100%;
    /* background: url(/assets/images/first-bg.png); */
    /* margin-bottom: 50px; */
    background-size: contain;
    background: linear-gradient(to left, #01563e2f, #fff);
}

.header-container {
    width: 100%;
    /* background-color: #fff; */
}

.header-section {
    width: 100%;
    position: fixed;
    z-index: 111;
    top: 40px;
    left: 0;
    background-color: #f0f6ff;
    transition: all 0.5s ease-in-out;
}

.about-header-section {
    top: 0;
}

.header-top-content {
    height: 40px;
    background-color: #004B36;
    display: flex;
    align-items: center;
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 111;
    justify-content: center;
}

.header-top-content h2 {
    color: #fff;
    text-align: center;
    font-size: 18px;
}

.header-section.static {
    transform: translateY(-100%);
}


.header-nav-content {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    position: relative;
}




#our-team-container {
    scroll-margin-top: 100px;
}

#our-services {
    scroll-margin-top: 100px;
}

#our-products {
    scroll-margin-top: 100px;
}

.logo-content {
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-content h2 {
    color: #0C6C44;
    font-family: "Lato";
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 3%;
    text-align: center;
}

.nav-header-logo {
    width: 78px;
    display: flex;
    align-items: center;
    transform: translateY(-7px);
}

.nav-header-logo img {
    width: 100%;
    height: 50%;
}

.nav-toggle {
    position: relative;
    cursor: pointer;
    width: 20px;
    height: 16px;
    transition: 0.3s all ease;
    transform: translateY(-2px);
}

.nav-toggle span {
    position: absolute;
    display: inline-block;
    height: 2px;
    width: 100%;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
    background: var(--title);
    left: 0;
}

.nav-toggle span:first-child {
    top: 0;
}

.nav-toggle span:nth-child(2) {
    top: 52%;
}

.nav-toggle span:nth-child(3) {
    bottom: 0;
}

.nav-toggle.active span:first-child {
    transform: rotate(45deg) translate(3px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -7px);
}

.nav-menu {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 0px 0px 30px 30px;
    -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    transition: all 0.2s ease-in;

}

.scrollShadow {
    -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-menu:not(.active) {
    opacity: 0;
    visibility: hidden;
    transform: scale(1, .9);
}

.nav-menu-inner {
    list-style: none;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 13px 22px 0;
}

.nav-menu-inner>li {
    width: 100%;
    border-bottom: 1px solid rgba(64, 123, 255, 0.17);
    padding: 0 5px;
    white-space: nowrap;
}

.nav-menu-inner>li>a {
    text-decoration: none;
    padding: 12px 0;
    display: inline-block;
    color: #212C4F;
    align-items: center;
    font-size: 14px;
    cursor: pointer;

}

.dropdown-link {
    position: relative;
}


.dropdown-link::after {
    display: inline-block;
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1px solid var(--title);
    border-bottom: 1px solid var(--title);
    margin-left: 15px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.dropdown-link.active::after {
    transform: rotate(-137deg);
}

.nav-menu-inner>li:last-child {
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 0 0 8px 8px;
    text-align: right;
}


.nav-menu-inner>li:last-child .nav-link {
    background-color: #0C6C44;
    border-radius: 10px;
    color: #fff;
    padding: 7px 16px;

}




.hero-section-main-title {
    text-align: center;
    margin-top: 30px;
}

.mt-90 {
    margin-top: 90px;
}

.atr-img-content {
    height: 100px;
}

.atr-img-content img {
    height: 100%;
    object-fit: contain;

}





.hero-section-main-title h1 {
    font-size: 42px;
    line-height: 0;
    font-weight: 400;
    text-transform: none;
    font-family: inherit;
    word-break: keep-all;
}

.hero-section-main-title h1 span {
    font-size: 20px;
    font-weight: 600;
    line-height: 34px;
    color: var(--sec-color);

}

.hero-section-main-title h1 .highlight-text b {
    color: #0C6C44;
}

.hero-section {
    padding: 10px;
    margin-top: 100px;
}

.my-main-text {
    width: 80% !important;
    margin-top: 20px !important;
}

.hero-section-left-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.hero-section-bottom-content {
    text-align: center;
    width: 90%;
    margin: 30px auto 0;

}

.hero-section-bottom-content p {
    letter-spacing: 0.5px;
    /* color: #212C4F; */
    color: var(--sec-color);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.hero-section-btn-content {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.hero-section-btn-content button {
    padding: 12px 23px;
    border-radius: 8px;
    border: none;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    font-family: var(--monte);
}

.hero-section-btn-content button:first-child {
    background-color: var(--p-color);
    color: #FFFFFF;
    border: none;
}










.hero-section-btn-content button:last-child {
    background-color: var(--p-color);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    padding: 12px 24px;
    text-align: center;
    /* border: 0.5px solid #000000; */
}





.hero-section-right-img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section-right-content img {
    width: 70%;
    max-width: 70%;
}

.rev-right-img img {
    width: 80%;
    max-width: 80%;
}

.mt-0 {
    margin-top: 0 !important;
}

.pulled-corners {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    background: #3498db;
    clip-path: polygon(-20px -20px,
            calc(100% + 20px) -20px,
            calc(100% + 20px) calc(100% + 20px),
            -20px calc(100% + 20px));
}





.middle-container-header-text {
    width: 70%;
    margin: 0 auto;
}

.middle-container-header-text h2 span {
    font-size: 22px;
}




.middle-main-content {
    width: 100%;
    padding: 0 20px;
    padding-bottom: 60px;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.middle-main-content-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.middle-main-content-text h2 {
    font-size: 18px;
    color: #212C4F;
}

.middle-main-content-text p {
    font-size: 14px;
    color: #1A2E35B3;
}


.middle-main-content-box {
    width: 324px;
    box-shadow: 0px 7px 60px 0px rgba(200, 203, 208, 0.35);
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    gap: 15px;
    padding: 16px 40px 20px 40px;
    transition: all 0.3s ease-in-out;
    position: relative;

}

.middle-main-content-box>*:not(.hover-bubble-box) {
    position: initial;
    z-index: 1;
}

.middle-main-content-box-link h2 {
    color: #00674A;
    font-weight: 500;
    line-height: 24px;
    font-size: 14px;
}

.box-link-svg {
    color: #00674A;
    display: flex;
    align-items: center;
}

.middle-main-content-box-link {
    display: flex;
    align-items: center;
    gap: 5px;
}


b {
    font-weight: 600;
}

.middle-main-content-box:hover {
    background-color: #04694d;

}

.middle-main-content-box:hover svg path:first-child {
    fill: white;
    opacity: 1.8;
}

.middle-main-content-box:hover h2 {
    color: #ffffff;
}

.middle-main-content-box:hover p {
    color: #ffffff;
}

.hover-bubble-box {
    position: absolute;
    width: 100%;
    height: 66%;
    bottom: 4px;
    /* transform: translateY(-50%); */
    overflow: hidden;
    /* background-color: red; */

}

.mt-80 {
    margin-top: 80px;
}

.hover-bubble {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: white;
    opacity: 0.3;
    height: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    transform: translate(100%, 100%);
    /* transform: translate(30% , 30%); */

    transition: all 0.3s ease-in;
    z-index: 0;


}

.middle-main-content-box:hover .hover-bubble {
    transform: translate(30%, 30%);

}




/* special-container */

.special-container {
    width: 100%;
    background-image: linear-gradient(180deg, #04120E 0%, #00412F 100%);
}

.special-content-text h1 span {
    color: #FFFFFF;
}

.special-content-bottom-text p {
    color: #FFFFFF;
}

.special-content-img {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.special-content-img img {
    width: 545px;
    max-width: 545px;
    height: 240px;
}

.special-content {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.special-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 70px;
    padding: 20px 0;
}

.mt-40 {
    margin-top: 40px;
}


/* my-carousel-content */

.carousel-wrapper {
    overflow-x: hidden;
    overflow-y: visible;

    touch-action: none;
    -ms-touch-action: none;
    pointer-events: none;

    position: relative;

}

.carousel-wrapper::-webkit-scrollbar {
    height: 0px;
}



.my-carousel {
    padding: 0 10px;
    margin-top: 40px;
}


.my-carousel .owl-nav {
    display: none;
}

.my-carousel .owl-dots {
    /* background-color: red; */
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.my-carousel .owl-dots .owl-dot {
    width: 12px;
    height: 3px;
    background-color: grey;
    border-radius: 5px;

}

.my-carousel .owl-dots .owl-dot.active {
    background-color: green;
    width: 15px;
}




.my-carousel .owl-stage-outer {
    overflow: visible;
}


.my-carousel .item {
    height: 100% !important;
}


.my-carousel .owl-item {
    background-color: #effaf7;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
    transform: translateY(-20px);
    padding:10px;

}

.my-carousel .center {
    /* width: calc(100% / 3); */
    background-color: #00674A;
}

.my-carousel .center+.owl-item {
    transform: translateY(20px) !important;
}

.my-carousel .prev-item {
    transform: translateY(20px) !important;
}

.my-carousel .center .my-carousel-text-content h3 {
    color: white;
}

.my-carousel .center .my-carousel-text-content p {
    color: white;
}

.my-carousel-text-content p {
    color: #546A7B;
    font-weight: 400;
}





.my-carousel-content {
    /* width: 100%; */

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.my-carousel-text-content h3 {
    font-size: 10px;
    line-height: 14px;
    text-align: center;
}

.my-carousel-text-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.my-carousel-text-content p {
    font-size: 8px;
    text-align: center;
    line-height: 14px;
    font-family: "Montserrat", sans-serif;

}

.cash-on-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cash-on-text h2 {
    font-size: 14px;
    color: #54595f;
    font-weight: 600;
}

.cash-on-svg {
    display: flex;
    align-items: center;
}

.cash-on-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
    margin-top: 40px;
}

.gateway-container {
    margin-top: 30px;
    display: flex;
    gap: 10px;
    padding: 30px;
    flex-direction: column;
    background-image: url(/assets/images/bg-s-shine.png);
    background-size: cover;
}

.gateway-content {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.sms-gateway-content-box,
.gateway-content-box {
    width: 90px;
    height: 45px;
    display: flex;
    /* padding: 15px; */
    align-items: center;
    justify-content: center;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 7px 30px 0px rgba(186, 186, 186, 0.1450980392156863);
}

.sms-gateway-content-box img,
.gateway-content-box img {
    /* width: 55%; */
    max-width: 55px;
    height: auto;
    object-position: center;
    object-fit: contain;
    vertical-align: middle;
}

.show-885 {
    display: none;
}

.sms-gateway-content {
    margin-top: 40px;
    display: flex;
    justify-content: center;

}

.sms-gateway-content-box {
    box-shadow: none;
    border-right: 2px solid #DBE1F250;
    border-radius: 0;
}


/* expand-buisness-container */

.expand-buisness-container {
    width: 100%;
    position: relative;
    margin-top: 130px;
    background: url(/assets/images/Group-1597884668-1.svg);
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 30px;
    align-items: center;
}

.expand-buisness-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #04120E;
    z-index: -1;
}

.expand-buisness-img {
    width: 340px;
    position: relative;
    height: 80px;
    margin: 0 auto;
}

.expand-buisness-img img {
    position: absolute;
    width: 100%;
    top: 0;
    left: 50%;
    height: auto;
    z-index: 22;
    transform: translate(-50%, -50%);
}

.expand-buisness-main-text {
    width: 80%;
}

.expand-buisness-text {
    width: 80%;
}

.expand-buisness-main-text h2 {
    color: white;
    text-align: center;
    font-size: 21px;
}

.expand-buisness-text p {
    color: white;
    text-align: center;
    font-size: 14px;
    font-family: var(--monte);
}

.expand-buisness-links {
    display: flex;
    justify-content: center;
    padding: 0 20px;
    gap: 20px;
}

.expand-buisness-link-box {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    border: 2px solid #FFFFFF3B;
    box-shadow: 0px 15px 30px 0px #004B36;
    background-color: #1A6D5790;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* setup-container */

.setup-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
    position: relative;
    width: 100%;
}

.setup-content {
    width: 285px;
    height: 245px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 40px;
    gap: 10px;

}

.setup-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}


.setup-main-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: #141313;
    text-align: center;
}

.setup-text p {
    font-size: 14px;
    color: #546A7B;
    text-align: center;

}

.setup-mini-svg-left {
    position: absolute;
    left: -21%;
    top: -31%;
    transform: translate(50%, 50%);
    /* background-color: red; */
}

.setup-mini-svg-right {
    position: absolute;
    right: 9%;
    top: -30%;
    transform: translate(50%, 50%);
}

.how-does-title-content {
    margin: 0 auto;
}

.how-does-title-content h1 {
    text-align: center;
}

.how-does-bottom-text p {
    text-align: center;
}


/* pricing-container */

.pricing-container {
    width: 100%;
    background-color: #DDF2EC;
    background-image: url(https://6amtech.com/grofresh/wp-content/uploads/sites/4/2024/07/grofresh-pricing-bg.webp);
    background-position: center center;
    background-repeat: no-repeat;
    margin-top: 60px;
}

.pricing-content {
    width: 100%;
    height: 100%;
    padding: 30px 10px;
}

.pricing-content-heading-text h2 {
    font-size: 25px;
    color: #000000;
    text-align: center;
    font-weight: 900;
    letter-spacing: 1px;
}

.pricing-content-heading-text h2 span {
    color: #00674A;
    font-weight: 900;

}

.pricing-content-text {
    margin-top: 30px;
}

.pricing-content-text p {
    font-size: 14px;
    color: #212C4F;
    text-align: center;
}

.pricing-content-main {
    width: 100%;
    background-color: #EAF9F4;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    margin-top: 40px;
}

.pricing-content-top-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-content-top-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: #212C4F;
}

.pricing-content-top-text h4 {
    font-size: 28px;
}

.our-services-container {
    padding: 30px 20px;
    background-color: #F0F6FF;
}

.our-services-content {
    padding: 30px 40px;
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.14);
    border: 1px solid #f5f5f5;
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    cursor: pointer;
}

.our-services-content * {
    transition: color 0.3s ease-in-out;
}


.our-services-info-svg {
    color: #00674A;
}

.our-services-info-svg-1 {
    color: #244191;
}

.our-services-content-info-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;
}

.our-services-content-info-text-1 h3 {
    color: #244191 !important;
}

.our-services-content-info-text h3 {
    color: #00674A;
    font-size: 18px;
    line-height: 155%;
}

.our-services-content-info-text p {
    color: #212C4F;
    line-height: 188%;
}

.our-services-info-read-more {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.our-services-info-read-more h2 {
    font-size: 16px;
    color: var(--p-color);
}

.our-services-info-read-more-1 h2 {
    color: #244191 !important;
}

.arrow-svg {
    display: flex;
    align-items: center;
    transform: translateY(2px);
    color: var(--p-color);
}

.arrow-svg-1 {
    color: #244191;
}

.our-services-main-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    align-items: stretch;
    justify-content: center;
}

.our-services-info-svg svg,
.our-services-info-svg-1 svg {
    width: 40px;
    height: 40px;
    color: currentColor;
}

.our-services-info-svg svg path,
.our-services-info-svg-1 svg path {
    color: currentColor;
}

.our-services-content:hover .our-services-content-info-text h3,
.our-services-content:hover .our-services-info-read-more h2,
.our-services-content:hover .our-services-info-svg {
    color: #244191;
}

.our-services-content:hover .our-services-content-info-text-1 h3,
.our-services-content:hover .our-services-info-read-more-1 h2,
.our-services-content:hover .our-services-info-svg-1 {
    color: #00674A !important;
}

.our-clients-marquee-content {
    /* width: fit-content; */
    width: max-content;
    display: flex;
    gap: 20px;
    animation: marquee 15s linear infinite;
    margin-top: 40px;
    cursor: pointer;
    will-change: transform;
}

.our-clients-marquee-section {
    width: 100%;
    background: linear-gradient(90deg, #D9D9D9 31.25%, #B5B5B5 100%);

    /* background: linear-gradient(90deg, #0C6C44 0%, #1FF199 100%); */
}

.our-clients-marquee-content-reverse {

    animation: marqueeReverse 15s linear infinite;
    overflow: visible;
}

.our-services-text-marquee {
    animation-duration: 20s;
    margin-top: 0;
}


.ty-2 {
    transform: translateY(6px);
}

.our-services-marquee-content-reverse {
    /* background-color: #00412F; */
    background: linear-gradient(to right, #084c3a, #0c6c44);
}

.our-clients-marquee-container-box {
    overflow: hidden;
    /* width: calc(100% - 40px); */
    width: 100%;
    margin: 0 auto;
}

.our-services-marquee-container {
    margin-top: 0 !important;
}

.our-clients-marquee-container {
    overflow: hidden;
    margin-top: 40px;
    background-color: #F0F6FF;
}

.our-clients-marquee-content-box {
    width: 140px;
    height: 85px;
    padding: 20px;
    display: flex;
    align-items: center;


}

.our-clients-marquee-content-box img {
    width: 66%;
    height: auto;
    object-fit: contain;
}

.our-clients-marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeReverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}


/* show-technologies-content-box */

.show-technologies-container {
    margin-top: 30px;
}

.show-technologies-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    padding: 0 20px;
    gap: 20px;
    box-sizing: border-box;

}
.show-technologies-box,
.show-technologies-img {
    aspect-ratio: 1/1;
    border-radius: 7px;
    overflow: hidden;
    box-sizing: border-box;
    flex: 1 1 calc(50% - 10px);
    transition: transform 0.2s ease-in;

}
.show-technologies-box:hover ,
.show-technologies-img:hover {
    transform: translate(0, -10px);
}

.show-technologies-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.show-technologies-box {
    background-color: #d9defa;
    display: flex;
    align-items: center;
    padding: 10px;
}
.show-technologies-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.dbi-all-rights-reserved-content {
    text-align: center;
    width: 100%;
    margin-top: 20px;
    /* background-color: #00412F; */
    /* background: linear-gradient(45deg, var(--p-color), #fff);; */
}

.dbi-all-rights-reserved-content h2{
    font-size: 13px;
    color: #fff;
}
.dbi-all-rights-reserved-content h2 b {
    font-size: 15px;
    color: #16f5a9;
}








/* show-technologies-container */



/* our-services-content  :hover  */


/* our-team-container  */


.our-team-container {
    margin-top: 30px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
}

.our-team-content {
    width: 100%;
    border: 10px;
    background-color: white;
    padding: 40px 20px;
    box-shadow: 0px 7px 30px 0px rgba(186, 186, 186, 0.1450980392156863);
    transition: background 0.3s ease-in-out, color 0.3s ease-in;
}

.our-team-content:hover {
    background-color: #00674A;
}

.our-team-content:hover h2 {
    color: whitesmoke;
}

.our-team-content:hover p {
    color: whitesmoke;
}

.our-team-content:hover .dbi-team-profile-img {
    transform: translateY(-10px) scale(1.1, 1.1);
    outline-color: white;

}

.our-team-content:hover .dbi-team-profile-img img {
    filter: grayscale(0);
}


.our-team-content:hover .team-social-link-box {
    background-color: #31cd73;
}

/* .our-team-content:hover .team-social-link-box path{
    fill: #00412F;
}
.our-team-content:hover .linked-in-hover-svg svg path{
    stroke: #00412F;
    fill: none;
} */





.dbi-team-profile-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.dbi-team-profile-img {
    width: 210px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid white;
    background-color: #00674A;
    outline: 4px solid #00674A;
    outline-offset: 5px;
    transition: transform 0.2s linear;

}

.dbi-team-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
    filter: grayscale(35%);
    object-position: top;
}

.dbi-team-profile-name {
    margin-top: 15px;
}

.dbi-team-profile-name h2 {
    font-size: 18px;
    text-align: center;
    font-weight: 800;
}

.dbi-team-profile-designation p {
    color: #212C4F;
    text-align: center;
    font-weight: 600;
}

.dbi-team-profile-desc p {
    color: #212C4F;
    line-height: 140%;
    text-align: center;
    font-weight: 600;
}

.dbi-team-profile-desc {
    margin-top: 30px;
}

.team-social-link-box {
    width: 30px;
    height: 30px;
    background-color: #0C6C44;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dbi-team-social-links {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 30px;
}


/* our-services-marquee-content-box */

.our-services-marquee-content-box {
    gap: 10px;
    width: fit-content;
}

.our-services-marquee-text h2 {
    font-size: 16px;
    white-space: nowrap;
    color: white;
}

.our-services-marquee-svg {
    display: flex;
    align-items: flex-end;
    color: white;
}

.m-0 {
    margin: 0 !important;
}

.dropdown-nav-li {
    position: relative;
}



.dropdown-nav-menu {
    list-style: none;
    width: fit-content;
    display: flex;
    flex-direction: column;
    left: 50%;
    visibility: hidden;
    -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    background-color: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.4s ease-in-out;
    border-radius: 5px;
    overflow: hidden;
    clip-path: fill-box;
    height: 0px;
}

.dropdown-nav-menu.active {
    visibility: visible;
    opacity: 1;
}

.dropdown-nav-menu::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #0c6c44;
    opacity: .9;
    position: absolute;
    z-index: -1;
}

.dropdown-nav-menu>li>a {
    text-decoration: none;
    color: #fff;
    white-space: nowrap;
}

.dropdown-nav-menu>li {
    cursor: pointer;
    padding: 15px;
    border-bottom: 1px solid #f0f6ff;
}







/* dbi-footer  */

.dbi-footer {
    margin-top: 60px;
}

.dbi-footer-content-list>ul>li {
    color: #fff;
    font-size: 16px;
}

.dbi-footer-container {
    width: 100%;
    background: linear-gradient(to right, #084c3a, #0c6c44);
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 0;
    /* align-items: center; */
}

.about-us-footer-container {
    background: linear-gradient(330deg, #477c97 -40%, var(--p-color) 100%);
}

.dbi-footer-content {
    /* background-color: grey; */
    padding: 20px;
    width: fit-content;
}

.dbi-footer-content-list {
    margin-top: 20px;
}

.dbi-footer-content-ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dbi-footer-header h2 {
    color: #fff;
}

.dbi-footer-logo {
    width: 200px;
    /* background-color: white; */
    position: relative;
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    transform: translateY(-25px);

}

/* .dbi-footer-logo::after { */
/* content: '';
    position: absolute;
    width: 100%;
    height: 100%; */
/* background-color: var(--p-color); */
/* background-color: #0c6c44; */
/* opacity: 0.1;
    border-radius: 10px;
    z-index: 0;
    top: 0;
    left: 0; */
/* } */

.dbi-footer-logo img {
    width: 100%;
    height: auto;
}

.dbi-footer-description {
    margin-top: 20px;
}


.dbi-footer-description p {
    color: white;
    font-size: 14px;
    word-break: keep-all;
    line-height: 155%;
    text-align: center;
}

.dbi-footer-contact-us-svg {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transform: translateY(5px);
}

.dbi-footer-contact-us-content {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    cursor: pointer;
}

.dbi-footer-contact-us {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

a {
    text-decoration: none;
}


.dbi-footer-contact-us-text h2 {
    color: #ffffff;
    font-size: 14px;
    line-height: 188%;
    letter-spacing: 0.5px;
}

.mt-20 {
    margin-top: 20px;
}
.mt-30 {
    margin-top: 30px !important;
}

.dbi-footer-link-box {
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 1;
}


.hint--box-content {
    position: relative;
}

.hint--box-content[area-label]::after {
    content: attr(area-label);
    position: absolute;
    top: 0;
    left: 50%;
    width: max-content;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 10px;
    opacity: 0;
    /* transition: opacity 0.3s, visibility 0.3s, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24); */
    /* transition: all 1s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24); */
    transition: none;

    visibility: hidden;
    background-color: #00674A;
    border: 2px solid #fff;
    transform: translate(-50%, 0);
}

.hint--box-content::before {
    content: '';
    position: absolute;
    border: 7px solid transparent;
    border-bottom-color: #fff;
    top: -7px;
    left: 50%;
    visibility: hidden;
    transition: none;
    /* transition: opacity 0.4s, visibility 0.4s, transform 0.4s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24); */
    transform: translate(-50%, 0);
    opacity: 0;
}



.hint--box:hover+.hint--box-content::after,
.hint--box:hover+.hint--box-content::before {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 30%);
    transition: all 1s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
}




.dbi-footer-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.dbi-footer-map {
    width: 100%;
    height: 50%;
    background-color: #000000;
    margin-top: 20px;
}

.my-map-iframe {
    height: 100%;
    width: 100%;
}

/* why-choose-dbi */



.why-choose-dbi-box {
    width: 90px;
    height: 90px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--btn-bg-color);
    box-shadow: inset 0px 6px 6px -2px #3c8064;
    ;
    /* transform: translateX(-10px); */
}

.why-choose-dbi-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: -5px 5px 3px -3px #12291f;
    border-radius: 50%;
    z-index: -1;

}

.why-choose-dbi-svg {
    width: 100%;
    display: flex;
    align-items: center;
    /* transform: translate(10px , 7px); */
    justify-content: center;
}

.why-choose-dbi-svg i {
    font-size: 30px;
    color: var(--p-color);
}

.people-svg path {
    stroke: #00674a;
}

.why-choose-dbi-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;

}


.why-choose-dbi-box-text p {
    color: #000000;
    text-align: center;
}

.why-choose-dbi-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.about-us-header-container {
    width: 100%;
    /* background-position: center; */
    padding: 0 5%;
    margin-top: 88px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.expand-buisness-link-box,
.team-social-link-box,
.middle-main-content-box,
button {
    cursor: pointer;
}

.about-top-dextop-bg-img {
    display: none;
}

.about-us-header-container-bg-img img {
    width: 100%;
    height: auto;
}

.about-us-text h3 {
    color: #000;
    font-size: 24px;
    font-weight: 600;
}


.about-us-top-main-text h1 {
    font-size: 24px;
    color: var(--sec-color);
    font-family: var(--alef)
}

.about-us-top-main-desc-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-us-top-main-desc-text p {
    font-size: 16px;
    color: #000000;
    font-family: var(--alef);
}

.about-us-header-top-content {
    display: flex;
    /* align-items: center; */
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    width: 100%;
    text-align: center;

}

.contact-us-btn {
    width: fit-content;
    padding: 10px;
    background-color: var(--btn-bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.contact-us-btn button {
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    color: #fff;
}

.about-us-power-service-fill-box {
    width: 100%;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.about-us-power-service-fill {
    background-color: #000000;
    border-radius: 100px;
    height: 100%;
    opacity: 0;
}

.bg-blue-900 {
    background-color: #000000;
}

.bg-charchol-900 {
    background-color: #0D93ED;
}

.bg-deep-purple-900 {
    background-color: #F26E00;
}

.about-us-power-service-fill-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    align-items: center;
    /* animation: fillBox 0.7s ease-in-out; */

}

.about-us-power-service-fill.fillBoxAnimate {
    animation: fillBox 0.7s ease-in-out;
    opacity: 1;

}

.about-us-power-service-fill-content h2 {
    color: #fff;
    font-size: 16px;

}

.about-us-power-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-us-power-content-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-us-power-content-text h2 {
    font-size: 21px;
    line-height: 144%;
    font-weight: 600;
}

.about-us-power-content-text p {
    font-size: 16px;
    line-height: 144%;

}

.about-us-contact-us-btn {
    width: 100%;
    display: flex;
    justify-content: start;
    margin-top: 20px;
}

.about-us-contact-us-btn button {
    padding: 10px 20px;
    border: none;
    font-family: var(--alef);
    font-size: 21px;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(to right, #084c3a, #0c6c44);

}




@keyframes fillBox {
    0% {
        /* width:0%; */
        transform: translateX(-100%);
    }

    100% {
        /* width: 70%; */
        transform: translateX(0);
    }
}



.our-vision-svg-box {

    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid #00674a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-vision-top-content {
    text-align: center;
}



/* about-us */

/* about-us-detail-container  */

.about-us-detail-container {
    display: flex;
    padding: 0px 10px 30px;
    flex-direction: column-reverse;
    align-items: center;
    overflow: hidden;
    margin-top: 30px;
    gap: 25px;

}

.about-us-detail-text {
    display: flex;
    gap: 20px;
    width: 100%;
    flex-direction: column;
    padding: 0 10px;
}

.about-us-detail-text h3 {
    text-align: center;
    color: var(--sec-color);
    font-size: 16px;
    font-weight: 500;
}

.about-us-detail-img-content {
    width: 100%;
}

.about-us-detail-img-content img {
    width: 100%;
    aspect-ratio: 1/0.7;
}

.about-us-main-desc-text h1 {
    font-size: 20px;
}

.people-real-result {
    width: 100%;
    background-color: var(--p-color);
    padding: 10px;
}

.people-real-result-text h2 {
    color: #fff;
    font-size: 18px;
    text-align: center;
}



/* services-typed-text-container */

.services-typed-text-container {
    width: 100%;
    position: relative;
    background-color: black;
}

.services-typed-text-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: url(/assets/images/bg-s-shine.png) no-repeat center;
    height: 100%;
    /* background: linear-gradient(45deg, #0c6c44, #449d7f); */
    z-index: 1;
    opacity: 0.4;
}

.services-typed-text-content {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.services-typed-text-content h2 {
    font-size: 21px;
}

.services-typed-text-content h2 span {
    color: var(--btn-bg-color);
    font-size: 36px;
}

.mt-0 {
    margin-top: 0 !important;
}

.border-animate {
    position: relative;
}

.border-animate::after {
    /* content: none; */
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--btn-bg-color);
    z-index: -1;
    left: -2px;
    top: -2px;
    border-radius: 30px;
    /* animation: border-animate 0.5s linear infinite; */
}

@keyframes border-animate {
    0% {
        border-width: 1px;
        transform: scale(1, 1);
    }

    100% {
        border-width: 1.5px;
        transform: scale(1.9, 1.4);
    }
}

.our-range-section {
    width: 100%;
}

.our-range-detail-section {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-direction: column;
    padding-inline: 5%;
}

.our-range-detail-content h2 {
    font-size: 18px;
}

.our-range-detail-svg {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #00674A;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-range-detail-svg i {
    color: #fff;
}


.our-range-detail-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.our-range-detail-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.our-range-hero-right-content {
    align-self: flex-start;
}

.get-in-touch-section {
    margin-top: 30px;
}

.get-in-touch-container {
    width: 100%;
    padding: 20px;
    background-color: #00412F;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.get-in-touch-main-title h2 {
    font-size: 21px;
    color: #fff;
}

.get-in-touch-title h3 {
    font-size: 14px;
    color: #fff;
}

.get-in-touch-contact-btn {
    display: flex;
    background-color: white;
    width: fit-content;
    border-radius: 10px;
    padding: 12px 18px;
    text-decoration: none;
    align-items: center;
    gap: 10px;
    color: #00674A;
}

.get-in-touch-btn-icon i {
    font-size: 16px;
    color: #00674a;
}

.get-in-touch-contact-btn h2 {
    font-size: 14px;
}

.get-in-touch-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.get-in-touch-mid-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.get-in-touch-mid-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.get-in-touch-title h2 {
    font-size: 16px;
    color: #fff;
}

.get-in-touch-customer-rating-box {
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    justify-content: center;
    gap: 20px;
    /* min-height: 129px; */
    border-radius: 10px;
}

.get-in-touch-rating-img {
    width: 100%;
}

.get-in-touch-rating-img img {
    width: 100%;
    height: 50px;
    object-fit: contain;
}


.get-in-touch-rating-star-icon {
    display: flex;
    gap: 3px;
}

.get-in-touch-rating-star-icon i {
    color: #ffa737;
}

.awb-stars-rating-partial-icon-wrapper {
    position: relative;
    color: grey !important;
}

.awb-stars-rating-partial-icon-wrapper>i {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;

}

.get-in-touch-form-container {
    width: 100%;
    /* background-color: #709e8c; */
    background: linear-gradient(45deg, var(--p-color), #fff);
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: 10px;
}

.get-in-touch-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    gap: 15px;

}

.get-in-touch-form-input input {
    width: 100%;
    padding: 20px 15px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    outline: none;

}

.select-input {
    width: 100%;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    background-color: white;
}

.select-input select {
    width: 95%;
    padding: 20px 15px;
    height: 100%;
    outline: none;
    border-radius: 10px;
    border: none;
    text-transform: capitalize;
}


.get-in-touch-form-input textarea {
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 20px 15px;
    outline: none;
    font-size: 14px;
}

.get-in-touch-form-input input::placeholder {
    font-size: 14px;
}

.get-in-touch-form-btn {
    width: 100%;
    text-align: center;
}

.get-in-touch-form-btn button {
    width: fit-content;
    height: 100%;
    padding: 12px;
    border-radius: 10px;
    color: #fff;
    border: none;
    font-weight: 600;
    letter-spacing: 2px;
    /* background: linear-gradient(320deg , #004B36 , #04694d); */
    /* background: linear-gradient(to right, #00C27A 31.25%, #277e66); */
    background: linear-gradient(to right, #00C27A 24.25%, #277e66);
}

.get-in-touch-form-btn button:hover{
    background: linear-gradient(to left, #00C27A 24.25%, #098c5d);
    /* animation: xuv .9s linear infinite; */
}

/* @keyframes xuv {

    0% {
        background: linear-gradient(320deg , #004B36 , #04694d);
    }

    45% {
        background: linear-gradient(180deg , #004B36 , #04694d);

    }
    
    100% {
        background: linear-gradient(90deg , #004B36 , #04694d);
    }
} */

.form-top-text h3 {
    font-size: 20px;
    color: var(--p-color);
    text-align: center;
}

.form-top-desc-text p {
    font-size: 14px;
    text-align: center;
}


.our-team-h-content {
    display: flex;
    /* width: calc(100% / 2); */
    gap: 30px;
    padding: 20px 30px;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px 7px 30px 0px rgba(17, 14, 14, 0.145);
    transition: background 0.3s ease-in-out, color 0.3s ease-in;
}

.our-team-h-profile-img {
    width: 225px;
    height: 215px;
    /* padding: 5%; */
    display: flex;
    align-items: center;
    justify-content: center;

}

.our-team-h-profile-img img {
    width: calc(100% - 16px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 2px solid white;
    outline: 3px solid #00674A;
    outline-offset: 4px;
    box-sizing: border-box;
    transition: transform 0.2s linear;

}

.our-team-h-profile-info-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 1;
}

.our-team-h-profile-info-content .dbi-team-profile-name {
    margin-top: 0;
}


.our-team-h-content:hover {
    background-color: var(--p-color);
}

.our-team-h-content:hover .our-team-h-profile-img img {
    transform: scale(1.1, 1.1);
    outline-color: white;
}

.our-team-h-content:hover .team-social-link-box {
    background-color: #31cd73;
}

.our-team-h-content:hover h2 {
    color: whitesmoke;
}

.our-team-h-content:hover p {
    color: whitesmoke;
}


















/* //about  */


.our-client-carousel {
    margin-top: 30px;
}


.our-client-carousel-content {
    height: 340px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 30px 80px;
    position: relative;
}

.our-client-carousel .owl-item {
    background-color: #fff;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 9px 11px 14px 0px;
}

.our-clients-why-choosing {
    margin-top: 40px;
    padding-inline: 5%;
}

.our-clients-why-choosing-top-content h2 {
    text-align: center;
    font-size: 21px;
}

.our-clients-why-choosing-top-content h2 span {
    color: var(--p-color);
    font-weight: 900;
}

.our-clients-why-choosing-text {
    margin-top: 10px;
}



.our-clients-why-choosing-text p {
    text-align: center;
    font-size: 16px;
}


.our-clients-valuable-boxes {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
    /* flex-direction: column; */
}

.our-clients-valuable-boxex-content {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 20px;
}

.our-clients-valuable-box-content {
    width: fit-content(80px);
    padding: 10px 20px;
    text-align: center;
    background-color: #00674A;
    border-radius: 10px;
}

.our-clients-valuable-box-content h2 {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}


 .why-choose-dbi-about-us-container {
        display: flex;
        /* padding: 0 5%; */
        gap: 20px;
        justify-content: flex-end;
        position: relative;
        margin-top: 60px;
        flex-direction: column;
}

 .animateCounter-achievement-content {
        width: 100%;
        border-radius: 11px;
        display: flex;
        padding: 40px 0 70px;
        flex-direction: column;
        background: linear-gradient(330deg, #477c97 -40%, var(--p-color) 100%);
        ;
        justify-content: center;
        align-items: center;
        /* height: 80%; */

        position: relative;
        gap: 20px;
        box-shadow: 0px 16px 35px 0px rgba(0, 158.54347826086985, 255, 0.29);
        transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

 .animateCounter-achievement-content-bg-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        opacity: 0.1;
    }

    .animateCounter-achievement-content-bg-img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

      .animateCounter-project-text {
        color: #fff;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    
    .animateCounter-project-text h1 {
        font-size: 70px;
        line-height: 90%;
    }

      .animateCounter-project-text h3 {
        font-size: 18px;
    }

    .animateCounter-achievement-text {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        padding: 0 20px;
    }

    .animateCounter-achievement-text-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #fff;
    }

    .animateCounter-achievement-text-content h2 {
        font-size: 38px;
    }

    .animateCounter-achievement-text-content h4 {
        font-size: 15px;
    }


    .why-choose-dbi-about-us-content {
        width: 100%;
        padding: 5%;
        border-radius: 10px;
        box-shadow: 0px 12px 27px 0px rgba(0, 0, 0, 0.13);
        background-color: white;
        transform: translateY(-48px);
        z-index: 11;
    }



    .why-choose-dbi-about-us-top-text {
        text-align: center;
    }

      .why-choose-dbi-about-us-top-text h2 {
        color: #000;
        font-size: 21px;
    }
    .why-choose-dbi-about-us-top-text h2 span {
        color: var(--p-color);
    }

    .why-choose-dbi-about-us-top-content {
        display: flex;
        gap: 10px;
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
    }

    
    .why-choose-dbi-about-us-top-content-svg {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: white;
        transform: translateY(5px);
    }

     .why-choose-dbi-about-us-top-content-main-text {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .why-choose-dbi-about-us-top-content-main-text h2 {
        font-size: 20px;
    }

    .why-choose-dbi-about-us-top-content-main-text p {
        font-size: 17px;
        text-align: center;
    }



    /* about-us-power-container  */


     .about-us-power-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 30px;
        flex-direction: column;
        padding: 0 5%;
        gap: 30px;
    }
    .about-us-power-content {
        width: 100%;
    }
    .about-us-power-content-text {
        text-align: center;
    }


    .our-vision-container * {
        color: #fff;
    }

    .our-vision-container {
        width: 100%;
        margin-top: 30px;
        padding:50px 5%;
        background-image: url(/assets/images/our-vision-bg.webp);
    }

    .our-vision-main-container {
        width: 100%;
        display: flex;
        align-items: stretch;
        margin-top: 40px;
        gap: 20px;
        flex-wrap: wrap;
    }

    .our-vision-main-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
        gap: 20px;
        padding: 20px;
        flex: 1 1 calc(25% - 120px);
    }

    .our-vision-main-content:hover {
        background-color: var(--btn-bg-color);
    }

    .our-vision-main-content:hover .our-vision-svg-box {
        border-color: #fff;
    }



    /* dbi-achievement-section */

    .dbi-achievement-section {
        margin-top: 30px;
    }

    .our-clients-why-choosing-dots {
        margin-top: 10px;
        width: 100%;
        display: flex;
        height: 3px;
        align-items: center;
        justify-content: center;
        gap: 3px;
    }

    .our-clients-why-choosing-dots span:last-child {
        width: 40px;
        border-radius: 10px;
    }

    .our-clients-why-choosing-dots span {
        width: 4px;
        height: 100%;
        background-color: #00674A;
        border-radius: 50%;
    }

    .dbi-achievement-mid-content {
        display: flex;
        width: 100%;
        gap: 20px;
        padding: 0 5%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
    }
     .dbi-achievement-counter-project {
        text-align: center;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }


    /* service.html  */

    /* dbi-faqs-container */


     .dbi-faqs-section {
        width: 100%;
        padding: 0 5%;
    }

    .dbi-faqs-container {
        width: 100%;
        margin-inline: auto;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .dbi-faqs-dropdown-content {
        border: 2px solid;
        display: flex;
        flex-direction: column;
        padding: 0 20px;
        justify-content: center;
        transition: height 0.5s ease-in-out;
        background: var(--btn-bg-color);
        /* background-image: url(/assets/images/bg-next.svg); */
        background-size: contain;
        color: #fff;
    }

        .dbi-faqs-top-text {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-block: 20px;
        cursor: pointer;
    }

    .dbi-faqs-top-text h2 {
        font-size: 18px;
        letter-spacing: 1.3px;
    }

      .dbi-faqs-dropdown-svg i {
        font-size: 25px;
    }

    .dbi-faqs-dropdown-ul {
        list-style: decimal;
        display: flex;
        flex-direction: column;
        gap: 20px;
        height: 0px;
        overflow: hidden;
        transition: all 0.5s ease-in-out;
    }





    /* coming-soon-popup-container  >><,,, */


    .coming-soon-popup-container {
        width: 100%;
        position: fixed;
        height: 100vh;
        top: 0;
        left: 0;
        background-color: #0000001c;
        opacity: 0;
        visibility: hidden;
        z-index: 111;
        transition: all 0.3s ease-in-out;
    }

    .coming-soon-popup-container.active {
        visibility: visible;
        opacity: 1;
    }


    .coming-soon-popup-content {
        background-color: #fff;
        position: absolute;
        left: 50%;
        bottom: -100%;
        padding:20px;
        transform: translate(-50%, 0);
        transition: all .7s ease-in-out;
    }

    .coming-soon-popup-content.active {
            transform: translate(-50%, 50%);
        bottom: 50%;
    }

    .close-coming-soon-popup {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .my-confirm-button {
        background-color: var(--btn-bg-color);
        outline:none;
        border: none;
    }

    .my-confirm-button:hover {
        background-color: #00C27A;
    }

