@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-text-color: #1AC68F;
    --text-black-color: #1C1C1C;
    --bg-white: #ffffff;
    --text-b-light-color: #3F3F3F;
    --text-paragraph-color: #4D4F4E;
    --bs-dark-rgb: 3, 3, 3;
    --bs-nav-link-color: #ffffff;
    --bs-success-rgb: 26, 198, 143;
    --main-heading-fs: 36px;
    --small-main-heading-fs: 44px;
    --normal-main-heading-fs: 38px;
    --sub-heading-fs: 16px;
    --small-sub-heading-fs: 22px;
    --heading-fs: 18px;
    --small-heading-fs: 18px;
    --paragraph-fs: 16px;
    --small-paragraph-fs: 14px;
    --border-color: #ECECEC;
    --primary-green: #1AC68F;
    --light-green: #e6ffe6;
    --dark-green: #28a745;
    --text-dark-grey: #343a40;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --bg-dark-grey: #212529;
}

.btn-success {
    --bs-btn-color: #252525;
    --bs-btn-bg: #1AC68F;
    --bs-btn-border-color: #1AC68F;
    --bs-btn-hover-color: #0c0b0b;
    --bs-btn-hover-bg: #0b996c;
    --bs-btn-hover-border-color: #1AC68F;
    --bs-btn-focus-shadow-rgb: 60, 153, 110;
    --bs-btn-active-color: #252525;
    --bs-btn-active-bg: #146c43;
    --bs-btn-active-border-color: #1AC68F;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #0c0b0b;
    --bs-btn-disabled-bg: #1AC68F;
    --bs-btn-disabled-border-color: #1AC68F;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: var(--text-black-color);
    font-weight: 400;
    background: #ffffff;
    position: relative;
}

/* ----custom utility start----*/
.fs-12 {
    font-size: 12px !important;
}

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

