/*** 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;
}
/* partner ui start  */

.partner-main {
  font-family: Arial, sans-serif;
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
}
.container-partner {
  max-width: 1200px;
  padding: 20px;
  text-align: center;
}
h2 {
  /* color: #d37a59; */
  /* font-size: 24px; */
  margin-bottom: 20px;
}
.services-partner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.service-box {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-box img {
  width: 50px;
  height: 50px;
  fill: red;
}
@media (min-width: 768px) {
  .services-partner {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .services-partner {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* partner ui end */
/* retail start  */
.main-retail {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  background-color: white;
}

.container-retail {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 20px;
  background: white;
  padding: 32px;
  /* border-radius: 8px; */
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}
.main-content {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: center;
  gap: 15px;
  width: 100%;
  justify-content: space-between;
}
.image-section {
  flex: 2;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.image-section img {
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
}
.text-section {
  flex: 2;
  text-align: center;
  margin-top: 15px;
  padding: 32px;
}
.text-section h2 {
  color: black;
  font-weight: bold;
  text-align: start;
}
.retail-p {
  color: #413f3f;
  text-align: justify;
}
.services {
  flex: 1;
  margin-left: 20px;
  background: #fff;
  max-height: fit-content;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.services ul {
  list-style: none;
  padding: 0;
}
.services ul li {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  margin-top: 25px;
  font-weight: bold;
  font-size: 20px;
}
#services-section ul li a {
  text-decoration: none;
  color: black;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}
#services-section ul li a:hover {
  color: rgb(210, 32, 32);
}
.services ul li img {
  width: 100px;
  height: 60px;
  margin-right: 15px;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .main-content {
    flex-direction: column;
    align-items: center;
  }
  .image-section {
    flex: 1 1 100%;
  }
  .text-section {
    flex: 1 1 100%;
    text-align: center;
  }
  .services {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }
}

/* retail end  */

/*** 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);
}
.flex-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 10px;
}

.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);
}
/*** Topbar Start ***/

/* connect with us start */

.connect-container {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
}

.content {
  flex: 1 1 60%;
  padding: 20px;
}

.content h2 {
  font-size: 2rem;
  color: #333;
}

.content h2 span {
  color: #e91e63;
}

.content hr {
  width: 80px;
  height: 3px;
  background-color: #e91e63;
  border: none;
  margin: 10px 0;
}

.content p {
  margin-bottom: 15px;
  color: #555;
}

.form-container {
  flex: 1 1 35%;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.form-container p {
  margin-bottom: 20px;
  color: #666;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

form button {
  padding: 10px;
  background-color: #e91e63;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

form button:hover {
  background-color: #d81b60;
}
@media (max-width: 768px) {
  .connect-container {
    flex-direction: column;
  }

  .content {
    flex: 1 1 100%;
  }

  .form-container {
    flex: 1 1 100%;
  }
}
/* connect with us end */

/* FAQ start  */
.faq-body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  /* min-height: 100vh; */
}
.faq-container {
  width: 68%;
  /* max-width: 700px; */
  /* background: white; */

  padding: 20px;
  /* border-radius: 10px; */
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}
.faq-item {
  border-bottom: 1px solid #ddd;
  margin-top: 25px;
  gap: 25px;
  background: white;
}
.faq-question {
  width: 100%;
  background: none;

  border: none;
  text-align: left;
  font-size: 18px;
  cursor: pointer;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: #7d2ae8;
  transition: 0.3s;
}
.faq-question:hover {
  color: #d63384;
}
.faq-answer {
  display: none;
  padding: 15px;
  font-size: 16px;
  background: #f4f4f4;
}
.faq-question .arrow {
  transition: transform 0.3s ease;
  font-size: 20px;
  color: #7d2ae8;
}
.open .arrow {
  transform: rotate(180deg);
}
.open .faq-answer {
  display: block;
}
/* FAQ end  */

/* join our team start */
.container-joinUs {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}
.parent-div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  /* border-radius: 20px; */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  padding: 20px;
  width: 100%;
  /* max-width: 1200px; */
  gap: 20px;
}

/* Image Div */
.image-div {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-div img {
  max-width: 100%;
  height: auto;
  animation: dropDown 2s infinite ease-in-out;
}

@keyframes dropDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
}

/* Text Div */
.text-div {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  /* cursor: pointer; */
}

.text-div h2 {
  font-size: 32px;
}

.text-div p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

.content .item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.content .item img {
  width: 40px;
  height: 40px;
  transition: filter 0.3s;
}

.content .item h4 {
  font-size: 18px;
  font-weight: bold;
  color: black;
  margin-bottom: 5px;
  transition: color 0.3s;
}

.content .item p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.content .item .hovers:hover {
  /* filter: brightness(0.6); */
  /* border: 2px solid #e91e63;  */
  color: #e91e63;
  /* background-color: purple; */
  cursor: pointer;
  /* transition: color 0.3s, transform 0.3s; 
    transform: scale(1.4);  */
}

.content .item .hovers {
  color: #ff5500;
}
.content .item:hover h4 {
  color: #e91e63;
  cursor: pointer;
  /* transition: color 0.3s; */
}

.text-div .join-btn {
  padding: 10px 20px;
  background-color: #e91e63;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.text-div .join-btn:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .parent-div {
    flex-direction: column;
    text-align: center;
  }

  .text-div {
    align-items: center;
  }

  .text-div .join-btn {
    align-self: center;
  }
}
/* join our team end */
/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-right: 25px;
  padding: 35px 0;
  color: var(--bs-white);
  font-size: 17px;
  font-weight: 400;
  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: 110px;
  transition: 0.5s;
  filter: brightness(2); /* Brightness increase */
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 110px;
  filter: brightness(1.8); /* Brightness increase */
}

.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;
  background: var(--bs-light);
  transition: 0.5s;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: relative;
    background: var(--bs-white);
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--bs-dark);
  }

  .navbar-light .navbar-brand img {
    max-height: 110px;
  }
}

