.main-box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
}

.content-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* Left Panel */
.left-panel {
  width: 30%;
  min-width: 280px;
  position: sticky;
  top: 20px;
  align-self: flex-start;
  height: auto;
  padding: 30px;
  border-radius: 15px;
  background: linear-gradient(135deg, #e0f7fa, #e1bee7);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  color: #333;
}

.left-panel h5 {
  color: #6a1b9a;
  font-weight: 700;
}

.left-panel h6 {
  color: #00796b;
  margin-top: 20px;
}

.left-panel ul li {
  margin-bottom: 10px;
  list-style: circle;
  padding-left: 5px;
}

.campaign-results .stat {
  font-size: 30px;
  color: #d81b60;
}

.label {
  font-size: 14px;
  color: #555;
}

.enquire-btn {
  background: linear-gradient(90deg, #8e24aa, #3949ab);
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 30px;
  padding: 12px 25px;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.enquire-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(142, 36, 170, 0.3);
}

/* Right Panel */
.right-panel {
  width: 65%;
  min-width: 300px;
  overflow-y: auto;
  height: 90vh;
  background: white;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

/* Images */
.case-img {
  width: 100%;
  border-radius: 10px;
  margin: 20px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


/* Headings */
h4, h5 {
  margin-top: 20px;
}

 h2, h3 {
  font-size: 2rem;
  color: #333;
}

.stat {
  font-size: 28px;
  font-weight: bold;
  color: #28a745;
}

/* 🔥 Mobile & Tablet Styles - up to 768px */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;      /* Stack panels vertically */
    gap: 20px;
    padding-bottom: 20px;
    flex-wrap: nowrap;
    overflow-x: hidden;          /* Remove horizontal scroll */
  }

  .left-panel,
  .right-panel {
    width: 100%;
    min-width: 100%;
    height: auto;
    flex: none;
  }

  .left-panel {
    position: static !important;    /* No sticky */
    max-height: none !important;
    overflow: visible !important;
  }

  .right-panel {
    height: auto !important;
    overflow: visible !important;
  }

  .enquire-btn {
    width: 100%;
    padding: 12px 25px;
    font-size: 16px;
  }

  .stat {
    font-size: 24px;
  }

  h4, h5 {
    font-size: 1.2rem;
  }

  .case-img {
    margin: 10px 0;
  }
}

/* 🔥 Custom Media Query for Screen Sizes between 750px to 950px */
@media (min-width: 750px) and (max-width: 950px) {
  .content-wrapper {
    flex-direction: column; /* Stack the panels vertically */
    gap: 20px;
  }

  .left-panel {
    width: 100%; /* Full width for left panel */
    min-width: unset;
    position: static; /* No sticky behavior */
    margin-bottom: 30px;
  }

  .right-panel {
    width: 100%; /* Full width for right panel */
    min-width: unset;
    margin-top: 20px;
  }

  .enquire-btn {
    width: 100%;
    padding: 12px 25px;
    font-size: 16px;
  }

  .stat {
    font-size: 24px;
  }

  h4, h5 {
    font-size: 1.2rem;
  }

  .case-img {
    margin: 10px 0;
  }
}

/* 🔥 Extra small devices - up to 480px */
@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  h4, h5 {
    font-size: 1rem;
  }

  .stat {
    font-size: 20px;
  }

  .enquire-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .case-img {
    margin: 10px 0;
  }
}


/* enquiry form */