.fs-16 {
    font-size: 16px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.fs-22 {
    font-size: 22px !important;
}

.fs-24 {
    font-size: 24px !important;
}

.fs-26 {
    font-size: 26px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

h2.heading {
    font-size: var(--main-heading-fs);
}

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

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

.form-control:focus,
input:focus,
select:focus {
    border-color: var(--primary-text-color) !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.btn-check:focus+.btn-success,
.btn:focus {
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.overflow-initial {
    overflow: initial !important;
}

.right-0 {
    right: 0 !important;
}

/* ----custom utility end----*/
/*----- Navbar style start------*/
.navbar-dark .navbar-nav .nav-link {
    color: rgb(255 255 255);
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--primary-text-color);
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .show>.nav-link {
    color: var(--primary-text-color);
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 6px 12px;
    position: relative;
}

.navbar .dropdown-menu {
    top: 100%;
    border-radius: 10px;
}

.navbar .dropdown-item small {
    font-size: 11px;
}

.navbar-nav .dropdown-menu {
    max-width: 800px;
    width: 100%;
    left: calc(100% - 890px);
}

.dropdown-item p {
    color: #677489;
    margin-bottom: 0px;
}

.navbar-expand-lg .navbar-nav .nav-link.show:before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: calc(50% - 5px);
    border-bottom: .5em solid #fff;
    border-right: .5em solid transparent;
    border-top: 0;
    border-left: .5em solid transparent;
}

.dropdown-item {
    border-radius: 10px;
    transition: all .3s ease;
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:hover {
    background-color: #1ac48e14;
    color: #1AC68F;
}

/*----- Navbar style end------*/
/*---footer start------*/
footer {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    box-shadow: 0px 0px 9px 0px #00000040;
}

.padding-t-200 {
    padding-top: 200px;
}

.padding-t-60 {
    padding-top: 60px;
    border-radius: 0;
}

footer .form-control {
    border-color: #E5E7EB;
    font-size: 14px;
}

.footer-shape-2 {
    position: absolute;
    bottom: 0;
    left: 53%;
}

.footer-shape-3 {
    position: absolute;
    bottom: 0;
    left: 5%;
    opacity: 0.1;
}

.footer-shape-1 {
    position: absolute;
    top: 22px;
    right: 0;
}

.footer-social-icon a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0F151A;
    border-radius: 50%;
    transition: all .3s ease;
    color: #ffffff;
    font-size: 16px;
}

.footer-social-icon a i {
    line-height: 1;
}

.footer-social-icon a:hover {
    background: #1AC68F;
}

/*footer top*/
.cta-section {
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    max-width: 1320px;
    margin: auto;
    margin-bottom: -140px;
    padding: 0 45px;
}

.cta-section-main {
    background-color: #ffffff;
}

.cta-section .form-control {
    padding: 12px;
    font-size: 14px;
}

.cta-section .btn-light {
    font-size: 16px;
}

/*---footer end------*/
/*---hero slider  start--*/
.hero-slider {
    background: #272424;
    background: #000000e5;
    /*height: 750px !important;*/
    height: calc(100vh - 76px);
    position: relative;
    overflow: hidden;
}

.main-hero-slider.slick-initialized .slick-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.hero-slider-1 {
    background: #F3F3F3;
}

.hero-circle-shape {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-circle-shape-1 {
    position: absolute;
    left: 3%;
    bottom: 25%;
    z-index: 0;
}

.hero-circle-shape-1 img {
    transform: scale(1);
    animation: zoom-in-out 8s infinite;
    transition: all .3s ease;
}

.hero-circle-shape img {
    width: 100%;
}

.hero-inner h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 62px;
    margin-top: 30px;
}

.hero-slider-1 .hero-inner h1 {
    font-size: 48px;
    line-height: 62px;
    color: #000000;
}

.hero-inner {
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.rating-section {
    margin-top: 90px;
}

.hero-btn a:last-child {
    padding: 24px 35px;
    border-color: #1ac68f;
    color: #1ac68f;
}

.hero-btn a:last-child:hover {
    background-color: #0b996c;
    border-color: #1ac68f;
    color: #252525;
}

.hero-btn a:first-child {
    padding: 24px 35px;
    box-shadow: 0px 0px 40px 0px rgb(26 198 143 / 90%);

}

@keyframes zoom-in-out {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(.8);
    }
}

.hero-img-shape-1 {
    position: absolute;
    bottom: -5%;
    right: -95px;
}

.hero-img-shape-2 {
    position: absolute;
    top: 0%;
    right: -55px;
}

.hero-img-shape-3 {
    position: absolute;
    top: 12%;
    left: -39%;
}

.hero-bg-squre {
    display: grid;
    grid-template-columns: repeat(20, 119px);
    grid-auto-rows: 119px;
    gap: 0;
    position: absolute;
    top: -70px;
    left: -70px;
}

.hero-bg-squre .square {
    width: 119px;
    height: 119px;
    border-top: 1px solid #4d596654;
    border-right: 1px solid #4d596654;
    transition: all .3s ease;
}

.hero-bg-squre .square:hover {
    /*background: linear-gradient(135.63deg, #D9D9D9 1.08%, #737373 100%);*/
    background: linear-gradient(135.63deg, #bcbbbb63 1.08%, #413f3f38 100%);
}

.hero-circle-shape:before {
    content: '';
    position: absolute;
    left: -98%;
    width: 4400px;
    height: 5700px;
    background: #9ea3a7;
    filter: blur(200px);
    border-radius: 50%;
    z-index: -1;
}

.hero-bg-squre:after {
    content: '';
    position: absolute;
    left: 34%;
    top: -50px;
    width: 150px;
    height: 150px;
    background: #3779b5;
    filter: blur(100px);
    border-radius: 50%;
    z-index: 1;
}

/*---hero slider  end--*/
/*---marquee  start--*/
.logo-marquee {
    overflow: hidden;
    position: absolute;
    top: 22px;
    height: 75px;
    max-width: 1250px;
    transform: translateX(-50%);
    left: 50%;
    width: 100%;
    z-index: 1;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.logo-track .row {
    display: flex;
    flex-wrap: nowrap;
    gap: 50px;
}

.service-marquee .logo-track .row {
    gap: 0px;
}

.service-marquee .logo-track h6 {
    white-space: nowrap;
    margin: 0;
}

.logo-track img {
    max-height: 40px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.custom-marqee-bar {
    margin-top: -58px;
    position: relative
}

.custom-marqee-bar::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    background: #ffffff;
    width: 100%;
    height: 62px;
}

.custom-marqee-bar .text-center img {
    max-width: 1410px;
    width: 100%;
}

.logo-track .col {
    text-align: center
}

.logo-track h6 {
    font-size: var(--paragraph-fs);
    font-weight: 600;
    line-height: 100%;
    color: #111827;
    margin: 10px 0 0 0;
    text-align: center;
}

/*---marquee  end------*/
/*---about us start------*/

.about-us p {
    line-height: 1.6;
}

.about-us img {
    object-fit: cover;
}

.about-shape-2 {
    z-index: -1;
    left: 30px;
    bottom: -55px;
}

.about-shape-1 {
    left: 25px;
    bottom: -10px;
}

.about-shape-4 {
    top: 0;
    left: 34%;
}

.about-shape-3 {
    top: -5px;
    left: 35px;
}

.about-story-pretitle {
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #22d3a6;
    margin-bottom: 18px;
}

.about-story-title {
    font-size: 48px;
    font-weight: 600;
    color: #001726;
    margin-bottom: 24px;
}

.about-story-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-paragraph-color);
    margin-bottom: 32px;
}

.about-story-stats {
    color: #0ea5e9;
}

.about-story-stat {
    height: 100%;
}

.about-story-stat-value {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    color: var(--primary-text-color);
    margin-bottom: 8px;
}

.about-story-stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #001726;
}

.mission-vision-section {
    background: #ffffff;
}

.mission-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 18px 40px rgba(12, 60, 48, 0.12);
    border: 1px solid rgba(26, 198, 143, 0.1);
    height: 100%;
}

.mission-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-text-color);
    margin-bottom: 0px;
}

