
.a{
    text-decoration:none;
}

.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    color: white !important;
}

/* Button Tooltip custom classes */
.custom-tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

.tooltip-text {
    visibility: hidden;
    width: max-content;
    /*    background-color: #333;*/
    background-color: #FE982C;
/*    color: #fff;*/
    color:black;
    text-align: center;
    border-radius: 6px;
    padding: 6px 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* above the element */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 14px;
    white-space: nowrap;
}

/*.custom-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}*/

/* navbar style */
.nav-bar-iner {
    border-bottom: 1px solid gray;
    padding-bottom: 10px;
}

.nav-item {
    position: relative;
    font-size: 15px;
}

    .nav-item > .nav-link {
        position: relative;
        display: inline-block;
        transition: all 0.3s ease;
    }

        .nav-item > .nav-link::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 9%;
            width: 90%;
            height: 3px;
            background-color: rgb(235, 151, 58);
            opacity: 0;
            transform: scaleX(0);
            transition: all 0.3s ease;
        }

    /* Hover effect on each link */
    .nav-item:hover > .nav-link::after {
        opacity: 1;
        transform: scaleX(1);
    }

    /* Active link underline shown */
    .nav-item > .nav-link.active::after {
        opacity: 1;
        transform: scaleX(1);
    }

/* IF any nav-link is hovered, remove active underline from Home */
.nav-unoder-list:hover .nav-item > .nav-link.active::after {
    opacity: 0;
    transform: scaleX(0);
}


.nav-link {
    margin-right: 50px;
    color: white;
}

.btn-schedule {
    background-color: rgb(235, 151, 58);
    /* background-color: #f39c12; */
    color: white;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    padding: 10px 20px;
    white-space: nowrap;
    border: none;
    text-decoration: none;
    font-weight: 600;
}

.nav-texts {
    margin-top: 170px;
}

.text-IT-1 {
    color: white;
    font-size: 37px;
    font-weight: 600;
}

.home-line {
    /* color: white; */
    opacity: 1;
    margin-top: 30px;
    border: 1px solid white;
}

.home-text-1 {
    color: white;
    /* border: 1px solid red; */
    margin-top: 20px;
    font-size: 20px;
}

.btn-read-more {
    border-radius: 30px;
    border: 1.4px solid white;
    color: white !important;
    background: transparent;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    /* border: 1px solid red; */
    margin-top: 35px;
}

    .btn-read-more:hover {
        background-color: #FE982C;
        color: #333 !important;
        border-color: #FE982C;
    }

/* Remove the nav-unoder-list width restriction */
.nav-unoder-list {
    width: auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-item {
        font-size: 14px;
    }

    .btn-schedule {
        font-size: 14px;
        padding: 8px 16px;
    }

    .nav-link {
        margin-right: 30px;
    }
}

@media (max-width: 992px) {
    .text-IT-1 {
        font-size: 48px;
        line-height: 1.2;
    }

    .home-text-1 {
        font-size: 16px;
        line-height: 1.5;
    }

    .btn-read-more {
        font-size: 16px;
        padding: 8px 20px;
    }

    .btn-schedule {
        font-size: 14px;
        padding: 8px 15px;
        white-space: nowrap;
    }

    .nav-link {
        margin-right: 15px;
        font-size: 14px;
    }

    .nav-item {
        font-size: 14px;
    }
}

