/* ================================
   CASE STUDY SECTION - LIGHT THEME
================================ */

.case-study-section {
  background: #fff;
  color: #111;
  font-family: 'Inter', sans-serif;
  padding: 80px 0;
}

/* Container */
.case-study-section .container {
  max-width: 1200px;
}

/* Tag */
.case-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1px;
  color: #27cac9;
  border: 1px solid #27cac9;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ================================
   TYPOGRAPHY
================================ */

/* Main Heading */
.case-study-section .section-title {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
}

/* Sub Headings */
.case-study-section h4 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 14px;
}

/* Paragraph */
.case-study-section p {
  font-size: 18px;
  color: black;
  line-height: 1.7;
  margin: 0;
}

/* Description center text */
.case-study-section .section-desc {
  max-width: 720px;
  margin: 0 auto;
}

/* Small text */
.case-study-section .small {
  font-size: 18px;
  color: black;
}

/* ================================
   METRICS
================================ */

.case-study-section h3 {
  font-size: 32px;
  font-weight: 700;
  color: #27cac9;
  margin-bottom: 6px;
}

/* ================================
   CARDS
================================ */

.case-study-section .bg-light {
  background: #fff !important;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  border-radius: 16px;
  padding: 20px;
  height: 100%;
}



.case-study-section .h6 {
  font-size: 24px !important;
}

.case-study-section .bg-light:hover {
  border-color: #27cac9;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

/* Lists */
.case-study-section ul li {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: 0.3s;
  font-size: 18px;
}

.case-study-section ul li:hover {
  border-color: #27cac9;
  transform: translateX(4px);
}

/* ================================
   TABLE
================================ */

.case-study-section table {
  background: #fff;
  color: #333;
  border-color: #e5e7eb;
}

.case-study-section table th {
  background: #f9fafb;
  color: #27cac9;
  font-weight: 600;
  font-size: 16px;
}

.case-study-section table td {
  font-size: 18px;
}

/* ================================
   QUOTE
================================ */

.case-study-section .bg-light.text-center {
  background: #f9fafb !important;
  border: 1px solid #27cac9;
  color: #333;
  font-style: italic;
  font-size: 18px;
  padding: 24px;
}

/* ================================
   RESPONSIVE
================================ */

/* Tablet */
@media (max-width: 991px) {

  .case-study-section {
    padding: 60px 0;
  }

  .case-study-section .section-title {
    font-size: 32px;
  }

  .case-study-section h4 {
    font-size: 22px;
  }

  .case-study-section p {
    font-size: 16px;
  }

  .case-study-section h3 {
    font-size: 26px;
  }
}

/* Mobile */
@media (max-width: 576px) {

  .case-study-section {
    text-align: center;
    padding: 50px 0;
  }

  .case-study-section .section-title {
    font-size: 26px;
  }

  .case-study-section h4 {
    font-size: 20px;
  }

  .case-study-section p {
    font-size: 15px;
  }

  .case-study-section h3 {
    font-size: 22px;
  }

  .case-study-section ul {
    text-align: left;
    padding-left: 14px;
  }

  .case-study-section table td,
  .case-study-section table th {
    font-size: 13px;
  }
}


/* TABLE COLOR DIFFERENTIATION */



/* Optional: better alignment */
.case-table td,
.case-table th {
  vertical-align: middle;
  text-align: center;
}