.mission-card-text {
    color: var(--text-paragraph-color);
    line-height: 1.7;
    margin-bottom: 18px;
}

.mission-card-list li {
    font-weight: 600;
}

.mission-card-list li::marker {
    color: var(--primary-text-color);
}

.mission-card-list {
    margin: 0;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--text-paragraph-color);
}

.mission-values-title {
    font-size: clamp(2rem, 4vw, 2.4rem);
    font-weight: 700;
    color: var(--text-black-color);
    margin-bottom: 12px;
}

.mission-values-subtitle {
    color: rgba(15, 23, 42, 0.65);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.mission-value-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 16px 32px rgba(12, 60, 48, 0.1);
    border: 1px solid rgba(26, 198, 143, 0.12);
    height: 100%;
}

.mission-value-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.mission-value-icon.icon-blue {
    background: #3b82f6;
}

.mission-value-icon.icon-green {
    background: #10b981;
}

.mission-value-icon.icon-purple {
    background: #a855f7;
}

.mission-value-icon.icon-orange {
    background: #f97316;
}

.mission-value-icon.icon-pink {
    background: #ec4899;
}

.mission-value-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-black-color);
}

.mission-value-card p {
    margin: 0;
    color: rgba(15, 23, 42, 0.65);
    line-height: 1.6;
}


.mission-value-card p {
    margin: 0;
    color: rgba(15, 23, 42, 0.65);
    line-height: 1.6;
}

.why-choose-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--text-black-color);
    margin-bottom: 12px;
}

.why-choose-subtitle {
    color: var(--text-paragraph-color);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.why-choose-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 26px;
    height: 100%;
    box-shadow: 0 18px 40px rgba(12, 60, 48, 0.12);
    border: 1px solid rgba(26, 198, 143, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(12, 60, 48, 0.18);
}

.why-choose-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
}

.why-choose-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-black-color);
    margin-bottom: 12px;
}

.why-choose-card p {
    margin: 0;
    color: var(--text-paragraph-color);
    line-height: 1.7;
}

/*---about us start------*/


/*---featured-products start------*/
.featured-products .card-featured {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: #0F151A;
}

.featured-products .card-featured .card-body {
    padding: 90px 70px 60px 70px;
}

.featured-products h6 {
    color: #C1C0C0;
}

.featured-products h4 {
    max-width: 375px;
}

.featured-products p {
    max-width: 400px;
    background: linear-gradient(180deg, #ffffff, #312f2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    transition: all .3s ease;
}

.featured-products {
    background-color: #ffffff;
}

.mt-n4 {
    margin-top: -1.5rem;
}

.gradient-card-bg {
    background: linear-gradient(58.84deg, rgba(0, 0, 0, 0.98) 55.99%, rgba(0, 0, 0, 0) 75.44%);
    content: '';
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    z-index: 0;
}

/*---featured-products end------*/
/*---team section start------*/
.team-section {
    padding-bottom: 180px;
    position: relative;
    background-color: #EEFFFA;
    margin-top: 48px;
}

.team-slider .slick-slide {
    transition: all 0.3s ease;
    margin: 0 20px;
}

.team-card {
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #0A112833;
}

.team-info {
    padding: 20px;
    border-top: 1px solid #EFEBEB;
}

.team-info h6 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}

