*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
  }
  
  body{
    background:#fff;
    color:#1f2937;
    padding-top:0;
  }
  
  .blog-hero{
    position:relative;
    width:100%;
    height:58vh;
    min-height:480px;
    overflow:hidden;
    margin-top:0;
  }
  
  .blog-hero img{
    position:absolute;
    top:-80px;
    left:0;
    width:100%;
    height:125%;
    object-fit:cover;
    display:block;
    will-change:transform;
    transform:translate3d(0,0,0);
  }
  
  .blog-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
      to top,
      rgba(0,0,0,.75),
      rgba(0,0,0,.15)
    );
  }
  
  .blog-content{
    position:absolute;
    left:50%;
    bottom:60px;
    transform:translateX(-50%);
    width:90%;
    max-width:1300px;
    color:#fff;
    z-index:2;
  }
  
  .blog-category{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 20px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.25);
    backdrop-filter:blur(10px);
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
  }
  
  .blog-content h1{
    font-size:68px;
    line-height:1.15;
    font-weight:700;
    max-width:1000px;
    margin-bottom:25px;
  }
  
  .blog-meta{
    display:flex;
    align-items:center;
    gap:16px;
    font-size:16px;
    font-weight:500;
  }
  
  .blog-section{
    padding:80px 30px 120px;
  }
  
  .blog-container{
    max-width:980px;
    margin:auto;
  }
  
  .blog-container h1{
    font-size:52px;
    line-height:1.2;
    color:#0b3c5d;
    margin-bottom:40px;
    max-width:900px;
  }
  
  .blog-container p{
    font-size:20px;
    line-height:2;
    color:#4b5563;
    margin-bottom:28px;
    text-align:justify;
    text-indent:50px;
  }
  
  .blog-navigation{
    max-width:1300px;
    margin:20px auto 100px;
    padding:0 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
  }
  
  .blog-nav-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 28px;
    border-radius:12px;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:.3s ease;
  }
  
  .back-btn{
    background:#edf4ff;
    color:#1E3A8A;
  }
  
  .contact-btn{
    background:#0b3c5d;
    color:#fff;
  }
  
  .blog-nav-btn:hover{
    transform:translateY(-4px);
  }
  
  .related-news{
    padding:0 30px 120px;
  }
  
  .related-header{
    max-width:1300px;
    margin:0 auto 35px;
  }
  
  .related-header h2{
    font-size:42px;
    color:#0b3c5d;
  }
  
  .related-grid{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
  }
  
  .related-card{
    background:#fff;
    border:1px solid #e5e7eb;
    overflow:hidden;
    transition:.3s ease;
  }
  
  .related-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.08);
  }
  
  .related-image{
    height:180px;
    overflow:hidden;
  }
  
  .related-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;
  }
  
  .related-card:hover img{
    transform:scale(1.06);
  }
  
  .related-content{
    padding:20px;
  }
  
  .related-content span{
    display:inline-block;
    margin-bottom:14px;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    color:#1E3A8A;
  }
  
  .related-content h3{
    font-size:20px;
    line-height:1.5;
    color:#0b3c5d;
    margin-bottom:16px;
  }
  
  .related-content a{
    display:inline-flex;
    align-items:center;
    gap:6px;
    text-decoration:none;
    color:#1E3A8A;
    font-size:14px;
    font-weight:700;
    transition:.3s ease;
  }
  
  .related-content a:hover{
    color:#f4b400;
    transform:translateX(5px);
  }
  
  .scroll-top{
    position:fixed;
    right:30px;
    bottom:30px;
    width:58px;
    height:58px;
    border-radius:50%;
    background:#0b3c5d;
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:700;
    line-height:1;
    z-index:9999;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.3s ease;
  }
  
  .scroll-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }
  
  .scroll-top:hover{
    transform:translateY(-5px);
  }
  
  @media(max-width:992px){
  
    .blog-hero{
      height:50vh;
      min-height:420px;
    }
  
    .blog-content h1{
      font-size:48px;
    }
  
    .blog-container h1{
      font-size:42px;
    }
  
    .related-grid{
      grid-template-columns:repeat(2,1fr);
    }
  
  }
  
  @media(max-width:768px){
  
    .blog-hero{
      height:45vh;
      min-height:360px;
    }
  
    .blog-content{
      bottom:40px;
    }
  
    .blog-content h1{
      font-size:34px;
    }
  
    .blog-meta{
      flex-wrap:wrap;
      gap:10px;
      font-size:14px;
    }
  
    .blog-section{
      padding:60px 20px 90px;
    }
  
    .blog-container{
      max-width:100%;
    }
  
    .blog-container h1{
      font-size:34px;
      margin-bottom:28px;
      max-width:100%;
    }
  
    .blog-container p{
      font-size:17px;
      line-height:1.9;
      text-indent:30px;
      text-align:justify;
    }
  
    .blog-navigation{
      padding:0 20px;
      margin:20px auto 70px;
    }
  
    .blog-nav-btn{
      padding:14px 20px;
      font-size:14px;
    }
  
    .related-news{
      padding:0 20px 90px;
    }
  
    .related-header h2{
      font-size:32px;
    }
  
    .related-grid{
      grid-template-columns:1fr;
    }
  
    .related-image{
      height:220px;
    }
  
    .scroll-top{
      right:20px;
      bottom:20px;
      width:52px;
      height:52px;
      font-size:24px;
    }
  
  }

  #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;
    }
    }