/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Navbar styles */
header {
  background-color: white;
  padding: 20px 50px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-nav .nav-link {
  color: black; /* Set the text color to white */
  /* font-weight: bold; Make the text bold */
}

#logo {
  font-size: 24px;
  font-weight: bold;
  color: #8b58ff;
}

.nav-links {
  display: flex;
  list-style-type: none;
  margin: 0 auto;
}

.nav-links li {
  margin: 0 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
}

.login-btn .btn {
  padding: 10px 0px;
  background-color: #8b58ff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* Flexbox for centering links */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.logo {
  flex-grow: 0;
}

.login-btn {
  flex-grow: 0;
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
  /* Adjust padding */
  header {
    padding: 10px 20px;
  }

  /* Hide navigation links initially */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: white;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  /* Show navigation links when the menu is toggled */
  .nav-links.active {
    display: flex;
  }

  /* Make nav links vertical */
  .nav-links li {
    margin: 10px 0;
  }

  /* Adjust font size */
  .nav-links a {
    font-size: 18px;
  }

  /* Burger menu styles */
  .burger {
    display: block;
    cursor: pointer;
  }

  .burger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px;
    transition: all 0.3s ease;
  }
}

/* Hide the burger by default */
.burger {
  display: none;
}

.menu-item-block {
  display: flex;
  flex-direction: column;
}

.menu-item-link {
  padding: 10px;
  text-decoration: none;
  color: #333;
}

.menu-item-link:hover {
  color: #8b58ff;
}
/* Center the navbar on larger screens */
@media (min-width: 992px) {
  .navbar-collapse {
    display: flex;
    justify-content: center; /* Center the ul.navbar-nav */
  }
  .navbar-nav {
    margin: 0; /* Remove any extra margin */
  }
}

.login-btn {
  margin-left: auto; 
}

/* 2nd dev */
/* Set the background image for the hero section */
.hero-section {
  background-image: url("2nddiv.jpeg"); /* Your background image */
  background-size: cover;
  background-position: center;
  height: 80vh;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
   background-repeat: no-repeat;
  justify-content: center; /* Centering horizontally */
}
@media (max-width: 768px) {
    .hero-section {
        background-size: contain; /* Keeps the entire image visible on smaller screens */
        height: 50vh; /* Adjust the height for mobile view */
    }
}
/* Style for the text overlay */
.overlay-text {
  position: absolute;
  left: 0; /* Align to the left */
  top: 40%; /* Center vertically */
  transform: translateY(-50%); /* Adjust vertical centering */
  padding: 0 40px;
  max-width: 90%; /* Optional: limit text width */
  text-align: left; /* Align text to the left */
}

.overlay-text h1 {
  font-size: 57px; /* Set the font size */
  font-weight: 600; /* Set the font weight */
  line-height: 80px; /* Set the line height */
  color: white; /* Ensure text color is white */
  margin: 0; /* Remove default margin */
}

.red-border-span {
  border-right: 0.15em solid orange; /* Cursor effect */
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
}
/* Button container */
.all-btn {
  display: inline-block; 
  padding: 12px 24px; /* Adjust padding as needed */
  background-color: white; /* White background */
  color: black; /* Black text color */

  text-align: center; /* Center text */
  text-decoration: none; /* Remove underline */
  font-size: 16px; /* Adjust font size as needed */
  font-weight: 600; /* Bold text */
  border-radius: 4px; /* Rounded corners */
  overflow: hidden; /* Ensure text overflow is hidden */
  position: relative; /* Position relative for absolute children */
  transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effect */
}



/* Styles for mobile devices */
@media (max-width: 768px) {
  .overlay-text h1 {
    font-size: 40px; /* Smaller font size for mobile */
    line-height: 50px; /* Adjust line height for mobile */
  }

  .all-btn {
    font-size: 14px; /* Smaller button text size */
    padding: 8px 16px; /* Adjust padding for mobile */
  }

  .overlay-text {
    padding: 0 20px; /* Reduce padding on mobile */
  }
}

.all-btn-block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Default state for old text */
.old-btn-text {
  /* position: absolute; */
  /* transition: opacity 0.3s, transform 0.3s;
  opacity: 1; */
  transform: translateY(0);
}

/* Hidden state for new text */
.new-btn-text {
  position: absolute;
  opacity: 0;
  /* transform: translateY(10px); */
  transition: opacity 0.5s, transform 0.5s;


  top: 0;
  left: 0;
  transform: translateY(100%);

}

/* Hover effect */
.all-btn:hover .old-btn-text {
  opacity: 0;
  transform: translateY(-10px); /* Optional: Move up when hidden */
  
}

.all-btn:hover .new-btn-text {
  opacity: 1;
  transform: translateY(0); /* Optional: Move to original position */
}


.all-btn:hover {
  background-color: black; /* Background color on hover */
  color: white; /* Text color on hover */
  border-color: white; /* Border color on hover */
}