@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;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid;
    border-left: 0;
    border-style: dotted;
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: var(--bs-light);
    border: none;
  }

  .navbar-light .navbar-nav .nav-item::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--bs-primary);
    transition: 0.5s;
  }

  .sticky-top.navbar-light .navbar-nav .nav-item::before {
    bottom: 0;
  }

  .navbar-light .navbar-nav .nav-item::after {
    content: "";
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid;
    border-color: transparent transparent var(--bs-primary) transparent;
    opacity: 0;
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-item:hover::after,
  .navbar-light .navbar-nav .nav-item.active::after {
    bottom: 1px;
    opacity: 1;
  }

  .navbar-light .navbar-nav .nav-item:hover::before,
  .navbar-light .navbar-nav .nav-item.active::before {
    width: calc(100% - 2px);
    left: 1px;
  }

  .navbar-light .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }
}
/*** Carousel Hero Header Start ***/
.carousel-header {
  position: relative;
  overflow: hidden;
}

.carousel-indicators {
  display: none;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
  width: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon,
.carousel .carousel-control-next .carousel-control-next-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 25px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-primary);
  transition: 0.5s;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
  left: 0;
  border-left: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 50px;
}

.carousel .carousel-control-next .carousel-control-next-icon {
  right: 0;
  border-right: 0;
  border-top-left-radius: 50px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
  background: var(--bs-secondary);
}

.carousel .carousel-inner .carousel-item {
  position: relative;
}

.carousel .carousel-inner .carousel-item .carousel-caption-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: end;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  background-size: cover;
}

.carousel-caption-1-content {
  text-align: end;
  padding-right: 100px;
}

.carousel-caption-1-content .carousel-caption-1-content-btn {
  display: flex;
  justify-content: end;
}

.carousel .carousel-inner .carousel-item .carousel-caption-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-top: 100px;
  display: flex;
  align-items: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  background-size: cover;
}

.carousel-caption-2-content {
  text-align: start;
  padding-left: 100px;
}

.carousel-caption-2-content .carousel-caption-2-content-btn {
  display: flex;
  justify-content: start;
}

