#backToHero {
            position: fixed;
            bottom: 35px;
            right: 6px;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: #158fd8; 
            color: #fff;
            border: none;
            font-size: 22px;
            cursor: pointer;
            z-index:97;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
            transition: opacity 0.3s ease-in-out, transform 0.2s;
        }
    
        #backToHero:hover {
            transform: scale(1.15);
            background: #07133b;
        }
    
        #backToHero.show {
            display: flex;
            opacity: 1;
        }
    
        #backToHero i {
            font-size: 24px; /* increase/decrease icon size */
        }    
    body {
      /*background: radial-gradient(circle at 10% 10%, #f2e8ff 0%, #ffffff 30%, #e9f6ff 70%);*/
      padding: 0;
      font-family:"Marcellus",serif;
    }
    
    #nav{transition:background 0.3s ease-in-out}#navbar.scrolled{background:black!important}.navbar-nav{justify-content:center}.navbar-toggler{background:#fff}.btn-menu{background:#1b3738;margin:0 auto;text-align:center;color:#fff;width:max-content;padding:10px 30px;border-radius:192px;font-size:18px}
   .registered-btn{background:#a5d066;margin:0 auto;text-align:center;color:#1b3738;width:max-content;padding:10px 30px;border-radius:192px;font-size:18px;border:1px solid #a5d066}.registered-btn:hover{background:#fff0;color:#a5d066;border:1px solid #a5d066}.registers-btn:hover{color:#a5d066;border:1px solid #a5d066;border-radius:192px}.navbar-nav .nav-link{color:#fff;font-size:21px;margin-right:10px}.left-stick {position: fixed;top: 50%;z-index: 10;transform: rotate(90deg) translateY(185px);display: flex;justify-content: center;align-items: center;}
    
    .text-justify{
      text-align: justify;
    }
    
    .blog-secction {
      background: linear-gradient(0deg, #158FD8 0%, #0B163E 100%);
      color: #fff;
      text-align: center;
      padding: 170px 20px 100px;
      position: relative;
    }

    .blog-secction h1 {
      font-size: 4rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .breadcrumb {
      justify-content: center;
      background: transparent;
      margin-bottom: 0;
      font-size: 25px;
    }

    .breadcrumb-item a {
      color: #fff;
      text-decoration: none;
    }

    .breadcrumb-item.active {
      color: #f1f1f1;
    }

    .post-card, .blog-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      min-height: 240px;
      color: #fff;
      display: flex;
      z-index: 9;
      align-items: flex-end;
      margin-bottom: 24px;
      box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, 
                  rgba(0, 0, 0, 0.23) 0px 6px 6px;
    }
    
    .blog-card img.blog-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      inset: 0;
      z-index: 1; 
      transition: transform .3s ease;
    }
    
    .blog-card:hover img.blog-img {
      transform: scale(1.05);
    }
    
    .blog-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.3) 20%, rgba(0,0,0,0.9) 100%);
      z-index: 1;
    }
    
    .post-card img.card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      inset: 0;
      z-index: 1;
      transition: transform .6s ease, opacity .6s ease, filter .6s ease;
      will-change: transform, opacity, filter;
    }
    
    .post-card img.card-img:nth-child(1){
      z-index: 1;
      transform: translateX(50%) scaleX(2);
      opacity: 0;
      filter: blur(10px);
    }
    
    .post-card img.card-img:nth-child(2){
      z-index: 1;
    }
    
    .post-card:hover img.card-img:nth-child(1){
      transform: translateX(0) scaleX(1);
      opacity: 1;
      filter: blur(0);
    }
    
    .post-card:hover img.card-img:nth-child(2){
      transform: translateX(-50%) scaleX(2);
      opacity: 0;
      filter: blur(10px);
    }
    
    .post-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.3) 20%, rgba(0,0,0,0.9) 100%);
      z-index: 1;
    }
    
    .post-content {
        width: 100%;
      position: relative;
      z-index: 2;
      padding: 20px;
    }
    
    .post-title {
      font-size: 1.2rem;
      letter-spacing: 1px;
      font-weight: 600;
      margin-bottom: 12px;
    }
    
    .post-meta {
      font-size: .9rem;
      display: flex;
      gap: 16px;
    }
    
    .post-meta i {
      margin-right: 6px;
    }
    
    .tall {
      min-height: 500px;
    }
    
    .btn-blog{
        background: #158FD8;
        backdrop-filter: blur(20px);
        border: 2px solid white;
        padding: 5px 15px;
        color: white;
        border-radius: 30px;
    }
    
    .main-blogs{
        background: linear-gradient(0deg, #158FD8 0%, #0B163E 100%);
        padding: 20px 0;
    }
    
    .custom-shape-divider-bottom {
        line-height: 0;
        width: 100%;
        overflow: hidden;
        z-index: 3;
        position: relative;
    }
    
    .custom-shape-divider-bottom svg {
        display: block;
        width: 100%;
        height: 100px;
    }
    
    .custom-shape-divider-bottom .shape-fill {
        fill: #07133b;
    }
   