body{
    font-family: system-ui;
    margin: 0;
    line-height: 1.6;
}


/* Section-header */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* Main navbar container */
        .site-header {
            /* position: sticky; */
            top: 0;
            z-index: 1020;
            padding: 2px 0px;
            background: white;
            box-shadow: 0 6px 25px 0 rgba(0,0,0,0.25);
        }

        /* Navbar inner container */
        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 74px;
            position: relative;
        }
       .light span{
            font-size: 17px;
            font-weight: 600;
            margin-right: 10px;
       }
        /* Logo styles */
        .logo-link {
            display: flex;
        }

        .logo-image {
            width: 100px;
            height: auto;
            max-width: 100%;
        }

        /* Hide navigation menu completely */
        .nav-menu {
            display: none;
        }

        /* Blog button - always visible */
        .blog-button {
            display: inline-block;
            background: linear-gradient(to right, #5c554b, #e31617);
            border-radius: 5px;
            padding: 7px 25px;
            color: white;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-left: auto;
        }

        .blog-button:hover {
            background: #343535;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .blog-button:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        /* Responsive styles */
        @media (max-width: 1399px) {
            .logo-image {
                width: 180px;
            }
        }

        @media (max-width: 1199px) {
            .logo-image {
                width: 140px;
            }
            
            .blog-button {
                font-size: 14px;
                padding: 8px 12px;
            }
        }

        @media (max-width: 991px) {
            .header-container {
                padding: 8px 29px 8px 23px;
            }
            
            .blog-button {
                font-size: 16px;
                padding: 10px 15px;
                color: white;
                border-radius: 5px;
                font-weight: 600;
                box-shadow: 0 2px 5px rgba(236,115,35,0.3);
            }
            
            .blog-button:hover {
                background: #d45d1c;
                box-shadow: 0 4px 10px rgba(236,115,35,0.4);
            }
            
            .blog-button:active {
                transform: scale(0.98);
                background: #b34d17;
            }
        }

        @media (max-width: 574px) {
            .header-container {
                padding: 8px 15px;
            }
            .light span{
              display: none!important;
            }
            
            .logo-image {
                width: 100px;
            }
            
            .blog-button {
                font-size: 14px;
                padding: 8px 12px;
            }
        }
        

        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
/* Section-footer */

.section-footer {
  background: #f9f9f9;
  padding: 10px 0 20px;
}

.top-box {
      background: linear-gradient(to right, #5c554b, #e31617);
      padding: 30px 20px;
      margin: 25px auto 0;
      max-width: 1100px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(255,255,255,0.04);
      text-align: center;
    }

    .top-box .header-text {
      font-size: 14px;
      font-weight: 400;
      color: #ffffff;
      margin-bottom: 5px;
    }

    .top-box .rating-text {
      font-size: 0.95rem;
      color: #ffffff;
    }

    .stars {
      color: #fbcf22;
      margin: 0 3px;
    }

    .rating-platforms {
      color: #ffffff;
      font-weight: 500;
    }

    .section-footer .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 5px 20px;
      text-align: center;
    }

    .section-footer .services-text {
      font-size: 1rem;
      font-weight: 300;
      letter-spacing: 1.5px;
      margin: 16px 0 30px 0;
      color: #000000;
      text-transform: uppercase;
    }

    .section-footer .social-icons {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      margin: 20px 0;
      flex-wrap: wrap;
    }

    .section-footer .social-icon {
      width: 48px;
      height: 48px;
      background-color: #ffffff;
      /* background: linear-gradient(to right, #5c554b, #e31617); */
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      text-decoration: none;
    }

.section-footer .social-icon::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    width: 45px;
    margin-top: 0px;
    height: 45px;
    border: 1px dashed #000000;
    animation: spin2 15s linear infinite;
    z-index: 1;
}

@keyframes spin2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

    .social-icon:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    }

    .social-icon img {
      width: 25px;
    }

    .footer-text {
      font-size: 0.9rem;
      color: #000000;
      line-height: 1.8;
      margin-top: 20px;
    }

    .footer-text strong {
      color: #000000;
    }

    @media (max-width: 768px) {
      .logo-item {
        width: 100px;
        height: 100px;
      }

      .logo-item img {
        max-width: 70px;
        max-height: 70px;
      }
    }

    @media (max-width: 480px) {
      .logo-item {
        width: 90px;
        height: 90px;
      }

      .logo-item img {
        max-width: 60px;
        max-height: 60px;
      }

      .social-icon {
        width: 40px;
        height: 40px;
      }

      .social-icon img {
      }
    }
    
    .footer-logo{
        width: 200px;
        margin-top: 30px;
    }        
    .footer{
        background: linear-gradient(to right, #5c554b, #e31617);
        padding: 10px;
        text-align: center;
        font-size: 18px;
        color: white;
        letter-spacing: 1px;
    }
    .footer a{
        color: white;
        font-weight: 900;
        text-decoration: none;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
/* Section blog-details */    
.featured-img{
   text-align: center; 
}

.light {
    background: #fcfcfc;
    padding: 15px 30px;
    margin: 20px 0px;
    border-radius: 18px;
    box-shadow: rgb(174 174 174 / 67%) 0 0 20px 0;
}

.light img {
    border: 6px solid #f5f5f5;
    border-radius: 10px;
    box-shadow: rgb(71 68 68 / 67%) 0 0 9px 0;
    margin: 20px 0;
}

.featured-img img {
    border-radius: 6px;
    box-shadow: rgb(174 174 174 / 67%) 0 0 20px 0;
    width: auto;
    height: 500px;
    padding: 10px;
}

@media screen and (max-width: 767px) {
    .light img {
        width: -webkit-fill-available !important;
        height: auto !important;
    }
    
    .light {
      margin: 20px 0px !important;
      padding: 15px 10px !important;
     }
    
    .all-content {
       padding: 30px 10px 0px!important;
    }
    
    .featured-img img {
      height: auto!important;
      width: -webkit-fill-available !important;
    }
}


.all-content {
    padding: 40px 160px;
}

.all-content a {
    color: #960878;
    font-weight: 700;
}

.all-content p {
    font-size: 20px;
    line-height: 40px;
    font-weight: 400;
    text-align: justify;
    padding: 0px 0 11px 0;
    color: #000000;
    margin: 0px;
}

.all-content h1 {
    font-size: 32px;
    line-height: 50px;
    font-weight: 700;
    padding: 30px 0 11px 0;
    text-align: center;
}

.all-content h2 {
    font-size: 29px;
    line-height: 40px;
    font-weight: 700;
    color: #000000;
    padding: 14px 0 15px 0px;
    margin: 0px;
}

.all-content h3 {
    font-size: 24px;
    line-height: 40px;
    font-weight: 700;
    color: #000000;
    padding: 10px 0 10px 0px;
    margin: 0px;
}


.all-content h4{
    font-size: 20px;
    line-height: 40px;
    font-weight: 700;
    padding: 20px 0 5px 0px;
    contain-intrinsic-block-size: auto 100px;
    margin: 0px;
}


.all-content h5{
    font-size: 22px;
    line-height: 40px;
    color: black;
    font-weight: 700;
    padding: 20px 0 5px 0px;
    margin: 0px;
}


.all-content h6{
    font-size: 20px;
    line-height: 40px;
    font-weight: 700;
    padding: 20px 0 5px 0px;
    margin: 0px;
}

.all-content ol {
    padding: 0px !important;
}

.all-content ol li {
    font-size: 20px;
    line-height: 35px;
    color: black;
    font-weight: 500;
    text-align: justify;
    border-radius: 15px;
    margin-left: 35px;
    padding: 10px 0;
    list-style: auto;
}



.all-content ul li {
    font-size: 20px;
    line-height: 30px;
    color: black;
    font-weight: 500;
    text-align: justify;
    border-radius: 15px;
    margin-left: 35px;
    padding: 8px 0;
    list-style: disc;
}









/* Responsive Adjustments */
@media (max-width: 900px) {

.all-content p {
    font-size: 16px;
    line-height: 32px;
    font-weight: 500;
    text-align: justify;
    padding: 0px 0px 13px 0;
    color: #000000;
    margin: 0px;
}

.all-content h1 {
    font-size: 26px;
    line-height: 38px;
    font-weight: 500;
    padding: 15px 0 7px;
    text-align: center;
}

.all-content h2 {
    font-size: 26px;
    line-height: 35px;
    font-weight: 500;
    color: #000000;
    padding: 12px 0 10px 0px;
    margin: 0px;
}

.all-content h3 {
    font-size: 24px;
    line-height: 35px;
    font-weight: 600;
    color: #000000;
    padding: 10px 0 10px 0px;
    margin: 0px;
}


.all-content h4{
    font-size: 22px;
    line-height: 35px;
    font-weight: 600;
    padding: 20px 0 5px 0px;
    contain-intrinsic-block-size: auto 100px;
    margin: 0px;
}


.all-content h5{
    font-size: 22px;
    line-height: 40px;
    color: black;
    font-weight: 700;
    padding: 20px 0 5px 0px;
    margin: 0px;
}


.all-content h6{
    font-size: 20px;
    line-height: 40px;
    font-weight: 700;
    padding: 20px 0 5px 0px;
    margin: 0px;
}

.all-content ol {
    padding: 0px !important;
}

.all-content ol li {
    font-size: 16px;
    line-height: 30px;
    color: black;
    font-weight: 500;
    text-align: justify;
    border-radius: 15px;
    margin-left: 35px;
    padding: 5px 0;
    list-style: auto;
}



.all-content ul li {
    font-size: 16px;
    line-height: 26px;
    color: black;
    font-weight: 500;
    text-align: justify;
    border-radius: 15px;
    margin-left: 20px;
    padding: 4px 0;
    list-style: disc;
}

}
    


#rank-math-toc {
    background-color: #f9f9f9;
    border: 1px solid #e1e1e1;
    padding: 20px;
    border-radius: 10px;
    max-width: 100%;
    margin: 20px 0;

    /* Fixed Height + Always Visible Scrollbar */
    height: 300px;
    overflow-y: scroll; 
    overflow-x: hidden;
}

#rank-math-toc nav {
    display: block;
}

#rank-math-toc ul {
    list-style-type: none;
    padding-left: 0;
}

#rank-math-toc ul ul {
    padding-left: 5px !important;
}

#rank-math-toc a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    font-size: 16px;
}

#rank-math-toc a:hover {
    color: green;
    text-decoration: underline;
}

.block-rank-math-toc-block ul li {
    padding: 0;
    list-style: disc;
}

@media screen and (max-width: 768px) {
    #rank-math-toc {
        padding: 15px;
        height: 300px;
    }

    #rank-math-toc a {
        font-size: 14px;
        font-weight: 500;
    }
}    