.custom-padding-btn .category {
    padding: 8px 15px;
}

.service-banner .section_heading .sec_title {
    max-width: 1200px;
}

.future-goal-img {
    height: auto;
}

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

.custom-padding-img .category {
    padding: 5px 25px;
}

.custom-padding-img .category:hover {
    background: none;
}

.custom-padding-img .category img {
    width: 70px;
}

.custom-mt {
    margin-top: 2rem !important;
}

.project-slider-section {
    position: relative;
    padding: 40px 70px;
}

/* Slider */
.project-slider-section .myProjectSlider {
    overflow: hidden;
}

/* Card */
.project-slider-section .project-card {
    position: relative;
    overflow: hidden;
}

.project-slider-section .project-card img {
    width: 100%;
    /*height: 420px;*/
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

/* Overlay */
.project-slider-section .project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    transition: 0.4s ease;
}

/* Category */
.project-slider-section .project-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    color: #000;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
    opacity: 0;
    transition: 0.4s ease;
}

/* Content */
.project-slider-section .project-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    z-index: 2;
    transition: all 0.3s ease;
    opacity: 0;
}

.project-slider-section .project-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.4),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.project-card:hover .project-content::before {
    opacity: 1;
}

.project-slider-section .project-content h3 {
    margin: 0;
}

.project-slider-section .project-content h3 a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
}

.project-slider-section .project-year {
    color: #fff;
    margin-top: 8px;
    font-size: 15px;
}

/* Hover */
.project-slider-section .project-card:hover img {
    transform: scale(1.08);
}

.project-slider-section .project-card:hover .project-overlay {
    opacity: 1;
}

