/* Keep your original styles */
.company-section {
    background-color: #ffffff;
    padding: 80px 0;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a56db;
    margin-bottom: 16px;
  }
  
  .section-header p {
    font-size: 18px;
    color: #3b82f6;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }
  
  @media (min-width: 768px) {
    .card-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  /* New 3D Card Styles with unique classes */
  .al-card-parent {
    width: 100%;
    padding: 20px;
    perspective: 1000px;
    height: 460px; 
  }
  
  .al-3d-card {
    position: relative;
    padding-top: 50px;
    /* border: 3px solid rgb(255, 255, 255); */
    transform-style: preserve-3d;
    /* background: linear-gradient(135deg, #0000 18.75%, #f3f3f3 0 31.25%, #0000 0),
        repeating-linear-gradient(45deg, #f3f3f3 -6.25% 6.25%, #ffffff 0 18.75%); */
    background-size: 60px 60px;
    background-position: 0 0, 0 0;
    background-color: #f0f0f0;
    width: 100%;
    box-shadow: rgba(142, 142, 142, 0.3) 0px 30px 30px -10px;
    transition: all 0.5s ease-in-out;
  }
  
  .al-3d-card:hover {
    background-position: -100px 100px, -100px 100px;
    transform: rotate3d(0.5, 1, 0, 30deg);
  }
  
  .al-content-box {
    background: rgba(4, 193, 250, 0.732);
    transition: all 0.5s ease-in-out;
    padding: 60px 25px 25px 25px;
    transform-style: preserve-3d;
  }
  
  .al-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    transform: translate3d(0px, 0px, 40px);
  }
  
  .icon-container {
    background-color: #2563eb;
    padding: 12px;
    border-radius: 50%;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .al-card-header .icon-container {
    transform: translate3d(0px, 0px, 10px);
    background-color: #2563eb;
  }
  
  .icon-container svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  
  .al-card-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    transition: all 0.5s ease-in-out;
    transform: translate3d(0px, 0px, 50px);
  }
  
  .al-card-header h3:hover {
    transform: translate3d(0px, 0px, 60px);
  }
  
  .al-card-content {
    margin-top: 10px;
    transition: all 0.5s ease-in-out;
    transform: translate3d(0px, 0px, 30px);
  }
  
  .al-card-content:hover {
    transform: translate3d(0px, 0px, 50px);
  }
  
  .al-card-content p {
    font-size: 14px;
    font-weight: 500;
    color: #f2f2f2;
    line-height: 1.6;
  }
  
  .al-see-more {
    cursor: pointer;
    margin-top: 1rem;
    display: inline-block;
    font-weight: 900;
    font-size: 10px;
    text-transform: uppercase;
    color: rgb(7, 185, 255);
    background: white;
    padding: 0.5rem 0.7rem;
    transition: all 0.5s ease-in-out;
    transform: translate3d(0px, 0px, 20px);
  }
  
  .al-see-more:hover {
    transform: translate3d(0px, 0px, 60px);
  }
  
  .al-date-box {
    position: absolute;
    top: 30px;
    right: 30px;
    height: 60px;
    width: 60px;
    background: white;
    border: 1px solid rgb(7, 185, 255);
    padding: 10px;
    transform: translate3d(0px, 0px, 80px);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 17px 10px -10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .al-date-box span {
    display: block;
    text-align: center;
  }
  
  .al-month {
    color: rgb(4, 193, 250);
    font-size: 9px;
    font-weight: 700;
  }
  
  .al-date {
    font-size: 20px;
    font-weight: 900;
    color: rgb(4, 193, 250);
  }
  
  /* Dark mode compatibility */
  /* .dark\:bg-dark {
    background-color: #1f2937;
  }
  
  .dark\:bg-dark-2 {
    background-color: #374151;
  }
  
  .dark\:text-white {
    color: #ffffff;
  }
  
  .dark\:text-dark-6 {
    color: #d1d5db;
  } */