@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --font-Poppins: "Poppins", sans-serif;
    --color-11612d: #11612d;
    --color-067831: #067831;
    --color-303f60: #303f60;
    --color-b48a0d: #b48a0d;
    --color-d5aa0f: #d5aa0f;
    --color-e5ce7c: #e5ce7c;
    --color-e6ce7d: #e6ce7d;
    --color-f4eaca: #f4eaca;
    --color-dadada: #dadada;
    --color-f3f4f6: #f3f4f6;
    --color-f4f4f4: #f4f4f4;
    --color-000000: #3c3c3c;
    /* --color-000000: #3d3d3d; */
    --color-ffffff: #ffffff;
    --font-style-normal: normal;
    --font-size-13: 13px;
    --font-size-14: 14px;
    --font-size-16: 16px;
    --font-size-17: 17px;
    --font-size-19: 19px;
    --font-size-22: 22px;
    --font-size-26: 26px;
    --font-size-30: 30px;
    --font-size-36: 36px;
    --font-size-40: 40px;
    --font-size-42: 42px;
    --font-size-70: 70px;
    --character-spacing-0: 0px;
    --line-height-13: 16px;
    --line-height-14: 20px;
    --line-height-16: 21px;
    --line-height-17: 26px;
    --line-height-19: 24px;
    --line-height-22: 32px;
    --line-height-26: 36px;
    --line-height-30: 40px;
    --line-height-36: 46px;
    --line-height-40: 50px;
    --line-height-42: 52px;
    --line-height-70: 82px;
    --line-height-inherit: inherit;
    --font-weight-Thin: 100;
    --font-weight-ExtraLight: 200;
    --font-weight-Light: 300;
    --font-weight-Regular: 400;
    --font-weight-Medium: 500;
    --font-weight-SemiBold: 600;
    --font-weight-Bold: 700;
    --font-weight-ExtraBold: 800;
    --font-weight-Black: 900;
    --font-weight-normal: normal;
    --gradient-180: linear-gradient(180deg, #0791d1 0%, #39b0a9 50%, #6ed07f 100%);
    --gradient-50: linear-gradient(50deg, #0791d1 0%, #39b0a9 50%, #6ed07f 100%);
}

* {
    outline: 0;
}

.row>* {
    padding-right: calc(var(--bs-gutter-x) * .8);
    padding-left: calc(var(--bs-gutter-x) * .8);
}

html {
    scroll-behavior: smooth;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

body {
    font-family: var(--font-Poppins);
    font-style: var(--font-style-normal);
    font-size: var(--font-size-17);
    line-height: var(--line-height-17);
    color: var(--color-000000);
    font-weight: var(--font-weight-Regular);
    margin: 0;
    padding: 0;
    letter-spacing: 0.5px;
    overflow-x: hidden;
}

.clr {
    width: 100%;
    float: left;
}

.img {
    width: 100%;
}

.svg {
    object-fit: contain;
    object-position: center center;
}

a,
.btn,
button {
    color: var(--color-000000);
    outline: none;
    cursor: pointer;
    outline: 0;
    text-decoration: none;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

a:focus,
.btn:focus,
button:focus,
.custom-select:focus,
.form-control:focus {
    outline: none;
    box-shadow: none;
}

.btn:hover,
a:hover,
button:hover {
    color: var(--color-11612d);
    text-decoration: none;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-000000);
    text-transform: normal;
    margin-bottom: 10px;
}

ul,
ol {
    margin: 0px;
    padding: 0px;
}

.nav-link:focus,
.nav-link:hover {
    color: var(--color-11612d);
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--color-11612d);
    text-decoration: none;
    background-color: transparent;
}

li {
    list-style: none;
}

header,
footer,
section {
    width: 100%;
    float: left;
}

hr {
    border-bottom: 1px solid var(--color-b48a0d);
    border-top: 0 none;
    margin: 30px 0;
    padding: 0;
    opacity: 1;
}

p {
    font-size: var(--font-size-17);
    line-height: var(--line-height-17);
    color: var(--color-000000);
    margin-bottom: 15px;
    letter-spacing: 0px;
}

.p-content {
    font-size: var(--font-size-19);
    line-height: var(--line-height-19);
    color: var(--color-000000);
    margin-bottom: 10px;
    letter-spacing: 0px;
}

.small-text {
    font-size: var(--font-size-16);
    line-height: var(--line-height-16);
    color: var(--color-000000);
    margin-bottom: 15px;
    letter-spacing: 0px;
}

.section-title {
    font-size: var(--font-size-19);
    line-height: var(--line-height-19);
    color: var(--color-000000);
    font-weight: var(--font-weight-Bold);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0px;
}

.main-title {
    font-size: var(--font-size-70);
    line-height: var(--line-height-70);
    font-weight: var(--font-weight-Bold);
    color: var(--color-000000);
    margin-bottom: 20px;
    position: relative;
}

.title {
    font-size: var(--font-size-42);
    line-height: var(--line-height-42);
    color: var(--color-000000);
    margin-bottom: 20px;
    font-weight: var(--font-weight-Bold);
    position: relative;
    font-weight: bold;
}

.div-title {
    font-size: var(--font-size-30);
    line-height: var(--line-height-26);
    color: var(--color-000000);
    margin-bottom: 15px;
    position: relative;
    font-weight: bold;
}

.div-sub-title {
    font-size: var(--font-size-36);
    line-height: var(--line-height-36);
    color: var(--color-000000);
    font-weight: var(--font-weight-SemiBold);
    margin-bottom: 15px;
}

.div-text {
    font-size: var(--font-size-26);
    line-height: var(--line-height-26);
    color: var(--color-000000);
    font-weight: var(--font-weight-Medium);
    margin-bottom: 15px;
}

.div-text-small {
    font-size: var(--font-size-22);
    line-height: var(--line-height-22);
    color: var(--color-000000);
    font-weight: var(--font-weight-Medium);
    margin-bottom: 15px;
}

.weight-Light {
    font-weight: var(--font-weight-Light);
}

.weight-Regular {
    font-weight: var(--font-weight-Regular);
}

.weight-Medium {
    font-weight: var(--font-weight-Medium);
}

.weight-SemiBold {
    font-weight: var(--font-weight-SemiBold);
}

.weight-Bold {
    font-weight: var(--font-weight-Bold);
}

.weight-ExtraBold {
    font-weight: var(--font-weight-ExtraBold);
}

.weight-Black {
    font-weight: var(--font-weight-Black);
}

.height-100 {
    height: 100vh;
}

.color-11612d {
    color: var(--color-11612d) !important;
}

.color-b48a0d {
    color: var(--color-b48a0d) !important;
}

.color-d5aa0f {
    color: var(--color-d5aa0f) !important;
}

.color-e6ce7d {
    color: var(--color-e6ce7d) !important;
}

.color-dadada {
    color: var(--color-dadada) !important;
}

.color-303f60 {
    color: var(--color-303f60) !important;
}

.color-000000 {
    color: var(--color-000000) !important;
}

/* Learn More Button */
.expert-btn {
    font-size: var(--font-size-16);
    color: var(--color-303f60);
    font-weight: var(--font-weight-SemiBold);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0px 0px 0px 20px;
    border: 1.5px solid var(--color-303f60);
    border-right: unset;
    border-radius: 50px;
    background: var(--color-ffffff);
    text-decoration: none;
    overflow: hidden;
    transition: 0.3s;
    position: relative;
}

/* circle icon */
/* Ripple effect */
.expert-btn::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    background: rgba(47, 107, 69, 0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: width .5s ease, height .5s ease;
}

.expert-btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--color-303f60);
    border-radius: 50%;
    transition: transform .3s ease;
}

.expert-btn:hover .btn-icon {
    background: var(--color-11612d);
}

/* Learn More Button */
.img-zoom {
    overflow: hidden;
    border-radius: 30px;
}

.img-zoom .zoom {
    transform: scale(1);
    transition: transform 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.img-zoom:hover .zoom {
    transform: scale(1.12);
}

/* @import url(../css/root.css); */
/* main-header */
.g_header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: #ffffffad;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.main-header.g_shrink {
    position: fixed;
    background: #ffffffdc;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    z-index: 999;
    box-shadow: 0px 1px 12px 0px #ffffffab;
}

