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

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

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

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

.btn-md-square {
  width: 44px;
  height: 44px;
}

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

.btn-xl-square {
  width: 66px;
  height: 66px;
}

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

.btn.btn-primary {
  color: var(--bs-white);
}

.btn.btn-primary:hover {
  background: var(--bs-secondary);
  border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
  color: var(--bs-white);
}

.btn.btn-secondary:hover {
  background: var(--bs-primary);
  border: 1px solid var(--bs-primary);
}

.btn.btn-light {
  color: var(--bs-primary);
}

.btn.btn-light:hover {
  color: var(--bs-white);
  background: var(--bs-primary);
  border: 1px solid var(--bs-primary);
}

/*** Icon Animation Start ***/
@keyframes icon-animat {
  0% {
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  }

  25% {
    border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;
  }

  50% {
    border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;
  }

  75% {
    border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;
  }

  100% {
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  }
}
/*** Icon Animation End ***/

/*** Navbar Start ***/
.nav-bar {
  background: var(--bs-white);
}

.sticky-top {
  transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-right: 25px;
  padding: 35px 0;
  letter-spacing: 1px;
  color: var(--bs-dark);
  font-size: 17px;
  font-weight: 500;
  outline: none;
  transition: 0.5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--bs-dark);
}

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

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.sticky-top .navbar-light .navbar-brand img {
  max-height: 50px;
}

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

.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  margin-top: 8px !important;
  background: var(--bs-light);
  transition: 0.5s;
  opacity: 1;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    margin-top: 8px !important;
    transition: 0.5s;
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 8px 15px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }

  .sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 12px 0;
  }
}

/*** Navbar End ***/

/*** Carousel Header Start ***/
.carousel .carousel-item img {
  object-fit: cover;
}

.carousel .carousel-item,
.carousel .carousel-item img {
  height: 700px;
}

.carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
}

.carousel .carousel-indicators {
  left: 75%;
  top: 50%;
  margin-right: 25%;
  transform: translateY(-50%);
  flex-direction: column;
}

.carousel-indicators [data-bs-target] {
  display: flex;
  width: 15px;
  height: 15px;
  border: 6px solid var(--bs-white);
  border-radius: 15px;
  padding: 0;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: var(--bs-secondary);
  opacity: 1;
  transition: 0.5s;
}

.carousel-indicators [data-bs-target].active {
  background-color: var(--bs-primary);
}

@media (max-width: 992px) {
  .carousel-indicators [data-bs-target] {
    display: none;
  }
}
/*** Carousel Header End ***/
/*** Single Page Hero Header Start ***/
.hero-banner {
  position: relative;
  overflow: hidden;
  background: url();
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 160px 0; /* merged padding into one */
  transition: 0.5s;
}

/* Video Styling */
.hero-banner .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Make video fill area */
  z-index: -1; /* Keep video behind content */
}

/* Content over video */
.hero-content {
  position: relative;
  color: #fff; /* Text visible on video */
  text-align: center;
  z-index: 1;
}

.hero-banner .breadcrumb {
  position: relative;
}

.hero-banner .breadcrumb .breadcrumb-item a {
  color: var(--bs-white);
}

/*** Single Page Hero Header End ***/

/*** Features Start ***/
/* Section Base */
.bnb-service-section {
  background: linear-gradient(180deg, #f9fafc, #eef2f7);
  padding: 80px 0;
  position: relative;
}

/* Section Title */
.bnb-service-section h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
}




/* Service Item (Flow Style) */
.bnb-service-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.bnb-service-item:hover {
  border-left: 3px solid #4e54c8;
  padding-left: 10px;
}

/* Icon Style - Minimal Glow */
.bnb-service-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(78,84,200,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4e54c8;
  font-size: 22px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.bnb-service-item:hover .bnb-service-icon {
  transform: scale(1.1);
  background: rgba(78,84,200,0.2);
}

/* Text Content */
.bnb-service-item h5 {
  font-size: 1.1rem;
  margin: 0 0 3px 0;
  font-weight: 600;
  color: #222;
}

.bnb-service-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Central Image (Animated) */
.bnb-service-section img {
  max-height: 420px;
  border-radius: 15px;
  animation: float 4s ease-in-out infinite;
}
.col-xl-4 img:hover,
.col-xl-4:hover img {
  border: none !important;
  outline: none !important;
}
/* For Right Side Service Items */
.bnb-service-item.justify-content-end {
  border-left: none;          /* Remove left border */
  border-right: 3px solid transparent; /* Prepare right border */
  transition: all 0.3s ease;
}

.bnb-service-item.justify-content-end:hover {
  border-right: 3px solid #4e54c8; /* Show border on right hover */
  padding-right: 10px;             /* Add right padding on hover */
}
/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 991px) {
  .bnb-service-item {
    border-left: none;
    padding-left: 0;
  }
}

