/* Base Styles */
/* body {
    
    overflow-x: hidden;
} */
html,
body {
  font-family: var(--font1);
  color: var(--light-dar1);
  background-color: var(--light);
  max-width: 100%;
  overflow-x: hidden !important;
}

/* *************** Top Banner Or Hero Section 1 Start ******************* */

.btn-demo {
  background-color: var(--primary);
  color: var(--text-color);
  border-radius: 8px;
  font-weight: 600;
  border: none;
  transition: all 0.3s;
}

.btn-demo:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
}

/* ************* Up Page Button End *********** */

.main-title {
  text-align: center;
  /* margin: 0 0 25px 0; */
  color: var(--light-dark1);
  font-weight: 600;
}

.step-card {
  background-color: var(--light) 5f5;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-number {
  background-color: var(--primary);
  color: var(--text-color);
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.step-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--light-dark1);
}

.step-subtitle {
  font-size: 14px;
  color: var(--light-dark3);
  margin-bottom: 20px;
}

.url-input-container {
  /* background-color: var(--light); */
  border-radius: 10px;
  margin: 10px 0;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
}

.url-input-group {
  display: flex;
  margin-top: 15px;
}

.url-input {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 15px;
  flex-grow: 1;
  font-size: 14px;
  color: #999;
}

.url-submit {
  background-color: var(--primary);
  color: var(--text-color);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  margin-left: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.url-submit:hover {
  background-color: var(--primary);
}

.option-tags {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.option-tag {
  background-color: var(--light) 5f5;
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 14px;
  color: var(--light-dark1);
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.option-tag:hover {
  background-color: #ffe5e5;
}

.option-tag i {
  color: var(--primary);
  margin-right: 5px;
}

.step-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
}

.step-description {
  text-align: center;
  color: var(--light-dark3);
  font-size: 15px;
  margin-top: 20px;
}

.publish-container {
  text-align: center;
  background-color: var(--light);
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.publish-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--light-dark1);
}

.publish-highlight {
  color: var(--primary);
  font-weight: 600;
}

.app-stores {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.store-icon {
  width: 50px;
  height: 50px;
}

.cta-section {
  background-color: var(--primary);
  color: var(--text-color);
  border-radius: 15px;
  padding: 40px;
  /* margin-top: 50px;
    margin-bottom: 50px; */
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

.cta-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

a.cta-button p {
  display: inline-block;
}

a.cta-button {
  background-color: var(--light);
  color: var(--light-dark1);
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s;
}

a.cta-button:hover {
  transform: translateY(-3px);
}

.cta-image {
  max-width: 100%;
  height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .step-card {
    margin-bottom: 30px;
  }

  .cta-section {
    padding: 30px 20px;
  }

  .cta-title {
    font-size: 24px;
  }
}

/* Feature Cards */

/* Integration Cards */
.integration-card {
  padding: 15px;
  transition: var(--transition);
  cursor: pointer;
}

.integration-card:hover {
  transform: translateY(-5px);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: var(--box-shadow);
}

.icon-wrapper i {
  font-size: 24px;
  color: var(--primary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }

  h1.display-4 {
    font-size: 2.5rem;
  }

  h2.display-5 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .integration-card {
    padding: 10px;
  }

  .icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .icon-wrapper i {
    font-size: 20px;
  }
}

/* ******** Faq ********* */
.faq-container {
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px;
}

.faq-title {
  text-align: center;
  margin-bottom: 10px;
  color: var(--light-dark1);
  font-weight: 600;
}

.faq-subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: var(--light-dark3);
  font-weight: 400;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 8px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgb(165, 165, 165);

  overflow: hidden;
}

.accordion-button {
  font-weight: 500;
  font-size: 18px;
  padding: 20px 25px;
  color: #444;
  background-color: var(--light);
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--light-dark1);
  background-color: var(--light);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.accordion-button::after {
  background-size: 16px;
  width: 16px;
  height: 16px;
  transition: all 0.3s ease;
}

.accordion-body {
  padding: 20px 25px;
  color: var(--light-dark3);
  line-height: 1.6;
  background-color: var(--light);
}

/* Custom animation for the accordion */
.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

/* Hover effect */
.accordion-button:hover {
  background-color: #f8f9fa;
}

/* ********* Testimonial ********* */

.testimonial-section {
  padding: 70px 0;
}

/* Scoped styles */
.testimonial-section .testimonial-card {
  background-color: var(--light);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: all 0.3s linear;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-section .testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-section .testimonial-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--primary);
}

.testimonial-section .quote-icon {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 20px;
}

.testimonial-section .testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #6c757d;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-section .client-info {
  display: flex;
  align-items: center;
}

