* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track {
  background: #111;
}

html::-webkit-scrollbar-thumb {
  background: var(--primary-bg-color);
  border-radius: 10px;
  height: 10px;
}

:root {
  --font-family: "Poppins", sans-serif;
  --font-header-size: 60px;
  --font-size: 16px;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --line-height: 1.6;
  --primary-bg-color: #3e63dd;
  --secondary-bg-color: #3e63dd;
  --text-tertiary-color: #000000;
  --text-secondary-color: #ffffff;
  --text-primary-color: #3e63dd;
  --hover-color: #f49f1c;
}

body {
  font-family: var(--font-family);
}

.container {
  width: 100%;
  margin: 0 auto;
}

.navigation-container{
    background: var(--text-secondary-color);
    color: var(--text-tertiary-color);
}

.navigation-container .row {
    display: flex;
    flex-wrap: wrap;
}

.col-12 .bread-crumbs-list {
    position: relative;
    list-style: none;
    margin: 2px;
    padding: 5px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    overflow: hidden;
}

.bread-crumbs-list li i{
    font-size: 0.7rem;
}

.bread-crumbs-list li {
    position: relative;
    white-space: nowrap;
        margin-left: 1rem;
}

.bread-crumbs-list li a, .bread-crumbs-list li {
    text-decoration: none;
    color:  var(--text-tertiary-color);
}
.bread-crumbs-list li a:hover{
    text-decoration: underline;
}


/* Main Container Started */

.main-container {
  width: 95vw;
  display: flex;
  justify-content: center;
  margin: auto;
}

