* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
  }
  
  .skilvul-section {
    background: linear-gradient(90deg, #0b0144, #3533cd);

    color: white;
    padding: 40px 20px;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .image-wrapper {
    flex: 1;
    max-width: 400px;
    position: relative;
  }
  
  .image-wrapper img {
    width: 100%;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 70% 100%, 0 80%, 0 20%);
    object-fit: cover;
  }
  
  .text-wrapper {
    flex: 2;
  }
  
  .text-wrapper h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 16px;
    line-height: 1.4;
  }
  
  .text-wrapper p {
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.6;
  }
  
  .stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
  }
  
  .stat {
    text-align: center;
  }
  
  .stat h2 {
    font-size: 32px;
    font-weight: bold;
  }
  
  .stat p {
    font-size: 16px;
    margin-top: 4px;
  }
  
  .divider {
    width: 1px;
    height: 40px;
    background-color: white;
    opacity: 0.3;
  }
  
  @media (max-width: 768px) {
    .content {
      flex-direction: column;
      text-align: center;
    }
  
    .stats {
      flex-direction: column;
      gap: 10px;
    }
  
    .divider {
      display: none;
    }
  }

  .ln-latest-news-section {
    background: linear-gradient(90deg, #0b0144, #3533cd);


    padding: 80px 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .ln-container {
    max-width: 1140px;
    margin: 0 auto;
  }
  
  .ln-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
  }
  
  .ln-col-lg-6 {
    width: 100%;
    padding: 15px;
  }
  
  @media (min-width: 992px) {
    .ln-col-lg-6 {
      width: 50%;
    }
  
    .ln-d-none {
      display: none !important;
    }
  
    .ln-d-lg-block {
      display: block !important;
    }
  
    .ln-text-end {
      text-align: right;
    }
  }
  
  .ln-mb-5 {
    margin-bottom: 3rem;
  }
  
  .ln-section-heading h2 {
    font-size: 32px;
    color: #fff;
    font-weight: bold;
    line-height: 1.4;
  }
  
  .ln-section-heading em {
    color: #007bff;
    font-style: normal;
  }
  
  .ln-section-heading span {
    color: #f04444;
  }
  
  .ln-top-dec {
    max-width: 100px;
  }
  
  /* LEFT */
  .ln-left-image-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .ln-left-image-card:hover {
    transform: translateY(-5px);
  }
  
  .ln-left-image-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  
  .ln-info-box {
    padding: 25px;
  }
  
  .ln-meta-info {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    color: #777;
  }
  
  .ln-meta-info li i {
    margin-right: 5px;
    color: #f04444;
  }
  
  .ln-info-box h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
  }
  
  .ln-info-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .ln-main-btn {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }
  
  .ln-main-btn:hover {
    background-color: #0056b3;
  }
  
  /* RIGHT */
  .ln-blog-list .ln-blog-item {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .ln-blog-item .ln-content {
    flex: 1;
  }
  
  .ln-blog-item .ln-content span {
    font-size: 13px;
    color: #888;
    display: block;
    margin-bottom: 5px;
  }
  
  .ln-blog-item .ln-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
  }
  
  .ln-blog-item .ln-content h5 a {
    color: inherit;
    text-decoration: none;
  }
  
  .ln-blog-item .ln-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
  }
  
  .ln-blog-item .ln-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .ln-blog-item .ln-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .ln-blog-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .ln-blog-item .ln-thumb {
      margin-top: 15px;
    }
  
    .ln-main-btn {
      width: 100%;
      text-align: center;
    }
  }
  