.news-section{
    padding:100px 40px;
    background:#f7f9fc;
  }
  
  .news-container{
    max-width:1400px;
    margin:auto;
  }
  
  .news-header{
    text-align:center;
    margin-bottom:80px;
    animation:fadeUp 1s ease;
  }
  
  .section-badge{
    display:inline-block;
    padding:10px 20px;
    background:#e9efff;
    color:#1E3A8A;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:22px;
  }
  
  .news-header h2{
    position:relative;
    display:inline-block;
    font-size:68px;
    line-height:1.1;
    color:#0b3c5d;
    margin-bottom:22px;
  }
  
  .news-header h2::after{
    content:"";
    position:absolute;
    left:17.5%;
    bottom:-14px;
    width:65%;
    height:5px;
    background:#f4b400;
    border-radius:20px;
  }
  
  .news-header p{
    max-width:820px;
    margin:auto;
    font-size:21px;
    line-height:1.9;
    color:#5d6472;
  }
  
  @keyframes fadeUp{
    from{
      opacity:0;
      transform:translateY(30px);
    }
    to{
      opacity:1;
      transform:translateY(0);
    }
  }
  
  .news-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:34px;
    align-items:stretch;
  }
  
  .news-card{
    position:relative;
    background:#ffffff;
    overflow:hidden;
    border:1px solid #e5e7eb;
    transition:0.35s ease;
    display:flex;
    flex-direction:column;
  }
  
  .news-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
  }
  
  .news-image{
    width:100%;
    height:220px;
    overflow:hidden;
    position:relative;
  }
  
  .news-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:0.5s;
  }
  
  .news-card:hover .news-image img{
    transform:scale(1.05);
  }
  
  .news-content{
    padding:24px 24px 26px;
    display:flex;
    flex-direction:column;
    flex:1;
  }
  
  .news-tag-wrap{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:18px;
  }
  
  .news-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 16px;
    background:#edf4ff;
    color:#1E3A8A;
    border:1px solid #dbe7ff;
    font-size:12px;
    font-weight:700;
    letter-spacing:0.4px;
    text-transform:uppercase;
  }
  
  .news-content h3{
    font-size:28px;
    line-height:1.35;
    color:#0b3c5d;
    margin:0 0 14px;
  }
  
  .news-content p{
    font-size:15px;
    line-height:1.8;
    color:#667085;
    margin:0 0 24px;
  }
  
  .news-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:auto;
    color:#1E3A8A;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    transition:0.3s;
  }
  
  .news-btn:hover{
    transform:translateX(5px);
    color:#f4b400;
  }
  
  .news-pagination{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    margin:50px auto 0;
    flex-wrap:wrap;
  }
  
  .page-numbers{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
  }
  
  .page-btn,
  .page-number{
    display:flex;
    justify-content:center;
    align-items:center;
    border:none;
    min-width:45px;
    height:45px;
    padding:0 18px;
    border-radius:12px;
    background:#ffffff;
    border:1px solid #dbe2ea;
    color:#0b3c5d;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:.3s ease;
  }
  
  .page-btn:hover,
  .page-number:hover,
  .page-number.active{
    background:#1E3A8A;
    color:#ffffff;
    border-color:#1E3A8A;
  }
  
  .page-btn:disabled{
    opacity:.5;
    cursor:not-allowed;
  }
  
  @media(max-width:1100px){
    .news-grid{
      grid-template-columns:repeat(2,1fr);
    }
  
    .news-header h2{
      font-size:54px;
    }
  
    .news-content h3{
      font-size:24px;
    }
  }
  
  @media(max-width:768px){
    .news-section{
      padding:80px 20px;
    }
  
    .news-grid{
      grid-template-columns:1fr;
      gap:28px;
    }
  
    .news-header{
      margin-bottom:60px;
    }
  
    .news-header h2{
      font-size:42px;
    }
  
    .news-header p{
      font-size:17px;
    }
  
    .news-content{
      padding:22px;
    }
  
    .news-content h3{
      font-size:24px;
    }
  
    .news-image{
      height:240px;
    }
  
    .news-pagination{
      gap:8px;
    }
  
    .page-btn,
    .page-number{
      min-width:42px;
      height:42px;
      font-size:14px;
      padding:0 14px;
    }
  }

  .scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
  
    width: 55px;
    height: 55px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    color: white;
  
    border-radius: 16px;
  
    background: rgba(11, 108, 255, 0.45);
  
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  
    border: 1px solid rgba(255,255,255,0.15);
  
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  
    z-index: 9999;
  
    transition: all 0.4s ease;
  
    opacity: 0;
    pointer-events: none;
  
    transform: translateY(20px);
  }
  
  .scroll-top.show {
    opacity: 1;
    pointer-events: auto;
  
    transform: translateY(0);
  }
  
  .scroll-top:hover {
    background: rgba(11, 108, 255, 0.75);
  
    transform: translateY(-5px) scale(1.05);
  
    box-shadow: 0 8px 25px rgba(11,108,255,0.35);
  }

  #scrollProgress{
    position:fixed;
    bottom:0;
    left:0;
    height:4px;
    width:0%;
    background:linear-gradient(90deg,#1E3A8A,#3B82F6,#60A5FA);
    z-index:9999;
  
    box-shadow:
      0 0 8px rgba(59,130,246,0.8),
      0 0 16px rgba(30,58,138,0.6);
  
    filter: drop-shadow(0 0 6px rgba(59,130,246,0.9));
    border-radius: 10px;
    transition: width 0.1s linear;
  }

  .footer {
    background: #1E3A8A;              
    color: #ffffff;                    
    padding: 50px 0;
    font-family: 'Poppins', sans-serif;
    }
    
    .footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    }
    
    .footer-col {
    flex: 1;
    }
    
    .footer-col h3,
    .footer-col h4 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    }
    
    .footer-col p {
    margin: 6px 0;
    font-size: 14px;
    color: white;     
    line-height: 1.6;
    }
    
    @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 25px;
    }
    }