@media (max-width: 992px) {
  .carousel .carousel-inner .carousel-item {
    height: 700px;
    margin-top: -100px;
  }

  .carousel .carousel-inner .carousel-item img {
    height: 700px;
    object-fit: cover;
  }

  .carousel .carousel-inner .carousel-item .carousel-caption-1 {
    max-width: 100% !important;
    justify-content: center;
  }

  .carousel-caption-1-content {
    padding: 0 20px !important;
    text-align: center !important;
  }

  .carousel-caption-1-content .carousel-caption-1-content-btn {
    justify-content: center;
  }

  .carousel .carousel-inner .carousel-item .carousel-caption-2 {
    max-width: 100% !important;
    justify-content: center;
  }

  .carousel-caption-2-content {
    padding: 0 20px !important;
    text-align: center !important;
  }

  .carousel-caption-2-content .carousel-caption-2-content-btn {
    justify-content: center;
  }

  .carousel .carousel-control-prev .carousel-control-prev-icon,
  .carousel .carousel-control-next .carousel-control-next-icon {
    display: none;
  }
}

.modal .modal-header {
  height: 100px;
}

#searchModal .modal-content {
  background: rgba(255, 255, 255, 0.6);
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0, 20, 68, 0.7), rgba(0, 20, 66, 0.7)),
    url(../img/breadcrumbs-bg.webp);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0 60px 0;
  transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
  position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
  color: var(--bs-white);
}

@media (max-width: 992px) {
  .bg-breadcrumb {
    padding: 60px 0 60px 0;
  }
}
/*** Single Page Hero Header End ***/

/*** Features Start ***/
.feature .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bs-white);
  border-radius: 10px;
  transition: 0.5s;
}

.feature .feature-item:hover {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.feature .feature-item .feature-icon {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-primary);
}

.feature .feature-item .feature-icon i {
  transition: 0.5s;
}

.feature .feature-item:hover .feature-icon i {
  transform: rotate(360deg);
}

.feature .feature-item a.btn {
  transition: 0.5s;
}

.feature .feature-item:hover a.btn:hover {
  color: var(--bs-primary) !important;
}
/*** Features End ***/

/* Facilities start  */

.facilities-body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  text-align: center;
  padding: 20px;
}

.title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ff7f50;
}