.main-header.g_shrink .logo-img .main-logo {
    width: 80px;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.main-header.g_shrink .main-nav .nav-item .nav-link {
    padding: 25px 10px;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

/* loader css*/
/* loader css */
.navbar {
    padding: 0;
}

.main-menu {
    padding: 0;
}

.main-nav {
    width: 100%;
    position: relative;
}

.logo-img .main-logo {
    width: 140px;
    display: inline-block;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.main-nav .nav-item {
    margin-right: 20px;
}

.main-nav .nav-item:last-child {
    margin-right: 0px;
}

.main-nav .nav-item .nav-link {
    position: relative;
    display: block;
    font-size: var(--font-size-17);
    color: var(--color-000000);
    font-weight: var(--font-weight-SemiBold);
    line-height: initial;
    padding: 55px 10px;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.main-nav .nav-item .nav-link:focus,
.main-nav .nav-item.active .nav-link,
.main-nav .nav-item .nav-link:hover {
    color: var(--color-b48a0d);
}

.main-nav .nav-item .nav-link.show,
.main-nav .nav-item .show>.nav-link {
    color: var(--color-b48a0d);
}

.dropdown-toggle::after {
    margin-left: 10px;
    position: relative;
    top: 7px;
    background-image: url(../images/icons/dropdown-arrow.png);
    border: none;
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    background-size: contain;
}

/* dropdown-menu */
.main-nav .navbar-nav .nav-item.dropdown .dropdown-item:focus,
.main-nav .navbar-nav .nav-item.dropdown .dropdown-item:hover {
    background-color: transparent;
}

.main-nav .navbar-nav .dropdown .dropdown-menu {
    min-width: 250px;
    margin: 0;
    top: 100%;
    left: 0;
    right: 0;
    padding: 0px;
    border: none;
    border-radius: 0;
    box-shadow: 0px 0px 10px -4px #0000009d;
    z-index: 1000;
    border-radius: 0px;
    background: var(--color-ffffff);
}

.main-nav .navbar-nav .dropdown .dropdown-menu li {
    border-bottom: solid 1px var(--color-11612d);
    border-left: none;
}

.main-nav .navbar-nav .dropdown .dropdown-menu li a {
    font-size: var(--font-size-16);
    color: var(--color-000000);
    font-weight: var(--font-weight-SemiBold);
    display: inline-block;
    padding: 8px 8px;
}

.main-nav .navbar-nav .dropdown .dropdown-menu li:hover {
    background: var(--color-319dc3);
}

.main-nav .navbar-nav .dropdown .dropdown-menu li:hover a {
    color: var(--color-b48a0d);
}

.contact-btn {
    margin-left: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.contact-tel {
    font-weight: var(--font-weight-SemiBold);
}

.contact-btn .contact-tel img {
    width: 22px;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
}

@media (max-width: 979px) {
    .dropdown-submenu>.dropdown-menu {
        left: 0;
        margin-left: 0;
    }
}

/* dropdown-menu */
/* Dropdown animation */
.offcanvas-body {
    overflow-y: unset;
    padding: 0;
}

.offcanvas.offcanvas-start {
    transform: unset;
    border-right: unset;
    background: transparent;
    width: 100%;
}

.offcanvas {
    position: relative;
    visibility: visible;
}

/* main-header */
/* main-banenr */
.home-banner {
    height: 900px;
}

.banner-text-box {
    height: 100%;
    width: 100%;
    position: relative;
}

.banner-text-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}

.banner-text-box .home-video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}

.banner-content {
    position: absolute;
    bottom: 30px;
    width: 60%;
    z-index: 1;
}

.banner-text-box::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, #000000 0%, #00000000 100%);
    z-index: 1;
}

.home-swiper.swiper-container {
    height: 400px;
}

.home-swiper .swiper-pagination-bullet-active {
    background: var(--color-11612d);
    border: 1px solid var(--color-11612d);
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 12px 0;
    display: block;
}

/* hero-text-slider */
.hero-text-slider {
    height: 100px;
    overflow: hidden;
    position: relative;
}

.hero-slide {
    display: flex;
    flex-direction: column;
    animation: heroSlide 6s infinite;
}

.hero-slide span {
    height: 85px;
    display: flex;
    opacity: 0;
    animation: fadeText 6s infinite;
}

.hero-slide span:nth-child(2) {
    animation-delay: 3s;
}

/* vertical slide */
@keyframes heroSlide {
    0% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-80px);
    }

    90% {
        transform: translateY(-80px);
    }

    100% {
        transform: translateY(0);
    }
}

/* fade effect */
@keyframes fadeText {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* hero-text-slider */
/* homepage-video */
.main-banner-video {
    width: 100%;
    height: 100%;
}

.new_video_box {
    position: relative;
    clear: both;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.myVideo {
    width: 100%;
    height: 100%;
    position: relative;
    -o-object-fit: cover;
    object-fit: cover;
}

.video-controls {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 10;
}

.video-sound-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--color-ffffff);
    font-size: var(--font-size-36);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* homepage-video */
/* main-banenr */
/* text-scroll-line */
.scroll-text {
    font-size: var(--font-size-26);
    line-height: var(--line-height-26);
    font-weight: var(--font-weight-Bold);
    color: var(--color-11612d);
    margin-bottom: 0px;
}

.scroll-dots {
    font-size: var(--font-size-26);
    line-height: var(--line-height-26);
    font-weight: var(--font-weight-Bold);
    color: var(--color-11612d);
    margin: 0px 20px;
}

.text-scroll-line {
    overflow: hidden;
    background-color: var(--color-dadada);
    padding: 30px 0 30px;
    white-space: nowrap;
}

.scroll-wrapper {
    display: flex;
    width: max-content;
    animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.scroll-wrapper:hover {
    animation-play-state: paused;
}

/* text-scroll-line*/
/* about-us-section */
.badge {
    width: 200px;
    height: 200px;
    position: relative;
    margin-right: 60px;
    background: var(--color-11612d);
    border: solid 18px var(--color-f4eaca);
    border-radius: 100%;
}

.badge svg {
    width: 100%;
    height: 100%;
    /* animation: rotateText 30s linear infinite; */
}

.rotate-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 14px;
    animation: rotateText 40s linear infinite;
}

.rotate-text img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.badge svg textPath {
    font-size: 15px;
    letter-spacing: 2px;
}

.center-star {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--color-b48a0d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-30);
    color: var(--color-ffffff);
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Main Section Layout */
.infographic-section {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
    overflow: hidden;
    background: var(--color-ffffff);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 60vh;
}

.semicircle-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    margin-top: 0px;
}

/* The Semicircle Wrapper */
.semicircle-wrapper {
    position: relative;
    width: clamp(300px, 80vw, 710px);
    aspect-ratio: 1 / 1;
    margin-bottom: calc(clamp(300px, 80vw, 710px) / -2);
}

.semicircle {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.segment {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: 50% 50%;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.6s ease;
    z-index: 1;
}

.segment.active {
    transform: scale(1.08);
    z-index: 10;
    filter: drop-shadow(0 -15px 30px rgba(0, 0, 0, 0.2));
}

.bg-polygon {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.seg-1 .bg-polygon {
    background: var(--color-067831);
    clip-path: polygon(50% 50%, 0% 50%, 0% 13.673%);
}

.seg-2 .bg-polygon {
    background: var(--color-067831);
    clip-path: polygon(50% 50%, 0% 13.673%, 0% 0%, 33.754% 0%);
}

.seg-3 .bg-polygon {
    background: var(--color-067831);
    clip-path: polygon(50% 50%, 33.754% 0%, 66.246% 0%);
}

.seg-4 .bg-polygon {
    background: var(--color-067831);
    clip-path: polygon(50% 50%, 66.246% 0%, 100% 0%, 100% 13.673%);
}

.seg-5 .bg-polygon {
    background: var(--color-067831);
    clip-path: polygon(50% 50%, 100% 13.673%, 100% 50%);
}

.spoke {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 2px;
    transform-origin: 0% 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-right: 4%;
    width: clamp(80px, 12vw, 0px);
    transform: rotate(90deg);
    transition: all 0.6s ease;
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #0000009d;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    border: 3px solid transparent;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.icon-circle img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: all 0.6s ease;
    filter: invert(1);
}

/* Segment Title Typing */
.content span {
    color: var(--color-ffffff);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 1px;
    transition: all 0.6s ease;
}

.segment.active .icon-circle {
    background: var(--color-b48a0d);
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 20px #0000004d;
}

.segment.active .icon-circle i {
    color: var(--color-000000);
    transform: scale(1);
}

.cloud-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cloud-bg .about-bg03 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
}

.about-text {
    padding: 50px 0;
}

.about-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.about-img-left {
    width: 47%;
    z-index: 1;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.about-img-left .about-left-side-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: left top;
}

.trust-badge {
    padding-left: 20px;
    padding-top: 20px;
}

.trust-badge span {
    font-size: var(--font-size-70);
    line-height: var(--line-height-70);
    font-weight: var(--font-weight-Bold);
    color: var(--color-067831);
    display: inline-block;
}

.trust-badge span#counter {
    width: 100px;
}