.team-info p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0px;
    text-align: center;
}

.team-img {
    overflow: hidden;
    display: flex;
    align-items: end;
}

.team-section .slick-arrow {
    background: #0F151A;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    bottom: -140px;
    top: auto;
    transition: all .3s ease;
}

.team-section .slick-next {
    right: 25px;
    transform: rotate(180deg);
    bottom: -105px;
}

.team-section .slick-prev {
    right: 120px;
    left: auto;
}

.team-section .slick-next:before {
    content: url('../images/svgicon/left-arrow.svg');
    opacity: 1;
}

.team-section .slick-prev:before {
    content: url('../images/svgicon/left-arrow.svg');
    opacity: 1;
}

.team-section .slick-prev:hover,
.team-section .slick-prev:focus,
.team-section .slick-next:hover,
.team-section .slick-next:focus {
    background: #1AC68F;
}

/*---team section end------*/
/*---service-list start------*/
.services-section {
    background-color: #0f1418;
    color: white;
    border-radius: 12px;
    position: relative;
    padding: 60px 40px;
    overflow: hidden;
}

.service-list .service-item {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.service-list .service-item h3 {
    color: #6D6D6D;
}

.service-list .service-item:hover h3 {
    color: #ffffff;
}

.service-list .service-item button,
.service-list .service-item a {
    width: 40px;
    height: 40px;
    transition: all .3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: .2;
}

.service-list .service-item:hover button,
.service-list .service-item:hover a {
    background-color: #1AC68F;
    opacity: 1;
}

.service-list .service-item:last-child {
    border-bottom: none;
}

.service-list .service-item h3 {
    font-size: var(--sub-heading-fs);
}

.service-list .service-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.services-section-shape-1 {
    position: absolute;
    bottom: 17%;
    left: 28%;
    pointer-events: none;
}

.services-section-shape-2 {
    position: absolute;
    bottom: 28%;
    left: 36%;
    width: 200px;
    pointer-events: none;
}

.services-section-shape-3 {
    position: absolute;
    bottom: 15px;
    right: 6%;
    pointer-events: none;
}

.services-section-shape-4 {
    position: absolute;
    top: 0px;
    right: 4%;
    pointer-events: none;
}

.services-section-shape-5 {
    position: absolute;
    bottom: -13px;
    left: 14%;
    opacity: .1;
    pointer-events: none;
}

.services-section-shape-6 {
    position: absolute;
    top: 30px;
    left: -10px;
    pointer-events: none;
}

/*---service-list end------*/
/*---service-card end------*/
.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.5s ease;
}

.image-wrapper {
    position: relative;
}

.image-wrapper:before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
    content: '';
    height: 110px;
    left: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 12px;
}

.image-wrapper img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 13px;
}

.badge-popular {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    color: #333;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
}

.service-content {
    color: #fff;
    position: relative;
}

.service-content>div {
    padding: 20px 25px 50px 25px;
}

.service-content::after {
    background-image: url('../images/svgicon/service-shap-2.svg');
    content: '';
    height: 75px;
    left: 0;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 12px;
    background-repeat: no-repeat;
    background-position: bottom;
    z-index: 0;
}

.slick-center .service-content::after {
    background-image: url('../images/svgicon/service-shap-1.svg');
}

.slick-center+.slick-active .service-content::after {
    background-image: url('../images/svgicon/service-shap-3.svg');
}

.service-content h5 {
    font-size: var(--paragraph-fs);
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-b-light-color);
    line-height: 24px;
}