/*** Features End ***/

/*** About Us Section Start ***/
.about-us-section .about-service-box .about-service-icon {
  width: 90px;
  height: 90px;
  border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: var(--bs-primary);
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

.about-us-section .about-image-gallery {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.about-us-section .about-image-gallery .full-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers area proportionally */
  border-radius: 15px;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
}

/* Hover effect for interactivity */
.about-us-section .about-image-gallery:hover .full-img {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.about-us-section .text-box {
  position: relative;
  padding-left: 25px;
}

.about-us-section .text-box::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: var(--bs-secondary);
}

/*** About Us Section End ***/

/*** Fact Counter Start ***/
.counter {
  background: linear-gradient(rgba(0, 12, 33, 0.9), rgba(31, 46, 78, 0.9)),
    url(../img/fact-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.counter .counter-item .counter-item-icon {
  width: 90px;
  height: 90px;
  border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: var(--bs-primary);
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

/*** Fact Counter End ***/

/*** Services Start ***/
.service .service-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: var(--bs-white);
  transition: 0.5s;
}

.service .service-item:hover {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 60px;
  background: var(--bs-light);
}

.service .service-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: var(--bs-primary);
  border-radius: 10px;
  z-index: -1;
  transition: 0.5s;
  opacity: 0;
}

.service .service-item:hover::after {
  opacity: 1;
}

.service .service-item .service-icon {
  width: 90px;
  height: 90px;
  border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: var(--bs-primary);
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

/*** Service End ***/

/*** Cars Categories Start ***/
.categories .categories-item {
  position: relative;
  border: 1px solid var(--bs-secondary);
  border-radius: 10px;
  transition: 0.5s;
}

.categories .categories-item:hover {
  border: 1px solid var(--bs-primary);
}

.categories .categories-item .categories-item-inner {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: 0.5s;
}

.categories .categories-item .categories-item-inner:hover {
  box-shadow: 0 0 50px rgba(234, 0, 30, 0.3);
}

.categories .categories-item-inner .categories-img {
  background: var(--bs-light);
}

.categories .categories-item-inner .categories-content {
  border-top: 4px solid var(--bs-white);
  text-align: center;
  background: var(--bs-light);
}

.categories .categories-item-inner .categories-review {
  display: flex;
  align-items: center;
  justify-content: center;
}

.categories-carousel .owl-stage-outer {
  margin-top: 65px;
  margin-right: -1px;
}

.categories-carousel .owl-nav .owl-prev,
.categories-carousel .owl-nav .owl-next {
  position: absolute;
  top: -65px;
  padding: 10px 35px;
  color: var(--bs-white);
  background: var(--bs-primary);
  border-radius: 50px;
  transition: 0.5s;
}

.categories-carousel .owl-nav .owl-prev {
  left: 0 !important;
}

.categories-carousel .owl-nav .owl-next {
  right: 0;
}

.categories-carousel .owl-nav .owl-prev:hover,
.categories-carousel .owl-nav .owl-next:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}
/*** Cars Categories End ***/

/*** Process Start ***/
/* Scope under your .steps section */
.steps .steps-item {
  position: relative;
  background: var(--bs-secondary);
  border-radius: 10px; 
  overflow: hidden;
  padding: 2rem 1rem;
  cursor: pointer;
  /* prepare for flipping */
  transform-style: preserve-3d;
  perspective: 600px;
}

/* Number badge, centered */
.steps .steps-item .steps-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bs-white);
  text-align: center;
  display: block;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(0) rotateX(0);
  backface-visibility: hidden;
}

/* Title & description hidden initially */

.steps .steps-item p {
  opacity: 0;
  transform: translateY(20px) rotateX(-90deg);
  transform-origin: top;
  transition: opacity 0.4s ease 0.2s,
              transform 0.4s ease 0.2s;
  backface-visibility: hidden;
  color: var(--bs-white);
}

