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

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

/* 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;
    }
    
    
    
    
    
    
    
    
    
    


/*! CSS Used from: https://html.awaikenthemes.com/nextmind/neural-networks/css/bootstrap.min.css ; media=screen */
@media screen{
*,::after,::before{box-sizing:border-box;}
h2{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--bs-heading-color);}
h2{font-size:calc(1.325rem + .9vw);}
@media (min-width:1200px){
h2{font-size:2rem;}
}
p{margin-top:0;margin-bottom:1rem;}
a{color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));text-decoration:underline;}
a:hover{--bs-link-color-rgb:var(--bs-link-hover-color-rgb);}
figure{margin:0 0 1rem;}
img{vertical-align:middle;}
.container{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-right:auto;margin-left:auto;}
@media (min-width:576px){
.container{max-width:540px;}
}
@media (min-width:768px){
.container{max-width:720px;}
}
@media (min-width:992px){
.container{max-width:960px;}
}
@media (min-width:1200px){
.container{max-width:1140px;}
}
@media (min-width:1400px){
.container{max-width:1320px;}
}
}
/*! CSS Used from: https://html.awaikenthemes.com/nextmind/neural-networks/css/animate.css */
.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp;}
/*! CSS Used from: https://html.awaikenthemes.com/nextmind/neural-networks/css/custom.css ; media=screen */
@media screen{
p{line-height:1.6em;margin-bottom:1.6em;}
h2{margin:0;font-weight:700;line-height:1.2em;color:var(--primary-color);}
figure{margin:0;}
img{max-width:100%;}
a{text-decoration:none;}
a:hover{text-decoration:none;outline:0;}
a:focus{text-decoration:none;outline:0;}
.container{max-width:1300px;}
.container{position:relative;padding-right: 80px;padding-left: 80px;z-index:1;}
.image-anime{position:relative;overflow:hidden;}
.image-anime:after{content:"";position:absolute;width:200%;height:0%;left:50%;top:50%;background-color:rgba(255,255,255,.1);transform:translate(-50%,-50%) rotate(-45deg);z-index:1;}
.image-anime:hover:after{height:250%;transition:all 600ms linear;background-color:transparent;}
.post-item{height:calc(100% - 30px);margin-bottom:30px;}
.post-featured-image{position:relative;margin-bottom:20px;}
.post-featured-image figure{display:block;border-radius:20px;}
.post-featured-image figure img{width:100%;aspect-ratio:1 / 0.745;border-radius:20px;transition:all 0.4s ease-in-out;}
.post-item:hover .post-featured-image figure img{transform:scale(1.1);filter:blur(5px);}
.post-readmore-btn{position:absolute;top:50%;left:50%;transform:translate(-50%, 0);opacity:0;transition:all 0.4s ease-in-out;z-index:1;}
.post-item:hover .post-readmore-btn{transform:translate(-50%, -50%);opacity:1;visibility:visible;}
.post-readmore-btn a{background:linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);background-size:200% auto;border-radius:50%;width:50px;height:50px;display:flex;align-items:center;justify-content:center;transition:all 0.3s ease-in-out;}
.post-readmore-btn a:hover{background-position:right center;}
.post-readmore-btn a img{width:100%;max-width:14px;transition:all 0.3s ease-in-out;}
.post-readmore-btn a:hover img{transform:rotate(45deg);}
.post-tag{margin-bottom:20px;}
.post-tag p{font-size:14px;letter-spacing:0.04em;text-transform:capitalize;display:inline-block;background: #ffffff;border: 1px solid black;border-radius:100px;padding:6px 24px;margin-bottom:0;}
.post-item-content h2{font-size: 18px;line-height:1.4em;}
.post-item-content h2 a{color:inherit;}
.page-blog{padding: 30px 0;}
.page-blog .post-item{height: calc(100% - 0px);margin-bottom: 5px;background: aliceblue;padding: 15px;border-radius: 10px;}
@media only screen and (max-width: 991px){
.post-featured-image,.post-tag{margin-bottom:15px;text-align: center;}
.post-tag p{padding:5px 20px;}
.page-blog{padding: 24px 0;}
.page-blog .post-item{height: calc(100% - 15px);margin-bottom: 22px;padding: 10px;}
}
@media only screen and (max-width: 767px){
.post-item-content h2{font-size:18px;text-align: center;}
.search-form input[type='text'] {
    width: -webkit-fill-available!important;
}
.search-section {
    padding: 20px 0px!important;
}
.container {
    padding-right: 10px!important;
    padding-left: 10px!important;
}
.search-form {
     display: unset!important;
}   
.row {
    display: grid;
    grid-template-columns: repeat(1, 1fr)!important;
    gap: 0px !important;
}
}
}
.row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
/*! CSS Used keyframes */
@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0, 40px, 0);transform:translate3d(0, 40px, 0);}100%{opacity:1;-webkit-transform:none;transform:none;}}
@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0, 40px, 0);transform:translate3d(0, 40px, 0);}100%{opacity:1;-webkit-transform:none;transform:none;}}
.text-center{text-align: center;}
#load-more {
    background: linear-gradient(to right, #5c554b, #e31617);
    border-radius: 29px;
    padding: 10px 43px;
    margin-top: 45px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-left: 10px;
    transition: .4s;
}
.search-section {
    background: linear-gradient(to right, #5c554b, #e31617);
    padding: 20px 20px;
    text-align: center;
    color: white;
}
.search-section p{
    margin-bottom: 10px;
}
.search-form{
    display: inline-block;
}
.search-form input[type='text'] {
    width: 700px;
    padding: 11px;
    border-radius: 5px;
    height: 61px;
    font-size: 19px;
    letter-spacing: 1px;
    text-align: center;
    border: white;
}

#myUL {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

#myUL li {
    list-style: none;
}

#myUL li a {
    border: 1px solid #ddd;
    margin-top: -1px;
    background-color: #f6f6f6;
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    color: black;
    display: block;
}
















