.mobile-accordion{
  display:none; 
}
.marketing-sol-section {
  background-color: #000000;
}
.marketing-sol-section .mark{font-size:20px;
  font-weight:600;}
.marketing-sol-section .container {
  display: grid;
  grid-template-columns: 40% 20% 40%; /* left | mid | right */
  /*   gap: 20px; */
  max-width: 1292px;
  margin: 0 auto;
  align-items: stretch;
}
.marketing-sol-section .description-mobile{display:none !important;}

/* Left & Right Columns */
.marketing-sol-section .left-column
{
  display: grid;


  background-color: #202020;
  border-radius: 20px;
  padding: 45px 30px 60px 30px;

}

.marketing-sol-section .right-column {
  display: grid;


  background-color: #202020;
  border-radius: 20px;
  padding: 50px 20px 50px 30px;

}

.marketing-sol-section .left-column > div{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;

}


.marketing-sol-section .right-column > div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  padding-bottom: 20px;
}

/* Mid Column (arrows) */
.marketing-sol-section .mid-column {
  display: grid;

  align-items: center;
  justify-items: center;
  margin-top: 34px;
  margin-bottom: 69px;
}

.mid-column .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mid-column .arrow img {
  max-width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 992px) {
.marketing-sol-section .container {
    grid-template-columns: 1fr;
  }

  .marketing-sol-section .mid-column {
    display: none; /* hide arrows on mobile */
  }

  .marketing-sol-section .left-column,
  .marketing-sol-section .right-column {
    grid-template-rows: auto;
    padding: 20px;
  }

  .marketing-sol-section .left-column > div,
  .marketing-sol-section .right-column > div {
    background: transparent;
    padding: 10px 0;
  }
}




/* ===== Responsive Enhancements ===== */

/* Large tablets / small desktops */
@media (max-width: 1200px) {
  .marketing-sol-section .container {
    grid-template-columns: 45% 10% 45%; /* tighter mid column */
    gap: 15px;
    padding: 0 20px;
  }

  .marketing-sol-section .left-column,
  .marketing-sol-section .right-column {
    padding: 30px 15px;
  }

  .marketing-sol-section .left-column > div,
  .marketing-sol-section .right-column > div {
    font-size: 16px;
  }
}















/* =====================================================
   TABLETS & MOBILE SCREENS (≤992px)
   ===================================================== */
@media (max-width: 992px) {

  /* Hide desktop layout */
  .marketing-sol-section .container {
    display: none;
  }

  /* Show mobile accordion */
  .mobile-accordion {
    display: block;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    position: relative;
    padding-left: 30px; /* space for line/dot */
  }

  /* Accordion structure */
  .acc {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
  }

  /* Each accordion card */
  .acc__card {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .acc__card:hover {
    background: #222;
  }

  /* Orange line segment (per card) */
  .acc__card::before {
    content: "";
    position: absolute;
    left: -19px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #ffaa17;
  }

  /* Orange dot */
/*   .acc__card::after {
    content: "";
    position: absolute;
    left: -23px;
    top: 24px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ffaa17;
    z-index: 2;
  } */

  /* Remove bottom part of line after last card */
  .acc__card:last-child::before {
/*     height: 50px; /* stops short */ */
  }

 /* Accordion title */
.acc__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  color: white;
}

/* Arrow icon */
.acc__title::after {
  content: "▾";
  color: #ffaa17;
  font-size: 14px;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.acc__title.active:after {
    transform: rotate(180deg);
   
}
/* Rotate arrow when card is active */
.acc__card.active .acc__title::after {
  transform: rotate(180deg);
}

  /* Accordion panel text */
  .acc__panel {
    display: none;
    font-size: 14px;
    color: #ccc;
    margin-top: 8px;
    line-height: 1.5;
  }

  .acc__card.active .acc__panel {
    display: block;
  }

  /* Tablet adjustments */
  .container {
    padding: 0 15px;
  }

  .left-column, .right-column {
    border-radius: 15px;
    padding: 15px;
  }

  .mid-column {
    display: none;
  }

  .marketing-sol-section .right-column,
  .marketing-sol-section .mid-column {
    display: none;
  }
}

/* =====================================================
   LARGE PHONES (≤768px)
   ===================================================== */
@media (max-width: 768px) {
  .mobile-accordion {
    padding-left: 25px;
  }

  .acc__title {
    font-size: 15px;
  }

  .acc__panel {
    font-size: 14px;
  }

  .acc__card {
    padding: 14px 18px;
  }

  .acc__card::before {
    left: -17px;
  }

  .acc__card::after {
    left: -22px;
    top: 22px;
  }
}

/* =====================================================
   SMALL PHONES (≤480px)
   ===================================================== */
@media (max-width: 480px) {
  .mobile-accordion {
    padding-left: 22px;
  }

  .acc__title {
    font-size: 14px;
  }

  .acc__panel {
    font-size: 13px;
    line-height: 1.4;
  }

  .acc__card {
    padding: 12px 15px;
  }

  .acc__card::before {
    left: -15px;
  }

  .acc__card::after {
    left: -20px;
    top: 20px;
    width: 8px;
    height: 8px;
  }
}