.about-bg .about-bg01 {
    width: 50%;
    height: 100%;
    object-fit: contain;
    object-position: left bottom;
}

.about-bg .about-bg02 {
    width: 50%;
    height: 100.5%;
    float: right;
    object-fit: contain;
    object-position: right bottom;
}

.product-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.product-bg img {
    width: 100%;
    height: 100%;
}

.about-right-text .div-title {
    margin-top: 45px;
}

/* about-us-section */
/* product-section */
.product-box .explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #1e7a3b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-box .explore-btn .icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1e7a3b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-box .explore-btn svg {
    transition: transform 0.3s ease;
}

/* Hover Effect */
.product-box .explore-btn:hover {
    color: #145a2b;
}

.product-box .explore-btn:hover .icon {
    background: #145a2b;
}

.product-box .explore-btn:hover svg {
    transform: translateX(4px);
}

.product-list {
    padding-left: 20px;
}

.product-list li {
    list-style: square;
    font-size: var(--font-size-16);
    line-height: var(--line-height-16);
    color: var(--color-000000);
    font-weight: var(--font-weight-Regular);
    margin-bottom: 5px;
}

.product-list li:hover {
    color: var(--color-067831);
}

.product-box {
    position: relative;
    padding: 30px 30px;
    border-radius: 30px;
    height: 400px;
    background: linear-gradient(0deg, #ffffff00 0%, #ffffff60 50%, #ffffffe1 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-box .div-text {
    margin-bottom: 20px;
    height: 70px;
    color: #3f3f3f;
    font-weight: var(--font-weight-SemiBold);
}

/* Arrow Button Style */
.custom-arrow {
    margin-top: 0;
    top: 100%;
    width: 45px;
    height: 45px;
    background: var(--color-f4f4f4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.custom-arrow img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    object-position: center center;
}

.custom-arrow:hover {
    background: var(--color-11612d);
}

.custom-arrow.swiper-button-prev {
    left: calc(50% - 50px);
}

.custom-arrow.swiper-button-next {
    right: calc(50% - 50px);
}

/* marquee */
.marquee-text-scroll {
    width: 100%;
    overflow: hidden;
    margin-top: -130px;
    position: relative;
    white-space: nowrap;
}

.marquee-text {
    display: flex;
    gap: 80px;
    width: max-content;
}

.marquee-text span {
    font-weight: var(--font-weight-ExtraBold);
    white-space: nowrap;
    color: var(--color-ffffff);
    font-size: clamp(24px, 6vw, 100px);
    line-height: clamp(36px, 8vw, 130px);
    background: linear-gradient(120deg, #11612d88 20%, #b48a0d85 80%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.marquee-text {
    will-change: transform;
}

.marquee-text span {
    flex-shrink: 0;
}

/* client-scroll */
.logo-marquee {
    background: #fff;
    padding: 50px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: scrollMarquee 40s linear infinite;
}

.marquee-track img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.logo-marquee:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* client-scroll */
.product-line {
    position: absolute;
    width: 50%;
    height: 2px;
    background: var(--color-11612d);
    left: 50%;
    border-radius: 100%;
    transform: translateX(-50%);
}

.product-line::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-067831);
    left: 50%;
    top: -3px;
    transform: rotate(45deg);
}

.product-line2 {
    left: 0;
    transform: unset;
    border-radius: 0;
}

.product-line2::after {
    left: 0;
}

/* product-section */
/* Testimonial Section */
.testimonial-section {
    background-color: #f7f9fa;
    overflow: hidden;
}

.testimonial-swiper {
    height: 520px;
    padding: 30px 10px;
}

.testimonial-card {
    background: var(--color-ffffff);
    border-radius: 4px;
    padding: 30px 40px;
    display: flex;
    align-items: top;
    gap: 30px;
    transition: all 0.5s ease;
    opacity: 0.5;
    transform: scale(0.9);
    margin: 0 auto;
    max-width: 750px;
    border-left: 14px solid #e1e3e5;
}

.testimonial-section .swiper-slide {
    transform: translateX(56px);
}

.swiper-slide-active .testimonial-card {
    opacity: 1;
    transform: translateX(-67px);
    background: #e9ecef8c;
}

.card-img-wrapper {
    flex-shrink: 0;
}

.profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.card-content {
    flex-grow: 1;
    text-align: left;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.card-header .name {
    font-size: var(--font-size-22);
    font-weight: var(--font-weight-SemiBold);
    color: var(--color-303f60);
    margin: 0;
}

.quote-icon svg {
    height: 24px;
    width: auto;
}

.testimonial-text {
    font-size: var(--font-size-16);
    font-weight: var(--font-weight-Regular);
    color: var(--color-000000);
    margin: 0;
    line-height: 1.6;
}

/* .testimonial-css */
/* FOOTER CSS */
.footer-section {
    position: relative;
    background: url("../images/bg/Footer.png") center center / cover no-repeat;
    padding: 40px 0 20px;
    overflow: hidden;
    color: #fff;
    z-index: 1;
}

.footer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Glass Effect */
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Optional glossy gradient */
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.12),
            rgba(255, 255, 255, 0.03));
    z-index: -1;
}

.footer-section>* {
    position: relative;
    z-index: 2;
}

/* Keep Content Above Background */
.footer-section>* {
    position: relative;
    z-index: 2;
}

/* Common */
.footer-widget h4 {
    font-size: var(--font-size-22);
    font-weight: var(--font-weight-SemiBold);
    color: var(--color-ffffff);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 14px;
    text-transform: uppercase;
}

.footer-widget h4::after {
    content: "";
    width: 45px;
    height: 3px;
    background: var(--color-ffffff);
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 20px;
}

/* Logo */
.footer-logo img {
    max-width: 200px;
    width: 100%;
    margin-bottom: 30px;
}

.footer-desc {
    font-size: var(--font-size-17);
    font-weight: var(--font-weight-Regular);
    color: var(--color-ffffff);
    margin-bottom: 35px;
    max-width: 80%;
}

/* Social */
.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid #ffffffb3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.4s ease;
}

.footer-social svg {
    filter: invert(1);
    width: 20px;
    height: 20px;
}

.footer-social a:hover {
    background: var(--color-11612d);
    transform: translateY(-5px);
}

/* Links */
.footer-widget ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 18px;
}

.footer-widget ul li a {
    color: var(--color-f3f4f6);
    text-decoration: none;
    font-size: var(--font-size-17);
    transition: 0.3s ease;
    position: relative;
    padding-left: 18px;
}

.footer-widget ul li a::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 0;
    font-size: var(--font-size-19);
}

.footer-widget ul li a:hover {
    color: var(--color-ffffff);
    padding-left: 24px;
}

/* Contact */
.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 25px;
}

.footer-contact .contact-item img {
    width: 20px;
    height: 20px;
}

.footer-contact .contact-item a,
.footer-contact .contact-item span {
    text-decoration: none;
    font-size: var(--font-size-16);
    line-height: var(--line-height-16);
    color: var(--color-ffffff);
}

.footer-contact .contact-item sapn.div-text-small.text-white {
    border-bottom: solid 1.5px #bfbfbf;
    margin-bottom: 10px;
    padding-bottom: 2px;
    display: inline-block;
}

/* Touch Text */
.touch-text {
    font-size: var(--font-size-17);
    color: var(--color-ffffff);
    line-height: var(--line-height-26);
    margin-bottom: 35px;
}

