/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
 *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
 scroll-behavior: smooth;
 zoom: 90%;
}
.main-bg-with-logo{
  position: relative;
/* background-color: red; */
}
.main-bg-with-logo{
 position: relative;
}
.main-bg-with-logo::after{
   position: absolute;
   bottom: 0%;
   /* overflow:hidden; */
   /* overflow: hidden; */
   content: '';
   width: 60vw;
   height: 80%;
   min-height: 600px;
   /* background-color: red; */
   background-image: url("/assets/icon-4ba05010.png");
   background-repeat: no-repeat;
   background-size: contain;
   background-position: center;
   z-index: 0;
   opacity: 10%;
}


.top-services::before, .top-services::after{
   position: absolute;
  content: '';
  width: 35vw;
  height: 450px;
  background-image:url("/assets/logo-txt-a4a5e42c.png"); 
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
  opacity: 10%;
}
.top-services::before{
  top: 0%;
  left: -0%;
  
}
.top-services::after{
  bottom: 0%;
  right: -12%;
  
}
.mission-section::after{
 position: absolute;
  content: '';
  width: 35vw;
  height: 450px;
  background-image:url("/assets/logo-txt-a4a5e42c.png"); 
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 10%;
 z-index: 1;
    bottom: -0%;
    right: -12%;
    
}

.vision-small-section::after{
 position: absolute;
  content: '';
  width: 300px;
  height: 300px;
  background-image:url("/assets/logo-4ba05010.png"); 
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  /* z-index: -1; */
  opacity: 14%;
  z-index: 10;
  /* right: -20%; */
    right: -2%;
  top: -20%;
}

 .our-services::before, .our-services::after{
    position: absolute;
    content: '';
    width: 35vw;
    height: 450px;
    background-image:url("/assets/logo-txt-a4a5e42c.png"); 
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: -1;
    opacity: 10%;
}
.no-scrollbar::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.no-scrollbar::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.4); /* Half-transparent white */
  border-radius: 4px;
}

.no-scrollbar::-webkit-scrollbar-track {
  background-color: transparent;
}


.toast {
  position: fixed;
  /* z-index: 100; */
  top: 10px;
  right: 10px;
  z-index: 1000;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  opacity: 0.9;
}

.toast-success {
  background-color: #38a169; /* Green */
}

.toast-error {
  background-color: #e53e3e; /* Red */
}

.assessment-after-logo::after{
  position: absolute;
  content: '';
  width: 100%;
  height: 90%;
  background-image:url("/assets/logo-4ba05010.png"); 
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 0;
  opacity: 15%;
  bottom: 3%;
  left: -0%;
}



.content_html a {
  text-decoration: underline;
  color: blue;
}
.content_html a:hover::after {
  content: attr(href);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 10px;
  background-color: #000;
  color: #fff;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 5;
}
#textbox ul, #textbox ol, .content_html ul, .content_html ol {
  margin: 0;
  padding-left: 20px;
}
#textbox ul  {
  list-style-type: disc;
}
#textbox ol,.content_html ol {
  list-style-type: decimal;
}
.content_html ul {
  list-style: none; /* Remove default list style */
  padding: 0;
}

.content_html ul li {
  margin-top: 10px;
  background-image:url("/assets/logo-4ba05010.png"); 
  background-size: 20px 20px; /* Adjust size */
  background-repeat: no-repeat;
  background-position: left center; /* Align image */
  padding-left: 30px; /* Add space for the image */
}




@keyframes scroll {
  0% {
    transform: translateX(0);
 }
  100% {
    transform: translateX(calc(-250px * 7));
 }
}
.slider {
  height: 50px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 960px;
}
.slider::before, .slider::after {
  background: linear-gradient(to right, #f2f5f6 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  position: absolute;
  height: 50px;
  width: 100px;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
    display: flex;
    gap: 60px; /* Set constant gap */
    width: max-content;
    animation: scroll 20s linear infinite;

}
.slider .slide {
    height: 70px; /* Adjust height */
    width: auto;
    mix-blend-mode: multiply; /* Removes white background */
    filter: brightness(1.1) contrast(1.2); /* Enhances logo visibility */




}
.slide img{
  mix-blend-mode: multiply; /* Removes white background */
}