/* On hover: fade out number, flip up and fade in content */
.steps .steps-item:hover .steps-number {
  opacity: 0;
  transform: translateY(-20px) rotateX(90deg);
}

.steps .steps-item:hover h4,
.steps .steps-item:hover p {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

/* Spacing after reveal */
.steps .steps-item h4 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.steps .steps-item p {
  font-size: 0.95rem;
  line-height: 1.4;
}

/*** Process End ***/

@import url("https://fonts.googleapis.com/css2?family=Caudex&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Caudex", sans-serif;
}

/* Background similar to IT section */
.bnb-process-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(https://cdn.pixabay.com/photo/2015/01/08/18/11/laptops-593296_1280.jpg);
              
  background-size: cover;
  padding: 80px 0;
  transition: 0.5s;
}

/* Blur and scale effect on hover parent */
.bnb-process-section:hover .card {
  filter: blur(5px);
  transform: scale(0.7);
}

.bnb-process-section .card {
  position: relative;
  width: 250px;
  height: 300px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  margin: 20px;
}

/* Focused card hover */
.bnb-process-section .card:hover {
  filter: blur(0);
  transform: scale(1);
  z-index: 1;
}

/* White overlay and dark background on hover */
.bnb-process-section .card:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1;
  transition: 0.5s;
}

.bnb-process-section .card:hover:before {
  background: #786c7d;
  transform: scaleY(1.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Glossy overlay */
.bnb-process-section .card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.bnb-process-section .card:hover:after {
  transform: scaleY(1.15);
}

/* Content style */
.bnb-process-section .card .content {
  text-align: center;
  z-index: 2;
  padding: 0 20px;
  transition: 0.5s;
}

.bnb-process-section .card:hover .content {
  color: #fff;
}

.bnb-process-section .card .content h2 {
  font-size: 3em;
}

.bnb-process-section .card .content p {
  font-size: 0.9em;
  margin-top: 10px;
}

.bnb-process-section .card .content a {
  display: inline-block;
  margin-top: 15px;
  padding: 5px 10px;
  background: #262626;
  color: #fff;
  text-decoration: none;
}

.bnb-process-section .card:hover .content a {
  background: #2196f3;
}

/*** Blog Start ***/
.blog .blog-item {
  border-radius: 10px;
  transition: 0.5s;
}

.blog .blog-item:hover {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.blog .blog-item .blog-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
  height: 100%;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
  transform: scale(1.2);
}

.blog .blog-item .blog-content {
  position: relative;
  background: var(--bs-light);
}

.blog .blog-item .blog-content .blog-date {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  padding: 12px 25px;
  border-radius: 10px;
  color: var(--bs-white);
  background: var(--bs-primary);
}

.blog .blog-item .blog-content .blog-comment {
  display: flex;
  justify-content: space-between;
}
/*** Blog End ***/

/*** Banner Start ***/
.bnb-banner .bnb-banner-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: 0.5s;
  z-index: 1;
}

.bnb-banner .bnb-banner-card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.bnb-banner .bnb-banner-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  padding: 25px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  z-index: 5;
}

@media (min-width: 992px) {
  .bnb-banner .bnb-banner-content h2 {
    font-size: 45px;
    margin-bottom: 20px;
  }

  .bnb-banner .bnb-banner-content h1 {
    font-size: 72px;
    margin-bottom: 20px;
  }

  .bnb-banner .bnb-banner-content p {
    font-size: 40px;
    margin-bottom: 20px;
  }
}

/*** Banner End ***/

/*** Team Start ***/
.team .team-item {
  position: relative;
  text-align: center;
  border-radius: 10px;
  margin-top: 100px;
  background: var(--bs-light);
  transition: 0.5s;
  z-index: 1;
}

.team .team-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  background: var(--bs-secondary);
  z-index: 2;
  transition: 0.5s;
}

.team .team-item:hover::after {
  height: 100%;
}

.team .team-item .team-content {
  position: relative;
  z-index: 5;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
  transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
  color: var(--bs-white);
}
.team .team-item:hover .team-content p {
  color: var(--bs-white);
}

.team .team-item .team-img {
  position: relative;
  overflow: hidden;
  top: -100px;
  margin-bottom: -100px;
  border-radius: 10px;
  z-index: 3;
}

.team .team-item .team-img img {
  transition: 0.5s;
}

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

.team .team-item .team-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 4;
  transition: 0.5s;
}

