 .section.performance-section {
  display: flex;
  justify-content: center;   
  align-items: flex-start;
  gap: 40px;                 
  padding: 80px 60px;        /* smaller base padding */
  flex-wrap: wrap;           /* allows stacking */
  box-sizing: border-box;
}

/* Left Content */
.section.performance-section .content {
  flex: 1 1 300px;   /* flex-grow and shrink */
  min-width: 280px;
  max-width: 600px; /* keep readable width */
}

.section.performance-section h2 {
  font-size: 26px;
  margin-bottom: 15px;
  border-left: 4px solid #d8ff00;
  padding-left: 10px;
}

.section.performance-section p {
  color: #aaa;
  margin-bottom: 20px;
  /* font-family: 'Lato', sans-serif; */
  font-weight: 300;           /* Light weight */
  font-style: normal;         /* "Light" in Figma = font-weight:300, not font-style */
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0;    
}

/* List */
.section.performance-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section.performance-section ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.section.performance-section ul li::before {
  content: "•";
  color: #d8ff00;
  font-size: 20px;
  line-height: 1;
  flex: 0 0 18px;    
  margin-top: 6px;   
}

/* vertical stack of heading + description */
.li-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.li-content strong {
  margin: 0 0 6px 0;
  font-size: 18px;
  color: #d8ff00;
}

.li-desc {
  /* font-family: 'Lato', sans-serif; */
  font-weight: 300;           /* Light weight */
  font-style: normal;         /* "Light" in Figma = font-weight:300, not font-style */
  font-size: 16px;
  /* line-height: 22px; */
  letter-spacing: 0;  
  line-height: 1.4;
}

/* Right Card */
.performance-card {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 30px;
  width: 100%;
  max-width: 350px;  /* don’t exceed this */
  color: #fff;
  flex-shrink: 0;
  box-sizing: border-box;
}

.performance-card h3 {
  font-size: 22px;
  margin: 0;
}

.performance-card p {
  font-size: 14px;
  color: #aaa;
  margin: 4px 0 20px 0;
}

.performance-stats {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.performance-stats .stat-icon {
  width: 40px;
  height: 40px;
  background: #E3F919;
  border-radius: 10px;
}

.performance-stats h4 {
  font-size: 28px;
  margin: 0;
}

.performance-stats span {
  display: block;
  font-size: 14px;
  color: #ccc;
}

canvas {
  margin-top: 10px;
}

/* ✅ Tablet view */
@media (max-width: 900px) {
  .section.performance-section {
    flex-direction: column;
    align-items: center;
    text-align: left;   /* keep readable text */
    padding: 60px 30px;
  }

  .performance-card {
    max-width: 100%;
    margin-top: 30px;
  }
}

/* ✅ Mobile view */
@media (max-width: 480px) {
  .section.performance-section {
    padding: 40px 20px;
    gap: 25px;
  }

  .section.performance-section h2 {
    font-size: 22px;
  }

  .li-content strong {
    font-size: 16px;
  }

  .li-desc {
    font-size: 14px;
  }

  .section.performance-section ul li::before { 
    font-size: 18px; 
    margin-top: 4px; 
  }
}

.services {
  /* Default: 1 column for small screens */
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 40px 10px;
  justify-items: center;
  padding: 60px 10%;
}
.services-title {
 /* font-family: 'Mansfield', serif; */
      font-weight: 600;
      font-size: 36px;
      background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.19) 93%, rgba(255, 255, 255, 0) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 20px;
    grid-column: 1 / -1;
}
@media (max-width: 1024px) {
  .services {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 600px) {
  .services {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}

/* Media query for larger screens (e.g., tablets and desktops) */


/* Card container */
.card {
  position: relative;
  /* Changed fixed width to a maximum width to allow it to shrink on small screens */
  max-width: 348px;
  width: 100%; /* Important: makes it take up the available width */
  min-height: 404px;
  background: linear-gradient(180deg, #202020 0%, rgba(32, 32, 32, 0.2) 100%);
  border-radius: 40px;
  box-sizing: border-box;
  padding: 50px 30px;
  color: #fff;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Number at the top */
.card-number {
  /* font-family: 'Lato', sans-serif; */
  font-weight: 400;
  font-size: 50px;
  line-height: 60px;
  color: #FFFFFF;
  opacity: 0.2;
}

/* Icon placeholder */
.card-icon {
  width: 90px;
  height: 90px;
  background: #3E3E3E;
  border-radius: 18px;
  margin: 0 auto 30px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Title */
.card-title {
  /* font-family: 'Mansfield', serif; */
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  text-transform: capitalize;
  color: #E3F919;
  margin-bottom: 16px;
}

/* Text */
.card-text {
  /* font-family: 'Lato', sans-serif; */
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  /* text-transform: capitalize; */
  color: #FFFFFF;
  max-width: 287px;
  margin: 0 auto;
  text-align: left;
}

@media (max-width: 992px) {
  .cards {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}
    