/* 3rd div */
.home-four-working {
  width: 100%;
  height: auto;
  max-width: 100%;
  background-color: #e9f2f6;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  align-self: stretch;
  padding: 70px 15px 100px;
  overflow: visible;
}
/* General styling */
.container-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.working-progress-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.working-progress-image-col {
  flex: 1;
  padding: 20px;
}

.metric-img {
  /* opacity: 0; */
  width: 100%;
  max-width: 400px;
  height: auto;
  transition: opacity 1s ease, transform 1s ease;
}

.working-progress-caption-col {
  flex: 1;
}

.overflow-hidden {
  overflow: hidden;
}

/* Animation for Heading Title */
.heading-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  transform: translateY(50%);
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

/* Class to trigger animation */
.animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.working-progress-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.working-title-span-one,
.working-title-span-two,
.working-title-span-three,
.working-title-span-four {
  font-size: 32px;
  color: #333;
  font-weight: bold;
}

.heading-six {
  font-size: 18px;
  color: #666;
  margin-top: 10px;
}

/* Animation Classes */
.animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Media Queries for responsive design */
@media (max-width: 768px) {
  .working-progress-flex {
    flex-direction: column;
    text-align: center;
  }

  .working-progress-grid {
    grid-template-columns: 1fr;
  }
}

.working-progress-popup {
  display: none;
  position: absolute;
  bottom: 100%; /* Position above the card */
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  width: 200px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show the popup when hovering over the card */
.working-progress-card:hover .working-progress-popup {
  display: block;
  opacity: 1;
}

/* Adjust hover effect for the card itself */
.working-progress-card:hover {
  background-color: #f0f0f0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

/* */
.working-progress-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 30px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.working-progress-card:hover {
  animation: shake 0.5s ease-in-out;
  animation-iteration-count: 1; /* Shake once */
}

/* Keyframes for shaking effect */
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}

.yellow-text {
  color: #cb2871; /* Yellow color */
  font-weight: bold;
}
/* Center the text horizontally and vertically */
.text-center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20vh; /* Adjust as per your section's height */
}

/* Animation for moving text from below to up */
@keyframes moveUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Applying the animation */
.animated-heading {
  font-size: 2.5rem; /* Adjust font size */
  animation: moveUp 1.5s ease-out forwards;
  opacity: 0;
}

.explore-flex {
  max-width: none;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 10px;
  display: grid;
}

.paragraph-9 {
  margin-top: 42px;
  margin-bottom: 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 28px;
}

.div-block-2 {
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 0;
  display: flex;
}

.explore-image-col {
  flex: 1;
  justify-content: center;
  align-self: center;
  align-items: stretch;
  padding-right: 0;
  display: flex;
  opacity: 1;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}

.div-block-2 .all-btn {
  background-color: #8b58ff; 
  padding: 10px 20px; 
  color: black; /* Ensure the text is visible */
  border-radius: 5px; /* Optional: add rounded corners */
  text-align: center; /* Center the text */
  display: inline-block; 
}

.div-block-2 .all-btn:hover {
  background-color: #7a4de5; /* Optional: a slightly darker shade on hover */
}
.all-btn-block {
  background-color: #8b58ff;
  padding: 10px 20px;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  display: inline-block;
  transition: background-color 0.3s ease;
}
/* Base Styles */
.service-one-improve {
  padding: 10px 15px 100px;
  background-color: #e9f2f6;
}

.container-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.explore-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.explore-image-col {
  flex: 1;
  display: flex;
  justify-content: center;
}

.explore-image-col img {
  width: 100%;
  max-width: 513px; /* Limit the maximum width */
  height: auto;
}

.div-block-13 {
  flex: 1;
  padding: 0 20px; /* Add padding for spacing */
}

.div-block-13 p {
  color: rgb(147, 142, 142);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.div-block-2 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px; /* Adjust margin */
}

.all-btn-block {
  background-color: #8b58ff;
  padding: 10px 20px;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.all-btn-block:hover {
  background-color: #7a4de5;
}

/* Media Queries for responsive design */
@media (max-width: 768px) {
  .service-one-improve {
    padding: 40px 15px;
  }

  .container-block {
    padding: 0 10px;
  }

  .explore-flex {
    flex-direction: column;
    align-items: center; /* Center items in column layout */
  }

  .explore-image-col {
    order: 2; /* Move image below the text */
    width: 100%; /* Full width on mobile */
  }

  .div-block-13 {
    order: 1; /* Ensure text is above the image */
    padding: 0 10px; /* Reduce padding */
  }

  .div-block-2 {
    /*flex-direction: column;*/
    align-items: center;
  }

  .all-btn-block {
    padding: 8px 16px;
  }

  .div-block-13 p {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .animated-heading {
    font-size: 1.5rem;
  }

  .div-block-13 p {
    font-size: 12px;
  }

  .container-block {
    padding: 0 5px;
  }
}

/* 4dev */
.carousel-item {
  /* display: flex; */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.brand-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  height: 150px;
  width: 200px;
}

.carousel-control-prev,
.carousel-control-next {
  background-color: black;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
}


/* 5th dev */
.home-four-design-apps {
    max-width: none;
    background-color: #fff;
    background-image: linear-gradient(#fff, #fff);
    align-self: stretch;
    padding: 100px 15px 0;
}
.container-block.aaa {
    background-color: #8b58ff;
    border-radius: 15px;
    padding: 60px 40px;
}
.container-block {
    max-width: 1400px;
    flex: 0 auto;
    align-self: auto;
    margin-bottom: 0;
    padding: 0;
    display: block;
    position: relative;
}


.margin-top-zero.text-color-white {
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
    margin-right: 0;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 30px;
    line-height: 40px;
    text-decoration: none;
    color: #fff;
}
.text-block-5._124 {
    text-align: center;
    margin-bottom: 0;
    padding-left: 60px;
    padding-right: 60px;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}
.text-block-5 {
    color: #fff;
    
}


/*  */

.home-four-explore-section {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    align-self: stretch;
    padding: 75px 15px;
    overflow: hidden;
}
.section-title-block {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

  .offer-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background-color: white;
    /* border-radius: 15px; */
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
  }

  .offer-left {
    flex: 1;
  }

  .offer-left img {
    max-width: 100%;
    border-radius: 20px;
    transition: transform 0.5s ease;
  }

  .offer-left img:hover {
    transform: scale(1.05);
  }

  .offer-right {
    flex: 2;
    padding-left: 30px;
  }

  h2 {
    color: #2c3e50;
    margin-bottom: 20px;
  }

  .offer-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards ease;
  }

  .offer-item:nth-child(2) {
    animation-delay: 0.2s;
  }

  .offer-item:nth-child(3) {
    animation-delay: 0.4s;
  }

  .offer-icon {
    font-size: 30px;
    margin-right: 15px;
    color: #8e44ad;
    display: inline-block;
    padding: 15px;
    border-radius: 50%;
    background-color: #f5f5f5;
  }

  .offer-text h3 {
    color: #34495e;
    margin-bottom: 10px;
  }

  .offer-text p {
    color: #7f8c8d;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


  /* Make the layout responsive for screens smaller than 768px */
@media (max-width: 768px) {
    .offer-section {
      flex-direction: column; /* Stack the image and text vertically */
      padding: 20px;
    }
  
    .offer-left, .offer-right {
      padding: 0; /* Remove padding on small screens */
    }
  
    .offer-right {
      padding-top: 20px; /* Add space between image and text */
    }
  
    .offer-item {
      flex-direction: column; /* Stack the icon and text vertically */
      align-items: center;
      text-align: center; /* Center the text for mobile */
    }
  
    .offer-icon {
      margin-right: 0;
      margin-bottom: 10px;
    }
  
    h2 {
      font-size: 24px;
    }
  
    .offer-text h3 {
      font-size: 20px;
    }
  
    .offer-text p {
      font-size: 14px;
    }
  }
  @keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.offer-left img {
    max-width: 100%;
    border-radius: 20px;
    transform: scale(0.8); /* Initial state */
    opacity: 0;
    transition: transform 0.5s ease;
    animation: zoomIn 1s forwards ease; /* Apply animation */
}

.offer-left img:hover {
    transform: scale(1.05); /* Hover effect to slightly zoom the image */
}
@keyframes rotateOnce {
    0% {
        transform: rotate(0deg);
        opacity: 0;
    }
    100% {
        transform: rotate(360deg);
        opacity: 1;
    }
}

.offer-left img {
    max-width: 100%;
    border-radius: 20px;
    opacity: 0;
    transition: transform 0.5s ease;
}

.offer-left img.animate {
    animation: rotateOnce 1s forwards ease;
}
.explore-image-col img {
    opacity: 0;
    transform: translate3d(0px, 100px, 0px) scale3d(0.8, 0.8, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    transition: transform 1s ease, opacity 1s ease; /* Smooth transition for both transform and opacity */
}

.explore-image-col img.animate {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}

/* 7th dev */
.home-four-amazing-section {
  max-width: none;
  background-color: #e9f2f6;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  border: 1px #000;
  align-self: stretch;
  padding: 100px 15px;
}
.container-2 {
  max-width: 1200px;
}
.text-center {
  text-align: center;
}

.section-title-block.max-width-eight-hundred.text-center.margin-auto {
  max-width: 1200px;
  padding-left: 0;
  padding-right: 0;
}
.margin-top-zero.text-color-white._55555.aaaaa {
  color: var(--nero-black);
  margin-bottom: 20px;
}
.margin-top-zero.text-color-white._55555 {
  margin-top: 0;
}
.container-4 {
  max-width: 1200px;
  padding-left: 40px;
  padding-right: 40px;
}
.w-container {
  margin-left: auto;
  margin-right: auto;
  /* max-width: 940px; */
}
.paragraph-11 {
  color: #737373;
  text-align: center;
  margin-bottom: 30px;
  padding-left: 60px;
  padding-right: 60px;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 16px;
  line-height: 28px;
}
p {
  letter-spacing: 0;
  font-weight: 400;
}




.animate-up {
  display: inline-block;
  animation: moveUp 1.5s ease-in-out forwards;
  transform: translateY(100%); /* Start position below */
  opacity: 0;
}

@keyframes moveUp {
  0% {
      transform: translateY(100%);
      opacity: 0;
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}
.explore-flex {
  max-width: none;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 10px;
  display: grid;
}
.div-block-13 {
  padding-left: 10px;
  display: block;
}
.solutions-grid._123456 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 0;
  display: flex;
}
.solutions-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  margin-left: 0;
  margin-right: 0;
  display: grid;
}
.solutions-card.margin-bottom-thirty {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  box-shadow: none;
  mix-blend-mode: normal;
  background-color: rgba(255, 255, 255, .75);
  border-radius: 10px;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 40px;
  padding: 15px 25px;
}
.solutions-card-flex.align-top.flex-left {
  text-align: left;
  align-items: center;
}
.solutions-card-flex {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  display: flex;
}
.solutions-card-icons-col-2.amazing-home-two {
  max-width: 78px;
}
.solutions-card-icons-col-2 {
  width: 100%;
  max-width: 70px;
}
.solutions-card-icons-block.bg-purple {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
}
.heading-six.padding-bottom-ten {
  color: var(--nero-black);
  text-align: left;
  padding-bottom: 0;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-decoration: none;
}
.explore-image-col img {
  transition: transform 0.6s ease-in-out;
  transform-style: preserve-3d;
}

.explore-image-col img.flip {
  transform: rotateY(180deg);
}
.explore-image-col {
  perspective: 1000px; /* Adds perspective to the 3D effect */
}

.flipping-image {
  transition: transform 0.6s; /* Smooth transition for the flip */
  transform-style: preserve-3d; /* Preserve 3D transformations */
}

.flipping-image.flipped {
  transform: rotateY(180deg); /* Flip the image */
}
/* Base styles */
.home-four-amazing-section {
  padding: 20px;
}

.explore-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.explore-image-col img {
  max-width: 100%;
  height: auto;
}

.solutions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Responsive adjustments for smaller screens */
@media only screen and (max-width: 767px) {
  .section-title-block {
      text-align: center;
      margin: 20px 0;
  }

  .explore-flex {
      flex-direction: column;
      align-items: center;
  }

  .explore-image-col {
      margin-top: 20px;
  }

  .solutions-card {
      width: 100%;
      margin-bottom: 20px;
  }

  .solutions-card-flex {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .solutions-card-icons-block {
      margin-bottom: 15px;
  }

  .solutions-card-caption-col-2 {
      text-align: center;
  }

  .paragraph-11 {
      font-size: 16px;
      padding: 0 10px;
  }
}
.offer-left img {
  transition: transform 0.6s ease-in-out;
  transform-style: preserve-3d;
}

.offer-left img.flip {
  transform: rotateY(180deg); /* You can adjust the rotation axis as needed */
}
@media (max-width: 767px) {
  .offer-left img {
    width: 100%; /* Adjust to fit mobile screen */
    height: auto;
  }
}
/* 2nd last */
.home-one-how-it-works {
  max-width: none;
  background-color: #8b58ff;
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  align-self: stretch;
  padding: 100px 15px;
}
.container-block {
  max-width: 1400px;
  flex: 0 auto;
  align-self: auto;
  margin-bottom: 0;
  padding: 0;
  display: block;
  position: relative;
}
.section-title-block.max-width-eight-hundred.text-center.margin-auto {
  max-width: 1200px;
  padding-left: 0;
  padding-right: 0;
}
.overflow-hidden {
  margin-bottom: 0;
  overflow: hidden;
}
.margin-top-zero.text-color-white {
  text-align: center;
  margin-top: 0;
  margin-bottom: 30px;
  margin-right: 0;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 30px;
  line-height: 40px;
  text-decoration: none;
}
.text-color-white {
  color: #fff;
  text-align: center;
  flex: 0 auto;
  align-self: center;
  margin-right: 0;
  font-size: 30px;
  font-weight: 600;
  line-height: 42px;
  text-decoration: none;
}
h2 {
  text-transform: capitalize;
}
/* last */
/* Animation keyframes */

@keyframes slideUp {
  0% {
      transform: translateY(100px);
      opacity: 0;
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}

/* Box styling */
.offer-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  opacity: 0;
}

/* Icon styling */
.icon-box {
  background-color: #8b58ff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.icon-box i {
  color: #fff;
  font-size: 24px;
}

/* Trigger animation */
.slide-up {
  animation: slideUp 1s ease-in-out forwards;
}




/* #818589 footer*/ 




/* body {
  color: #737373;
  font-family: Urbanist, sans-serif;
  font-size: 1.125rem;
  line-height: 1.75rem;
} */

.solutions-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  margin-left: 0;
  margin-right: 0;
  display: grid;
}
.solutions-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.offer-box {
  flex: 1;
  min-width: 250px; /* Adjust this for your minimum size */
  margin: 10px;
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

/* Mobile View */
@media (max-width: 768px) {
  .solutions-grid {
      flex-direction: column;
      align-items: center;
  }

  .offer-box {
      width: 100%;
      margin-bottom: 20px;
  }
}
/* Container Perspective */
.offer-box {
  perspective: 1000px; /* Enable 3D space for the flip */
  width: 100%; /* Adjust width as needed */
  position: relative;
}

/* Inner Flip Animation */
.offer-box .inner {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
  transform-style: preserve-3d;
  position: relative;
  opacity: 0;
  transform: rotateY(180deg); /* Start flipped */
}

/* Flip to normal when the "flip" class is added */
.offer-box.flip .inner {
  transform: rotateY(0deg);
  opacity: 1;
}

/* Front and Back Faces */
.offer-box .front,
.offer-box .back {
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.offer-box .back {
  transform: rotateY(180deg); /* Flip the back side */
}


/* 9 */
.service-one-amazing-features {
  max-width: none;
  background-color: #e9f2f6;
  align-self: stretch;
  padding-top: 0;
  padding-left: 15px;
  padding-right: 15px;
}

.text-center9 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 12vh; /* Adjust as per your section's height */
}
._180 {
  margin-bottom: 30px;
  padding-left: 60px;
  padding-right: 60px;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

/* footer */
/* .footer.footer-two {
  background-image: url(../images/Star-Three.svg), linear-gradient(to bottom, var(--nero-black), var(--nero-black));
  background-position: 0 38%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: auto, auto;
  align-self: stretch;
  padding-top: 0;
  padding-left: 15px;

} */
.footer {
  /* background-image: url(../images/Star-5.svg), url(../images/Footer-Star.svg), linear-gradient(#5d16c9, #6e25dd);
  background-position: 85% 18%, 0 30%, 0 0;
  background-repeat: no-repeat, no-repeat, repeat;
  background-size: auto, auto, auto; */
  padding: 80px 15px 0;
}
.container-three {
  max-width: 1712px;
  margin-bottom: 0;
  padding-bottom: 30px;
}
.w-containerf {
  margin-left: auto;
  margin-right: auto;
  max-width: 940px;
}
.container-block {
  max-width: 1400px;
  flex: 0 auto;
  align-self: auto;
  margin-bottom: 0;
  padding: 0;
  display: block;
  position: relative;
}
.task-card {
  background-color: white;
  background-image: url(../images/Star-Three.svg);
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  margin-top: -20px;
  padding: 35px 65px;
  font-family: Plus Jakarta Sans, sans-serif;
  display: flex;
}
.task-card {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
}

.task-caption-col {
  width: 100%;
  max-width: 574.5px;
}

.task-caption-col.overflow-hidden {
  margin-right: 0;
  text-align: center;
}
.overflow-hidden {
  margin-bottom: 0;
  overflow: hidden;
}
.text-color-white {
  color: #fff;
  text-align: center;
  flex: 0 auto;
  align-self: center;
  margin-right: 0;
  font-size: 30px;
  font-weight: 600;
  line-height: 42px;
  text-decoration: none;
}
.container-block {
  max-width: 1400px;
  flex: 0 auto;
  align-self: auto;
  margin-bottom: 0;
  padding: 0;
  display: block;
  position: relative;
}
.footer-bottom-flex {
  text-align: left;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}
/*.div-block-6 {*/
/*  flex: 0 auto;*/
/*  align-self: center;*/
/*  display: flex;*/
/*}*/



.div-block-6 {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.div-block-7 {
  align-self: center;
}

.div-block-8 {
  align-self: center;
  margin-top: 10px;
}
.image-32 {
  height: auto;
  margin-top: 5px;
}

.paragraph-3 {
  text-align: left;
  margin-bottom: 0;
  margin-left: 10px;
  line-height: 1.3rem;
}
.footer-location-block {
  text-align: left;
  justify-content: flex-start;
  align-items: stretch;
  padding-bottom: 25px;
  font-size: 1rem;
  display: flex;
}

.footer-location-link {
  color: #fff;
  text-decoration: none;
}

.footer-contact-block {
  font-size: 1rem;
}

.footer-bottom-social-col {
  align-items: center;
  display: flex;
}


.footer-link-block {
  flex-direction: column;
  display: flex;
}

.footer-line {
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.footer-link {
  color: #fff;
  font-size: 1rem;
  line-height: 2.1875rem;
  text-decoration: none;
}

.footer-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: left;
  grid-template: "."
  / 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  justify-content: start;
  justify-items: start;
  padding-left: 0;
  display: grid;
}

.footer-contact-link {
  color: #fff;
  text-decoration: none;
}

.footer-card {
  background-color: #5e17ca;
  border-radius: 20px;
  padding: 26px;
}

.footer-col {
  text-align: left;
}

.footer-right-col {
  width: 100%;
  max-width: 30%;
}
  
.div-block-4 {
  padding-bottom: 20px;
  display: flex;
}

.footer {
  background-image: url('../images/Star-5.svg'), url('../images/Footer-Star.svg'), linear-gradient(#5d16c9, #6e25dd);
  background-position: 85% 18%, 0 30%, 0 0;
  background-repeat: no-repeat, no-repeat, repeat;
  background-size: auto, auto, auto;
  padding: 80px 15px 0;
}

.footer.footer-two {
  background-color: #4b2c88;
  /* background-image: url('../images/Star-Three.svg'), linear-gradient(to bottom, var(--nero-black, #4b2c88), var(--nero-black, #4b2c88)); */
  background-position: 0 38%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: auto, auto;
  align-self: stretch;
  padding-top: 0;
  padding-left: 15px;
}
  
.text-block-7, .text-block-8, .text-block-9, .text-block-10 {
  color: #fff;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
.div-block-15, .div-block-16 {
  padding-bottom: 20px;
}

.footer-flex {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-content: center;
  justify-content: end;
  align-items: end;
  display: grid;
}

.footer-left-col {
  width: 100%;
  max-width: 100%;
}
.footer-main-block {
  max-width: 1200px;
  padding-top: 60px;
  padding-bottom: 40px;
  padding-left: 20px;
}
.footer-one-main {
  padding-bottom: 40px;
}
.footer-second-image-inner {
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.footer-first-image-block {
  height: 50vh;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.landing-footer-caption-col {
  max-width: 617px;
  flex: 1;
}

.landing-footer-main {
  grid-column-gap: 60px;
  align-items: center;
  display: flex;
}

.landing-footer-image-col {
  max-width: 584px;
  grid-column-gap: 14px;
  flex: 1;
  display: flex;
}

.footer-second-image-block {
  height: 50vh;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.landing-footer-section {
  background-image: url('../images/Footer-Bg.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-left: 15px;
  padding-right: 15px;
  overflow: hidden;
}

.footer-first-image {
  border-radius: 20px;
  margin-bottom: 30px;
}

.footer-first-image-inner {
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}
.footer-right-col.responsive-full-width {
  max-width: 100%;
}

.footer {
  background-image: linear-gradient(#5d16c9, #6e25dd);
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  padding-top: 70px;
}

.footer-flex {
  grid-row-gap: 50px;
  flex-direction: column;
  align-items: flex-start;
}

.footer-left-col {
  max-width: 100%;
}
.footer-first-image-block {
  margin-top: 0;
}

.landing-footer-caption-col {
  max-width: 100%;
}

.landing-footer-main {
  grid-row-gap: 50px;
  flex-direction: column;
}

.landing-footer-image-col {
  max-width: 100%;
}

.footer-second-image-block {
  margin-top: 0;
}

.landing-footer-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

/* .footer-bottom-flex {
  grid-row-gap: 20px;
  flex-direction: column;
} */

.footer-grid {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}
.footer-grid {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
}

.footer-col {
  padding-bottom: 20px;
}

.footer-right-col {
  max-width: 100%;
}
.container-three {
  max-width: 1712px;
  margin-bottom: 0;
  padding-bottom: 30px;
}

.container-three.rich-main-section {
  background-image: url('../images/Red-Round-Shape.svg');
  background-position: 7% 95%;
  background-repeat: no-repeat;
  background-size: auto;
  margin-top: -407px;
  padding-bottom: 70px;
}
.text-block-11 {
  color: #fff;
  text-align: center;
  -webkit-text-stroke-color: white;
  margin-bottom: 60px;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.div-block-14 {
  margin-left: 0;
}
.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}
.link {
  color: #fff;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
}
.text-color-white.no-underline {
  margin-right: 20px;
}  
.text-color-white.no-underline {
  margin-right: 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
}
.text-color-white.no-underline {
  margin-right: 40px;
}

.hero-flex {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-flex.flex-left {
  justify-content: flex-start;
  align-items: center;
  display: inline-block;
}

.hero-flex.flex-left.padding-top-thirty {
  padding-top: 30px;
}

.hero-flex.flex-right {
  justify-content: flex-end;
}

.hero-flex.padding-top-fifty {
  padding-top: 50px;
}

.hero-flex.flex-left {
  justify-content: flex-start;
}

.hero-flex.flex-right {
  justify-content: flex-end;
}
.home-three-hero-flex {
  height: auto;
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 70px;
  padding-bottom: 0;
  display: flex;
  position: relative;
  overflow: auto;
}
 
.home-four-hero-flex {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.hero-flex.flex-right {
  justify-content: flex-start;
}
.home-three-hero-flex {
  height: auto;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}
.home-four-hero-flex {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-direction: column;
}

.home-three-hero-flex {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  padding-top: 0;
}
.hero-flex {
  flex-direction: column;
}

.hero-flex.flex-left.btn-flex-left, .hero-flex.flex-right {
  align-items: flex-start;
}
  
.home-three-hero-flex {
  width: auto;
  padding-top: 0;
}
.style-guide-button {
  margin-top: 120px;
}
.style-guide-button-wrapper {
  display: flex;
}
.changelog-button-wrapper {
  justify-content: center;
  display: flex;
}
.checkout-page-form, .cart-button {
  background-color: rgba(0, 0, 0, 0);
}
.remove-button {
  color: var(--indian-red);
}

.button {
  color: #fff;
  letter-spacing: .8px;
  text-transform: uppercase;
  background-color: #000;
  border: 2px solid #000;
  border-radius: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  transition: all .4s;
}

.button:hover {
  background-color: #161616;
  transform: translate(0, -2px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
}

.button.hide-on-t-m {
  text-transform: capitalize;
  background-color: #4f8544;
  border-width: 0;
  border-radius: 5px;
}
.style-guide-button, .style-guide-color-pallette, .style-guide-body-text {
  margin-top: 70px;
}
.button.hide-on-t-m {
  display: none;
}
.button {
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 15px;
}
#gdpr-consent .gdpr__modal button {
  padding-top: 11px;
  padding-bottom: 11px;
  margin-top: 20px
}

@media (max-width:480px) {
  #gdpr-consent .gdpr__modal button {
    margin-top: 0
  }
}

#gdpr-consent .gdpr__modal button.gdpr__set {
  order: 2;
  background: #454c83;
  border-radius: 4px;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #fff;
  margin-left: 20px;
  border: none;
  padding: 10px 16px
}

@media (max-width:1200px) {
  #gdpr-consent .gdpr__modal button.gdpr__set {
    order: 2 !important;
    width: 162px
  }
}

@media (max-width:480px) {
  #gdpr-consent .gdpr__modal button.gdpr__set {
    order: 2 !important;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    height: 34px;
    margin-left: 10px;
    padding-top: 0;
    padding-bottom: 0
  }
}

#gdpr-consent .gdpr__modal button.gdpr__consent {
  order: 1;
  background: #fff;
  border-radius: 4px;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #000;
  padding: 10px 16px;
  border: none;
  width: auto
}

@media (max-width:1200px) {
  #gdpr-consent .gdpr__modal button.gdpr__consent {
    order: 1 !important
  }
}

@media (max-width:480px) {
  #gdpr-consent .gdpr__modal button.gdpr__consent {
    order: 1 !important;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    height: 34px;
    padding-top: 0;
    padding-bottom: 0
  }
}




/* Responsive styles for mobile devices */
@media (max-width: 768px) {
  /* Make the text more readable on smaller screens */
  h2 {
    font-size: 28px; /* Reduce heading size */
  }

  .text-block-5._124 {
    font-size: 16px; /* Adjust font size */
    text-align: left; /* Align text to the left on mobile */
    margin-top: 15px;
  }

  /* Adjust container padding for mobile */
  .container-block.aaa {
    padding: 10px;
  }

  /* Flexbox adjustments */
  .design-apps-flex {
    flex-direction: column; /* Stack elements vertically */
    justify-content: center;
    align-items: center;
  }
}
.social-icons {
  display: flex; /* Make the icons inline using flexbox */
  gap: 20px; /* Space between each icon */
  justify-content: start; /* Align the icons to the left */
  align-items: center; /* Vertically align the icons */
 
}

.social-icons a img {
  width: 50px; /* Adjust the size of the icons */
  height: auto; /* Maintain aspect ratio */
  transition: transform 0.3s ease; /* Add hover transition */
}

.social-icons a:hover img {
  transform: scale(1.1); /* Scale icon on hover */
}
.social-icons {
  display: flex;
  justify-content: center; /* Center align icons */
  margin: 10px 0; /* Add some vertical margin */
}

.footer-grid {
  display: flex;
  flex-wrap: wrap; /* Allow columns to wrap */
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 30%; /* Flexible basis to allow three columns */
  padding: 10px; /* Add some padding */
  min-width: 250px; /* Minimum width to maintain readability */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-flex {
      flex-direction: column; /* Stack vertically on smaller screens */
  }

  .footer-col {
      flex: 1 1 100%; /* Full width for each column */
      text-align: center; /* Center text for better layout */
      padding: 20px 0; /* Add vertical padding */
  }

  .social-icons {
      justify-content: center; /* Center the icons */
      margin: 10px 0; /* Add margin for spacing */
  }

  .footer-bottom-flex {
      flex-direction: column; /* Stack items in the footer bottom */
      text-align: center; /* Center align text */
  }
}
.div-block-4 {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically if needed */
}

@media (max-width: 768px) {
  .div-block-4 {
      justify-content: center; /* Center horizontally on mobile */
      margin: 0 auto; /* Center the block itself */
  }
}
.footer-location-block {
  text-align: center; /* Center text on mobile */
  
    margin-left: 80px;
}

@media (max-width: 768px) {
  .footer-location-block {
      display: flex;
      justify-content: center; /* Center the block horizontally */
      margin: 0 auto; /* Ensure it's centered on the page */
  }
}
.all-btn-blockk {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden; /* Prevent content overflow */
}

.old-btn-text {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.new-btn-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(100%); /* Initially hidden below the button */
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* When hovering over the button */
.all-btn:hover .old-btn-text {
  transform: translateY(-100%); /* Old text moves up */
  opacity: 0; /* Old text fades out */
}

.all-btn:hover .new-btn-text {
  transform: translateY(0); /* New text slides into view */
  opacity: 1; /* New text fades in */
}

/* Keep the new-btn-text visible after hovering */
.all-btn .new-btn-text:hover {
  transform: translateY(0); /* Stay in place */
  opacity: 1; /* Ensure it remains visible */
}


html {
  scroll-behavior: smooth;
   overflow-y: scroll;
}


.animated-text {
  display: inline-block;
  transition: transform 0.3s ease, top 0.3s ease;
  position: relative;
  top: 0;
}

.animated-text:hover {
  transform: rotate(-10deg);
  top: -5px;
}
/* login animation  */

/* login animation  */
/* Base Button Styles */
.btn {
  font-weight: bold;
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  padding: 10px 20px;
  color: white;
  border-radius: 5px;
  transition: background-color 0.5s ease-in-out;
  width: 150px;
  height: 40px;
  text-align: center;
  background-color: #8b58ff;
}





/* Block to wrap old and new text */
.all-btn-block {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Initial state of the old text */
.old-btn-text1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transform: translateY(0);
  opacity: 1;
}

/* On hover, hide the old text */
.btn:hover .old-btn-text1 {
  transform: translateY(-100%);
  opacity: 0;
}

/* Initial state of the new text (hidden below) */
.new-btn-text1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

/* On hover, show the new text */
.btn:hover .new-btn-text1 {
  opacity: 1;
  transform: translateY(0);
}

/* Login button specific styles */
.login-btn1 .btn {
  padding: 13px 0px;
  background-color: #8b58ff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* Responsive Media Query for Mobile Screens */
@media (max-width: 576px) {
  .btn {
    width: 100%; /* Make the button take full width on mobile */
    height: auto;
    padding: 15px 10px; /* Adjust padding for better text alignment */
    font-size: 16px; /* Increase the font size */
  }

  .all-btn-block {
    height: auto;
  }

  .old-btn-text1, .new-btn-text1 {
    font-size: 16px; /* Adjust text size for mobile */
  }
}


/* 25-10-2025 navvar */
/* Base styles for the navbar */
.navbar-nav .nav-item {
  position: relative;
  display: inline-block;
  padding-bottom: 5px; /* Some space for the underline effect */
}

.navbar-nav .nav-item a {
  text-decoration: none;
  color: inherit; /* Keeps the link's color consistent */
  transition: color 0.3s ease; /* Optional: Change color on hover */
}

/* Create a pseudo-element for the underline effect */
.navbar-nav .nav-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px; /* Thickness of the underline */
  width: 0; /* Start with zero width */
  background-color: #8b58ff; /* Color of the underline */
  transition: width 0.3s ease-in-out; /* Smooth transition for width */
}

/* Hover state: show the underline */
.navbar-nav .nav-item:hover::after {
  width: 100%; /* Expand underline to full width */
}

/* Optional: Change the color of the link on hover */
.navbar-nav .nav-item:hover a {
  color: #8b58ff; /* Change link color to match the underline */
}

/* Our Publishers */

.slide-in-left {
  animation: slideLeftToRight 1s ease-out forwards;
  opacity: 0; /* Ensures the element starts invisible */
}

@keyframes slideLeftToRight {
  0% {
      transform: translateX(-100%);
      opacity: 0;
  }
  100% {
      transform: translateX(0);
      opacity: 1;
  }
}
/*  */

.explore-image-col1 {
  flex: 1;
  display: flex;
  justify-content: flex-start; /* Align image to the left */
  align-self: center;
  align-items: stretch;
  padding-right: 0;
  opacity: 1;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  perspective: 1000px; /* Add perspective for better 3D effect */
  margin-top: 20px;
}

.explore-image-col1 img {
  width: 100%;
  max-width: 513px; /* Limit the maximum width */
  height: auto;
  transition: transform 0.6s ease-in-out, opacity 1s ease; /* Smooth transition for both transform and opacity */
  transform-style: preserve-3d;
}

.flipping-image1 {
  transition: transform 0.6s; /* Smooth transition for the flip */
  transform-style: preserve-3d; /* Preserve 3D transformations */
}

.flipping-image1.flipped {
  transform: rotateY(180deg); /* Flip the image */
}
/* lastone */
.card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s;
}

.card:hover {
  transform: scale(1.05);
}

.card-body h5 {
  font-size: 18px;
  font-weight: bold;
}

.card-body p {
  font-size: 14px;
  color: #6c757d;
}

.btn-link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