.main-container .left-section {
  width: 70%;
  margin: 1rem;
  background: var(--text-secondary-color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 0;
  border-top: 5px solid #3e63dd;
  border-radius: 10px;
}

.main-container .right-section {
  width: 30%;
  padding: 0;
}

.main-container .right-section a, button {
  width: 100%;
  margin-top: 7px;
  padding: 10px;
  background-color: var(--primary-bg-color);
  border-radius: 5px;
  border: 1px solid var(--border-color);
  color: var(--text-secondary-color);
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.main-container .right-section a:hover{
  background-color: var(--heading-color);
}

.main-container .right-section button a{
  text-decoration: none;
  color: var(--text-secondary-color);
}

.toc .toc-header{
  padding: 20px;
  text-align: justify;
}

.toc .toc-header h3{
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3rem;
}

.toc .toc-sub-header{
    display: flex;
    justify-content: space-around;
    position: sticky;
    top: 5rem;
    padding: 5px;
    background: var(--primary-bg-color);
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
    gap: 1rem;
    line-height: 30px;
}

.toc .toc-sub-header div{
  text-align: center
}

.toc .toc-sub-header div span:nth-child(3){
  font-weight: 600;
}


.toc .toc-sub-header div img{
  width: 100%;
  height: 20px;
}

.button-29 {
    align-items: center;
    box-shadow: rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, rgba(58, 65, 111, .5) 0 -3px 0 inset;
    box-sizing: border-box;
    display: inline-flex;
    justify-content: center;
    position: relative;
    text-align: left;
    text-decoration: none;
}

@keyframes blink {
  0%, 100% {background-color:#ffcc00;}
  50% {background-color: #ff5733}
}
#blinking-button {
  background-color: #271578;
  color: white;
  animation: blink 2s linear infinite;
}

.toc .toc-sub-header a{
  text-align: center;
  text-decoration: none;
  margin-top: 7px;
  padding: 5px 30px;
  background-color: var(--primary-bg-color);
  border-radius: 5px;
  border: 1px solid var(--border-color);
  color: var(--text-secondary-color);
  cursor: pointer;
}

.toc .toc-sub-header a:hover{
  background-color: var(--primary-bg-color);
}

.toc .tab-titles {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 1rem;
}

.tab-titles .tab-links {
  margin-right: 50px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  color: var(--primary-bg-color);
}

.tab-titles .tab-links::after {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.tab-links.active-link::after {
  width: 100%;
}
.tab-links::after {
  content: "";
  width: 0;
  height: 3px;
  background: var(--primary-bg-color);
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: 0.5s;
}

.tab-contents.active-tab {
  display: block;
  width: 100%;
  margin: auto;
}

.tab-contents {
  display: none;
}

.Tab-tableOfContent {
  line-height: 28px;
  margin: 0 2rem;
  text-align: justify;
  overflow: hidden;
}

.Tab-tableOfContent img {
    width: 80% !important;
    height: auto !important;
    padding: 30px;
    transition: transform 0.3s ease-in-out;
}

.Tab-tableOfContent img:hover {
    transform: scale(1.03);
}

strong, strong span{
    color: var(--primary-bg-color) !important;
}

li:has(strong)::marker {
    color: var(--primary-bg-color) !important;
}

.Tab-tableOfContent ul li{
    margin-left: 2rem;
}

li:has(strong){
    margin-left: 1rem;
}
.details-tableOfContent {
  padding: 0 2rem;
  line-height: 2rem;
}

.details-tableOfContent p strong{
  color: var(--primary-bg-color);
  line-height: 3rem;
}

.table-contents .left-section{
    width: 95%;
    margin-top: 0;
}

.left-section .contact-form h2 {
    padding-left: 20px;
    padding-bottom: 5px;
}

.left-section .contact-form .contact-form-row {
    display: flex;
    justify-content: space-around;
    color: aliceblue;
    align-items: center;
}

.left-section .contact-form button{
    width: 95%;
    margin-top: 7px;
    padding: 10px;
    background-color: var(--primary-bg-color);
    border-radius: 5px;
    border: 1px solid var(--border-color);
    color: var(--text-secondary-color);
    cursor: pointer;
}
.contact-form-row .form-div {
    width: 100%;
    margin: 5px 20px;
}

.contact-form-row .form-div .form-field {
    display: flex;
    flex-direction: column;
}

.form-field .form-field-input {
    padding: 10px;
    margin-top: 2px;
}

.form-label {
    margin-left: 20px;
    color: var(--text-secondary-color);
    margin: 5px;
}

.right-box{
  background: var(--text-secondary-color);
  border-top: 5px solid #3e63dd;
  border-bottom: 5px solid #3e63dd;
  border-radius: 10px;
  margin: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.right-box h2{
    color: var(--accent-color);
    font-size: 24px;
    font-weight: 700;
}

.buy-info form div{
  padding: 5px;
}

.buy-info button{
    background-color: rgb(70 153 75);
}

.buy-info button:hover{
    background: var(--heading-color);
}

.main-container .right-section .buy-box a{
    background-color: orangered !important;
}

.service-box ul{
    padding-left: 20px;
}
.service-box li{
    padding: 4px;
}

.purchase-box{
    position: sticky;
    top: 6rem;
}

.right-box:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.purchase-info td, .sample-info td {
  padding: 5px 10px;
}

.purchase-info .first, .sample-info .first {
  font-weight: 600;
}

.partner-box{
  position: sticky;
  top: 26rem;
}
.flex{
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}
.partner-info img{
  width: 32%;
  height: 20%;  
}


@media screen and (max-width: 780px) {

   .toc-sub-header{
        flex-wrap: wrap;
   }

  .menu-toggle :first-child {
    display: block;
  }

  .main-header ul {
    display: block;
    display: none;
    text-align: center;
    position: absolute;
    top: 5rem;
    right: 0;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    background: black;
  }

  .main-header ul li {
    padding: 10px;
    border-bottom: 1px solid #3e63dd;
  }

  .main-header ul li a {
    font-weight: normal;
  }

  .main-header .search-bar {
    display: none;
  }

  .footer-main {
    background-size: max(2000px);
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .footer-main .footer-left img {
    width: 15rem;
  }

  .footer-main .footer-right {
    width: 100%;
    height: auto;
    font-size: 14px;
  }

  .footer-main .footer-right .our-contact ul li i {
    width: 100%;
    text-align: center;
  }

  .footer-main .footer-right .our-contact ul li div {
    width: 100%;
  }

  .footer-bottom .logo ul li {
    height: 2.7rem;
    width: 2.7rem;
    line-height: 2.5rem;
    font-size: 0.8rem;
  }

  .footer-bottom .powered {
    font-size: 10px;
  }

  .footer-bottom .copyright {
    font-size: 12px;
  }

  .main-container {
    flex-direction: column;
  }

  .main-container .left-section,
  .main-container .right-section {
    width: 100%;
    margin: auto;
  }
  .Tab-tableOfContent table {
    font-size: 14px;
    position: relative;
    right: 1.6rem;
  }
}