/* Container Grid System */
.container-facilities {
  display: grid;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

/* Responsive Grid */
@media (min-width: 1200px) {
  .container-facilities {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  .container-facilities {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) and (min-width: 576px) {
  .container-facilities {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .container-facilities {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Card Styling */
.card {
  background: #fff;
  padding: 20px;
  /* width: 420px; */
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease-in-out;
  opacity: 0;
  transform: scale(0.8) translateY(30px); /* Initial smaller scale and translation */
  animation: fadeInZoom 0.8s ease-out forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.card img {
  width: 60px; /* Set the width of the images */
  height: auto;
  margin-bottom: 15px; /* Space between image and text */
}

.card h3 {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #333;
}

.card p {
  font-size: 1rem;
  color: #666;
}

/* Hover Effect */
.card:hover {
  transform: translateY(12px) scale(3.4); /* Zoom in with slight upward translation */
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

/* Page Load Animation */
@keyframes fadeInZoom {
  0% {
    opacity: 0;
    transform: scale(0.4) translateY(30px); /* Starting position with small scale and translate */
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8) translateY(15px); /* Midway zoom and slight upward shift */
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0); /* Final normal scale and position */
  }
}

/* Drop Up Animation */
@keyframes dropUp {
  0% {
    transform: translateY(10px) scale(1);
  }
  100% {
    transform: translateY(-10px) scale(1.05);
  }
}

/* Facilities end  */

/* infrastructure start  */
.infrastructure {
  padding: 50px 20px;
}

h2 {
  /* font-size: 24px; */
  /* color: #C92BC9; */
  /* display: flex; */
  align-items: center;
  justify-content: center;
}

.line {
  width: 50px;
  height: 2px;
  background: #c92bc9;
  margin: 0 10px;
}

/* Branch Card Styles */
.branches {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
}

.branch {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  padding-bottom: 15px;
  opacity: 0;
  transform: translateY(50px);
  width: 100%;
}

.branch img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.branch h3 {
  font-size: 22px;
  margin: 10px;
  font-weight: bold;
}

.branch p {
  font-size: 16px;
  margin: 0 10px 10px;
  color: #555;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  animation: fadeInUp 1s ease-out forwards;
}

/* Responsive Design */

/* 767px- */
@media (max-width: 767px) {
  .branches {
    grid-template-columns: repeat(1, 1fr);
  }

  .branch img {
    height: 400px;
  }
}

/* infrastructure end  */

/* team new start  */
.newTeam-body {
  margin: 0;
  font-family: Arial, sans-serif;
  /* background-color: #f4f4f4; */
  color: #333;
}

h1,
p {
  margin: 0;
}

/* Text Section Styles */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.pb-5 {
  padding-bottom: 3rem;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-primary {
  color: #000000; /* Primary color (blue) */
}

.mb-3 {
  margin-bottom: 1rem;
}

/* Fade-Up Animation */
.wow {
  visibility: hidden; /* Hide the element initially */
}

.fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px); /* Start 50px below */
  }
  to {
    opacity: 1;
    transform: translateY(0); /* Move to original position */
  }
}

/* Delay for Animation */
[data-wow-delay="0.2s"] {
  animation-delay: 0.2s;
}

[data-wow-delay="0.4s"] {
  animation-delay: 0.4s;
}

[data-wow-delay="0.6s"] {
  animation-delay: 0.6s;
}

[data-wow-delay="0.8s"] {
  animation-delay: 0.8s;
}

/* Team Section Styles */
.team-size {
  padding: 40px 20px;
  text-align: center;
}

.team-members {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.member {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 400px;
  text-align: center;
  gap: 50px;
}

.member-image {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto 40px;
  overflow: hidden;
  border-radius: 50%;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.member-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(100%);
}

.member-image:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.member-image .overlay a {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
}

.member h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.member p {
  font-size: 16px;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .team-members {
    flex-direction: column;
    align-items: center;
  }

  .member {
    width: 100%;
    max-width: 300px;
  }
}
/* team new end */

/* tab start  */
.tab-body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  /* min-height: 100vh; */
  /* background-color: #f5f5f5; */
}

.tabs {
  width: 90%;
  max-width: 1300px;
  background: #fff;
  /* border-radius: 10px; */
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
}

.tabs-header {
  display: flex;
  justify-content: space-between;
  /* background: #f7f7f7; */
  /* border-bottom: 2px solid #e0e0e0; */
}
.tabs-header span {
  display: block;
  width: 50px;
  height: 3px;
  background: #ff007f;
  margin-top: 8px;
}
.tab-button {
  flex: 1;
  text-align: center;
  padding: 15px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  font-weight: bold;
  color: #555;
  position: relative;
}

.tab-button:hover {
  color: #e91e63;
}

.tab-button.active {
  color: #e91e63;
}

.tab-button:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #e91e63;
  transition: width 0.3s ease, left 0.3s ease;
  transform: translateX(-50%);
}

.tab-button.active:after {
  width: 100%;
  left: 50%;
}

.tab-content {
  display: flex;
  flex-direction: row;
  /* align-items: center; */
  gap: 40px;
  padding: 20px;
  display: none;
  color: #333;
}

.tab-content.active {
  display: flex;
}

.tab-content h2 {
  color: black;
  font-weight: bold;
  margin-bottom: 20px;
}

.tab-content p {
  line-height: 1.6;
  margin-top: 25px;
}

.tab-content img {
  max-width: 500px;
  height: 500px;
  border-radius: 10px;
}

.list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.list-item span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  background-color: #ff007f;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  margin-right: 15px;
}

.list-item p {
  margin: 0;
  color: #555;
}

.list-item p strong {
  font-weight: bold;
  color: #333;
}

@media (max-width: 768px) {
  .tabs {
    width: 100%;
  }

  .tab-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .tab-content img {
    margin: 0 auto 20px auto;
  }
}

@media (max-width: 480px) {
  .tab-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .tab-content img {
    margin: 0 auto 15px;
  }
}
/* tab end */

/* new future start  */
.container-future {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
}
.content-future {
  max-width: 50%;
}
.content-future h2 {
  color: #000;
  margin-bottom: 10px;
}
.content-future p {
  color: #666;
  margin-bottom: 20px;
}
.feature-new {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.feature-new .icon {
  font-size: 30px;
  color: #ff0080;
  margin-right: 15px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.feature-new .icon:hover {
  color: #ff4da6;
}
.feature-text h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}
.feature-text p {
  color: #666;
}
.image {
  max-width: 40%;
}
.image img {
  width: 100%;
}
@media (max-width: 768px) {
  .container-future {
    flex-direction: column;
    text-align: center;
  }
  .content-future {
    max-width: 100%;
  }
  .image {
    max-width: 80%;
    margin-top: 20px;
  }
}
/* new future end  */

/* new counter start  */
.count-body {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100vh; */
  background: #f8f8f8;
  margin: 0 32px 32px 0;
  padding: 20px;
}
.container-count {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
  padding: 32px 0;
  justify-content: center;
}

.box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  /* width: 5%; 4 items in a row */
  width: 260px;
}

.icon {
  font-size: 30px;
  color: #ff0080;
  margin-bottom: 10px;
}

.number {
  font-size: 45px;
  font-weight: bold;
  color: black;
}

.text {
  color: black;
}

/* Medium Screens - 2 items per row */
@media (max-width: 992px) {
  .box {
    width: 45%;
  }
}

/* Small Screens - 1 item per row */
@media (max-width: 600px) {
  .box {
    width: 90%;
  }
}

/* new counter end  */
/* new about start  */

.about-body {
  font-family: Arial, sans-serif;
  background: #fff;
  text-align: center;
  padding: 20px;
}
.about-section {
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: left;
  max-width: 1200px;
  margin: auto;
}
/* .about-section h1{
    padding:0 32px 32px 0;
} */
.content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  /* background: #f5f5f5; */
  padding: 40px;
  /* border-radius: 10px; */
  /* box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1); */
}
.text-box {
  flex: 1;
  min-width: 300px;
  background: #f5f5f5;
  padding: 32px;
}

.text-box h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}
.text-box p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-top: 12px;
}
.watch-video {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  font-weight: bold;
  color: #ff7f50;
  cursor: pointer;
}
.watch-video::before {
  content: "\25B6";
  font-size: 16px;
  color: #ff7f50;
}
.image-container {
  flex: 1;
  min-width: 300px;
  position: relative;
}
.image-container img {
  width: 100%;
  max-width: 500px;
}
.logo {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  z-index: -1;
}
@media (max-width: 768px) {
  .content-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .text-box,
  .image-container {
    text-align: center;
  }
}
/* new about end  */
/*** About Start ***/
.about .about-img {
  position: relative;
  padding-bottom: 30px;
  margin-top: 30px;
  margin-left: 30px;
}