/* Button */
.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    border: 1px solid #ffffff;
    border-radius: 50px;
    color: var(--color-ffffff);
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s ease;
}

.footer-btn span {
    transition: 0.3s ease;
}

.footer-btn:hover {
    background: #ffffff;
    color: #002a87;
}

.footer-btn:hover span {
    transform: translateX(5px);
}

/* Bottom */
.footer-bottom {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    margin: 0;
    font-size: var(--font-size-14);
    color: var(--color-ffffff);
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.footer-bottom-links a {
    color: var(--color-ffffff);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--color-ffffff);
}

/* FOOTER CSS */
.inner-banner {
    height: 650px;
}

.inner-banner-content {
    position: absolute;
    right: 0;
    top: 45%;
    width: 100%;
    text-align: center;
    padding-bottom: 0px;
    z-index: 1;
}

.inner-banner-content .banner-text {
    display: flex;
    align-items: start;
    flex-direction: column;
}

.inner-banner .banner-text-box::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    /* background: linear-gradient(180deg, #ffffff00 0%, #f4f4f41f 50%, #f4f4f4 100%); */
    opacity: 1;
}

.inner-banner-content .banner-text .main-title {
    color: #002060;
    margin-bottom: 0;
}

.inner-banner-content .banner-text .title-line {
    width: 75px;
    height: 5px;
    background: #676767;
    border-radius: 10px;
    margin-bottom: 15px;
}

.banner-desc {
    text-align: left;
}

.breadcrumb .breadcrumb-item {
    color: var(--color-ffffff);
}

.breadcrumb .breadcrumb-item a {
    color: var(--color-ffffff);
}

.breadcrumb .breadcrumb-item.active {
    color: var(--color-b48a0d);
}

/* product-section */
.specifications-list li {
    position: relative;
    padding-left: 35px;
    font-size: var(--font-size-20);
    line-height: var(--line-height-20);
    color: var(--color-505050);
    margin-bottom: 15px;
}

.specifications-list li img {
    width: 25px;
    height: 25px;
    position: absolute;
    left: 0;
    top: 6px;
    background: var(--color-e5ce7c);
    padding: 1px;
    border-radius: 30px;
    object-fit: contain;
}

.productsection-bg {
    position: relative;
    width: 100%;
    height: 100%;
    background: url(../images/bg/product-section-bg.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.productsection-bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--color-ffffff);
    opacity: 0.95;
}

.product-content p {
    position: relative;
}

.product-btn-box {
    display: inline-block;
}

.product-btn-box img {
    width: 50px;
    position: absolute;
    bottom: 0;
    margin-left: 30px;
}

.ApplicationsSwiper {
    padding: 30px 0 50px;
}

.application-img.img-zoom {
    border-radius: 0;
}

.applications-box {
    transition: all 0.4s ease;
    border-radius: 8px;
    overflow: hidden;
    border: solid 1px var(--color-dadada);
}

/* text box */
.applications-box .applications-text {
    height: 180px;
    background: var(--color-ffffff);
    padding: 20px 20px;
    transition: all 0.4s ease;
}

.applications-box .applications-text .div-text-small {
    margin-bottom: 0;
}

/* hover effect */
.applications-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* background change */
.applications-box:hover .applications-text {
    background: var(--color-f4eaca);
}

/* Product Card Hover */
.product-card {
    background: var(--color-f3f4f6);
    border-radius: 20px;
    padding: 0px;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #d3d3d3;
}

.product-card .product-text {
    padding: 20px;
}

.product-card .img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.product-card .div-text {
    margin-bottom: 0;
}

.product-card:hover {
    transform: translateY(-10px);
}

/* key-features-section */
.key-features-bg {
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
    background-attachment: fixed;
    background-position: center;
}

.key-features-box {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1rem;
    width: 70%;
    box-shadow: 0 3px 9px #0000004d;
    margin-top: 30px;
}

.feature-box li {
    font-size: var(--font-size-17);
    line-height: var(--line-height-17);
    color: var(--color-000000);
    margin-top: 15px;
    padding-left: 30px;
    position: relative;
}

.feature-box li:first-child {
    margin-top: 0px;
}

.feature-box li img {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 4px;
    object-fit: contain;
}

.feature-row {
    padding-left: 60px;
    border-radius: 20px;
    border: solid 1px #e7e7e7;
    margin: 0;
}

.key-features {
    background: #f7f7fb;
    text-align: center;
}

.feature-box {
    padding: 15px;
    transition: 0.3s;
}

.feature-box img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.feature-box h5 {
    font-size: var(--font-size-20);
    font-weight: var(--font-weight-600);
    color: var(--color-000000);
    line-height: 1.5;
    margin: 0;
}

/* key-features-section */
/* our-pigments-section */
.our-pigments-section .inner {
    width: 100%;
    padding: 2.2rem;
    background: #f4f4f4;
    border-radius: 1.5rem;
    height: 100%;
    box-shadow: 0 10px 30px #0000000a;
    transition: all 0.35s ease;
}

.our-pigments-img {
    width: 100%;
    height: 100%;
}

.our-pigments-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-pigments-section .inner {
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(145deg, #ffffff, #f1f3f5);
    border-radius: 1.5rem;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* subtle top highlight */
.our-pigments-section .inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, #0d6efd, #20c997);
    opacity: 0.8;
}

/* hover effect */
.our-pigments-section .inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* heading */
.our-pigments-section h3 {
    font-size: var(--font-size-30);
    font-weight: 700;
    color: #0d3b2e;
}

/* list styling */
.our-pigments-section ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.our-pigments-section ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
    transition: 0.3s;
    padding: 0;
}

/* icon style */
.our-pigments-section ul li::before {
    content: "✔";
    font-size: 0.75rem;
    color: #fff;
    background: linear-gradient(135deg, #0d6efd, #20c997);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* hover list effect */
.our-pigments-section ul li:hover {
    transform: translateX(5px);
    color: #0d6efd;
}

/* paragraph */
.our-pigments-section p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* our-pigments-section */
/* CTA Section */
.cta-box {
    text-align: center;
    transition: 0.4s;
}

/* product-section */
/* contact-section */
.contact-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.contact-form-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: var(--font-size-22);
    font-weight: 700;
    color: var(--color-303f60);
    margin-bottom: 30px;
}

.contact-form .form-label {
    font-size: var(--font-size-14);
    font-weight: 600;
    color: var(--color-303f60);
    margin-bottom: 8px;
    display: block;
}

.contact-form .form-control {
    padding: 12px 15px;
    font-size: var(--font-size-14);
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #fafafa;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--color-b48a0d);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(180, 138, 13, 0.1);
}

.contact-form .form-control::placeholder {
    color: #999999;
}

.contact-form textarea.form-control {
    resize: none;
    min-height: 100px;
}

.contact-form .form-check {
    margin-top: 25px;
}

.contact-form .form-check-input {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1.5px solid #d0d0d0;
    cursor: pointer;
    margin-top: 0;
}

.contact-form .form-check-input:checked {
    background-color: var(--color-b48a0d);
    border-color: var(--color-b48a0d);
}

.contact-form .form-check-label {
    font-size: var(--font-size-14);
    color: var(--color-303f60);
    cursor: pointer;
    margin-left: 8px;
}

.modal .btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    opacity: 1;
}

.modal-body {
    padding: 0 20px 20px;
}

.modal-header {
    padding: 20px 20px 0;
    border-bottom: none;
    border-top-left-radius: unset;
    border-top-right-radius: unset;
}

/* Contact Info Box */
.contact-info-box {
    position: relative;
    z-index: 1;
}

.contact-title {
    font-size: var(--font-size-30);
    font-weight: 700;
    color: var(--color-303f60);
    margin-bottom: 15px;
    line-height: 1.3;
}

.contact-subtitle {
    font-size: var(--font-size-14);
    color: #666666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-detail-item {
    width: 48%;
    float: left;
    margin-bottom: 30px;
    padding-right: 30px;
    height: 274px;
    background: var(--color-ffffff);
    padding: 25px 25px;
    margin: 0 1%;
    margin-bottom: 2%;
    border-radius: 20px;
    transition: 0.3s;
}

.contact-detail-item:hover {
    background: var(--color-f4eaca);
    transform: translateY(-5px);
    transition: 0.3s;
}

.detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-ffffff);
    font-size: 24px;
}

.contact-info-box {
    margin-bottom: 150px;
}

.office-icon {
    background: var(--color-067831);
    color: var(--color-ffffff);
}

.contact-social .social-links a {
    background: var(--color-11612d);
    border-radius: 50%;
}

.contact-social .social-links a img {
    width: 20px;
    height: 20px;
    transition: 0.3s;
}

.contact-social .social-links a:hover img {
    filter: drop-shadow(2px 4px 6px black);
    transform: translateY(-5px);
    transition: 0.3s;
}

.phone-icon {
    background: var(--color-067831);
    color: var(--color-ffffff);
}

.email-icon {
    background: var(--color-067831);
    color: var(--color-ffffff);
}

/* Social Media */
/* about-section */
.about-mission {
    background: var(--color-f4f4f4);
    padding: 40px 40px;
    border-radius: 30px;
    height: 100%;
    margin: 0;
    -webkit-transition: all .5s ease-out 0s;
    -moz-transition: all .5s ease-out 0s;
    -ms-transition: all .5s ease-out 0s;
    -o-transition: all .5s ease-out 0s;
    transition: all .5s ease-out 0s
}

.about-mission img {
    width: 80px;
    object-fit: contain;
    margin-bottom: 10px
}

.about-mission:hover img {
    filter: invert(1);
}

.about-mission .div-sub-title,
.about-mission p {
    color: var(--color-000000)
}

.about-mission {
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Hover Lift */
.about-mission:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Hidden Background Image */
.about-mission .hover-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

/* Different images for each card */
/* Dark overlay */
.about-mission .hover-bg::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000000ba;
    top: 0;
    left: 0;
}

.about-mission:hover .hover-bg {
    opacity: 1;
}

.about-mission:hover .div-sub-title,
.about-mission:hover p,
.about-mission:hover li {
    color: var(--color-ffffff);
}

/* Icon zoom effect */
.about-mission .main-icon {
    transition: transform 0.4s ease;
}

.about-mission:hover .main-icon {
    transform: scale(1.2) rotate(5deg);
}

/* List styling */
.strengths-list ul {
    padding-left: 0;
    list-style: none;
}

.strengths-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    transition: 0.3s;
}

.strengths-list li img {
    width: 18px;
}

.strengths-section {
    position: relative
}

.strengths-section::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-303f60);
    opacity: .1;
}

.strengths-left,
.strengths-img {
    z-index: 1;
}

.strengths-img {
    border-radius: 80px 0;
}

.strengths-img img {
    width: 100%;
    border-radius: 80px 0;
}

.strengths-list ul {
    margin-left: 0
}

.strengths-list ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: var(--font-size-17);
    line-height: var(--line-height-17);
    color: var(--color-c8c8c8);
    font-weight: var(--font-weight-Medium);
    cursor: pointer
}

.strengths-list ul li img {
    width: 18px;
    position: absolute;
    top: 4px;
    left: 0
}

/* Counter Section */
.counter-box {
    /* flex: 1; */
    padding: 25px 15px;
    border-radius: 16px;
    background: var(--color-ffffff);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #d5aa0f26;
    box-shadow: 0 5px 15px #00000014, 0 0 5px #d5aa0f2a;
}

.counter-box {
    flex: 1 1 180px;
    max-width: 220px;
}

.counter-box::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    top: -100%;
    left: -100%;
    background: radial-gradient(circle, #0e612e41, transparent 70%);
    transition: all 0.5s ease;
}

.counter-box:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px #00000014, 0 0 15px #d5aa0f4d;
    border-color: #d5aa0f80;
}

.counter-box:hover::before {
    top: 0;
    left: 0;
}

.div-title {
    transition: 0.3s ease;
}

.counter-box:hover .div-title {
    transform: scale(1.1);
}

.counter-box::after {
    content: "";
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #0e612e, #6affa3);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.4s ease;
}

.counter-box:hover::after {
    width: 100%;
}

/* about-section */
.commitment-section {
    background: #f8f9fc;
    overflow: hidden;
}

.sub-title {
    font-size: var(--font-size-16);
    font-weight: 700;
    color: var(--color-067831);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.commitment-text {
    font-size: var(--font-size-18);
    line-height: var(--line-height-18);
    color: #555;
    margin-bottom: 20px;
}

.quality-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.icon-box {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quality-text h4 {
    font-size: var(--font-size-19);
    font-weight: 700;
    color: var(--color-11612d);
    margin-bottom: 8px;
}

.quality-text p {
    font-size: var(--font-size-16);
    color: #555;
    margin: 0;
}

.commitment-img {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 40px;
}

.commitment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* timeline-section */
.milestone-div {
    display: flex;
    gap: 30px;
    width: 70%;
    margin: 20px auto;
    text-align: center;
    height: 100%
}

.milestone-box {
    /* flex: 1; */
    width: 30%;
    height: 320px;
    text-align: center;
    float: left;
    position: relative;
    margin: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 11;
}

.milestone-text {
    margin-top: 10px;
}

.milestone-text p {
    text-align: center;
    margin-bottom: 0;
}

.milestone-img {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    /* background: linear-gradient(180deg, #11612d 0%, #d5aa0f 100%); */
    background: var(--color-f4eaca);
    z-index: 22;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.milestone-img img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    padding: 35px;
    object-fit: contain;
    object-position: center center;
}

.milestone-line {
    background: var(--color-067831);
    height: 3px;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 75px;
    z-index: -1;
}

.milestone-line::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    background-image: url(../images/bg/milestone-right-arrow.svg);
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.milestone-right-line {
    background-image: url(../images/bg/milestone-line01.png);
    height: 113%;
    width: 142px;
    position: absolute;
    right: 10px;
    top: 75px;
    background-repeat: no-repeat;
    background-size: auto 100%;
}

.milestone-right-line::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    background-image: url(../images/bg/milestone-right-arrow.svg);
    right: -2px;
    top: 50%;
    transform: rotate(90deg);
    z-index: 1;
}

.milestone-line02 {
    background: var(--color-067831);
    height: 3px;
    width: 100%;
    position: absolute;
    right: -50%;
    top: 75px;
    z-index: -1;
}

.milestone-line02::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    background-image: url(../images/bg/milestone-right-arrow.svg);
    left: 50%;
    top: -8px;
    transform: translateY(-50%);
    z-index: 1;
    transform: rotate(180deg);
}

.milestone-left-line {
    background-image: url(../images/bg/milestone-line02.png);
    height: 113%;
    width: 125px;
    position: absolute;
    left: 15px;
    top: 75px;
    background-repeat: no-repeat;
    background-size: auto 100%;
}

.milestone-left-line::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    background-image: url(../images/bg/milestone-right-arrow.svg);
    left: -8px;
    top: 50%;
    transform: rotate(90deg);
    z-index: 1;
}

/* animation-css */
.milestone-box {
    transition: .4s;
    cursor: pointer;
}

.milestone-box:hover .milestone-img {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.milestone-img {
    transition: .4s;
}

.milestone-box:hover .div-text {
    color: var(--color-067831);
}

/* animation-css */
/* timeline-section */
/* certifications-section */
.certifications-section {
    background: var(--color-f4f4f4);
}

.gallery-work {
    margin-bottom: 30px;
}

.gallery-box {
    position: relative;
    border: solid 1px var(--color-f4eaca);
}

.gallery-box a {
    display: block;
    position: relative;
}

.gallery-box a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000008e;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.gallery-box:hover a::before {
    opacity: 1;
}

.gallery-box .img {
    max-width: 100%;
}

.gallery-box .overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.gallery-box:hover .overlay {
    opacity: 1;
}

.gallery-box .overlay img {
    width: 30px;
}

.gallery-title {
    padding: 20px 20px;
    background: var(--color-f4eaca);
}

/* certifications-section */
.detail-content .detail-text a {
    display: block;
    margin: 8px 0;
}

/* WhatsApp Sticky Button */
.sticky-social-btn {
    width: 60px;
    height: 60px;
    position: fixed;
    right: 20px;
    bottom: 80px;
    background: #39ae41;
    color: var(--color-ffffff);
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border: 2px solid #fff;
    box-shadow: 0 5px 20px #39ae4181;
    animation: whatsappFloat 3s ease-in-out infinite,
        whatsappPulse 2s infinite;
    transition: all 0.3s ease;
}

.sticky-social-btn img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.sticky-social-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 25px #39ae4191;
}