.team .team-item:hover .team-img::after {
  height: 100%;
}
/* Horizontal layout for first two members */
.team-horizontal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bs-light);
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-horizontal.reverse {
  flex-direction: row-reverse;
  text-align: right;
}

.team-horizontal-img {
  flex: 0 0 40%;
  max-width: 40%;
}

.team-horizontal-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.team-horizontal-content {
  flex: 0 0 55%;
}

.team-horizontal-content h5 {
  font-weight: bold;
  margin-bottom: 5px;
}

.team-horizontal-content p {
  margin-bottom: 10px;
  color: #6c757d;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--bs-secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.social-icons a:hover {
  background: var(--bs-primary);
}


/*** Team End ***/
/*** Testimonial Start ***/

.bb_testimonial-carousel .owl-stage-outer {
  margin-right: -1px;
}

.bb_testimonial .bb_testimonial-item {
  position: relative;
  margin-top: 35px;
  border: 1px solid var(--bs-secondary);
  border-radius: 10px;
}

.bb_testimonial .bb_testimonial-item .testimonial-quote {
  position: absolute;
  width: 70px;
  height: 70px;
  top: 0;
  right: 25px;
  transform: translateY(-50%);
  border-radius: 70px;
  color: var(--bs-white);
  background: var(--bs-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bb_testimonial .bb_testimonial-item .bb_testimonial-inner {
  display: flex;
  align-items: center;
  background: var(--bs-light);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.bb_testimonial .bb_testimonial-item .bb_testimonial-inner img {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  border: 4px solid var(--bs-white);
}

.bb_testimonial-carousel .owl-dots {
  display: flex;
  justify-content: center;
}

.bb_testimonial-carousel .owl-dots .owl-dot {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  margin: 20px 10px 0 10px;
  background: var(--bs-primary);
  transition: 0.5s;
}

.bb_testimonial-carousel .owl-dots .owl-dot.active {
  background: var(--bs-secondary);
}

.bb_testimonial-carousel .owl-dots .owl-dot span {
  position: relative;
  margin-top: 50%;
  margin-left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bb_testimonial-carousel .owl-dots .owl-dot span::after {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background: var(--bs-white);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: 0.5s;
}

.bb_testimonial-carousel .owl-dots .owl-dot.active span::after {
  background: var(--bs-primary);
}
.bb_testimonial-carousel .owl-item {
  transition: 0.5s;
  filter: blur(3px);
  transform: scale(0.9);
  opacity: 0.5;
}

.bb_testimonial-carousel .owl-item.center {
  filter: blur(0);
  transform: scale(1.05);
  opacity: 1;
  z-index: 1;
}

/*** Testimonial End ***/

/* Reach Us Section */
.reach-us .reach-add-item {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-light);
}

.reach-us .reach-add-item .reach-icon {
  width: 90px;
  height: 90px;
  border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: var(--bs-primary);
  animation-name: icon-float;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

/*** Footer Start ***/
.bb_footer {
  background: var(--bs-dark);
}

.bb_footer .bb_footer-item a {
  line-height: 35px;
  color: var(--bs-body);
  transition: 0.5s;
  
}

.bb_footer .bb_footer-item p {
  line-height: 35px;
}

.bb_footer .bb_footer-item a:hover {
  letter-spacing: 1px;
  color: var(--bs-primary);
}

/* Social Icon Buttons */
.bb_footer .bb_footer-item .bb_footer-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;      /* same width */
  height: 35px;     /* same height */
  border-radius: 50%;
  background: #222; /* or your color */
  color: #fff;
  font-size: 16px;  /* smaller icons */
  margin: 5px;
  transition: 0.5s;
}

.bb_footer .bb_footer-item .bb_footer-btn a i {
  font-size: 16px;  /* icon size */
  line-height: 1;
  transition: 0.5s;
}

.bb_footer .bb_footer-item .bb_footer-btn a:hover {
  background: var(--bs-white);
}

.bb_footer .bb_footer-item .bb_footer-btn a:hover i {
  color: var(--bs-primary) !important;
}


/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  background: var(--bs-dark);
}
/*** copyright end ***/

/* Social icon brand hover colors */
.facebook:hover {
  background-color: #3b5998 !important; /* Facebook Blue */
  color: #fff !important;
  border-color: #3b5998 !important;
}
.facebook:hover i {
  color: #fff !important;
}

.twitter:hover {
  background-color: #000000 !important; /* Twitter Blue */
  color: #fff !important;
  border-color: #000000 !important;
}
.twitter:hover i {
  color: #fff !important;
}

.instagram:hover {
  background-color: #e4405f !important; /* Instagram Pink */
  color: #fff !important;
  border-color: #e4405f !important;
}
.instagram:hover i {
  color: #fff !important;
}

.linkedin:hover {
  background-color: #0077b5 !important; /* LinkedIn Blue */
  color: #fff !important;
  border-color: #0077b5 !important;
}
.linkedin:hover i {
  color: #fff !important;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.9);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(15, 15, 15, 0.6),
    rgba(0, 0, 0, 0.4)
  );
  z-index: 1;
}
/* Hero Section */
.bnb-header {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 5%;
  z-index: 2;
}

.split-container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5%;
  max-width: 1400px;
  width: 100%;
  color: white;
}