.about .about-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  top: -30px;
  right: 0;
  border-radius: 10px;
  background: var(--bs-secondary);
}

.about .about-img::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 100%;
  left: -30px;
  bottom: 30px;
  border-radius: 10px;
  background: var(--bs-secondary);
}

.about .about-img .about-exp {
  position: absolute;
  top: 0;
  left: 0;
  padding: 25px;
  font-size: 30px;
  font-weight: bold;
  background: var(--bs-secondary);
  color: var(--bs-white);
  border: 1px solid var(--bs-secondary);
  margin-top: -30px;
  margin-left: -30px;
  border-radius: 10px;
}
/*** About End ***/

/*** Service Start ***/
.service-item {
  position: relative;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.service-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  bottom: 0;
  border-radius: 10px;
  background: var(--bs-primary);
  transition: 0.5s;
  z-index: 1;
}

.service-item:hover::after {
  width: 100%;
  height: 100%;
}

.service-item:hover .service-content,
.service-item:hover .service-btn {
  position: relative;
  z-index: 2;
}

.service-item .service-content a,
.service-item .service-content p {
  transition: 0.5s;
}

.service-item:hover .service-content a:hover {
  color: var(--bs-secondary);
}

.service-item:hover .service-content p {
  color: var(--bs-white);
}

