/********** Template CSS **********/
:root {
    --primary: #015FC9;
    --secondary: #0DD3F1;
    --light: #F6F7FC;
    --dark: #15233C;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand img {
    max-height: 60px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 50px;
    padding: 10px 0;
    color: #696E77;
    font-weight: 500;
    outline: none;
}

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

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-height: 45px;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 50px;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: url(../img/header15.jpeg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #696E77;
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--primary);
}


/*** Facts ***/
@media (min-width: 992px) {
    .container.facts {
        max-width: 100% !important;
    }

    .container.facts .facts-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .container.facts .facts-counter {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .container.facts .facts-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }

    .container.facts .facts-counter  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .container.facts .facts-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }

    .container.facts .facts-counter  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.container.facts .facts-text {
    background: linear-gradient(rgba(1, 95, 201, .9), rgba(1, 95, 201, .9)), url(../img/carousel-1.jpg) center right no-repeat;
    background-size: cover;
}

.container.facts .facts-counter {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/carousel-2.jpg) center right no-repeat;
    background-size: cover;
}

.container.facts .facts-text .h-100,
.container.facts .facts-counter .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}

.service-item a.btn {
    color: var(--primary);
}

.service-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Appointment ***/
.appointment {
  background: linear-gradient(rgb(1 95 201 / 76%), rgb(1 95 201 / 58%)), url(../NEWIMAGES/contactbg.jpg) center center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item img {
 transition: .5s;
    padding: 0px 26px;
    /* margin-left: 41px; */
    width: 100%;
    height: 292px;
    object-fit: cover;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    bottom: 0;
    opacity: 1;
}

.team-item a.btn {
    color: var(--primary);
}

.team-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Testimonial ***/
.animated.pulse {
    animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    padding: 5px;
    border: 1px dashed var(--primary);
    border-radius: 10px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 10px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}


/*** Footer ***/
.footer {
    color: #A7A8B4;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #A7A8B4;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #A7A8B4;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: #A7A8B4;
    border: 1px solid#A7A8B4;
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}


/* New Changes Made By BS(25 April 2025) */

/* Hero Start */
.video-background-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Adjust height as needed */
    overflow: hidden;
  }

  .video-background-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* adjust the darkness of overlay */
    z-index: 2;
  }

  .video-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    top: 50%;
    left: 30%;
    transform: translateY(-50%);
    max-width: 600px;
    /* display: flex; */
    justify-content: center;
  }


  /*  */
  @-webkit-keyframes can {
    0% {
      transform: translateY(0);
    }
    26.6666666667% {
      transform: translateY(0);
      opacity: 1;
    }
    33.3333333333% {
      transform: translateY(-100%);
      opacity: 0;
    }
    33.3343333333% {
      transform: translateY(100%);
      opacity: 0;
    }
    33.3363333333% {
      transform: translateY(100%);
      opacity: 1;
    }
    93.3333333333% {
      transform: translateY(100%);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes can {
    0% {
      transform: translateY(0);
    }
    26.6666666667% {
      transform: translateY(0);
      opacity: 1;
    }
    33.3333333333% {
      transform: translateY(-100%);
      opacity: 0;
    }
    33.3343333333% {
      transform: translateY(100%);
      opacity: 0;
    }
    33.3363333333% {
      transform: translateY(100%);
      opacity: 1;
    }
    93.3333333333% {
      transform: translateY(100%);
    }
    100% {
      transform: translateY(0);
    }
  }
  @-webkit-keyframes will {
    0% {
      transform: translateY(0);
    }
    26.6666666667% {
      transform: translateY(0);
    }
    33.3333333333% {
      transform: translateY(-100%);
    }
    60% {
      transform: translateY(-100%);
      opacity: 1;
    }
    66.6666666667% {
      transform: translateY(-200%);
      opacity: 0;
    }
    66.6676666667% {
      transform: translateY(0);
    }
    66.6696666667% {
      transform: translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes will {
    0% {
      transform: translateY(0);
    }
    26.6666666667% {
      transform: translateY(0);
    }
    33.3333333333% {
      transform: translateY(-100%);
    }
    60% {
      transform: translateY(-100%);
      opacity: 1;
    }
    66.6666666667% {
      transform: translateY(-200%);
      opacity: 0;
    }
    66.6676666667% {
      transform: translateY(0);
    }
    66.6696666667% {
      transform: translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateY(0);
    }
  }
  @-webkit-keyframes thrive {
    0% {
      transform: translateY(-300%);
    }
    0.0001% {
      transform: translateY(0);
    }
    26.6666666667% {
      transform: translateY(0);
    }
    33.3333333333% {
      transform: translateY(-100%);
    }
    60% {
      transform: translateY(-100%);
    }
    66.6666666667% {
      transform: translateY(-200%);
    }
    93.3333333333% {
      transform: translateY(-200%);
      opacity: 1;
    }
    100% {
      transform: translateY(-300%);
      opacity: 0;
    }
  }
  @keyframes thrive {
    0% {
      transform: translateY(-300%);
    }
    0.0001% {
      transform: translateY(0);
    }
    26.6666666667% {
      transform: translateY(0);
    }
    33.3333333333% {
      transform: translateY(-100%);
    }
    60% {
      transform: translateY(-100%);
    }
    66.6666666667% {
      transform: translateY(-200%);
    }
    93.3333333333% {
      transform: translateY(-200%);
      opacity: 1;
    }
    100% {
      transform: translateY(-300%);
      opacity: 0;
    }
  }
  .containernew1 {
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .word {
    display: flex;
    grid-column: 2;
    grid-row: auto;
  }
  .word span {
    display: inline-block;
  }
  
  .can span:nth-child(1) {
    -webkit-animation: can 6s ease-in-out both 0.05s infinite;
            animation: can 6s ease-in-out both 0.05s infinite;
  }
  
  .will span:nth-child(1) {
    -webkit-animation: will 6s ease-in-out both 0.05s infinite;
            animation: will 6s ease-in-out both 0.05s infinite;
  }
  
  .thrive span:nth-child(1) {
    -webkit-animation: thrive 6s ease-in-out both 0.05s infinite;
            animation: thrive 6s ease-in-out both 0.05s infinite;
  }
  
  .can span:nth-child(2) {
    -webkit-animation: can 6s ease-in-out both 0.1s infinite;
            animation: can 6s ease-in-out both 0.1s infinite;
  }
  
  .will span:nth-child(2) {
    -webkit-animation: will 6s ease-in-out both 0.1s infinite;
            animation: will 6s ease-in-out both 0.1s infinite;
  }
  
  .thrive span:nth-child(2) {
    -webkit-animation: thrive 6s ease-in-out both 0.1s infinite;
            animation: thrive 6s ease-in-out both 0.1s infinite;
  }
  
  .can span:nth-child(3) {
    -webkit-animation: can 6s ease-in-out both 0.15s infinite;
            animation: can 6s ease-in-out both 0.15s infinite;
  }
  
  .will span:nth-child(3) {
    -webkit-animation: will 6s ease-in-out both 0.15s infinite;
            animation: will 6s ease-in-out both 0.15s infinite;
  }
  
  .thrive span:nth-child(3) {
    -webkit-animation: thrive 6s ease-in-out both 0.15s infinite;
            animation: thrive 6s ease-in-out both 0.15s infinite;
  }
  
  .can span:nth-child(4) {
    -webkit-animation: can 6s ease-in-out both 0.2s infinite;
            animation: can 6s ease-in-out both 0.2s infinite;
  }
  
  .will span:nth-child(4) {
    -webkit-animation: will 6s ease-in-out both 0.2s infinite;
            animation: will 6s ease-in-out both 0.2s infinite;
  }
  
  .thrive span:nth-child(4) {
    -webkit-animation: thrive 6s ease-in-out both 0.2s infinite;
            animation: thrive 6s ease-in-out both 0.2s infinite;
  }
  
  .can span:nth-child(5) {
    -webkit-animation: can 6s ease-in-out both 0.25s infinite;
            animation: can 6s ease-in-out both 0.25s infinite;
  }
  
  .will span:nth-child(5) {
    -webkit-animation: will 6s ease-in-out both 0.25s infinite;
            animation: will 6s ease-in-out both 0.25s infinite;
  }
  
  .thrive span:nth-child(5) {
    -webkit-animation: thrive 6s ease-in-out both 0.25s infinite;
            animation: thrive 6s ease-in-out both 0.25s infinite;
  }
  
  .can span:nth-child(6) {
    -webkit-animation: can 6s ease-in-out both 0.3s infinite;
            animation: can 6s ease-in-out both 0.3s infinite;
  }
  
  .will span:nth-child(6) {
    -webkit-animation: will 6s ease-in-out both 0.3s infinite;
            animation: will 6s ease-in-out both 0.3s infinite;
  }
  
  .thrive span:nth-child(6) {
    -webkit-animation: thrive 6s ease-in-out both 0.3s infinite;
            animation: thrive 6s ease-in-out both 0.3s infinite;
  }
  
  .title {
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, -webkit-max-content);
    grid-template-columns: repeat(2, max-content);
    grid-template-rows: auto;
    overflow: hidden;
    max-height: 6vw;
  }
  
  
  .title {
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 2.5vw;
    line-height: 6vw;
    letter-spacing: 3px;
  }
  .title .word{
    color: #0075bd;
  }

  /* Button Animation Start */
  .playbtn {
    position: relative;
    display: inline-block;
    padding: 25px 30px;
    margin: 40px 0;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.5s;
    font-weight: 600;
    letter-spacing: 4px;
    overflow: hidden;
  }
  .playbtn:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 5px #fff, 0 0 25px #fff, 0 0 50px #fff, 0 0 200px #fff;
    -webkit-box-reflect: below 1px linear-gradient(transparent, #0005);
  }
  
  .playbtn span {
    position: absolute;
    display: block;
  }
  
  .playbtn span:nth-child(1) {
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, transparent, #fff);
    animation: animate1 1s linear infinite;
  }
  
  @keyframes animate1 {
    0% {
      left: -100%;
    }
    50%,
    100% {
      left: 100%;
    }
  }
  
  .playbtn span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 10px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #fff);
    animation: animate2 1s linear infinite;
    animation-delay: 0.25s;
  }
  
  @keyframes animate2 {
    0% {
      top: -100%;
    }
    50%,
    100% {
      top: 100%;
    }
  }
  
  .playbtn span:nth-child(3) {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(270deg, transparent, #fff);
    animation: animate3 1s linear infinite;
    animation-delay: 0.5s;
  }
  
  @keyframes animate3 {
    0% {
      right: -100%;
    }
    50%,
    100% {
      right: 100%;
    }
  }
  
  .playbtn span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 10px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #fff);
    animation: animate4 1s linear infinite;
    animation-delay: 0.75s;
  }
  
  @keyframes animate4 {
    0% {
      bottom: -100%;
    }
    50%,
    100% {
      bottom: 100%;
    }
  }
  

  /* Button Animation End */

/* Hero End */

/* Our Process Start */

.listar-feature-item-wrapper {
  margin-bottom: 120px;
  padding-left: 27px;
  padding-right: 27px;
}

.listar-feature-item {
  height: calc(100% - 20px);
  position: relative;
}

.listar-feature-item.listar-feature-has-link
  ~ .listar-feature-fix-bottom-padding.listar-fix-feature-arrow-button-height {
  position: relative;
  display: block;
  width: 100%;
  height: 30px;
}

.listar-feature-item a {
  position: absolute;
  top: -12px;
  left: 15px;
  width: calc(100% - 30px);
  height: calc(100% + 4px);
  border-radius: 1000px;
  z-index: 10;
}

.listar-feature-with-image .listar-feature-item a:before {
  content: "";
  position: absolute;
  top: -74px;
  left: 50%;
  margin-left: -74px;
  width: 148px;
  height: 148px;
  border-radius: 1000px;
  z-index: 10;
}

.listar-feature-item:hover a:after {
  content: "";
  position: absolute;
  bottom: -37px;
  left: 50%;
  margin-left: -25px;
  width: 50px;
  height: 50px;
  border-radius: 1000px;
  z-index: 10;
  animation: ripple 0.7s linear infinite;
  box-shadow: 5px 5px 10px rgba(163, 177, 198, 0.6),
    -5px -5px 10px rgba(255, 255, 255, 0.5);
}


@keyframes ripple {
  0% {
        box-shadow: 0 0 0 0 rgba(163, 177, 198, 0.3), 0 0 0 1em rgba(163, 177, 198, 0.3), 0 0 0 3em rgba(163, 177, 198, 0.03), 0 0 0 5em rgba(163, 177, 198, 0.01);
  }
  100% {
    box-shadow: 0 0 0 1em rgba(163, 177, 198, 0.3), 0 0 0 3em rgba(163, 177, 198, 0.03), 0 0 0 5em rgba(163, 177, 198, 0.03), 0 0 0 8em rgba(163, 177, 198, 0.01);
  }
}



.listar-feature-item .listar-feature-item-inner {
  padding: 50px 30px;
  border-radius: 6px;
  z-index: 5;
  position: relative;
  height: 100%;
}

.listar-feature-item .listar-feature-item-inner {
  padding-top: 60px;
  padding-bottom: 60px;
}

.listar-feature-item .listar-feature-item-inner:before {
  border: 0;
  box-shadow: 120px 0px 150px rgba(80, 80, 80, 0.15),
    10px 0px 10px rgba(80, 80, 80, 0.02);
  border-radius: 1000px;
  background: rgba(255, 255, 255, 0);
  background: -moz-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  background: -webkit-gradient(
    left top,
    right top,
    color-stop(0%, rgba(255, 255, 255, 0)),
    color-stop(40%, rgba(255, 255, 255, 0)),
    color-stop(100%, rgba(255, 255, 255, 1))
  );
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  background: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  background: -ms-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#ffffff',GradientType=1);
}

.listar-feature-item .listar-feature-item-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.listar-feature-right-border {
  position: absolute;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  top: -12px;
  left: 50%;
  overflow: hidden;
}

.listar-feature-items {
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.listar-feature-right-border:before,
.listar-hovering-features
  .listar-feature-item
  a:hover
  ~ .listar-feature-item-inner
  .listar-feature-right-border:before {
  border: 11px solid #2f53bf;
}

.listar-feature-right-border:before,
.listar-hovering-features
  .listar-feature-item
  a:hover
  ~ .listar-feature-item-inner
  .listar-feature-right-border:before,
.listar-hovering-features-grey
  .listar-feature-item
  a:hover
  ~ .listar-feature-item-inner
  .listar-feature-right-border:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 11px solid #258bd5;
  border-radius: 800px;
  left: -50%;
}

.listar-feature-item .listar-feature-block-content-wrapper {
  position: relative;
  display: block;
  text-decoration: none;
  margin: -30px;
  padding: 30px;
  height: calc(100% + 100px);
}

.listar-features-design-2 .listar-feature-item-wrapper {
  margin-bottom: 120px;
  padding-left: 27px;
  padding-right: 27px;
}

.listar-feature-item.listar-feature-has-link .listar-feature-item-inner:after {
  content: "";
  background-color: #fff;
  z-index: 6;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
}

.listar-feature-icon-wrapper {
  width: 148px;
  height: 148px;
  line-height: 148px;
  border-radius: 500px;
  position: relative;
  background-color: #fff;
  box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.06);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  left: 50%;
  vertical-align: middle;
  margin-left: -74px;
  top: -66px;
  margin-top: -74px;
}

.listar-feature-icon-inner {
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 500px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.14);
  background: #fff;
}

.listar-feature-icon-inner div {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  display: inline-block;
  position: relative;
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: left;
}

.listar-feature-icon-inner img {
  position: relative;
  margin: 0 auto;
  vertical-align: middle;
  display: inline-block;
  width: auto;
  left: 50%;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
  height: 55px;
}

.listar-feature-item img,
.listar-feature-item i {
  position: relative;
  display: inline-block;
  border-bottom: 0;
  font-size: 40px;
  top: 0;
  padding: 0;
  color: #258bd5;
}

.listar-feature-with-image .listar-feature-content-wrapper {
  top: 0;
}
.listar-feature-content-wrapper {
  position: relative;
  margin-top: -15.5px;
}

.listar-feature-item .listar-feature-item-title {
  padding-top: 0;
  margin: 0 0 30px;
  text-align: center;
  line-height: 1.5;
}

.listar-feature-item
  .listar-feature-item-title.listar-feature-counter-added
  > span {
  margin-left: 25px;
  border-radius: 0 50px 50px 0;
}

.listar-feature-item .listar-feature-item-title > span {
  box-shadow: 15px 20px 30px rgba(80, 80, 80, 0.12),
    5px 0px 40px rgba(80, 80, 80, 0.1);
  padding: 10px 20px;
  display: inline-block;
  position: relative;
  background-color: #fff;
}

.listar-feature-item .listar-feature-item-title > span span {
  box-shadow: 15px 15px 30px rgba(80, 80, 80, 0.2),
    5px 0px 80px rgba(80, 80, 80, 0.15);
  padding: 10px 0;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 30px;
  white-space: nowrap;
  position: absolute;
  top: -3px;
  left: -40px;
  border-radius: 50px;
  background-color: #fff;
}

.listar-feature-item .listar-feature-item-title span {
  display: inline-block;
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
  text-shadow: none;
  border-radius: 50px;
  color: #0075bd;
  font-size: 20px;
  font-weight: 500;
}

.listar-feature-item-excerpt {
  padding: 0 20px;
}

.listar-feature-item-excerpt {
  color: #252525;
  position: relative;
  top: 0;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.pset {
  padding-top: 102px;
    padding-bottom: 0px;
}

.listar-map-button-text span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
  height: 44px;
  line-height: 1.6;
  padding: 10px 25px;
  box-shadow: 0 0 31px rgba(0, 0, 0, 0.65), 0 0 4px rgba(0, 0, 0, 0.06);
  border-radius: 50px;
  background-color: rgba(35, 40, 45, 0.9);
  color: #fff;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}

.listar-map-button-text span {
  background-color: #fff;
  color: #252525;
  text-shadow: none;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.listar-map-button-text span:after {
  border: 12px solid #fff;
}

.listar-map-button-text span:after {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  width: calc(100% + 28px);
  height: calc(100% + 28px);
  border-radius: 36px;
}

.listar-map-button:hover .listar-map-button-text span {
  padding: 10px 43px 10px 51px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.listar-feature-with-image .listar-feature-item a:before {
  content: "";
  position: absolute;
  top: -74px;
  left: 50%;
  margin-left: -74px;
  width: 148px;
  height: 148px;
  border-radius: 1000px;
  z-index: 10;
}

.listar-feature-item.listar-feature-has-link .listar-feature-item-inner:after {
  margin-left: -25px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  box-shadow: 10px 10px 40px rgba(80, 80, 80, 0.15),
    15px 15px 30px rgba(80, 80, 80, 0.05), 0 0 120px rgba(80, 80, 80, 0.6);
  bottom: -30px;
  background-image: url("https://image.flaticon.com/icons/svg/2316/2316674.svg");
  background-size: 40%;
  color: #555;
  line-height: 52px;
}

.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  /* align-self: flex-start; */
}



/* Our Process End */

.whatsapp-float img{
  width: 50px;
  position: fixed;
  bottom: 40px;
  left: 20px;
  border-radius: 10px;
   z-index: 1;
}
.colnew1{
  color: #FF8D5C;
}
.bg1{
  background-image: url(../NEWIMAGES/bg1.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.bg2{
  background: linear-gradient(#eef5ff59, #eef5ff30), url(../NEWIMAGES/bg1.png) center center no-repeat;
  background-size: cover;
}
.bgnew1{
  background-color: #eef5ff59;
}
.service-item:hover {
  box-shadow: 0 10px 45px rgb(1 95 201 / 21%);
}
.service-item:hover a.btn{
  color: #FFFFFF;
  background: var(--primary);
  border-color: var(--primary);
}

/* about start */

.aboutbgi{
  background-image: url(../NEWIMAGES/bgimg.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;

}
.about .about-img {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 10px;
}

.about .about-img .about-img-inner {
  position: absolute;
  left: 0; 
  bottom: 0; 
  border: 10px solid; 
  border-color: var(--bs-white) var(--bs-white) var(--bs-white) var(--bs-white);
  border-radius: 50%;

}

.about .about-img .about-experience {
  position: absolute;
  top: 125px; 
  left: -125px; 
  transform: rotate(-90deg);
  background: transparent;
  color: var(--bs-primary);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 4px;
}
.para{
  text-align: justify;
}
@media (max-width: 768px) {
  .about-img {
      padding-left: 0; /* Remove left padding for small screens */
      text-align: center; /* Center align content */
  }

  .about-img img {
      width: 90%; /* Reduce image width for smaller screens */
      height: auto; /* Maintain aspect ratio */
  }

  .about-experience {
      font-size: 14px; /* Reduce font size */
      padding: 5px 10px; /* Adjust padding */
      position: relative; /* Adjust positioning */
      display: inline-block;
      background: rgba(0, 0, 0, 0.7);
      color: white;
      border-radius: 5px;
      margin-top: 10px;
  }
  .py {
      padding-bottom: 0px;
  }
}
/* Common Hover Zoom-in Animation */
.vision-hover  img, .abt img,
.mission-hover img {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transform-origin: center center;
}

/* On Hover Zoom In */
.vision-hover:hover img, 
.abt:hover img,
.mission-hover:hover img {
  transform: scale(1.08);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.logo-slider {
  overflow: hidden;
  padding: 30px 0 0 0;
  white-space: nowrap;
  position: relative;
}

.logo-slider:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 45s slide infinite linear;
}

.logos-slide img {
  width: 183px;
  height: 83px;
  margin: 0 40px;
}

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

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

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}
.slider {
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: auto;
}
.slider .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}
.slider .slide {
  height: 100px;
  width: 250px;
}

/* causes section */
.info-card {
  position: relative;
  padding: 2rem;
  border-radius: 20px;
  background-color: #f8f9fa;
  color: #333;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-top: 10px solid  rgb(15, 26, 245);
  border-left: 10px solid  rgb(15, 38, 245);
  width: 40px;
  height: 40px;
  border-radius: 20px 0 0 0;
  transition: all 0.4s ease;
}

.info-card:hover {
  background-color: #00bdd9;
  color: #fff;
}

.info-card:hover::before {
  border-top: 10px solid #fff;
  border-left: 10px solid #fff;
}

.info-image {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.icon {
  font-size: 2rem;
  color: #3c6ffb;
}

.info-card:hover .icon{
  color: white;
}


.incard img {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transform-origin: center center;
}

/* On Hover Zoom In */

.incard:hover img {
  transform: scale(1.08);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.service-item img{
  width: 60px;
  height: 60px;
}
.service-item:hover {
  box-shadow: 0 0 45px rgb(45 45 45 / 32%)
}
.service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, .06);
}
.head-logo{
  width: 213px;
}
.headtitle{
  color:#0075bd;
}
.chairman-img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chairman-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.associatessec{
  min-height: 275px;
}
.associatessec p{
  text-align: justify;
}
/* .vsnimg{
  max-width: 32%;
} */
.ourproc{
  overflow-x: hidden;
  
 
}
.ourprocs{
  max-width: 500px;
}
.serbg{
  background-image: url(../NEWIMAGES/bg3.png);

}

.bg-black{
  background-color: #000000;
}

@media(max-width:768px){
  .video-background-container {
    position: relative;
    width: 100%;
    height: 78vh;
  }
  .containernew1{
    display: block;
  }
  .video-content{
    left: 0px;
  }
  .title {
    font-size: 2.1vw;
  }
  .playbtn {
    padding: 15px 30px;
    margin: 20px 0;
  }
  .head-logo {
    width: 159px;
}
}

.team-item span{
    color: black;
       font-size: 16px;
    font-weight: 500;
}
.w10{
  width: 30px;
}