/* Floating Animation */
@keyframes whatsappFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Pulse Ring Animation */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* return-to-top */
#return-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99;
    background: var(--color-000000);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

#return-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#return-to-top img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

#return-to-top:hover {
    background: var(--color-067831);
}

/* return-to-top */
.mobile-menu,
.offcanvas-header {
    display: none;
}

.mobile-md-none {
    display: block !important;
}

.desktop-md-none {
    display: none !important;
}

.mobile-sm-none {
    display: block !important;
}

.desktop-sm-none {
    display: none !important;
}

.container {
    max-width: 1557px;
}

/* responsive css */
@media only screen and (min-width: 1921px) {
    .about-img-left {
        width: 42%;
    }
}

@media only screen and (min-width: 2200px) {
    .about-img-left {
        width: 40%;
    }

    .trust-badge {
        padding-bottom: 20px;
    }

    .semicircle-container {
        margin-top: 35px;
    }
}

@media (min-width: 2500px) {
    .about-img-left {
        width: 40%;
    }

    .trust-badge {
        padding-bottom: 20px;
    }

    .semicircle-container {
        margin-top: 45px;
    }
}

@media (max-width: 2000px) {
    .about-text {
        padding-left: 100px;
    }
}

@media (max-width: 1880px) {
    .container {
        max-width: 1460px;
    }

    :root {
        --font-size-13: 12px;
        --font-size-14: 13px;
        --font-size-16: 15px;
        --font-size-17: 17px;
        --font-size-19: 17px;
        --font-size-22: 20px;
        --font-size-26: 22px;
        --font-size-30: 24px;
        --font-size-36: 26px;
        --font-size-40: 34px;
        --font-size-42: 36px;
        --font-size-70: 54px;
        --line-height-13: 22px;
        --line-height-14: 23px;
        --line-height-16: 25px;
        --line-height-17: 24px;
        --line-height-19: 26px;
        --line-height-22: 30px;
        --line-height-26: 34px;
        --line-height-30: 38px;
        --line-height-36: 40px;
        --line-height-40: 44px;
        --line-height-42: 46px;
        --line-height-70: 66px;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
    }

    .content span {
        font-size: clamp(14px, 1.2vw, 12px);
    }

    .custom-arrow {
        width: 40px;
        height: 40px;
    }

    .testimonial-card {
        padding: 20px 20px;
        gap: 12px;
        max-width: 600px;
    }

    .testimonial-swiper {
        height: 545px;
    }

    .banner-content {
        bottom: 30px;
        width: 80%;
    }

    .banner-text-bg {
        padding: 10px 70px 10px 10px;
    }

    .trust-badge span#counter {
        width: 80px;
    }
}

@media (max-width: 1780px) {}

@media (max-width: 1660px) {
    .container {
        max-width: 100%;
        padding: 0 100px;
    }

    .home-banner {
        height: 700px;
        position: relative;
    }

    .text-scroll-line {
        padding: 15px 0 15px;
    }

    .logo-marquee {
        padding: 30px 0;
    }

    .marquee-track img {
        height: 50px;
    }

    .marquee-track {
        gap: 30px;
    }

    .logo-img .main-logo {
        width: 100px;
    }

    .main-nav .nav-item .nav-link {
        padding: 37px 10px;
    }

    .semicircle-wrapper {
        width: clamp(300px, 80vw, 700px);
        margin-bottom: calc(clamp(300px, 80vw, 700px) / -2);
    }

    .inner-banner {
        height: 100%;
    }
}

@media (max-width: 1480px) {
    .container {
        max-width: 100%;
        padding: 0 50px;
    }

    :root {
        --font-size-13: 12px;
        --font-size-14: 13px;
        --font-size-16: 14px;
        --font-size-17: 16px;
        --font-size-19: 17px;
        --font-size-22: 18px;
        --font-size-26: 22px;
        --font-size-30: 24px;
        --font-size-36: 26px;
        --font-size-40: 28px;
        --font-size-42: 30px;
        --font-size-70: 40px;
        --line-height-13: 22px;
        --line-height-14: 20px;
        --line-height-16: 20px;
        --line-height-17: 24px;
        --line-height-19: 26px;
        --line-height-22: 30px;
        --line-height-26: 32px;
        --line-height-30: 34px;
        --line-height-36: 36px;
        --line-height-40: 40px;
        --line-height-42: 40px;
        --line-height-70: 50px;
    }

    .marquee-text {
        gap: 60px;
    }

    .marquee-text-scroll {
        margin-top: -50px;
    }

    .pb-80 {
        padding-bottom: 40px;
    }

    .pt-80 {
        padding-top: 40px;
    }

    .testimonial-swiper {
        height: 550px;
    }

    .semicircle-wrapper {
        width: clamp(300px, 80vw, 710px);
        margin-bottom: calc(clamp(300px, 80vw, 710px) / -2);
    }

    .content span {
        font-size: clamp(12px, 1vw, 12px);
    }

    .pb-100 {
        padding-bottom: 50px;
    }

    .pt-100 {
        padding-top: 50px;
    }

    .trust-badge span#counter {
        width: 60px;
    }
}

@media (max-width: 1366px) {
    .milestone-div {
        width: 80%;
    }

    .contact-info-box {
        margin-bottom: 50px;
    }
}

@media (max-width: 1280px) {
    .semicircle-wrapper {
        width: clamp(300px, 80vw, 590px);
        margin-bottom: calc(clamp(300px, 80vw, 590px) / -2);
    }

    .contact-tel {
        display: none;
    }

    .content span {
        font-size: clamp(8px, 1vw, 8px);
    }

    .content {
        margin-right: 5%;
        width: clamp(30px, 8vw, 0px);
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }

    .icon-circle img {
        width: 30px;
        height: 30px;
    }

    .about-img-left {
        width: 49%;
    }

    .about-text {
        padding: 30px 0 0;
    }
}

.about-mobile-text {
    display: none;
}

@media (max-width: 1200px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-left {
        width: 100%;
        min-height: 250px;
        order: 1;
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }

    .footer-img {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        max-width: 400px;
    }

    .footer-right {
        width: 100%;
        order: 2;
        flex-wrap: wrap;
    }

    .footer-contact {
        width: 100%;
        margin-bottom: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 30px;
    }

    .footer-links,
    .footer-products {
        width: 50%;
    }

    .main-nav .nav-item {
        margin-right: 10px;
    }

    .home-banner {
        height: 600px;
    }

    .about-text {
        padding: 30px 0;
    }

    .content span {
        font-size: clamp(8px, 0.6vw, 11px);
    }

    .contact-detail-item {
        width: 100%;
        height: auto;
    }

    .div-text-small {
        margin-bottom: 4px;
    }

    .mt-3 {
        margin-top: 0.5rem !important;
    }

    .contact-btn {
        margin-left: 10px;
        gap: 10px;
    }

    .semicircle-wrapper {
        width: 100%;
        margin-bottom: calc(clamp(300px, 80vw, 500px) / -2);
    }

    .icon-circle {
        width: 50px;
        height: 50px;
    }

    .icon-circle img {
        width: 25px;
        height: 25px;
    }

    .content {
        width: clamp(60px, 2vw, 0px);
    }

    .seg-5 .content {
        transform: rotate(70deg);
    }

    .milestone-div {
        width: 100%;
    }
}