.project-slider-section .project-card:hover .project-category,
.project-slider-section .project-card:hover .project-content {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation Buttons */
.project-slider-section .project-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    /*border-radius: 50%;*/
    border: none;
    background: rgba(0,0,0,0.75);
    color: #fff;
    z-index: 50;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-slider-section .project-btn:hover {
    background: #000;
}

.project-slider-section .project-prev {
    left: 0;
}

.project-slider-section .project-next {
    right: 0;
}

.project-slider-section .project-btn i {
    font-size: 22px;
}

/* Responsive */
@media (max-width: 767px) {
    .project-slider-section {
        padding: 40px 20px;
    }

    .project-slider-section .project-btn {
        width: 45px;
        height: 45px;
    }

    .project-slider-section .project-card img {
        height: 320px;
    }
}

.custom-project-detail-img .project-gallery-item {
    position: relative;
    overflow: hidden;
}

.custom-project-detail-img .project-gallery-item a {
    position: relative;
    display: block;
}

.custom-project-detail-img .project-gallery-item img {
    width: 100%;
    display: block;
    transition: 0.5s ease;
}

/* Overlay */
/*.custom-project-detail-img .project-gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    transition: 0.4s ease;
    z-index: 1;
}*/

/* Hover Content */
.custom-project-detail-img .gallery-content {
    position: absolute;
    left: 25px;
    bottom: 25px;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.custom-project-detail-img .gallery-category {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.custom-project-detail-img .gallery-content h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

/* Hover Effects */
.custom-project-detail-img .project-gallery-item:hover img {
    transform: scale(1.08);
}

.custom-project-detail-img .project-gallery-item:hover::after {
    opacity: 1;
}

.custom-project-detail-img .project-gallery-item:hover .gallery-content {
    opacity: 1;
    transform: translateY(0);
}

/* Optional Shadow */
.custom-project-detail-img .project-gallery-item:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.mw-100 {
    max-width: 100% !important;
}

/* product-images-gallery start */
.product-images-gallery .gallery-top {
    width: 100%;
    /*height: 500px;*/
    margin-bottom: 15px;
}

.product-images-gallery .gallery-top .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.product-images-gallery .gallery-top .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-images-gallery .gallery-thumbs {
    /*height: 190px;*/
    height: auto !important;
    box-sizing: border-box;
}

.product-images-gallery .gallery-thumbs .swiper-slide {
    opacity: 0.4;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}

.product-images-gallery .gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #000;
}

.product-images-gallery .gallery-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-images-gallery .swiper-button-next,
.product-images-gallery .swiper-button-prev {
    color: #000;
}

.product-images-gallery .swiper-button-next:after,
.product-images-gallery .swiper-button-prev:after {
    font-size: 30px;
    font-weight: 900;
}

@media (max-width: 767px) {
    .product-images-gallery .gallery-top {
        height: 300px;
    }
    .product-images-gallery .gallery-thumbs {
        height: 80px;
    }
}

/* product-images-gallery end */
.site_navigation nav ul:not(.sub-menu) > li .sub-menu > li:hover > a::after {
    opacity: 1;
    right: 30px;
    visibility: visible;
}

.site_navigation nav ul:not(.sub-menu) > li .sub-menu > li > a:after {
    content: "→";
    font-family: var(--tj-ff-icons);
    font-weight: var(--tj-fw-regular);
    top: 10px;
    width: 0%;
    z-index: 1;
    right: 50px;
    bottom: 5px;
    opacity: 0;
    margin: 0 auto;
    visibility: hidden;
    position: absolute;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

@media (min-width: 992px) {
    .margin-10rem {
        margin-top: 10rem !important;
    }
}

ul.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px 40px;
    padding-left: 20px;
}

ul.feature-list li {
    list-style-position: inside;
    font-size: 18px;
}

ul.feature-list li::marker {
  font-size: 20px;
  font-weight: bold;
}

/* Mobile & Tablet */
@media (max-width: 991px) {
    ul.feature-list {
        display: block;
    }
}

.custom-accordion-header {
    background:#f3ede3;
    border-radius:30px;
    padding:0;
    border:2px solid #c7b79d;
    overflow:hidden;
    max-width:850px;
}

/* Header */
.custom-accordion-header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 24px;
    cursor:pointer;
}

.custom-accordion-header h4 {
    margin:0;
    font-size:20px;
    /*font-weight:700;*/
    letter-spacing:0.5px;
    color:#000;
}

/* Arrow */
.accordion-arrow {
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.3s;
}

/* Body */
.custom-accordion-body {
    padding:8px 24px 24px;
}

.custom-accordion-body h5 {
    font-size:18px;
    /*font-weight:700;*/
    margin-bottom:6px;
    color:#000;
}

.custom-accordion-body p {
    font-size:18px;
    line-height:1.5;
    color:#111;
    margin:0;
}

.sec-excellence-custom .h3-hero-section .hero_content_right {
    backdrop-filter: blur(0px) !important;
    background: rgb(12 12 12 / 30%) !important;
}

.excellence-desc {
    font-family: var(--tj-ff-body);
    /*font-size: var(--tj-fs-body);*/
    font-weight: var(--tj-fw-regular);
    line-height: 1.5;
    color: var(--tj-color-text-body);
    text-transform: none;
}

@media (min-width: 992px) {
    .sec-excellence-custom .h3-hero-section .hero_title {
        font-size: 77px !important;
    }

    .sec-excellence-custom .hero_content_left.hero_content_default {
        padding-top: 350px;
    }

    .excellence-page .purpose-item::after {
        content: "+";
    }

    .excellence-page .purpose-item.active .purpose-desc {
        height: auto;
    }

    .excellence-page .h3_about_counter_wrap .counter {
        font-size: 64px;
    }

    .excellence-page .h3_projects_items .tj_project_item:first-child {
        width: calc(50% - 15px);
    }

    .excellence-page .h3_projects_items .tj_project_item:last-child {
        width: 100%;
        aspect-ratio: 1800/851;
    }
}


@media (max-width: 991px) {
    .excellence-page .h3-hero-section .hero_content_right.container-space {
        -webkit-padding-start: 10px;
        padding-inline-start: 10px;
        -webkit-padding-end: 10px;
        padding-inline-end: 10px;
        padding-top: 10px !important;
    }
}


@media (min-width: 992px) {
    .excellence-sec-certification .tj_project_item {
        max-width: calc(18% - 15px);
        flex: 0 0 calc(18% - 15px);
    }
}

.fs-184 {
    font-size: 184px;
    letter-spacing: -0.04em;
    line-height: 0.8;
}

@media (max-width: 1599px) {
    .fs-184 {
        font-size: 160px;
    }
}

@media (max-width: 1399px) {
    .fs-184 {
        font-size: 145px;
    }
}

@media (max-width: 1199px) {
    .fs-184 {
        font-size: 130px;
    }
}

@media (max-width: 991px) {
    .fs-184 {
        font-size: 105px;
    }
}

@media (max-width: 767px) {
    .fs-184 {
        font-size: 80px;
    }
}

@media (max-width: 575px) {
    .fs-184 {
        font-size: 48px;
    }
}

@media (min-width: 992px) {
    .custom-height-950 {
        height: 950px !important;
    }
}

.fs-55 {
    font-size: 55px;
    line-height: 1.2;
}

@media (max-width: 1599px) {
    .fs-55 {
        font-size: 52px;
    }
}

@media (max-width: 1399px) {
    .fs-55 {
        font-size: 48px;
    }
}

@media (max-width: 1199px) {
    .fs-55 {
        font-size: 44px;
    }
}

@media (max-width: 991px) {
    .fs-55 {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .fs-55 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .fs-55 {
        font-size: 26px;
    }
}

.custom-timeline-slider .timeline-slider::before {
    top: 95px;
}

.bus-section {
    display: flex;
    align-items: center;
    justify-content: center;      
    padding: clamp(48px, 8vw, 110px) 24px;
}

.bus-section .bus-wrap {
    width: min(100%, 1380px);
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    align-items: center;
    gap: clamp(18px, 4vw, 56px);
}

.bus-section .content {
    text-align: center;
}

.bus-section .bus-swiper {
    width: 100%;
    overflow: hidden;
}

.bus-section .swiper-slide {
    height: auto;
}

.bus-section .title {
    color: #ff980e;
    font-size: clamp(22px, 1.8vw, 31px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1.5px;
    margin-bottom: clamp(32px, 4vw, 44px);
}

.bus-section .description-card {
    width: min(100%, 1096px);
    margin: 0 auto;
    /*background: #303030;*/
    /*border-radius: clamp(24px, 3vw, 40px);*/
    /*padding: clamp(28px, 2.9vw, 34px) clamp(24px, 6vw, 70px);*/
}

.bus-section .description-card p {
    max-width: 980px;
    margin: 0 auto;
    color: #d7d7d7;
    font-size: clamp(15px, 1.15vw, 20px);
    line-height: 1.28;
    font-weight: 400;
}

.bus-section .description-card p + p {
    margin-top: 8px;
}

.bus-section .arrow {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    padding: 0;
}

.bus-section .arrow::before {
    content: "";
    width: 18px;
    height: 18px;
    border-top: 5px solid currentColor;
    border-right: 5px solid currentColor;
    border-radius: 1px;
}

.bus-section .arrow-left::before {
    transform: rotate(-135deg);
}

.bus-section .arrow-right::before {
    transform: rotate(45deg);
}

.bus-section .arrow:hover,
.bus-section .arrow:focus-visible,
.bus-section .swiper-button-disabled {
    color: #ff980e;
}

.bus-section .swiper-button-disabled {
    cursor: default;
    opacity: 0.45;
}

.bus-section .swiper-pagination {
    position: static;
    margin-top: 24px;
}

@media (max-width: 900px) {
    .bus-section .bus-wrap {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .bus-section .arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .bus-section {
        position: relative;
        padding-inline: 56px;
    }

    .bus-section .arrow-left {
        left: 10px;
    }

    .bus-section .arrow-right {
        right: 10px;
    }
}

@media (max-width: 560px) {
    .bus-section {
        /*min-height: 100svh;*/
        padding: 44px 40px;
    }

    .bus-section .bus-wrap {
        display: block;
    }

    .bus-section .title {
        margin-bottom: 24px;
    }

    .bus-section .description-card {
        border-radius: 22px;
        padding: 24px 18px;
    }

    .bus-section .description-card p {
        line-height: 1.42;
    }

    .bus-section .arrow {
        width: 38px;
        height: 38px;
    }

    .bus-section .arrow::before {
        width: 14px;
        height: 14px;
        border-width: 4px;
    }
}

.bus-section a.view-more-btn .text_btn, .bus-section a.view-more-btn .icon_btn {
    border: 1px solid #f2f2f2;
    color: #fff;
}

.roots-sec-width {
    max-width: 900px;
    margin-left: 0;
}

.custom-img-width-set .tj_client_item {
    min-height: 100% !important;
}

.custom-img-width-set .tj_client_item span {
    max-width: 100% !important;
}

.custom-img-width-set .tj_client_item span img {
    width: 100% !important;
}

@media (min-width: 992px) {
    .three-grid-set {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 767.98px) {
    .mob-none {
        display: none !important;
    }
}

.clients-custom-hero-sec .h2-hero-content-wrap .hero_title {
    font-size: 20vw;
    margin-top: 1vw !important;
    line-height: 17vw;
}

.clients-custom-hero-sec h1.sec_title.text-uppercase {
    font-size: 7vw;
    line-height: 7vw;
}

.border-custom-sec .future-goal-item {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 30px 0;
}

.border-custom-sec .future-goal-item:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: #F39315;
}

.border-custom-sec .future-goal-item:first-child,
.border-custom-sec .future-goal-item:last-child {
    border-top: none;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.dots-none-ul ul li::after {
    content: none;
}

.fs-100 {
    font-size: 100px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.fs-100 i,
.fs-100 svg {
    display: inline-flex;
    line-height: 1;
    position: relative;
    font-size: 125%;
    margin-right: -18px;
    margin-top: -34px;
    bottom: -20px;
}

/* ≤ 1599px */
@media (max-width: 1599.98px) {
    .fs-100 {
        font-size: 90px;
    }
}

/* ≤ 1399px */
@media (max-width: 1399.98px) {
    .fs-100 {
        font-size: 84px;
    }
}

/* ≤ 1199px */
@media (max-width: 1199.98px) {
    .fs-100 {
        font-size: 68px;
    }

    .fs-100 i,
    .fs-100 svg {
        bottom: -15px;
    }
}

/* ≤ 991px */
@media (max-width: 991.98px) {
    .fs-100 {
        font-size: 60px;
    }

    .fs-100 i,
    .fs-100 svg {
        bottom: -12px;
        margin-right: -14px;
    }
}

/* ≤ 767px */
@media (max-width: 767.98px) {
    .fs-100 {
        font-size: 42px;
    }

    .fs-100 i,
    .fs-100 svg {
        bottom: -10px;
        margin-right: -10px;
    }
}

/* ≤ 575px */
@media (max-width: 575.98px) {
    .fs-100 {
        font-size: 36px;
    }

    .fs-100 i,
    .fs-100 svg {
        bottom: -8px;
        margin-right: -8px;
    }
}


.fill-btn-white, .fill-btn-white i, .fill-btn-white:hover {
    color: #fff;
}

.fill-btn-white .text_btn, .fill-btn-white .icon_btn {
    border-color: #fff;
}

.w-lg-75 {
    width: 100%;
}

@media (min-width: 992px) {
    .w-lg-75 {
        width: 75% !important;
    }

    .row-cols-lg-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }
}

.sec-excellence-custom .purpose-desc {
    max-width: 100%;
}

.group-page .h3_projects_items .tj_project_item:first-child {
    aspect-ratio: 1800/1000;
}

/* jcbl group page css start */

/* group main section css atart here */
.group-main-sec.hero-section {
  position: relative;
  background-color: var(--tj-color-theme-bg-dark);      
}

.group-main-sec .hero-inner {
  position: relative;
  z-index: 2;
  min-height: 760px;
  padding: 180px 60px 240px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.group-main-sec .hero-content {
  max-width: 780px;
  text-align: center;
  margin-top: 5px;
}

.group-main-sec .section-label {
  display: inline-block;
  margin-bottom: 24px;
  color: #f8f3eb;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.group-main-sec .section-label::first-letter,
.group-main-sec .section-label span {
  color: #ef1742;
}

.group-main-sec .hero-title {
  margin: 0;
  font-size: clamp(48px, 5vw, 74px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.group-main-sec .hero-button {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: #ef1742;
  font-size: 15px;
  font-weight: 800;
}

.group-main-sec .hero-button span {
  padding: 18px 25px;
}

.group-main-sec .hero-button i {
  display: grid;
  place-items: center;
  width: 55px;
  height: 54px;
  border-left: 1px solid rgba(0, 0, 0, 0.35);
  font-style: normal;
  font-size: 22px;
}

.group-main-sec .social-links {
  position: absolute;
  top: 155px;
  left: 60px;
  z-index: 3;
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.group-main-sec .social-links a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  font-size: 15px;
  font-weight: 800;
}

.group-main-sec .star-badge {
  position: absolute;
  top: 145px;
  left: 132px;
  width: 196px;
  height: 196px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: rgba(60, 43, 44, 0.62);
  display: grid;
  place-items: center;
}

.group-main-sec .star-badge::before {
  content: "*";
  color: #ef1742;
  font-size: 160px;
  line-height: 1;
  font-weight: 900;
  transform: translateY(18px);
}

.group-main-sec .trusted-card {
  position: absolute;
  left: 60px;
  bottom: 168px;
  z-index: 3;
  width: 395px;
  min-height: 220px;
  padding: 28px 30px;
  background: rgba(79, 37, 40, 0.85);
}

.group-main-sec .trusted-card h3 {
  max-width: 315px;
  margin: 0 0 28px;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 900;
}

.group-main-sec .trusted-card h3 span {
  text-decoration: underline;
}

.group-main-sec .avatar-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.group-main-sec .avatar-list li {
  margin-right: -10px;
}

.group-main-sec .avatar-list img {
  width: 52px;
  height: 52px;
  border: 2px solid #fffaf3;
  border-radius: 50%;
  object-fit: cover;
}

.group-main-sec .hero-image {
  position: absolute;
  right: -10px;
  bottom: 58px;
  z-index: 1;
  width: min(42vw, 610px);
  min-width: 430px;
}

.group-main-sec .hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

.group-main-sec .client-strip {
  position: absolute;
  right: 0;
  bottom: -1px;
  z-index: 4;
  width: 50%;
  min-width: 840px;
  height: 95px;
  overflow: hidden;
  background: #fcf5ea;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.group-main-sec .logo-track {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: scrollLogos 24s linear infinite;
  padding-left: 115px;
}

.group-main-sec .logo-item {
  min-width: 190px;
  display: grid;
  place-items: center;
}

.group-main-sec .logo-item img {
  max-width: 150px;
  max-height: 80px;
  object-fit: contain;
  height: 45px;
}

.group-main-sec .story-section {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 72px, rgba(255, 255, 255, 0.13) 73px, transparent 74px),
    #020202;
}

.group-main-sec .story-content {
  width: min(600px, calc(100% - 40px));
  margin: 0 auto;
  padding: 135px 0 160px;
  text-align: center;
}

.group-main-sec .story-title {
  margin: 18px 0 24px;
  font-size: clamp(42px, 6vw, 56px);
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.group-main-sec .story-copy {
  margin: 0 auto;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 9px;
  line-height: 1.35;
}

.group-main-sec .story-logo-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  min-width: 500px;
  height: 50px;
  background: #f4eee3;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  padding-left: 55px;
}

.group-main-sec .story-logo {
  color: #182231;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.group-main-sec .story-logo small {
  display: block;
  margin-top: 2px;
  color: #555;
  font-size: 6px;
  font-weight: 600;
  text-transform: uppercase;
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }

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

@media (max-width: 1100px) {
  .group-main-sec .hero-inner {
    padding-top: 120px;
  }

  .group-main-sec .star-badge {
    opacity: 0.35;
  }

  .group-main-sec .hero-image {
    right: -120px;
    opacity: 0.72;
  }

  .group-main-sec .client-strip {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .group-main-sec.hero-section,
  .group-main-sec .hero-inner {
    min-height: 850px;
  }

  .group-main-sec .hero-inner {
    padding: 90px 22px 250px;
  }

  .group-main-sec .social-links {
    left: 20px;
    top: 25px;
    grid-auto-flow: column;
  }

  .group-main-sec .star-badge {
    top: 95px;
    left: 20px;
    width: 120px;
    height: 120px;
  }

  .group-main-sec .star-badge::before {
    font-size: 96px;
    transform: translateY(12px);
  }

  .group-main-sec .hero-image {
    right: -95px;
    bottom: 150px;
    min-width: 355px;
  }

  .group-main-sec .trusted-card {
    left: 20px;
    right: 20px;
    bottom: 150px;
    width: auto;
    min-height: 165px;
    padding: 22px;
  }

  .group-main-sec .trusted-card h3 {
    font-size: 22px;
  }

  .group-main-sec .client-strip {
    height: 130px;
  }

  .group-main-sec .logo-track {
    gap: 28px;
    padding-left: 70px;
  }

  .group-main-sec .logo-item {
    min-width: 150px;
  }

  .group-main-sec .story-logo-strip {
    width: 100%;
    min-width: 0;
    gap: 28px;
  }
}

/* group main section css end here */

.companies-group-tab .tab-wrapper {
  display: flex;
  gap: 80px;
  align-items: stretch;
}

.companies-group-tab .tab {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 0;
}

.companies-group-tab .tab button {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  color: #0c0c0c;
  text-align: left;
  cursor: pointer;
  font-size: 22px;
  font-weight: 800;
  padding: 16px 0;
  margin-bottom: 18px;
}

.companies-group-tab .tab button.active,
.companies-group-tab .tab button:hover {
  color: #ff9100;
}

.companies-group-tab .tabcontent-wrapper {
  flex: 1;
  min-width: 0;
  min-height: 430px;
  display: flex;
  align-items: center;
}

.companies-group-tab .tabcontent {
  display: none;
  width: 100%;
}

.companies-group-tab .tabcontent.active {
  display: block;
}

.companies-group-tab .company-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid #d3d3d3;
  padding: 18px 0;
}

.companies-group-tab .company-card:last-child {
  border-bottom: none;
}

.companies-group-tab .company-info {
  flex: 1;
  min-width: 0;
}

.companies-group-tab .company-info p {
  margin: 0 0 8px;
  color: #0c0c0c;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.companies-group-tab .company-website a {
  color: #b8b8b8;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.companies-group-tab .company-website a:hover {
  color: #FF9100;
}

.companies-group-tab .company-card > a {
  flex: 0 0 120px;
  text-align: right;
}

.companies-group-tab .company-card img {
  max-width: 75px;
  width: 75px;
  height: auto;
  display: inline-block;
}

.companies-group-tab .black-logo {
  display: none !important;
}

.companies-group-tab .white-logo {
  display: inline-block !important;
}

@media (max-width: 991px) {
  .companies-group-tab .tab-wrapper {
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
  }

  .companies-group-tab .tab {
    flex: none;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 20px;
    justify-content: initial;
  }

  .companies-group-tab .tab button {
    font-size: 18px;
    margin-bottom: 0;
    padding: 10px 0;
  }

  .companies-group-tab .tabcontent-wrapper {
    width: 100%;
    min-height: auto;
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .companies-group-tab .tab {
    grid-template-columns: 1fr;
  }

  .companies-group-tab .company-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .companies-group-tab .company-card > a {
    flex: none;
    text-align: left;
  }

  .companies-group-tab .company-info p {
    font-size: 17px;
  }

  .companies-group-tab .company-website a {
    font-size: 14px;
  }

  .companies-group-tab .company-card img {
    max-width: 82px;
  }
}

/* map css start */
.global-footprints {
  padding:40px 15px;
}

.map-container {
  margin:auto;
  padding:30px 20px;
  border-radius:10px;
}

.map-container h2 {
  text-align:center;
  margin-bottom:15px;
}

.map-controls {
  display:flex;
  flex-wrap:wrap;
  gap:15px;
  margin-bottom:20px;
  font-size:15px;
}

.map-controls label {
  cursor:pointer;
}

.map-controls input {
  margin-right:6px;
}

.map-wraper {
  position:relative;
  max-width:1000px;
  margin:auto;
}

.global-footprints.world-map .map-wraper {
  width: 100%;
  max-width: 100%;
}

.pin-group img {
  width:100%;
}

.map-locators {
  position:absolute;
  inset:0;
}

.dot {
  position:absolute;
  transform:translate(-50%,-50%);
  z-index:2;
}

.dot .point {
  width:12px;
  height:12px;
  display:block;
  opacity:1 !important;
  visibility:visible !important;
  z-index:3;
}

.world-map .point {
  background: #FF9800;
  border-radius: 50%;
}

.dot .pulse {
  position:absolute;
  width:40px;
  height:40px;
  border:1px solid;
  border-radius:50%;
  top:-14px;
  left:-14px;
  animation:pulse 2s infinite;
  z-index:1;
}

@keyframes pulse {
  0%{transform:scale(.5);opacity:1}
  100%{transform:scale(1.5);opacity:0}
}

.pin-tip {
  position:absolute;
  bottom:130%;
  left:50%;
  transform:translateX(-50%) translateY(6px);
  background:#222;
  padding:6px 10px;
  border-radius:6px;
  font-size:13px;
  white-space:nowrap;
  opacity:0;
  transition:.25s;
  pointer-events:none;
  z-index:5;
}

.dot:hover .pin-tip {
  opacity:1;
  transform:translateX(-50%) translateY(0);
}

.dot:hover {
  z-index: 10;
}

.pin-tip::after {
  content:"";
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%);
  border:6px solid transparent;
  border-top-color:inherit;
}

.toyota .point,
.existing .point,
.jcbl .point,
.agri .point,
.adsl .point,
.msl .point {border-radius:50%;}

.toyota .point {background:#ffd800;}
.toyota .pulse {border-color:#ffd800;}
.toyota .pin-tip {background:#ffd800;color:#000;}

.existing .point {background:#ff9800;}
.existing .pulse {border-color:#ff9800;}
.existing .pin-tip {background:#ff9800;color:#000;}

.jcbl .point {background:#ff4d4d;}
.jcbl .pulse {border-color:#ff4d4d;}
.jcbl .pin-tip {background:#ff4d4d;color:#000;}

.adsl .point {background:#00b0ff;}
.adsl .pulse {border-color:#00b0ff;}
.adsl .pin-tip {background:#00b0ff;color:#000;}

.msl .point {background:#795548;}
.msl .pulse {border-color:#795548;}
.msl .pin-tip {background:#795548;color:#000;}

.agri .point {background:#00e676;}
.agri .pulse {border-color:#00e676;}
.agri .pin-tip {background:#00e676;color:#000;}

/* CHECKBOX COLORS */
.layer-toyota input {accent-color:#ffd800;}
.layer-existing input {accent-color:#ff9800;}
.layer-jcbl input {accent-color:#ff4d4d;}
.layer-adsl input {accent-color:#00b0ff;}
.layer-msl input {accent-color:#795548;}
.layer-agri input {accent-color:#00e676};

.world-map .point {
  width: 12px;
  height: 12px;
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 3;
  background: #1ca0cb;
  border-radius: 50%;
}

.world-map .pin-tip {
  color: #fff;
}

.map-text-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.network-wrapper {
  flex: 0 0 45%;
}

.global-footprints {
  flex: 0 0 55%;
}

.map-wraper img {
  width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .map-text-layout {
    flex-direction: column;
  }

  .network-wrapper,
  .global-footprints {
    flex: 100%;
  }
}

.network-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-left: 2rem;
}

.network-columns ul, .network-section ul {
  list-style: circle;
}

@media (max-width: 600px) {
  .network-columns {
    margin-left: 0;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .network-columns ul {
    width: 100%;
    list-style-position: inside;
  }
}

.sec-area .tj_client_item h3, .industry-icon {
    transition: transform 0.3s ease;
}

.sec-area .tj_client_item:hover h3, .industry-icon:hover {
    transform: scale(1.08);
}
/* map css end */

/* jcbl group page css end */

.h1_hero_content_wrap .bottom_left_content {
    max-width: 550px;
}

.tj_counter .counter_number span.suffix, .tj_counter .counter_number .suffix > span span.suffix {
    font-size: 46px;
}

.tj_counter .counter_number, .tj_counter .counter_number .suffix > span {
    font-size: 65px;
}

.more-team-section .section_heading .sec_title {
    max-width: 900px;
}

.h1_blog_wrapper .blog_section_header .section_heading {
     max-width: 100%;
}

.home-newsroom-sec {
    padding-bottom: 150px;
}

@media (min-width: 992px) {
  .home-latest-sec .heading_text {
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }

  .home-latest-sec .heading_text .desc {
    max-width: 1100px;
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
}

.Client-page .tj_client_item > span {
    max-width: 150px;
}

.Client-page .h2_client_wrap .tj_client_item {
    min-height: 150px;
}

.Client-page .fs-18 span {
    text-decoration: none;
}

.Client-page .h2-hero-section .line {
    background: #2928263d;
}

.clients-home-sec .tj_client_item > span img {
    padding: 10px 30px;
}

@media (max-width: 991px) {
    .mob-height-sec {
        min-height: auto !important;
    }

    .mob-height-sec .h2-hero-content .hero-left {
        min-height: auto !important;
    }

    .mob-height-sec .line {
        display: none !important;
    }

    h2, .tj-fz-h2 {
        line-height: 1.3;
    }

    .home-custom-banner-sec .h1_hero_content_wrap {
        min-height: 100%;
        height: 100%;
        padding-bottom: 35px;
    }
}

@media (max-width: 575px) {
    .home-features-sec .tj_feature_item {
        min-height: 400px;
    }
}

.text-transform-none {
    text-transform: none !important;
}

.excellence-sec-heading {
    line-height: 1.1 !important;
}

.contact-form .form-input .cf-label {
    text-transform: none;
    font-size: 18px;
}

.contact-form.style-3 .nice-select {
    font-size: 18px;
}