.testimonial-section .client-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--secondary);
}

.testimonial-section .rating {
  margin-left: auto;
}

.testimonial-section .rating img {
  height: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .testimonial-section {
    padding: 50px 0;
  }

  .testimonial-section .section-header h2 {
    font-size: 2rem;
  }
}

/* members section */

.team-section .team-card {
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.team-section h3 {
  color: var(--primary);
}

.team-section .team-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(12deg, var(--primary) 0%, white 100%);
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  transition: all 0.4s ease;
}

.team-section .team-card:hover::before {
  opacity: 1;
}

.team-section .team-img {
  width: 150px;
  height: 150px;
  border: 2px solid var(--primary) !important;
  transition: all 0.4s ease;
}

.team-section .social-icon {
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: white;
  color: var(--primary);
}

.team-section .team-card:hover .social-icon {
  opacity: 1;
  transform: translateY(0);
}

.team-section .social-icon:hover {
  background: var(--primary);
  color: white;
}

.team-section .social-icon:nth-child(1) {
  transition-delay: 0.1s;
}

.team-section .social-icon:nth-child(2) {
  transition-delay: 0.2s;
}

.team-section .social-icon:nth-child(3) {
  transition-delay: 0.3s;
}

.team-section .social-icon:nth-child(4) {
  transition-delay: 0.4s;
}

/* contact us cards */
.addressCard {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.addressCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  z-index: -1;
}

.addressCard:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

.addressInfoCards .card-2 {
  /* background: linear-gradient(135deg, #FFD166 0%, #FF9A5A 50%, #FF6B6B 100%); */
  /* background: linear-gradient(135deg, #A8E6A3 0%, #6FAF6A 50%, #2D4E28 100%); */
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.addressInfoCards .icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.addressInfoCards .addressCard:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.3);
}

.addressInfoCards .glow {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(30px);
  animation: pulse 4s infinite alternate;
  opacity: 0;
  transition: all 0.5s ease;
}

.addressInfoCards .addressCard:hover .glow {
  opacity: 0.6;
}

/* gallery  */

.gallery-section .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: rgb(214, 213, 213);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  margin-bottom: 20px;
}

.gallery-section .gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-section .gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-section .gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-section .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s;
}

.gallery-section .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-section .view-btn {
  padding: 6px 20px;
  background: #fff;
  color: var(--primary);
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}

.gallery-section .view-btn:hover {
  background: #343a40;
  color: #fff;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 1.8rem;
  }
}

/* slider */
.slider_1 {
  /* background-color: var(--dark); */
  color: var(--light);
}

.slider_1 .swiper-container {
  width: 100%;
  height: 70vh;
  position: relative;
  overflow: hidden;
}

.slider_1 .swiper {
  width: 100%;
  height: 100%;
}

.slider_1 .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 97%;
  overflow: hidden;
  user-select: none;
  cursor: grab;
  border-radius: 20px 20px 20px 20px;
}

.slider_1 .swiper-slide img {
  width: 100%;
  object-fit: cover;
  /* border-radius: 50px; */
}

.slider_1 .swiper-pagination {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center;

  position: absolute;
  /* right: 50px !important;
    left: auto !important;
    top: 50%;
    transform: translateY(-50%); */

  bottom: 20px;
  right: 0;

  width: auto !important;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.slider_1 .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1 !important;
  transition: all 0.3s ease;
  margin: 0 !important;
  position: relative;
}

.slider_1 .swiper-pagination-bullet-active {
  background: var(--primary);
  transform: scale(1.5);
}