@media (max-width: 1199px) {
    .about-bg {
        position: relative;
    }

    .about-mobile-text {
        display: block;
    }

    .semicircle-wrapper,
    .about-bg .about-bg02 {
        display: none;
    }

    .about-bg .about-bg01 {
        width: 100%;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
    }

    .icon-circle img {
        width: 50px;
        height: 50px;
    }

    .about-mobile-text {
        margin-top: 0px;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 50px;
    }

    .about-mobile-box {
        position: relative;
        width: 48%;
        float: left;
        padding: 30px 20px;
        border-radius: 20px;
        background: var(--color-f4f4f4);
    }

    .about-mobile-box {
        text-align: center;
    }

    .about-mobile-box .icon-circle {
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .about-mission {
        padding: 20px 20px;
        border-radius: 20px;
    }

    .about-mission img {
        width: 60px;
    }

    .about-img-left {
        width: 100%;
        padding: 50px;
        padding-bottom: 0;
        position: relative;
    }

    .trust-badge {
        padding-left: 0px;
        padding-top: 20px;
    }

    .productSwiper-left {
        padding-bottom: 70px;
    }

    .custom-arrow {
        margin-top: 0;
        top: 90%;
    }
}

@media (max-width: 1025px) {
    .logo-img .main-logo {
        width: 70px;
    }

    .main-nav .nav-item .nav-link {
        font-size: var(--font-size-16);
        padding: 24px 4px;
    }

    .contact-btn .contact-tel img {
        width: 18px;
    }

    .expert-btn:hover::before {
        width: 300px;
        height: 70px;
    }

    .btn-icon {
        width: 38px;
        height: 38px;
    }

    .footer-section {
        padding: 30px 0;
    }

    .product-box {
        padding: 20px 20px;
        height: 340px;
    }

    a.contact-tel {
        display: none;
    }

    .contact-form-box {
        padding: 20px;
    }

    .detail-icon {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }

    .about-bg {
        position: relative;
    }

    .applications-box .applications-text {
        height: 150px;
    }

    .counter-box .div-title {
        font-size: var(--font-size-22);
        line-height: var(--line-height-16);
    }

    .p-content {
        font-size: 17px;
        line-height: auto;
    }
}

@media (max-width: 991.98px) {
    .mobile-md-none {
        display: none !important;
    }

    .desktop-md-none {
        display: block !important;
    }

    /* mob-sidenav */
    /* mob-sidenav */
    .order-md-div {
        order: 2;
    }

    /* mob-login */
    .offcanvas-body {
        overflow-y: auto;
    }

    .offcanvas.offcanvas-start {
        width: var(--bs-offcanvas-width);
        transform: translateX(-100%);
        background: var(--color-ffffff);
    }

    .offcanvas {
        position: fixed;
        visibility: hidden;
    }

    .mobile-offcanvas .toggle-img {
        width: 40px;
    }

    .offcanvas-header .btn-close {
        width: 20px;
        height: 20px;
        opacity: 1;
        padding: 10px 10px;
        margin: 0;
        background-color: #e5b911;
        border-radius: 100px;
    }

    .mobile-menu,
    .offcanvas-header {
        display: flex;
        width: 100%;
    }

    /* Custom Offcanvas Transition */
    .mobile-offcanvas .offcanvas-close {
        background: var(--color-11612d);
        width: 45px;
        height: 45px;
        display: block;
        border-radius: 100px;
        position: relative;
        -webkit-transition: all 0.5s ease-out 0s;
        -moz-transition: all 0.5s ease-out 0s;
        -ms-transition: all 0.5s ease-out 0s;
        -o-transition: all 0.5s ease-out 0s;
        transition: all 0.5s ease-out 0s;
    }

    .mobile-offcanvas .toggle-img {
        position: absolute;
        top: 21px;
        left: 10px;
        width: 24px;
        height: 3px;
        display: block;
        background: var(--color-ffffff);
        border-radius: 10px;
        -webkit-transition: all 0.5s ease-out 0s;
        -moz-transition: all 0.5s ease-out 0s;
        -ms-transition: all 0.5s ease-out 0s;
        -o-transition: all 0.5s ease-out 0s;
        transition: all 0.5s ease-out 0s;
    }

    .mobile-offcanvas .toggle-img::before {
        content: "";
        position: absolute;
        top: -7px;
        left: 0;
        width: 18px;
        height: 3px;
        display: block;
        background: var(--color-ffffff);
        border-radius: 10px;
        -webkit-transition: all 0.5s ease-out 0s;
        -moz-transition: all 0.5s ease-out 0s;
        -ms-transition: all 0.5s ease-out 0s;
        -o-transition: all 0.5s ease-out 0s;
        transition: all 0.5s ease-out 0s;
    }

    .mobile-offcanvas .toggle-img::after {
        content: "";
        position: absolute;
        top: 7px;
        left: 0;
        width: 18px;
        height: 3px;
        display: block;
        background: var(--color-ffffff);
        border-radius: 10px;
        -webkit-transition: all 0.5s ease-out 0s;
        -moz-transition: all 0.5s ease-out 0s;
        -ms-transition: all 0.5s ease-out 0s;
        -o-transition: all 0.5s ease-out 0s;
        transition: all 0.5s ease-out 0s;
    }

    .mobile-offcanvas:hover .toggle-img {
        width: 18px;
        background: var(--color-000000);
    }

    .mobile-offcanvas:hover .toggle-img::before {
        width: 25px;
        background: var(--color-000000);
    }

    .mobile-offcanvas:hover .toggle-img::after {
        width: 25px;
        background: var(--color-000000);
    }

    .offcanvas-header .navbar img {
        width: 90px;
    }

    .offcanvas-header {
        padding: 15px 20px;
    }

    .container {
        max-width: 100%;
        padding: 0 30px;
    }

    :root {
        --font-size-13: 12px;
        --font-size-14: 13px;
        --font-size-16: 14px;
        --font-size-17: 16px;
        --font-size-19: 17px;
        --font-size-22: 18px;
        --font-size-26: 20px;
        --font-size-30: 22px;
        --font-size-36: 24px;
        --font-size-40: 26px;
        --font-size-42: 28px;
        --font-size-70: 30px;
        --line-height-13: 22px;
        --line-height-14: 20px;
        --line-height-16: 20px;
        --line-height-17: 24px;
        --line-height-19: 26px;
        --line-height-22: 30px;
        --line-height-26: 32px;
        --line-height-30: 34px;
        --line-height-36: 36px;
        --line-height-40: 40px;
        --line-height-42: 40px;
        --line-height-70: 50px;
    }

    .logo-img .main-logo {
        width: 90px;
    }

    .main-menu {
        padding: 10px 0;
    }

    .testimonial-card {
        max-width: 100%;
    }

    .testimonial-swiper {
        height: 520px;
    }

    .footer-contact {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .about-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center left;
    }

    .badge {
        width: 150px;
        height: 150px;
        position: absolute;
        right: 0;
        top: 34%;
    }

    .center-star {
        width: 50px;
        height: 50px;
    }

    .main-nav .nav-item .nav-link {
        font-size: var(--font-size-16);
        padding: 10px 5px;
    }

    .main-nav {
        margin-left: 16px;
    }

    .main-nav .nav-item {
        margin-right: 0;
        width: 90%;
    }

    .rotate-text {
        padding: 8px;
    }

    .marquee-text-scroll {
        margin-top: 0;
    }

    .explore-btn .icon {
        width: 26px;
        height: 26px;
        border-radius: 50%;
    }

    .content {
        margin-right: 3%;
    }

    .main-header.g_shrink .main-nav .nav-item .nav-link {
        padding: 12px 0px;
    }

    .contact-btn {
        margin-left: 0px;
        gap: 0px;
        justify-content: flex-start;
    }

    .milestone-img {
        width: 100px;
        height: 100px;
    }

    .milestone-img img {
        padding: 20px;
    }

    .milestone-line {
        height: 3px;
        top: 50px;
    }

    .milestone-box {
        width: 25%;
        height: 280px;
        margin: 0 15px;
    }

    .milestone-right-line {
        height: 116%;
        width: 160px;
        right: 10px;
        top: 49px;
    }

    .milestone-right-line::before {
        right: 30px;
    }

    .milestone-div {
        width: 100%;
        justify-content: flex-end;
    }

    .milestone-line02 {
        height: 3px;
        top: 50px;
    }

    .productSwiper {
        padding-bottom: 0px;
    }

    .custom-arrow {
        top: 90%;
    }

    .hero-text-slider {
        height: 50px;
    }

    .about-img-left {
        width: 100%;
        padding: 0;
        padding-bottom: 0;
    }

    .trust-badge {
        padding-left: 30px;
        padding-top: 10px;
    }
}

@media (max-width: 800px) {
    .home-banner {
        height: auto;
    }

    .banner-content {
        bottom: 0;
        width: 100%;
        position: relative;
    }

}

@media (max-width: 767.98px) {
    .mobile-sm-none {
        display: none !important;
    }

    .desktop-sm-none {
        display: block !important;
    }

    .order-sm-div {
        order: 2;
    }

    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .infographic-section {
        min-height: 40vh;
        border-radius: 0;
        box-shadow: none;
    }

    .testimonial-swiper {
        height: 550px;
        padding: 20px 0;
    }

    .swiper-slide-active .testimonial-card {
        border-top-color: #ced4da;
    }

    .card-img-wrapper {
        flex-shrink: 0;
        display: none;
    }

    .card-header {
        flex-direction: column-reverse;
        gap: 12px;
        margin-bottom: 15px;
    }

    .footer-right {
        flex-direction: column;
    }

    .footer-links,
    .footer-products {
        width: 100%;
    }

    .footer-social {
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .footer-contact {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .mb-4 {
        margin-bottom: 0.5rem !important;
    }

    .social-icons {
        padding-left: 0;
    }

    .testimonial-swiper {
        height: 230px;
        padding: 20px 0;
    }

    .logo-img .main-logo {
        width: 60px;
    }

    .main-header.g_shrink .logo-img .main-logo {
        width: 50px;
    }

    .g_header {
        position: relative;
    }

    .banner-text-bg {
        padding: 0;
    }

    .inner-banner {
        height: 150px;
    }

    .inner-banner-content {
        top: 30px;
    }

    .product-box .div-text {
        height: 55px;
        font-size: 17px;
        line-height: 25px;
    }

    /* milestone */
    .milestone-div,
    .milestone-div-left {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px;
        width: 100%;
    }

    .milestone-div .d-flex .flex-row-reverse {
        flex-direction: column !important;
    }

    .milestone-box {
        width: 100%;
        max-width: 100%;
    }

    .milestone-img img {
        width: 100%;
        height: auto;
        display: block;
    }

    .milestone-right-line,
    .milestone-left-line,
    .milestone-line,
    .milestone-line02 {
        display: none !important;
    }

    .milestone-text-box {
        padding: 0 15px;
    }


    .milestone-text p {
        font-size: var(--font-size-17);
        line-height: var(--line-height-16);
    }

    .footer-bottom {
        border: 0;
    }

    .about-mission {
        padding: 20px 45px;
    }

    .hero-slide {
        font-size: var(--font-size-36);
        line-height: var(--line-height-36);
    }

    .mb-20 {
        margin-bottom: 0;
    }

    .applications-box .applications-text {
        height: auto;
    }

    .productSwiper-left {
        padding-bottom: 50px;
    }

    .mb-80 {
        margin-bottom: 50px;
    }

    .sticky-social-btn {
        width: 50px;
        height: 50px;
    }

    .sticky-social-btn img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }

    .footer-toggle {
        width: 100%;
        border: none;
        background: transparent;
        color: var(--color-ffffff);
        font-size: var(--font-size-17);
        line-height: var(--line-height-22);
        font-weight: 600;
        padding: 0px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-transform: uppercase;
        text-align: left;
    }

    .footer-toggle:focus {
        box-shadow: none;
    }

    .footer-toggle img {
        width: 18px;
        height: 18px;
        object-fit: contain;
        filter: invert(1);
    }

    .footer-toggle:hover {
        color: #fff;
    }

    .footer-widget ul li {
        margin-bottom: 12px;
        margin-top: 10px;
    }

    .footer-widget {
        border-top: solid 1px #ccc;
        padding-top: 10px;
    }

    .footer-widget h4::after {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .about-mobile-box {
        width: 100%;
    }

    .row>* {
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
    }

    .testimonial-section .swiper-slide {
        transform: translateX(0px);
    }

    .swiper-slide-active .testimonial-card {
        opacity: 1;
        transform: translateX(0px);
        background: #e9ecef8c;
    }

    .testimonial-swiper {
        height: 280px;
        padding: 20px 0;
    }

    .trust-badge {
        padding: 10px 5px;
    }

    .trust-badge span#counter {
        width: 43px;
    }

    .trust-badge .div-text {
        font-size: var(--font-size-17);
        line-height: var(--line-height-17);
    }

    .scroll-text {
        font-size: var(--font-size-22);
        line-height: var(--line-height-22);
    }

    .icon-circle img {
        width: 45px;
        height: 45px;
    }

    .trust-badge {
        padding: 10px 15px;
    }


    .trust-badge .div-text {
        font-size: var(--font-size-17);
        line-height: var(--line-height-17);
    }

    .div-subtitle {
        margin-bottom: 0;
    }

    .about-section {
        padding: 30px 0;
    }

    .about-mission img {
        width: 50px;
    }

    .product-box {
        height: 300px;
    }

    .product-box .div-text {
        height: 35px;
    }

    .product-range-section {
        padding: 30px 0;
    }

    .product-card {
        margin-bottom: 20px;
        height: auto;
    }

    .product-card .img {
        width: 100%;
        height: auto;
    }

    .key-features-section {
        padding: 30px 0;
    }

    .feature-box h5 {
        font-size: var(--font-size-16);
        line-height: var(--line-height-16);
    }

    .milestone-box {
        height: auto;
        margin: 0;
    }

    .feature-box img {
        width: 80px;
        height: 80px;
        margin-bottom: 0;
    }

    .mt-30 {
        margin-top: 10px;
    }

    .counter-box {
        max-width: 100%;
        padding: 45px 15px;
    }

    .about-mission {
        padding: 20px 45px;
        margin-bottom: 30px;
        height: auto;
    }

    .our-pigments-section ul li::before {
        height: 20px;
        width: 20px;
    }

    .our-pigments-section h3 {
        font-size: var(--font-size-22);
        line-height: var(--line-height-19);
        margin-bottom: 10px;
    }

    .expert-btn {
        font-size: var(--font-size-16);
        line-height: var(--line-height-14);
        margin-bottom: 13px;
        gap: 5px;
        padding: 0 0 0 10px;
    }

    .footer-bottom p {
        text-align: center;
    }

    .counter-box .div-title {
        font-size: var(--font-size-70);
        line-height: var(--line-height-70);
        margin: 0;

    }

    .gap-4 {
        gap: 0.5rem !important;
    }

    /* footer */
    .footer-logo img {
        max-width: 120px;
        margin-bottom: 20px;
    }

    .footer-desc {
        margin-bottom: 20px;
    }

    .footer-social {
        margin-bottom: 10px;
    }

    .footer-widget ul li a::before {
        display: none;
    }

    .footer-widget ul li a {
        padding-left: 0;
    }

    .footer-widget h4 {
        font-size: var(--font-size-17);
        line-height: var(--line-height-22);
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .footer-contact .contact-item img {
        width: 15px;
        height: 15px;
    }

    .footer-contact .contact-item a,
    .footer-contact .contact-item span {
        text-decoration: none;
        font-size: 15px;
        line-height: var(--line-height-14);
        color: var(--color-ffffff);
    }

    .footer-contact .contact-item {
        gap: 10px;
        margin-bottom: 20px;
    }

    .footer-bottom {
        margin-top: 10px;
        padding-top: 20px;
        border-top: 0;
    }

    .hero-slide {
        font-size: var(--font-size-26);
        line-height: var(--line-height-26);
    }

    .product-box .div-text {
        height: 35px;
    }

    .commitment-img {
        border-radius: 0;
    }

    .offcanvas-header .navbar img {
        width: 70px;
    }

    .testimonial-section {
        padding: 30px 0;
    }

    .feature-box {
        padding: 0;
        margin-bottom: 30px;
    }

    .our-pigments-section .inner {
        padding: 1rem 1rem;
    }

    .our-pigments-section .inner {
        padding: 1rem 1rem;
        height: auto;
        margin-bottom: 20px;
    }

    .mt-50 {
        margin-top: 20px;
    }

    .inner-banner-content .banner-text .main-title {
        font-size: var(--font-size-19);
    }

    .contact-detail-item {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .inner-banner-content {
        top: 10px;
    }

    .icon-box {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .milestone-img {
        width: 80px;
        height: 80px;
    }

    .footer-desc {
        max-width: 100%;
    }

    .about-text {
        padding: 0px 0 30px;
    }
}

@media (max-width: 480px) {}

@media (max-width: 400px) {}

@media (max-width: 376px) {}

@media (max-width: 320px) {}

/* responsive css */