* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}



body {
  background: #fff;
  color: #333;
  line-height: 1.6;
  font-family: "Comfortaa", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;

}


/* table of content */

#toc {
      display: none; /* start hidden */
      border: 1px solid #ccc;
      padding: 15px;
      margin-top: 10px;
      background: #f9f9f9;
      border-radius: 8px;
    }
    #toc ul {
      list-style-type: none;
      padding-left: 0;
    }
    #toc ul li {
      margin: 6px 0;
    }
    .btn {
      padding: 10px 15px;
      border: none;
      border-radius: 6px;
      background: #0073e6;
      color: white;
      cursor: pointer;
      width:250px;
    }
    .btn:hover {
      background: #005bb5;
      color: #ffffff;
    }


/* Blogsubpage */

/* === Layout Row === */
.container > .row {
  height: calc(100vh - 80px); 
  overflow: hidden;
}

/* === Left Sidebar === */
.left-sidebar {
  position: fixed;
  /* top: 80px;
  left:400px;  */
  width: 250px;
  height: calc(60vh - 80px);
  background: #fff;
  border-right: 1px solid #ccc;
  padding: 20px;
  overflow-y: auto;
  z-index: 999;
  }

/* === Main Content (Center Scroll) === */
.main-content {
  margin-left: 250px;
  margin-right: 250px;
  height: calc(100vh - 80px);
  overflow-y: auto;
  padding:10px;
}
.main-content img{
  max-width:100%;
  height:100%;  
  margin: 0 auto;
}
section{
  padding: 0px;
}



 article {
  padding: 0px;
  
}

/* === Hide Scrollbars but keep scroll working === */
.main-content,
.left-sidebar,
.right-sidebar {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE */
}
.main-content::-webkit-scrollbar,
.left-sidebar::-webkit-scrollbar,
.right-sidebar::-webkit-scrollbar {
  display: none;
}

/* === RESPONSIVE FOR ALL SCREEN SIZES (DON'T HIDE ANYTHING) === */
@media (max-width: 1024px) {
  .left-sidebar,

  .main-content {
    position: static;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 15px;
    overflow: visible;
  
  }

  .container > .row {
    flex-direction: column;
    height: auto;
    overflow: visible;
  }
.updates {
  display: none;
}

}

@media (max-width: 1440px) {
  .left-sidebar {
    left:0px;
  }

 
 }


@media (min-width: 992px) {
  .sidebar {
    position: sticky;
    top: 80px;
  }
}

/* @media (max-width:2560px) {
  .left-sidebar {
    left: 660px;
  }

  .right-sidebar {
    right:650px;
  }

}  */



.title-card {

}


.Title-text h3 {
  font-size:18px;
}


 .blog-card img {
      width: 100%;
      border-radius: 8px;
    }

    .blog-card {
      background: #fff;
      padding: 15px;
      border: 0px solid #ddd;
      border-radius: 10px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    
    .blog-card h4  {
  font-size:18px;
    }

    .blog-card h4 span {
      color: #0077cc;
    }

    
    .blog-card a {
      text-decoration: underline;
      color: #0077cc;
      font-size: 14px;
    }


/* FAQ */

.faq-area {
  max-width:100%;
  margin: 2rem auto;
  padding: 0 1rem;
  font-family: sans-serif;
  color: #333;
}

.faq-area h2 {
  text-align: left;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  
}

.faq-area details {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}

.faq-area summary {
  cursor: pointer;
  font-size: 1.1rem;
  list-style: none;
  position: relative;
  padding-right: 2rem;
  font-weight: bold;
}

.faq-area summary::marker { content: none; } /* remove default triangle */

.faq-area summary::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.faq-area details[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-area .answer {
  margin-top: 0.5rem;
  line-height: 1.5;
}

@media (min-width: 600px) {
  .faq-area {
    padding: 0;
  }
}

/*  */

 .subscribe-form {
    max-width: 800px;
    width: 100%;
    background: #fff;

  }

  .subscribe-form h2 {
    font-size: 1.8rem;
    font-weight: 600;
  }

  .subscribe-form p {
    font-size: 1rem;
    color: #555;
    text-align: center;
  }

  .subscribe-form input {
    flex: 1;
    min-width: 220px;
  }

  /* Mobile optimization */
  @media (max-width: 576px) {
    .subscribe-form h2 {
      font-size: 1.5rem;
    }
    .subscribe-form p {
      font-size: 0.95rem;
    }
  }