.service-btn {
    position: absolute;
    bottom: 20px;
    left: 25px;
    background: #0F151A;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}

.service-btn:hover {
    color: #fff;
}

.slick-center .service-btn {
    background: #1AC68F;
}

.slick-center .service-card {
    background: #111;
    transition: transform 0.5s ease;
}

.slick-center .service-content h5 {
    color: #ffffff;
}

/*---service-card end------*/
/*-----contact us page start-----------*/
.contact-page h1 {
    color: #34113F;
    font-size: var(--main-heading-fs)
}

.contact-page h2 {
    font-size: 32px;
    color: #34113F;
}

.contact-icon {
    background-color: #EDECE2;
    max-width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #344054;
    width: 100%;
}

.check-custom input {
    margin-top: 6px;
}

/*-----contact us page end-----------*/
/*-----About us page start-----------*/
.over-view h2 {
    font-size: 120px;
    color: #ECEEE5;
}

.over-view p {
    font-size: 20px;
    color: #000000;
    font-weight: 600;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*- road map------*/
.roadmap-section {
    background-color: #ffffff;
}

.middle-row {
    margin-top: -16px;
}

.roadmap-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    color: #34113F;
}

.roadmap-container {
    padding: 20px 0px;
    padding-bottom: 170px;
}

.roadmap-item {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.roadmap-row {
    position: relative;
}

.roadmap-icon {
    background-color: #2CD776;
    width: 97px;
    height: 97px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.roadmap-content p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

.top-row .roadmap-item:nth-child(2) .roadmap-icon {
    border: 13px solid #F3F3F3;
}

.top-row .roadmap-item:nth-child(3) .roadmap-icon {
    background-color: #FFA367;
}

.top-row .roadmap-item:nth-child(4) .roadmap-icon {
    background-color: #1DC0C6;
}

.middle-row .roadmap-item:nth-child(2) .roadmap-icon {
    background-color: #3784E9;
}

.middle-row .roadmap-item:nth-child(3) .roadmap-icon {
    background-color: #FE4E9A;
}

.middle-row .roadmap-item:nth-child(4) .roadmap-icon {
    background-color: #2CD776;
}

.bottom-row .roadmap-item:nth-child(1) .roadmap-icon {
    background-color: #FFA367;
}

.bottom-row .roadmap-item:nth-child(2) .roadmap-icon {
    background-color: #2CD776;
}

.bottom-row .roadmap-item:nth-child(3) .roadmap-icon {
    background-color: #FF424E;
}

.roadmap-content {
    max-width: 250px;
    text-align: center;
    padding: 20px;
}

.heading-color-strip {
    display: flex;
    margin-bottom: 20px;
}

.heading-color-strip span {
    width: 92px;
    height: 5px;
    display: block;
    background: #F38749;
}

.heading-color-strip span:nth-child(2) {
    background: #F2B66D;
}

.heading-color-strip span:nth-child(3) {
    background: #7D6753;
}

.heading-color-strip span:nth-child(4) {
    background: #8FBCD9;
}

.top-row .roadmap-item:nth-child(2) {
    left: 24%;
    top: -42px;
}

.top-row .roadmap-item:nth-child(3) {
    left: 47%;
    top: -42px;
}

.top-row .roadmap-item:nth-child(4) {
    left: 70%;
    top: -42px;
}

.middle-row .roadmap-item:nth-child(2) {
    left: 10%;
    top: -42px;
}

.middle-row .roadmap-item:nth-child(3) {
    left: 40%;
    top: -42px;
}

.middle-row .roadmap-item:nth-child(4) {
    left: 70%;
    top: -42px;
}

.bottom-row .roadmap-item:nth-child(1) {
    left: 12%;
    top: -60px;
}

.bottom-row .roadmap-item:nth-child(2) {
    left: 40%;
    top: -60px;
}

.bottom-row .roadmap-item:nth-child(3) {
    left: 70%;
    top: -60px;
}

/* ----- road map end------*/
.quotes {
    top: 0px;
}

.testimonials {
    padding: 75px 0;
    background-color: #F3F3F3;
}

.testimonials h2 {
    color: #34113F;
    font-size: var(--main-heading-fs);
    font-weight: 700;
}

.testimonial-text {
    font-size: 18px;
    line-height: 170%;
    color: #34113F;
}

.testimonial-inner {
    background-color: #F6F1F7;
    padding: 50px 40px;
    padding-top: 70px;
}

.testimonial-side-image img {
    max-width: 175px;
    height: 230px;
    object-fit: cover;
}

.testimonial-side-image button {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.person-info h6 {
    color: #101828;
}

.person-info small {
    color: #344054;
}

/*-----About us page end-----------*/
/*-----Service page start-----------*/
.service-box {
    background: #EAF9EF;
    border-radius: 16px;
    box-shadow: 0px 0px 4px 0px #00000040;
    height: 100%;
    transition: all 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    border: 1px solid #F5F5F5;
}

.service-box:hover {
    background: #1E1E1E;
}

.service-box .arrow-btn {
    font-size: 21px;
    color: #fff;
    background: #0F151A;
    padding: 10px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 18px;
    right: 18px;
}

.service-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 16px;
    height: 250px;
}

.service-image img {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.col-md-6:nth-child(1) .service-image img {
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
}

.col-md-6:nth-child(2) .service-image img {
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    border-top-right-radius: 18px;
}

.col-md-6:nth-child(3) .service-image img {
    top: -85px;
    left: -25px;
}

.col-md-6:nth-child(4) .service-image img {
    top: -60px;
    left: -10px;
}

.col-md-6:nth-child(5) .service-image img {
    top: 23px;
    left: -88px;
}

.service-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #232323;
}

.service-content1 {
    background: linear-gradient(179.37deg, rgba(252, 251, 255, 0) 0.55%, #FCFBFF 46.27%);
    padding: 35px 35px 45px 40px;
    min-height: 185px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.service-box:hover .service-content1 {
    background: #1E1E1E;
}

.col-md-6:nth-child(2) .service-content1 {
    padding: 35px 185px 45px 40px;
}

.col-md-6:nth-child(1) .service-content1 {
    padding: 35px 185px 45px 40px;
}

.service-box:hover .service-title {
    color: #1AC68F;
}

.service-box:hover .service-desc {
    color: #E4E4E4;
}

.service-box:hover .arrow-btn {
    background: #1AC68F;
}

.service-desc {
    font-size: 16px;
    font-weight: 400;
    color: #8D8D8D;
    line-height: 23px;
    margin-bottom: 0;
}

.service-d-main-heading.hero-inner h1 {
    max-width: 500px;
    font-size: 46px;
    margin-top: 90px;
    line-height: 54px;
}

.service-d-main-heading.hero-inner p {
    max-width: 390px;
}

.client-box {
    background: #000000;
    border-radius: 12px;
    padding: 17px;
    max-width: 375px;
    position: absolute;
    bottom: -20px;
    left: 82px;
}

.client-box h6 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 20px;
}

.client-box p {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    margin-bottom: 0;
}

.service-text-heading h2 {
    font-size: 32px;
    color: #000000;
    margin-bottom: 24px;
}

.service-text-heading p {
    font-size: 16px;
    color: #454D55;
    margin-bottom: 24px;
}

.dash1 {
    width: 100%;
    height: 8px;
    background-color: #1AC68F;
    border-radius: 4px;
    display: inline-block;
}

.project-detail-emp h6 {
    font-size: var(--sub-heading-fs);
    color: #000000DE;
    font-weight: 700;
    margin-bottom: 0;
}

.project-detail-emp p {
    font-size: 16px;
    color: #0000008A;
    font-weight: 500;
    margin-bottom: 0;
}

.service-slider-outer {
    border-radius: 15px;
    box-shadow: 0px 5.08px 7.62px 0px #0000001A;
    border-top: 5.08px solid #1AC68F;
    padding: 40px 35px;
    height: 100%;
}

.img-service {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: #EFF6FF;
}

.service-slider-outer h5 {
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    color: #111827;
    margin-top: 28px;
    margin-bottom: 30px;
}

.service-slider-outer p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #4B5563;
    margin-bottom: 0;
    min-height: 112px;
}

.specialized-section {
    background: #F9F9F9;
}

.specialized {
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0px 3px 11.99px 0px #0000000F;
    padding: 15px;
    border-left: 9px solid #1AC68F;
    border-radius: 9px;
    background: #ffffff;
    height: 100%;
}

/*-----Service page end-----------*/
/*-----Blockchain page start-----------*/
.blockchain-timeline {
    background: #FFFFFF;
    background-image: url('../images/blockchain-bg-img.png');
}

.timeline-wrapper {
    position: relative;
    padding: 40px 0;
    height: 690px;
}

.curve-line {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 0;
}

.blockchain-timeline h2 {
    color: #252525;
}

.blockchain-timeline p {
    color: #0E1F51;
    font-size: 16px;
    font-weight: 500;
}

.phase-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
    max-width: 200px;
    position: absolute;
    z-index: 1;
}

.phase-box h5 {
    font-weight: 500;
    margin-bottom: 8px;
    color: #252525;
    font-size: 24px;
}

.phase-box p {
    font-size: 14px;
    color: #252525;
    font-weight: 500;
    margin-bottom: 0;
}

/* Positioning boxes along the curve */
.phase1 {
    top: 0px;
    left: 7%;
}

.phase2 {
    top: 150px;
    left: 22%;
    max-width: 230px;
}

.phase3 {
    bottom: 65px;
    left: 35%;
    max-width: 290px;
}

.phase4 {
    top: 64px;
    left: 43%;
    max-width: 300px;
}

.phase5 {
    bottom: 90px;
    right: 6%;
    max-width: 348px;
}

.phase6 {
    top: 75px;
    right: 12%;
    max-width: 228px;
}

.timeline-wrapper:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50%;
    height: 65%;
    background: #85ea9970;
    filter: blur(100px);
    border-radius: 50%;
    z-index: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.offer-section {
    background-color: #ffffff;
}

.offer-section p {
    color: #0E1F51;
}

.offer-card {
    border-radius: 12px;
    padding: 25px 0px 0 0px;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    background-repeat: no-repeat;
    background-size: cover;
}

.offer-card.big-card p {
    color: #0E1F51;
    font-size: 16px;
    font-weight: 500;
}

.offer-card.big-card h3 {
    color: #252525;
    font-size: var(--main-heading-fs);
    font-weight: 700;
    line-height: 54px;
}

.offer-card:hover {
    transform: translateY(-5px);
}

/* Gradient backgrounds */
.big-card {
    background-image: url('../images/offer-b-1.png');
    min-height: 250px;
    box-shadow: 0px 0px 14px 0px #00000040;
    padding: 50px 100px 40px 100px;
}

.blockchain-card-outer>div:nth-child(2) .offer-card {
    background-image: url('../images/offer-b-2.png');
}

.blockchain-card-outer>div:nth-child(3) .offer-card {
    background-image: url('../images/offer-b-3.png');
}

.blockchain-card-outer>div:nth-child(4) .offer-card {
    background-image: url('../images/offer-b-4.png');
}

.blockchain-card-outer>div:nth-child(5) .offer-card {
    background-image: url('../images/offer-b-5.png');
}

.blockchain-card-outer>div:nth-child(6) .offer-card {
    background-image: url('../images/offer-b-6.png');
}

.blockchain-card-outer>div:nth-child(7) .offer-card {
    background-image: url('../images/offer-b-7.png');
}

.small-card {
    height: 100%;
    min-height: 350px;
    box-shadow: 0px 0px 14px 0px #FFFFFF40;
    display: flex;
    align-items: end;
}

.small-card>div {
    min-height: 170px;
    padding: 50px 15px 15px 15px;
    background: linear-gradient(180deg, rgba(42, 42, 42, 0) 7.54%, #212121 62.25%);
}

.big-card>div {
    max-width: 750px;
}

.offer-card.small-card h5 {
    font-size: var(--sub-heading-fs);
    font-weight: 700;
    color: #fff;
}

.offer-card.small-card p {
    font-size: 14px;
    font-weight: 500;
    color: #F7F7F7;
}

.offer-card h3,
.offer-card h5 {
    margin-bottom: 10px;
}

.text-black-75 {
    color: #252525
}

.service-btn-b {
    background: transparent;
    color: #848895;
    border: 1px solid #848895;
    border-radius: 50%;
    width: 100%;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    max-width: 25px;
}

.service-btn-b:hover {
    border: 1px solid #1AC68F;
    color: #1AC68F;
}

/*-----Blockchain page end-----------*/

/*------dark theme start------*/
.dark .hero-slider-1 {
    background: #10161C;
}

.dark .hero-slider-1 .hero-inner h1 {
    color: #fff;
}

.dark .text-black-50 {
    color: #F7F7F7 !important;
}

.dark .text-black-75 {
    color: #F7F7F7;
}

.dark .logo-track h6 {
    color: #ffffff;
}

.dark .custom-marqee-bar .text-center img {
    filter: brightness(0) saturate(100%) invert(7%) sepia(26%) saturate(705%) hue-rotate(169deg) brightness(91%) contrast(96%);
}

.dark .custom-marqee-bar::after {
    background: #10161C;
    height: 65px;
}

.dark .about-us.bg-white {
    background-color: #0D1822 !important;
}

.dark .about-us h2 {
    color: #F7F7F7;
}

.dark .text-b-color {
    color: #E6E6E6 !important;
}

.dark .blockchain-timeline {
    background: #0D1822;
}

.dark .blockchain-timeline h2 {
    color: #FFFFFF;
}

.dark .blockchain-timeline p {
    color: #FFFFFF;
}

.dark .phase-box h5 {
    color: #ffffff;
}

.dark .phase-box {
    backdrop-filter: blur(60px);
    box-shadow: 25.69px 3px 39.35px 0px #00000014;
    background: transparent;
    border: 0.8px solid #FFFFFF66
}

.dark .offer-section {
    background-color: #10161C;
}

.dark .offer-section p {
    color: #E6E6E6;
}

.dark .offer-card.big-card h3 {
    color: #F7F7F7;
}

.dark .big-card {
    box-shadow: 0px 0px 14px 0px #FFFFFF40;
}

.dark .small-card {
    box-shadow: 0px 0px 14px 0px #FFFFFF40;
}

.dark footer.bg-white {
    background-color: #10161C !important;
    box-shadow: 0px -3px 17px 0px #FFFFFF40;
}

.dark .cta-section-main {
    background-color: #10161C
}

.dark .text-muted {
    color: #F7F7F7 !important;
}

.dark .cta-section {
    box-shadow: 0px 0px 10px 0px #FFFFFF40;
}

.dark .footer-social-icon a {
    background: #ffffff;
    color: #1AC68F
}

.dark .footer-social-icon a:hover {
    background: #1AC68F;
    color: #ffffff
}

/*------dark theme end------*/

/* Spline Viewer Styling */
spline-viewer {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    border-radius: 12px;
    transform: scale(1.5) !important;
    transform-origin: center center;
    margin: auto !important;
}

/* Canvas centering inside Spline viewer */
spline-viewer canvas {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: block !important;
}

/* Spline container to handle overflow and centering */
.spline-container {
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
}

/* What We Do Mega Menu Styling */
.menu-sidebar {
    padding-right: 24px;
    border-right: 1px solid #EEEEEEEE;
    height: 100%;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-content: space-between;
}

.menu-item:hover {
    background-color: #f8f9fa;
    border-color: #e9ecef;
}

.menu-item.active {
    background-color: #E1FEF5;
}

.menu-item.active .menu-title {
    color: #1AC68F !important;
}

.menu-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: var(--primary-text-color);
    line-height: 1.2;
    margin-top: 5px;
}

.menu-subtitle {
    font-size: 14px;
    color: #333E49;
    margin: 0;
    margin-top: 2px;
    font-weight: 400;
}

.content-title {
    font-size: 16px;
    font-weight: 600;
    color: #252525;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 5px;
}

.service-item-mega {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item-mega:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-item-mega .service-icon img {
    width: 24px;
    height: 24px;
}

.service-item-mega .service-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: #333;
    line-height: 1.2;
}

.service-item-mega .service-desc {
    font-size: 12px;
    color: #666;
    margin: 0;
    margin-top: 2px;
}

/* Large Service Cards for IT Services */
.services-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #1AC68F #f1f1f1;
    padding-bottom: 10px;
    padding-top: 5px;
}

.services-grid-large::-webkit-scrollbar {
    height: 8px;
}

.services-grid-large::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.services-grid-large::-webkit-scrollbar-thumb {
    background: #1AC68F;
    border-radius: 4px;
}

.services-grid-large::-webkit-scrollbar-thumb:hover {
    background: #17a085;
}

.service-card-outer {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-outer:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-graphic {
    width: 100%;
    height: 120px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

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

.service-card-outer .service-title-1 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: #333;
}

.service-card-outer .service-desc-1 {
    font-size: 14px;
    color: #666;
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
}

.service-btn-1 {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-btn-1:hover {
    background-color: #1AC68F;
    transform: scale(1.1);
    color: #fff;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.mlm-services-content {
    height: 400px;
}

.blockchain-services-content {
    height: 400px;
}

.it-services-content {
    height: 500px;
}

/* Additional service styles for consistency */
.service-title-1 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: #333;
}

.service-desc-1 {
    font-size: 14px;
    color: #666;
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
}

.service-btn-1 {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-btn-1:hover {
    background-color: #1AC68F;
    transform: scale(1.1);
}

/* Service Item Mega Styles */
.service-item-mega {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    background-color: #fff;
    transition: all 0.3s ease;
    color: inherit;
}

.service-item-mega:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    color: inherit;
    text-decoration: none;
}

.service-item-mega .service-icon {
    padding: 0;
    margin: 0;
    box-shadow: none;
    margin-right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: start;
    justify-content: center;
}

.service-item-mega .service-icon img {
    width: 24px;
    height: 24px;
}

.service-item-mega .service-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: #333;
    line-height: 1.2;
}

.service-item-mega .service-desc {
    font-size: 12px;
    color: #666;
    margin: 0;
    margin-top: 2px;
}