.hero-text-box {
  flex: 1;
  max-width: 650px;
}

.hero-heading {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.3;
  animation: slideLeft 1s ease-out forwards;
}

.gradient-text {
  background: linear-gradient(90deg, #f308ff, #c002eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 3rem;
}

.hero-desc {
  font-size: 1.2rem;
  margin: 20px 0;
  animation: slideLeft 1.2s ease-out forwards;
}

.hero-action-btn {
  padding: 12px 28px;
  background-color: #007bff;
  border: none;
  font-size: 1rem;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
  animation: slideLeft 1.4s ease-out forwards;
}

.hero-action-btn:hover {
  background-color: #0056b3;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.7);
}

/* Animations */
@keyframes slideLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .split-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text-box {
    max-width: 100%;
  }

  .hero-heading {
    font-size: 2.2rem;
  }

  .hero-desc {
    font-size: 1rem;
  }
}

/* ABOUT US SECTION */
#about {
  font-family: "Outfit", sans-serif;
}

.section-title {
  color: #6a1b9a;
  font-weight: 700;
}

h3.fw-bold {
  color: #1a1a40;
}

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

h6.text-primary {
  color: rgb(0, 68, 128) !important;
}

.img-fluid {
  border: 2px solid #fff5ec;
  transition: 0.3s ease-in-out;
}

.img-fluid:hover {
  border-color: #ff6b6b;
  transform: scale(1.03);
}

.btn-primary {
  background-color: #ff6b6b;
  border-color: #ff6b6b;
  color: #fff;
  transition: 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color: #1a1a40;
  border-color: #1a1a40;
  color: #fff;
}

.core-card {
  background: #fff5ec;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 20px;
  transition: 0.3s;
  height: 100%;
  border-top: 3px solid #ff6b6b;
}

.core-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-top-color: #1a1a40;
}

.core-card h6 {
  color: #ff6b6b;
  font-weight: 600;
}

.core-card img {
  filter: grayscale(30%);
  transition: 0.3s;
}

.core-card:hover img {
  filter: none;
}

.core-card p {
  color: #444;
}

.fw-semibold {
  color: #1a1a40;
}

small.text-muted {
  color: #666 !important;
}
@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
}

@keyframes callPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
  }
}

.whatsapp-button:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
  background-color: #128c7e;
}

/* Mega Dropdown Styles */
.mega-dropdown {
  position: absolute !important;
  top: 100% !important;
  left: 30% !important;
  transform: translateX(-50%) !important;
  width: 100vw !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 40px 0;
  border: none;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  backdrop-filter: blur(10px);
  animation: dropdownSlideDown 0.3s ease-out;
  z-index: 1050;
}

@keyframes dropdownSlideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.dropdown-section {
  padding: 20px 30px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.dropdown-section:last-child {
  border-right: none;
}

.dropdown-section:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}

.dropdown-header {
  font-size: 1.1rem;
  color: #667eea !important;
  border-bottom: 2px solid #667eea;
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
}

.dropdown-header::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transition: width 0.3s ease;
}

.dropdown-section:hover .dropdown-header::after {
  width: 100%;
}

.dropdown-item {
  padding: 12px 15px;
  margin: 5px 0;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: #495057;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.dropdown-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(102, 126, 234, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.dropdown-item:hover::before {
  left: 100%;
}

.dropdown-item i {
  transition: all 0.3s ease;
}

