.elementor-11823 .elementor-element.elementor-element-36b2da9:not(.elementor-motion-effects-element-type-background), .elementor-11823 .elementor-element.elementor-element-36b2da9 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(150deg, #EE2828F2 0%, #7D141D 100%);}.elementor-11823 .elementor-element.elementor-element-36b2da9{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:150px 0px 150px 0px;}.elementor-11823 .elementor-element.elementor-element-36b2da9 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-11823 .elementor-element.elementor-element-7bcc289 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:10px;}.elementor-11823 .elementor-element.elementor-element-7bcc289 > .elementor-element-populated{padding:0px 30px 0px 30px;}.elementor-11823 .elementor-element.elementor-element-6394745 > .elementor-widget-container{margin:0px 0px 10px 0px;}.elementor-11823 .elementor-element.elementor-element-6394745{text-align:center;}.elementor-11823 .elementor-element.elementor-element-6394745 .elementor-heading-title{font-family:"Poppins", Sans-serif;font-size:45px;font-weight:600;line-height:50px;color:#FFFFFF;}.elementor-11823 .elementor-element.elementor-element-c0e2e9b{text-align:center;}.elementor-11823 .elementor-element.elementor-element-c0e2e9b .elementor-heading-title{color:#FFFFFF;}.elementor-11823 .elementor-element.elementor-element-004be3d{--display:flex;}.elementor-11823 .elementor-element.elementor-element-004be3d:not(.elementor-motion-effects-element-type-background), .elementor-11823 .elementor-element.elementor-element-004be3d > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F0F0F09C;}@media(max-width:1024px){.elementor-11823 .elementor-element.elementor-element-36b2da9{padding:100px 0px 100px 0px;}.elementor-11823 .elementor-element.elementor-element-6394745 .elementor-heading-title{font-size:45px;}}@media(max-width:767px){.elementor-11823 .elementor-element.elementor-element-6394745 .elementor-heading-title{font-size:24px;line-height:35px;}}/* Start custom CSS for html, class: .elementor-element-01e40e5 */body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333;
    letter-spacing: 0.2px;
    line-height: 1.6;
  }

  .container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0px;
    gap: 30px;
    align-items: flex-start;
  }

  /* ===== Sidebar ===== */
  .sidebar {
      flex: 0 0 280px;
      max-width: 280px;
      background: #fcfcfc;
      padding: 25px;
      border-radius: 6px;
      border: 1px solid #e5e5e5;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
      position: sticky;
      top: 135px;
      height: fit-content;
}


  /* ===== Filter Section ===== */
  .filter-section {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .filter-section h2{
    margin: 0;
    font-size: 20px;
  }
  .filter-group {
    margin-bottom: 5px;
    transition: max-height 0.4s ease;
  }

  .filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    padding: 8px 0;
  }

  .filter-header h3 {
    font-size: 17px !important;
    font-weight: 500 !important;
    color: #111 !important;
    margin: 0;
  }

  .arrow {
    color: #333;
    transition: transform 0.3s ease;
  }

  .filter-options {
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .filter-group.collapsed .filter-options {
    max-height: 0;
    overflow: hidden;
  }

  .filter-group.collapsed .arrow {
    transform: rotate(-90deg);
  }

  .filter-options label {
    display: none;
    margin: 4px 0;
    cursor: pointer;
    font-size: 15px;
    align-items: center;
    gap: 8px;
    color: #333;
    transition: color 0.3s ease;
    line-height: 1.3;
  }

  .filter-options label.visible {
    display: flex;
    padding-left: 5px;
  }

  .filter-options label:hover {
    color: #000;
  }

  .filter-options input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #555;
    border-radius: 4px;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    margin-right: 6px;
    vertical-align: middle;
  }

  .filter-options input[type="checkbox"]:checked {
    background-color: #F31D26;
    border-color: #F31D26;
  }

  .filter-options input[type="checkbox"]:checked::after {
    content: "";
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
    left: 4px;
    top: 0px;
  }

  .show-toggle {
    color: #F31D26;
    font-size: 14px;
    font-weight: 600;
    margin-top: 6px;
    cursor: pointer;
    display: inline-block;
  }

  /* ===== Active Filters ===== */
  #active-filters {
    min-height: 60px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
  }

  #active-filters button {
    background: #F31D26;
    color: #fff;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
  }

  #active-filters .tag {
    background: #f7f7f7;
    border: 1px solid #ddd;
    color: #333;
    padding: 8px 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    border-radius: 5px;
  }

  #active-filters .tag i {
    margin-right: 6px;
    cursor: pointer;
  }

  /* ===== Case Study Grid ===== */
  .case-studies-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    justify-content: start;
    align-items: start;
  }

  .case-study-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 450px;
    transition: all 0.3s ease;
  }

  .case-study-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-3px);
  }

  .case-study-img-wrap {
    position: relative;
    overflow: hidden;
    height: 65%;
  }

  .case-study-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
  }

  .case-study-card:hover img {
    transform: scale(1.08);
  }

  .case-study-content {
    padding: 20px;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
  }

  .case-study-top h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #F31D26;
  }

   .case-study-bottom {
      pointer-events: auto;
      padding: 0px;
    }

  .case-study-bottom h3 {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 15px;
    color: #333;
    line-height: 1.4;
  }

  /* ===== Buttons ===== */
  .watch-btn {
    color: #F31D26 !important;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
  }

  .watch-btn:hover {
    color: #b31217 !important;
    transform: translateX(3px);
  }

  .watch-btn span {
    margin-left: 5px;
  }

  .watch-btns {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: #F31D26;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    margin-top: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .watch-btns:hover {
    background-color: #d72028;
    transform: translateY(-2px);
  }

  /* ===== Quick Links ===== */
  .quick-links {
    margin-top: 15px;
  }

  .quick-links-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 0;
    color: #333;
  }

  .quick-links-list {
    margin-top: 5px;
    padding: 0;
  }

  .link-with-border {
    color: #333;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    padding-left: 10px;
    border-left: 2px solid transparent;
    transition: all 0.25s ease;
    font-size: 15px;
  }

  .link-with-border:hover {
    border-left-color: #F31D26;
    color: #F31D26;
  }

   .after-less-message {
      font-size: 13px;
      color: #666;
      margin-top: 6px;
      display: none;
    }

  /* ===== Responsive ===== */
  @media screen and (max-width: 1024px) {
    .container {
      flex-direction: column;
    }

    .sidebar {
      position: static;
      width: 100%;
      max-width: 100%;
    }

    .case-studies-grid {
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
  }

  @media screen and (max-width: 600px) {
    .case-studies-grid {
      grid-template-columns: 1fr;
    }

    h2 {
      font-size: 20px !important;
    }

    h3 {
      font-size: 17px !important;
    }
  }/* End custom CSS */