.slider_1 .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.slider_1 .swiper-pagination-bullet-active::after {
  opacity: 1;
}

.slider_1 .swiper-button-next,
.slider_1 .swiper-button-prev {
  color: white !important;
  background: rgba(255, 255, 255, 0.1);
  width: 60px !important;
  height: 60px !important;
  border-radius: 50%;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.slider_1 .swiper-button-next::after,
.slider_1 .swiper-button-prev::after {
  font-size: 20px !important;
  font-weight: bold;
}

.slider_1 .swiper-button-next:hover,
.slider_1 .swiper-button-prev:hover {
  background: var(--primary);
  transform: scale(1.1);
}

.slider_1 .slide-counter {
  position: absolute;
  bottom: 50px;
  left: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  z-index: 10;
}

.slider_1 .slide-counter span {
  color: white;
  font-size: 2.5rem;
}

/* *** Slider Down Card ******* */
.slider_down_card {
  /* background-color: #f8f9fa; */
  padding: 10px;
  font-family: "Poppins", sans-serif;
}

/* .slider_down_card .card-container {
    margin-top: 50px;
} */

.slider_down_card .custom-card {
  width: 100%;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 19, 82, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: var(--primary);
  position: relative;
  z-index: 1;
}

.slider_down_card .custom-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(251, 180, 16, 0.15),
    rgba(255, 94, 0, 0.1)
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slider_down_card .custom-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 19, 82, 0.25);
}

.slider_down_card .custom-card:hover::before {
  opacity: 1;
}

.slider_down_card .card-header {
  padding: 25px;
  text-align: center;
  background: linear-gradient(135deg, var(--secondary), red);
  color: var(--primary);
  border-bottom: none;
  position: relative;
  overflow: hidden;
}

.slider_down_card .card-header::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--card-bg);
  border-radius: 50%;
}

.slider_down_card .card-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0;
  color: var(--text-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
}

.slider_down_card .card-body {
  padding: 40px 25px;
  text-align: center;
  color: var(--text-color);
}

.slider_down_card .card-icon {
  font-size: 3rem;
  color: var(--text-color);
  transition: transform 0.3s ease;
}

.slider_down_card .card-icon:hover {
  transform: scale(1.1);
}

.cursor-effect {
  position: fixed;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary);
  pointer-events: none;
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  z-index: 9999;
  opacity: 0.5;
  transition: transform 0.2s ease;
}

@media (max-width: 992px) {
  .swiper-pagination {
    right: 30px !important;
  }

  .slide-counter {
    left: 30px;
  }
}

@media (max-width: 768px) {
  .slider_1 .swiper-container {
    height: 100%;
  }

  .swiper-pagination {
    right: 15px !important;
    gap: 15px;
  }

  .slide-counter {
    left: 15px;
    bottom: 30px;
    font-size: 1.2rem;
  }

  .slide-counter span {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
  }
}

/* youtube video */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin-bottom: 20px;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-thumbnail:hover {
  opacity: 0.9;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 0, 0, 0.8);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.play-button:hover {
  background-color: rgba(255, 0, 0, 1);
  transform: translate(-50%, -50%) scale(1.05);
}

.play-button i {
  color: white;
  font-size: 30px;
  margin-left: 5px;
}

.embed-responsive {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* counter */

.counter-section {
  /* background-color: var(--secondary); */
  color: white;
  padding: 3rem 0;
}

.counter-section .stats-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.counter-section .stats-number {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0;
}

.counter-section .stats-text {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.counter-section .border-light {
  border-color: rgba(255, 255, 255, 0.3) !important;
}

/*  CSR PARTENERS */
.csr-section .partner-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(251, 180, 16, 0.3);
  height: 100%;
  background-color: white;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.csr-section .partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.csr-section .partner-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
  border-color: rgba(251, 180, 16, 0.6);
}

.csr-section .partner-logo {
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.csr-section .partner-card:hover .partner-logo {
  transform: scale(1.05);
}

.csr-section.partner-link {
  text-decoration: none;
  color: inherit;
}

.csr-section .partner-link:hover {
  color: var(--primary);
}

/*  CSR PARTENERS */