.dropdown-item:hover i {
  transform: scale(1.2) rotate(10deg);
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .mega-dropdown {
    position: relative !important;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
  }

  .dropdown-section {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
  }

  .dropdown-section:last-child {
    border-bottom: none;
  }
}

/* Hover effect for the Services nav item */
.nav-item.dropdown:hover .nav-link {
  color: #667eea !important;
  transform: translateY(-2px);
}

.nav-item.dropdown .nav-link {
  transition: all 0.3s ease;
}
/* Company Principles Section */
.principle-section {
  padding: 80px 20px;
  background: linear-gradient(to right top, #dbe9f4, #fef9f8);
}

.principle-heading {
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.principle-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.principle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.principle-icon {
  width: 50px;
  height: auto;
  margin-bottom: 15px;
  align-self: center;
}

.principle-title {
  margin-top: 10px;
  font-weight: 600;
  color: #333;
}

.principle-text {
  font-size: 0.95rem;
  color: #666;
  margin-top: 10px;
}

/* About section image overlap styles - Optimized for performance */
.image-overlap-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  height: 300px;
}

.overlap-image {
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.img-1 {
  position: relative;
  z-index: 2;
  margin-right: -30px;
}

.img-2 {
  position: relative;
  z-index: 1;
}

.overlap-image:hover {
  transform: scale(1.02);
  z-index: 5;
}
.bnb-partner-section {
  padding: 80px 20px;
  background: linear-gradient(145deg, #ffffff, #e3f2fd);
  text-align: center;
  box-shadow: inset 0 2px 12px rgba(0, 0, 0, 0.05);
}

.bnb-partner-section h5 {
  font-size: 2rem;
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 20px;
}

.bnb-partner-section p {
  color: #555;
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto 15px;
  line-height: 1.6;
}

/* About Us Section Image Grid Sizing */
.about-img-top {
  height: 180px;
  width: 100%;
  object-fit: cover;
}
.about-img-bottom {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .about-img-top,
  .about-img-bottom {
    height: 120px;
  }
}

.footer .btn.btn-md-square {
  transition: transform 0.2s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.2s;
}
.footer .btn.btn-md-square:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.topbar .btn.btn-md-square {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.2s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.2s;
  padding: 0;
}
.topbar .btn.btn-md-square i {
  font-size: 1.1rem;
}
.topbar .btn.btn-md-square:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

/* Our Clients Carousel Styles */
.clients-carousel .client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  transition: transform 0.4s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.3s;
  filter: grayscale(60%);
}
.clients-carousel .client-logo-item img {
  max-height: 70px;
  width: auto;
  transition: transform 0.4s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.3s;
}
.clients-carousel .center .client-logo-item,
.clients-carousel .client-logo-item.centered {
  transform: scale(1.25);
  z-index: 2;
  filter: grayscale(0%);
  /* Remove box-shadow, background, border-radius */
}

/* Hide nav/dots for clean look */
.clients-carousel .owl-nav,
.clients-carousel .owl-dots {
  display: none !important;
}

@media (max-width: 767.98px) {
  .clients-carousel .client-logo-item {
    height: 70px;
  }
  .clients-carousel .client-logo-item img {
    max-height: 40px;
  }
}
.bb_marquee-wrapper {
  overflow: hidden;
  position: relative;
}

.bb_marquee {
  display: flex;
  width: max-content;
  animation: bb_scroll 25s linear infinite;
}

.bb_marquee:hover {
  animation-play-state: paused;
}

.bb_marquee img {
  height: 80px;
  margin: 0 30px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(0%);
}

.bb_marquee img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

@keyframes bb_scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.bb_gap {
  height: 40px;
}

@media (max-width: 768px) {
  .bb_marquee img {
    height: 60px;
    margin: 0 15px;
  }
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.bb-clients-sec .bb-marquee img {
  filter: none !important;
  -webkit-filter: none !important;
}

.bb-marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.bb-marquee {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-horizontal 25s linear infinite;
}

.bb-marquee img {
  height: 80px;
  margin: 0 30px;
  vertical-align: middle;
  transition: transform 0.3s;
  filter: grayscale(0%);
}

.bb-marquee img:hover {
  transform: scale(1.1);
}

@keyframes scroll-horizontal {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Ensure testimonial carousel and items are fully visible and not cut */
.owl-carousel,
.owl-carousel .owl-stage-outer,
.owl-carousel .owl-stage {
  overflow: visible !important;
  height: auto !important;
  min-height: 0 !important;
}

.owl-carousel .testimonial-item {
  max-width: 540px;
  margin: 0 auto;
  padding: 20px 40px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(80, 80, 160, 0.08);
  box-sizing: border-box;
  filter: blur(3px) grayscale(30%);
  opacity: 0.7;
  transform: scale(0.92);
  transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.owl-carousel .center .testimonial-item {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 4px 32px rgba(80, 80, 160, 0.15);
  z-index: 2;
}

.owl-carousel .testimonial-item img {
  max-width: 80px;
  height: auto;
  border-radius: 12px;
}
.fab-right-group {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.18), 0 0 0 0 transparent;
  transition: all 0.2s, box-shadow 0.4s;
  font-size: 1.4rem;
  padding: 0;
  position: relative;
  outline: none;
}
.fab-btn.whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 0 12px 2px #25d36655;
}
.fab-btn.call {
  background: #007bff;
  color: #fff;
  box-shadow: 0 0 12px 2px #007bff55;
}
.fab-btn-arrow {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 1000;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #421430 ;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: #421430 ;
  font-size: 1.4rem;
  transition: all 0.2s, box-shadow 0.4s;
}
.fab-btn:hover,
.fab-btn:focus {
  transform: scale(1.12);
  filter: brightness(1.1);
}
.fab-btn.whatsapp:hover,
.fab-btn.whatsapp:focus {
  box-shadow: 0 0 24px 6px #25d366cc, 0 0 0 0 #25d366;
}
.fab-btn.call:hover,
.fab-btn.call:focus {
  box-shadow: 0 0 24px 6px #007bffcc, 0 0 0 0 #007bff;
}
.fab-btn-arrow:hover,
.fab-btn-arrow:focus {
  background:#421430 ;
  transform: scale(1.12);
  box-shadow: #421430 ;
}

/* Tooltip styles */
.fab-btn[data-tooltip]::after,
.fab-btn-arrow[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 110%;
  top: 50%;
  transform: translateY(-50%) scale(0.95);
  background: #222;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  font-size: 0.95rem;
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  margin-right: 8px;
}
.fab-btn[data-tooltip]:hover::after,
.fab-btn[data-tooltip]:focus::after,
.fab-btn-arrow[data-tooltip]:hover::after,
.fab-btn-arrow[data-tooltip]:focus::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.fab-btn.whatsapp[data-tooltip]::after {
  background: #25d366;
  color: #fff;
}
.fab-btn.call[data-tooltip]::after {
  background: #007bff;
  color: #fff;
}
.fab-btn-arrow[data-tooltip]::after {
  background: #764ba2;
  color: #fff;
}

/* Social icon hover effects for topbar and footer */
.topbar-social-btn:hover,
.topbar-social-btn:focus,
.btn.btn-md-square:hover,
.btn.btn-md-square:focus {
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  filter: brightness(1.1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Special hover for X (Twitter) icon */
.topbar-social-btn[style*="#000000"]:hover,
.btn.btn-md-square[style*="#000000"]:hover {
  background: #222 !important;
}
.social-btn:hover,
.social-btn:focus,
.btn.btn-md-square:hover,
.btn.btn-md-square:focus {
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  filter: brightness(1.1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 
rocket animation */


.split-image-container {
  width: 100%;
  max-width: 400px;
  margin: auto;
  perspective: 800px;
}

.split-wrapper {
  width: 100%;
  height: 400px;
  position: relative;
  transform-style: preserve-3d;
}

.slice {
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(100% / 50); /* 50 slices */
  background-repeat: no-repeat;
  background-size: 100% 100%;
  animation: turner 20s infinite;
}

@keyframes turner {
  0%, 10%   { transform: rotateY(0deg); }
  50%, 60%  { transform: rotateY(360deg); }
  100%      { transform: rotateY(0deg); }
}

/* Two members of the team section */
    .team-container {
      display: flex;
      gap: 30px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .team-card1 {
      display: flex;
      flex-direction: row;
      width: 500px;
      background-color: #fff;
      border-radius: 16px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .team-card1:hover {
      transform: translateY(-5px);
    }

    .team-photo {
      width: 50%;
      object-fit: cover;
      height: 100%;
    }

    .team-info {
      width: 50%;
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background-color: #fafafa;
    }

    .team-info h4 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .team-info p {
      font-size: 14px;
      color: #666;
      margin-bottom: 15px;
    }

    .social-icons1 a {
      color: #555;
      font-size: 18px;
      margin-right: 12px;
      transition: color 0.3s;
    }

    .social-icons1 a:hover {
      color: #007bff;
    }

    @media (max-width: 768px) {
  .team-card1 {
    width: 100%;
    flex-direction: column;
  }

  .team-photo,
  .team-info {
    width: 100%;
  }

  .team-photo {
    height: auto;         /* Let the image height adjust naturally */
    object-fit: contain;  /* Prevents cropping on small screens */
  }
}

.bb_marquee-wrapper {
  overflow: hidden;
  width: 100%;
  margin-bottom: 20px;
}

.bb_marquee {
  display: flex;
}

/* Each item (image + name) */
.bb_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 20px;
}

.bb_item img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.bb_item p {
  margin-top: 8px;
  font-size: 16px;
  color: #000000;
  text-align: center;
  font-weight: 500;
}

/* Top row moves left */
.marquee-left {
  animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Bottom row moves right */
.marquee-right {
  animation: scroll-right 20s linear infinite;
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Chatbot Button */
    #chatbot-toggle {
      position: fixed;
      left: 20px;
      bottom: 20px;
      background: var(--chat--secondary);
      border-radius: 50%;
      width: 55px;
      height: 55px;
      font-size: 24px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      cursor: pointer;
      z-index: 1000;
      transition: all 0.3s ease;
      color: white;
    }
    /* Chatbot Container */
    #chatbot-container {
      position: fixed;
      bottom: 90px;
      left: 20px;
      width: 320px;
      max-height: 500px;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      border: 2px solid var(--chat--primary);
      display: none;
      flex-direction: column;
      z-index: 1000;
      overflow: hidden;
      animation: slideUp 0.4s ease;
    }
    /* Slide-in animation */
    @keyframes slideUp {
      from { transform: translateY(30px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    /* Header */
    #chatbot-header {
      background: var(--chat--primary);
      color: black;
      padding: 12px;
      font-weight: bold;
      text-align: center;
    }
    /* Content area */
    #chatbot-content {
      display: flex;
      flex-direction: column;
      height: 400px;
      overflow: hidden;
    }
    /* Message bubbles */
    #chatbot-messages {
      flex: 1;
      padding: 10px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .message {
      max-width: 80%;
      padding: 10px 14px;
      border-radius: 16px;
      font-size: 14px;
      line-height: 1.4;
      animation: fadeIn 0.3s ease;
    }
    .bot {
      background: #eef8ff;
      align-self: flex-start;
      border-top-left-radius: 4px;
    }
    .user {
      background: var(--chat--secondary);
      color: white;
      align-self: flex-end;
      border-top-right-radius: 4px;
    }
    /* Questions List */
    #chatbot-questions {
      background: #f8f8f8;
      padding: 10px;
      overflow-y: auto;
      max-height: 140px;
      border-top: 1px solid #ddd;
    }
    #chatbot-questions button {
      display: block;
      width: 100%;
      background: white;
      color: #333;
      border: 1px solid #ccc;
      padding: 8px 12px;
      margin-bottom: 6px;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    #chatbot-questions button:hover {
      background: var(--chat--primary);
      color: #000;
      border-color: var(--chat--primary);
    }
    /* Scrollbar */
    #chatbot-questions::-webkit-scrollbar,
    #chatbot-messages::-webkit-scrollbar {
      width: 6px;
    }
    #chatbot-questions::-webkit-scrollbar-thumb,
    #chatbot-messages::-webkit-scrollbar-thumb {
      background: var(--chat--primary);
      border-radius: 10px;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }
    /* General button styling */
  #chatbot-messages button {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  /* Yes button style */
  #chatbot-messages button#yes-btn {
    background-color: #28a745;
    color: white;
    box-shadow: 0 4px 6px rgba(40, 167, 69, 0.2);
  }
  #chatbot-messages button#yes-btn:hover {
    background-color: #218838;
    transform: scale(1.05);
  }

  /* No button style */
  #chatbot-messages button#no-btn {
    background-color: #dc3545;
    color: white;
    box-shadow: 0 4px 6px rgba(220, 53, 69, 0.2);
  }
  #chatbot-messages button#no-btn:hover {
    background-color: #c82333;
    transform: scale(1.05);
  }

  /* Disabled button style */
  #chatbot-messages button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }