/* General Styling */
.x003-kairaa-container {
  font-family: 'Arial', sans-serif;
  padding: 30px;
  background-color: #f5f0f0;
  color: #0e0c0c;
}

.x003-how-it-works {
  text-align: left; /* Center text for the section */
}

.x003-steps {
  display: flex;
  justify-content: space-around;
  align-items: center; /* Align items vertically */
  position: relative; /* To position the connecting line */
  margin: 40px 0; /* Added margin for spacing */
}

.x003-step {
  position: relative; /* For positioning the connecting line */
  text-align: center; /* Center text under icons */
}

/* Circle around icons */
.x003-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px; /* Circle width */
  height: 60px; /* Circle height */
  background-color: white; /* Background for the circle */
  border: 2px solid #004d40; /* Circle border */
  border-radius: 50%; /* Circular shape */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional shadow for depth */
  margin: 0 auto; /* Center the circle */
}

/* Icon style */
.x003-icon {
  font-size: 24px; /* Adjust icon size */
  color: #004d40; /* Icon color */
}

/* Top Section */
.x003-top-section {
  text-align: left;
  margin-bottom: 60px;
}

.x003-community-banner h2 {
  font-size: 28px;
  text-align: center;
  color: #060606;
  font-weight: 700;
}

.x003-community-banner p {
  font-size: 16px;
  color: #615959;
  margin-bottom: 30px;
}

.x003-btn-know-more {
  background-color: #ba6612;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 25px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.x003-btn-know-more:hover {
  background-color: #150e03;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

/* User stats */
.x003-user-stats {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 2px solid #52534b;
  border-radius: 40px;
  padding: 15px 20px;
}

.x003-user-stats p {
  font-size: 16px;
  font-weight: 600;
  color: #817070;
  margin: 0;
  margin-right: 20px;
}

.x003-user-stats .x003-count {
  font-size: 36px;
  font-weight: 100;
  color: #f57c00;
}

.x003-btn-browse-network {
  background-color: #4a460d;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 25px;
  margin-left: 30px;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.x003-btn-browse-network:hover {
  background-color: #633e07;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.x003-btn-browse-network img {
  margin-left: 10px;
  width: 24px;
  height: 24px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .x003-user-stats {
      flex-direction: column;
      padding: 20px;
  }

  .x003-btn-browse-network {
      margin-left: 0;
      margin-top: 20px;
  }

  .x003-steps {
      flex-direction: column; /* Stack steps on smaller screens */
      align-items: center; /* Center align for better readability */
  }
}

/* Flip Cards Section */
.x003-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
  gap: 20px;
}

.x003-flip-card {
  background-color: transparent;
  width: 100%; /* Full width */
  height: 250px;
  perspective: 2000px;
}

.x003-flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  color:white;
}

.x003-flip-card:hover .x003-flip-card-inner {
  transform: rotateY(180deg);
}

.x003-flip-card-front, .x003-flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  cursor: pointer;
  color:white;
}
.x003-flip-card-back p{
  color:white;
}

.x003-flip-card-front {
  background-color: #00796b;
  color: rgb(207, 200, 195);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 5px;
  cursor: pointer;
}

.x003-flip-card-front h2 {
  font-size: 36px;
  margin: 0;
  color:white;
}

.x003-flip-card-front p {
  font-size: 18px;
  color:rgb(211, 198, 198);
}

.x003-flip-card-back {
  background-color: #004d40;
  color: white;
  transform: rotateY(180deg);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.x003-active-card-content {
  margin-top: 20px;
  background-color: #0e1111;
  padding: 20px;
  border-radius: 10px;
}

.x003-active-card-content h2 {
  font-size: 24px;
  color: #ced2d1;
}

.x003-active-card-content p {
  font-size: 18px;
  color: #fdf7f7;
}

/* How it Works Section */
.x003-how-it-works {
  margin-top: 80px;
  margin-bottom: 10px;
  text-align: center;
}

.x003-how-it-works h2 {
  font-size: 28px;
  color: #004d40;
}

.x003-steps {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.x003-step {
  text-align: center;
}

.x003-step img.x003-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
}

.x003-step p {
  font-size: 16px;
  color: #004d40;
}

.x003-step span {
  font-size: 14px;
  color: #666;
}

/* Ecosystem Stakeholders Section */
.x003-ecosystem-stakeholders {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.x003-ecosystem-stakeholders h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.x003-ecosystem-stakeholders p {
  text-align: center;
  font-size: 16px;
  margin-bottom: 40px;
}

/* Tab Buttons */
.x003-tab-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.x003-tab-buttons button {
  background-color: #004d40; /* Dark teal color */
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 10px;
  transition: background-color 0.3s;
}

.x003-tab-buttons button.x003-active {
  background-color: #8b1a8b; /* Orange color for active tab */
}

.x003-tab-buttons button:hover {
  background-color: #00695c; /* Darker teal for hover */
}

/* Slider Container */
.x003-content-container {
  max-width: 500px; /* Optional: Set a max width for the slider */
  margin: 0 auto;
}

/* Card Styles */
.x003-card {
  background-color: rgb(236, 225, 225);
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
}
.x003-flip-image{
  width: 60px;
  height: 60px;
  margin-bottom: 10px;

}