@media (max-width: 850px) {
    .nav-link {
        margin-right: 10px;
        font-size: 13px;
    }

    .btn-schedule {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {
    .carousel-item1 {
        height: auto;
        min-height: 100vh;
        padding: 20px 0;
    }

    .nav-texts {
        margin-top: 60px;
        padding: 0 20px;
    }

    .text-IT-1 {
        font-size: 36px;
        margin-bottom: 20px;
    }


    .home-text-1 {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .btn-read-more {
        font-size: 14px;
        padding: 10px 25px;
    }


    /* Fix navbar collapse issues */
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.9);
        padding: 20px;
        margin-top: 10px;
        border-radius: 5px;
    }

    .nav-link {
        margin-right: 0;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item > .nav-link::after {
        display: none; /* Hide underline on mobile */
    }

    .btn-schedule {
        width: 100%;
        margin-top: 15px;
        padding: 12px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .carousel-item1 {
        min-height: 100vh;
        padding: 15px 0;
    }

    .nav-texts {
        margin-top: 40px;
        padding: 0 15px;
    }

    .text-IT-1 {
        font-size: 28px;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .home-text-1 {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 25px;
    }

        .home-text-1 br {
            display: none; /* Remove line breaks on very small screens */
        }

    .btn-read-more {
        font-size: 12px;
        padding: 8px 20px;
    }

    .btn-schedule {
        font-size: 12px;
        padding: 10px;
    }

    .navbar-brand img {
        max-height: 40px; /* Ensure logo doesn't get too big on small screens */
    }
}


@media (max-width: 320px) {
    .text-IT-1 {
        font-size: 24px;
    }

    .home-text-1 {
        font-size: 12px;
    }

    .nav-texts {
        margin-top: 30px;
        padding: 0 10px;
    }
}

/* sdjbjsdkvc */
.main-image {
    max-height: 600px;
    object-fit: cover;
    object-position: top;
}

.carousel-image {
    height: 80px;
    object-fit: contain;
    margin-left:10px;
}

@media (max-width: 768px) {
    .large-heading {
        font-size: 1.8rem;
    }
}

.large-heading {
    font-size: 2rem;
    font-weight: 700;
    color: black;
}

.carousel-image {
    height: 80px;
    object-fit: contain;
}

.main-image {
    max-height: 600px;
    object-fit: cover;
    object-position: top;
}


/* MARKETING CONTENT
-------------------------------------------------- */

/* Center align the text within the three columns below the carousel */
/* .marketing .col-lg-4 {
  margin-bottom: 1.5rem;
  text-align: center;
  border:5px solid red
}
.marketing h2 {
  font-weight: 400;
} */
/* rtl:begin:ignore */
/* .marketing .col-lg-4 p {
  margin-right: .75rem;
  margin-left: .75rem;
} */
/* rtl:end:ignore */


/* Featurettes
------------------------- */

.featurette-divider {
    margin: 5rem 0; /* Space out the Bootstrap <hr> more */
}

.agency-background-pic {
    background-color: rgb(246, 246, 246);
}

.about-parent-div {
    padding-top: 120px;
    padding-bottom: 70px;
}

.home-line1 {
    opacity: 1;
    border: 1px solid rgb(235, 151, 58);
}

.about-paragraph-text {
    font-size: 16px;
    color: gray;
}

.about-slider-container {
    border: 1px solid red;
    overflow-x: auto;
}

.logo-wrapper {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 3px;
    padding: 20px 0;
    flex-wrap: nowrap;
}

.logo-box {
    width: 129.25px;
    height: 100px;
    background-color: white;
    border: 1px solid #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

    .logo-box:hover {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .logo-box img {
        max-width: 80%;
        max-height: 60%;
        object-fit: contain;
    }

@media (max-width: 600px) {
    .logo-box {
        width: 120px;
        height: 70px;
    }
}

/* .about-slider-container{
            border:1px solid red;
        }
        .about-slider-item{
            border: 1px solid black;
            width: 150px;

        }
        .about-carousel-image{
            width: 100%;
            height: 100%;
        }
 */

/*  origional code  */
/* slider start about ka*/
/* .slider-container1 {
      overflow: hidden;
      white-space: nowrap;
      margin-top: 10px;
      width: 100%;

    }

    .slider-track1{
      display: inline-flex;
      animation: scroll 5s linear infinite;
    }

    .slider-item1 {
         flex: 0 0 auto;
  padding: 0 2rem;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid lightgray;
    }
    .carousel-image {
  max-height: 20px;
  width: auto;
  display: block;
}

    @keyframes scroll {
      0% {
        transform: translateX(0%);
      }
      100% {
        transform: translateX(-50%);
      }
    }
    .slider-track1:hover {
  animation-play-state: paused;
}  */

/* the endd */


/* new  */
/* slidwer */
/* .slider-wrapper {
      overflow: hidden;
      margin: 30px auto;
      max-width: 100%;
    }

    .slider-container {
      overflow: hidden;
      width: 100%;
    }

    .slider-track {
      display: flex;
      width: calc(200px * 8); 
      animation: scroll 8s linear infinite; 
    }

    .slider-item {
      flex: 0 0 auto;
      width: 200px;
      margin-right: px;
      border-bottom: 1px solid lightgray;
      padding: 5px;
      background: white;
    }

    .carousel-image {
      width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    } */




/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 40em) {
    /* Bump up size of carousel content */
    .carousel-caption p {
        margin-bottom: 1.25rem;
        font-size: 1.25rem;
        line-height: 1.4;
    }

    .featurette-heading {
        font-size: 50px;
    }
}

@media (min-width: 62em) {
    .featurette-heading {
        margin-top: 7rem;
    }
}

.carousel {
    /* ya second section ka ha  */
    margin-bottom: 4rem;
    /* border: 10px solid greenyellow; */
}



.custom-card-height {
    height: 17rem;
    width: 100%;
    max-width: 23rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    margin-bottom:22px;
    position: relative;
    /* border: 1px solid red; */
}

.arrow-read-alignment{
    position: absolute;
    bottom: 30px;
    left: 20px;
}

.card-line2 {
    opacity: 1;
    margin-top: 10px;
    border: 1px solid rgb(235, 151, 58);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-card-height {
        height: auto;
        min-height: 17rem;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .card-title {
        font-size: 22px !important;
    }

    .text-web {
        font-size: 14px;
    }

    .big-circle {
        width: 120px;
        height: 120px;
        bottom: -15px;
        right: -20px;
    }

        .big-circle i {
            font-size: 24px;
        }
}

.hidden {
    display: none;
}

.cont-padding {
    padding-bottom: 60px;
}

.btn-circle {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 6px 0;
    text-align: center;
    font-size: 16px;
    background-color: white;
    margin-right: 10px;
    border: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    line-height: 28px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}

/* When radio is checked, style the matching label */
.btn-radio:checked + .btn-circle {
    background-color: rgb(235, 151, 58);
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
    .custom-card-height {
        min-height: 17rem;
        max-width: 100%;
    }

    .card-title {
        font-size: 20px !important;
    }

    .text-web {
        font-size: 13px;
    }

    .big-circle {
        width: 100px;
        height: 100px;
        bottom: -10px;
        right: -15px;
    }

        .big-circle i {
            font-size: 20px;
        }

    .circle-arrow {
        width: 45px;
        height: 45px;
    }

    .arrow-icon {
        font-size: 16px;
    }

    .read-more-text {
        font-size: 11px;
    }
}
@media (max-width: 375px) {
    .custom-card-height{
        min-height:18rem;
        max-width:100%;
    }
}
@media (max-width: 320px) {
    .custom-card-height {
        min-height: 18rem;
        max-width: 100%;
    }
}
/* Hover effect for the entire card */
.custom-card-height:hover {
    transform: translateY(-12px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.10);
}

.text-web {
    font-size: 15px;
    transition: color 0.3s ease;
    color: gray;
}

.card-readmore-line {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    padding: 10px 15px;
    margin-top: 40px;
}

.circle-arrow {
    width: 40px;
    height: 40px;
    background-color: white;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

/* Hover effect for small circle */
.custom-card-height:hover .circle-arrow {
    background-color: rgb(235, 151, 58);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.4);
}

.arrow-icon {
    font-size: 18px;
    color: black;
    transition: color 0.3s ease;
}

/* Arrow color change on hover */
.custom-card-height:hover .arrow-icon {
    color: white;
}

.read-more-text {
    font-weight: 500;
    font-size: 12px;
    transition: color 0.3s ease;
    color: gray;
}

/* Read more text color change on hover */
.custom-card-height:hover .read-more-text {
    color: rgb(235, 151, 58);
    font-weight: 600;
}

.big-circle {
    width: 160px;
    height: 160px;
    background-color: #f5f5f5;
    border-radius: 50%;
    position: absolute;
    bottom: -20px;
    right: -27px;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Big circle hover effect - color change to #30302e */
.custom-card-height:hover .big-circle {
    background-color: rgb(235, 151, 58);
    /* background-color: #30302e; */
    transform: scale(1.05);
}

.big-circle i {
    font-size: 28px;
    color: black;
    transition: all 0.3s ease;
}

/* Icon color change on hover */
.custom-card-height:hover .big-circle img {
    color: white;
    /* border: 1px solid red; */
    transform: scale(1.1);
}

/* Card title hover effect */
.card-title {
    transition: color 0.3s ease;
}



/* start junarty  */




/* .za-1{ */
/* text-align: center; */
/* new  */
.left-text-boder {
    /* margin-top: 10px; */
    /* border: 1px solid red; */
}

.text-journary {
    color: black;
    /* padding-left: 200px; */
    font-size: 45px;
    text-align: start;
    /* border: 1px solid red; */
}

.highlight {
    color: #f5a623;
}

.text-discover {
    /* padding-left: 125px; */
    margin-top: 30px;
    /* margin-top: 20px; */
    /* border: 1px solid black; */
}

.right-box-boder {
    /* border: 1px solid red; */
    /* border-left: 1px solid rgba(128, 128, 128, 0.34); */
    position: relative;
}

.step-text h6 {
    font-weight: 700;
}

.btn-outline-dark {
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 14px;
}

.analyses {
    position: relative;
}

.text-section {
    /* padding: 2rem 1rem; */
    border: 1px solid red;
    /* text-align: center; */
}

/* Timeline container */
.timeline-container {
    position: relative;
    /* padding-top: 30px; */
    padding: 7rem 0;
    /* border: 2px solid red; */
}

    /* Vertical line connecting all items */
    .timeline-container::before {
        content: '';
        position: absolute;
        /* border: 1px solid green; */
        left: 42px; /* Centered on the circles */
        top: 0; /* Start from top of container */
        bottom: 0; /* End at bottom of container */
        width: 2px;
        background-color: rgba(128, 128, 128, 0.589);
        z-index: 1;
    }

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    /* margin-top: rem; */
    z-index: 2;
    /* border:1px solid gray */
}

    .timeline-item:last-child {
        margin-bottom: 0;
    }

.za-parent {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background-color: rgba(128, 128, 128, 0.317);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}

.za {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: white;
    font-size: 12px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    /* transition: transform 0.3s ease; */
}

    /* .za:hover {
            transform: scale(1.05);
        } */

    .za img {
        max-width: 60%;
        max-height: 60%;
        object-fit: contain;
    }

.step-content {
    margin-left: 2rem;
    flex: 1;
    /* border: 1px solid red; */
    /* margin-top: 40px; */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .text-journary {
        padding-left: 60px;
        font-size: 40px;
        padding-top: 30px;
    }

    .text-discover {
        padding-left: 60px;
    }

    .left-text-line-2 {
        padding-left: 60px;
    }

    .right-box-boder {
        border-left: none;
        /* border-top: 1px solid rgba(128, 128, 128, 0.34); */
        margin-top: 2rem;
        /* padding-top: 2rem; */
    }

    .left-button {
        padding-left: 60px;
    }
}

@media (max-width: 768px) {
    .text-journary {
        padding-left: 20px;
        font-size: 32px;
        /* text-align: center; */
    }

    .text-discover {
        padding-left: 20px;
        /* text-align: center; */
    }

    .left-text-line-2 {
        padding-left: 20px;
    }

    .left-button {
        padding-left: 20px;
    }

    .timeline-container::before {
        left: 32px;
        top: 0;
        bottom: 0;
    }

    .za-parent {
        width: 64px;
        height: 64px;
    }

    .za {
        width: 60px;
        height: 60px;
    }

    .step-content {
        margin-left: 1rem;
    }

        .step-content h6 {
            font-size: 16px;
        }

        .step-content p {
            font-size: 14px;
        }
}

@media (max-width: 576px) {
    .text-journary {
        font-size: 28px;
        padding-left: 10px;
    }

    .text-discover {
        padding-left: 10px;
    }

    .left-text-line-2 {
        padding-left: 10px;
    }

    .left-button {
        padding-left: 10px;
    }

    .timeline-container::before {
        left: 27px;
        top: 0;
        bottom: 0;
    }

    .za-parent {
        width: 54px;
        height: 54px;
    }

    .za {
        width: 50px;
        height: 50px;
    }

    .step-content h6 {
        font-size: 14px;
    }

    .step-content p {
        font-size: 12px;
    }
}

/* Container background */
.journey-bg {
    background-color: rgba(128, 128, 128, 0.075);
}

/* Placeholder for missing images */
.placeholder-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #f5a623, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}



/* } */

/* end */
/* your experience section start  */
.experience-text {
    background: url(./NBT/img_100.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* center/cover no-repeat; */
    margin: 0px 0px;
    padding: 75px 0 65px 0;
}

/* 4 czrd  */
.industry-card {
    border: 2px solid #f4a261;
    border-radius: 10px;
    padding: 20px;
    padding-bottom: 40px;
    height: 400px;
    background-color: rgb(229, 229, 229);
    position: relative;
    /* transition: all 0.3s ease; */
}

.Healthcare-text {
    margin-top: 15rem;
    color: black;
}

.btn-contact {
    border: 1px solid gray;
    border-radius: 30px;
    font-size: 14px;
    color: black;
    padding-right: 2px;
    position: absolute;
    bottom: 10px;
    left: 18px;
}
/* .bttn-minor-change{
        position: relative;
        top: 10px;
        left: 0;
    } */
.icon-circle {
    /* border: 1px solid red; */
    width: 30px;
    height: 30px;
    padding-top: 8px;
    border-radius: 50%;
    color: white;
    font-size: 12px;
    background-color: rgb(235, 151, 56);
    /* display: inline-block;
            text-align: center;
            margin-left: 8px; */
}

.industry-card:hover {
    background-position: center;
    background-repeat: none;
    background-size: cover;
    color: white;
    transition: 1.1s;
}

    .industry-card:hover .btn-contact {
        color: white;
        background-color: rgb(235, 151, 56);
    }

    .industry-card:hover .Healthcare-text {
        color: white;
    }

.c1:hover {
    background-image: url(./NBT/img.jpg);
}

.c2{
    background-color:#a7a3a3;
}

.c2:hover {
    background-image: url(./img-icon-banner-footer/E-Commerce.jpg);
}

.c3:hover {
    background-image: url(./img-icon-banner-footer/Real-Estate.jpg);
}

.c4 {
    background-color: #a7a3a3;
}

.c4:hover {
    background-image: url(./img-icon-banner-footer/Manufacturing.jpg);
}
/* tookit start  */
.toolkit-text {
    color: black;
    text-align: center;
    font-size: 3rem;
}

.toolkit-line {
    opacity: 1;
    margin-top: 10px;
    border: 1px solid rgb(235, 151, 58);
    ;
}





.slider-container {
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    margin-top: 10px;
    width: 100%;
}

.slider-track {
    display: inline-flex;
    animation: scroll 30s linear infinite;
}


.slider-item {
/*    padding: 0 2rem;*/
    border-bottom: 2px solid rgb(229, 229, 229);
    margin-left: 0px;
    font-size: 30px;
    width: max-content !important;
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}
.slider-container:nth-child(2) .slider-track {
    animation: scroll-reverse 35s linear infinite;
}

@keyframes scroll-reverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}
/* cloent satrt */
.client-left {
    background-color: rgb(246, 246, 246);
    /* border:1px solid #f39c12; */
}

.client-right-img {
    width: 100%;
    height: 100%;
    /* border: 1px solid red; */
}

.row-client-height {
    height: 600px;
}

.bb {
    position: relative;
}

.hh {
    /* border :1px solid red ; */
    position: absolute;
    top: 19%;
    left: 0;
}

.icon-position-p {
    position: relative;
}

.icon-position {
    /* width: 230px; */
    position: absolute;
    top: 85%;
    left: 15%;
}
/* new//////// */
/* .pic-bcg{
      display: flex;
      align-items: center;
      height: 500px;
      background-image: url(./NBT/testimonials-img.jpg);
    } */
.testimonial-section {
    background: #f4f4f4;
    /* padding: 80px 0; */
}

.testimonial-left {
    padding: 35px;
    /* border: 210px; */
    /* padding: 20px; */
    /* border: 1px solid  */
    /* red; */
}


.testimonial-title {
    font-size: 25px;
    font-weight: bold;
    color: black;
    padding-bottom:10px;
    /* padding-top: 100px; */
}

.testimonial-desc {
    font-size: 14px;
    color: #555;
    text-align:justify;
}

/* right card  */
.testimonial-card {
    height: 350px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    /* padding-bottom: 50px; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    /* border: 1px solid red; */
}

.testimonial-img {
    margin-top: 10px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    justify-self: center;

}

.testimonial-name {
    font-weight: 700;
    margin-top: 20px;
}

.testimonial-text {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.btn-read {
    font-weight: 600;
    font-size: 13px;
    /* margin-top: 50px; */
    color: black;
    text-decoration: none;

    position: absolute;
    bottom: 20px;
    left: 50%;
    transform:translateX(-50%);
}

.swiper-button-prev,
.swiper-button-next {
    background-color: #f39c12;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static !important;
    /* Removes Swiper’s default absolute positioning */
    color: white;
}

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 18px;
        font-weight: bold;
        color: #fff;
    }
/* Responsive fixes */
@media (max-width: 767.98px) {
    /* Hide the entire top section with background image on mobile */
    .bb .row-client-height {
        display: none;
    }


    /* Make the testimonials container full width and remove absolute positioning */
    .hh {
        position: static;
        top: auto;
        left: auto;
        padding: 40px 0;
        background: #f4f4f4;
    }
    /* Restructure layout for mobile - stack vertically */
    .icon-position-p {
        flex-direction: column;
    }

    /* Show left testimonial section on mobile but make it full width */
    .testimonial-left {
        display: block;
        text-align: center;
        padding: 0 20px 30px 20px;
        order: 1;
    }

    /* Make testimonials full width on mobile */
    .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
        order: 2;
    }

    /* Hide the navigation from left section on mobile */
    .testimonial-left .icon-position {
        display: none;
    }

    /* Adjust testimonial cards for mobile */
    .testimonial-card {
        height: auto;
        min-height: 350px;
        margin: 0 10px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    /* Tablet adjustments */
    .testimonial-title {
        font-size: 28px;
    }

    .icon-position {
        left: 10%;
    }
}

@media (max-width: 767.98px) {
    .hide-on-sm {
        display: none !important;
    }
}

.carousel-item1 {
    height: 43rem;
    background-image: url(./NBT/banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

@media(min-width:1400px){
    .btn-left-right{
        margin-right: 50px;
    }
}

.padding-const{
    padding-top:220px;
}
@media (max-width: 768px) {
    .hide-on-sm-screen {
        display: none !important;
    }
}