.service-item .service-btn {
  width: 80px;
  height: 80px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-primary);
  transition: 0.5s;
}

.service-item .service-btn i {
  transition: 0.5s;
}

.service-item:hover .service-btn {
  background: var(--bs-white);
}

.service-item:hover .service-btn i {
  transform: rotate(360deg);
  color: var(--bs-primary) !important;
}
/*** Service End ***/

/*** Counter Start ***/
.counter {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(25, 64, 154, 0.9), rgba(25, 64, 154, 1)),
    url(../img/fact-bg.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.counter .counter-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.counter .counter-item .counter-item-icon {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background: var(--bs-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/*** Counter End ***/

/*** Products Start ***/
.product .product-item {
  border: 1px solid rgba(196, 211, 211, 0.9);
  border-radius: 10px;
}

/*** Products End ***/

/*** Blog Start ***/
.blog .blog-item {
  border-radius: 10px;
  background: var(--bs-light);
  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: 100%;
  top: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: 0.5s;
  z-index: 1;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
  transform: scale(1.2);
}

.blog .blog-item:hover .blog-img::after {
  background: rgba(0, 209, 249, 0.2);
}

.blog .blog-item .blog-date {
  position: absolute;
  top: 25px;
  left: 25px;
  border-radius: 10px;
  background: var(--bs-primary);
  color: var(--bs-white);
  z-index: 2;
}

.blog .blog-item .blog-content a {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
  color: var(--bs-primary) !important;
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
  position: relative;
  overflow: hidden;
  background: var(--bs-white);
  border: 1px solid var(--bs-secondary);
  border-radius: 10px;
}

.team .team-item .team-inner {
  transition: 0.5s;
}
.team .team-item:hover .team-inner {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.team .team-item .team-inner .team-img {
  position: relative;
  z-index: 2;
  object-fit: cover;
}

.team .team-item .team-inner .team-img::after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: rgba(0, 209, 249, 0.2);
  transition: 0.5s;
  z-index: 3;
}

.team .team-item:hover .team-inner .team-img::after {
  height: 100%;
}

.team .team-item .team-inner .team-img .team-share {
  position: absolute;
  left: 10px;
  bottom: 10px;
  transition: 0.5s;
  z-index: 2;
}

.team .team-item:hover .team-inner .team-img .team-share {
  opacity: 0;
}

.team .team-item .team-inner .team-img .team-icon {
  position: absolute;
  bottom: 0;
  left: -100%;
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
  display: inline-flex;
  background: var(--bs-primary);
  transition: 0.5s;
  z-index: 4;
}

.team .team-item:hover .team-inner .team-img .team-icon {
  left: -25px;
}
/*** Team End ***/

/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
  position: absolute;
  top: -58px;
  right: 0;
  background: var(--bs-primary);
  color: var(--bs-white);
  padding: 5px 30px;
  border-radius: 30px;
  transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
  position: absolute;
  top: -58px;
  right: 88px;
  background: var(--bs-primary);
  color: var(--bs-white);
  padding: 5px 30px;
  border-radius: 30px;
  transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
  display: flex;
  justify-content: center;
  margin-left: 20px;
  margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  margin-right: 15px;
  border: 1px solid var(--bs-secondary);
  background: var(--bs-primary);
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border: 1px solid var(--bs-primary);
  background: var(--bs-secondary) !important;
  transition: 0.5s;
}

.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;
  text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 8px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-white);
}

@media (max-width: 992px) {
  .owl-carousel.testimonial-carousel {
    padding-top: 30px;
  }

  .testimonial .owl-nav .owl-prev,
  .testimonial .owl-nav .owl-next {
    top: -30px;
  }
}
/*** testimonial End ***/

/*** Footer Start ***/
.footer {
  background: var(--bs-dark);
}

.footer .footer-item a {
  line-height: 35px;
  color: var(--bs-body);
  transition: 0.5s;
}

.footer .footer-item p {
  line-height: 35px;
}

.footer .footer-item a:hover {
  letter-spacing: 1px;
  color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
  transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
  background: var(--bs-white);
}

.footer .footer-item .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);
  background: var(--bs-dark);
}
/*** copyright end ***/
