.logo-container {
  background-color: #110942;
  width: 100%;
  height: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}

.logo-slider {
  display: flex;
  align-items: center;
  animation: slide 20s linear infinite;
}

.logo-slider img {
  height: 85px;
  margin-right: 30px;
}

@keyframes slide {
  0% {
      transform: translateX(100%);
  }
  100% {
      transform: translateX(-100%);
  }
}



/* Add blue background to the section */
.blue-background {
    background-color:#110942; /* Blue background color */
    position: relative;
    padding: 20px;
}


body1 {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: #0f054c;
}



.banner {
    position: relative;
    width: 100%; /* Adjust banner width as needed */
    height: 200px; /* Adjust banner height as needed */
    background-color: #110942;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    margin: 0;
    font-size: 50px;
    font-style: bold;
    transition: font-size 0.3s, text-shadow 0.3s;
}

.circles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    animation: circleAnimation 4s linear infinite;
}

.circle1 {
    border: 3px solid rgb(3, 109, 26); /* Circle border color */
}

.circle2 {
    border: 2px solid rgb(3, 109, 26); /* Circle border color */
}

.circle3 {
    border: 2px solid rgb(3, 109, 26); /* Circle border color */
}

.circle4 {
    border: 2px solid green; /* Circle border color */
}
.circle1 { animation-delay: 0s; }
.circle2 { animation-delay: 1s; }
.circle3 { animation-delay: 2s; }
.circle4 { animation-delay: 3s; }

@keyframes circleAnimation {
    0% {
        width: 0;
        height: 0;
    }
    25% {
        width: 100px;
        height: 100px;
    }
    50% {
        width: 50px;
        height: 50px;
    }
    75% {
        width: 25px;
        height: 25px;
    }
    100% {
        width: 0;
        height: 0;
    }
}


.roll-in-left {
	animation: roll-in-left 2s ease-out both;
}

 @keyframes roll-in-left {
    0% {
      transform: translateX(-800px) rotate(-540deg);
      opacity: 0;
    }
    100% {
      transform: translateX(0) rotate(0deg);
      opacity: 1;
    }
  }

.shake-horizontal {
	animation: shake-horizontal 2s linear infinite;
}

 @keyframes shake-horizontal {
    0%,
    100% {
      transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70% {
      transform: translateX(-10px);
    }
    20%,
    40%,
    60% {
      transform: translateX(10px);
    }
    80% {
      transform: translateX(8px);
    }
    90% {
      transform: translateX(-8px);
    }
  }
  
  .text-focus-in {
	animation: text-focus-in 3s linear infinite;
}

 @keyframes text-focus-in {
    0% {
      filter: blur(12px);
      opacity: 0;
    }
    100% {
      filter: blur(0px);
      opacity: 1;
    }
  }
  

  


.logo-holder {
    background: #f2f2f2;
    width: 180px;
    height: 220px;
    position: relative;
    margin: 0 auto ;
    padding-top: 12px;
    padding-bottom: 24px;
    -webkit-transform: translateZ(0);
 }

.bg {

  position: absolute;
  top: 9px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: url(http://boutique.flarework.com/wp-content/themes/boutique/img/logo_large.png) center 0px no-repeat ;
    background-size: contain;
    -webkit-filter: drop-shadow(0px 6px 25px rgba(0,0,0,0.5));
}



@mixin sp-layout {
    @media screen and (max-width: 750px) {
      @content;
    }
  }


  .ss-images {
    background: #fefefe;
    display: flex;
  flex-direction: column;
  align-items: center;
  }
  
  .ss-images img {
    width: 80%; /* Adjust the width as needed */
  height: auto; /* Maintain aspect ratio */
  border-radius: 10px; /* Rounded edges */
  margin-bottom: 40px; /* Space between images */
}
  .ss-images h3 {
    color: rgb(4, 53, 23);
  }


  .pricing {
    display: flex;
    flex-wrap: wrap;
  }
  .toggle-button {
    display: flex;
    justify-content: center;
    margin: 20px;
}
.toggle-button button {
  margin: 0 10px;
  padding: 10px 20px;
  background-color: #4CAF50;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.content {
    display: none;
}
.active {
    display: block;
}
  
  
  /* Clearfix for the container */
  .container::after {
    content: '';
    display: table;
    clear: both;
  }
  .pricing-plan {
    flex: 3;
    background-color: #090f42;
    margin: 15px 8px;
    padding: 30px;
    border-radius: 6px;
    color: #fff;
}
.pricing-plan-2 {
    flex: 3;
    background-color: #4e5607;
    margin: 15px 8px;
    padding: 30px;
    border-radius: 6px;
    color: #fff;
}
.pricing-plan-3 {
    flex: 3;
    background-color: #8f0776;
    margin: 15px 8px;
    padding: 30px;
    border-radius: 6px;
    color: #fff;
}

  @media (max-width: 768px) {
    .pricing {
      display: block;
    }
  }

  .pricing-plan h2 {
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e30046;
    text-transform: uppercase;
    letter-spacing: 0.07em;
  }
  .pricing-plan p {
    margin-top: 0;
  }
  .pricing-plan p span {
    font-size: 33px;
  }
  .pricing-plan ul {
    margin: 0 0 35px;
    padding-left: 16px;
    list-style: none;
    line-height: 1.8;
    color: #b5b5b5;
  }
  .pricing-plan ul li::before {
    content: "•";
    color: #e30046;
    display: inline-block;
    width: 20px;
    margin-left: -15px;
    position: relative;
    top: 4px;
    font-size: 26px;
    line-height: 0;
  }
  .pricing-plan a {
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    background: #e30046;
    border: 2px solid #e30046;
    border-radius: 5px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
  }
  .pricing-plan a:hover {
    background-color: #1f262c;
  }
  .pricing-plan-2 h2 {
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e30046;
    text-transform: uppercase;
    letter-spacing: 0.07em;
  }
  .pricing-plan-2 p {
    margin-top: 0;
  }
  .pricing-plan-2 p span {
    font-size: 33px;
  }
  .pricing-plan-2 ul {
    margin: 0 0 35px;
    padding-left: 16px;
    list-style: none;
    line-height: 1.8;
    color: #b5b5b5;
  }
  .pricing-plan-2 ul li::before {
    content: "•";
    color: #e30046;
    display: inline-block;
    width: 20px;
    margin-left: -15px;
    position: relative;
    top: 4px;
    font-size: 26px;
    line-height: 0;
  }
  .pricing-plan-2 a {
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    background: #e30046;
    border: 2px solid #e30046;
    border-radius: 5px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
  }
  .pricing-plan-2 a:hover {
    background-color: #1f262c;
  }

  .pricing-plan-3 h2 {
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e30046;
    text-transform: uppercase;
    letter-spacing: 0.07em;
  }
  .pricing-plan-3 p {
    margin-top: 0;
  }
  .pricing-plan-3 p span {
    font-size: 33px;
  }
  .pricing-plan-3 ul {
    margin: 0 0 35px;
    padding-left: 16px;
    list-style: none;
    line-height: 1.8;
    color: #b5b5b5;
  }
  .pricing-plan-3 ul li::before {
    content: "•";
    color: #e30046;
    display: inline-block;
    width: 20px;
    margin-left: -15px;
    position: relative;
    top: 4px;
    font-size: 26px;
    line-height: 0;
  }
  .pricing-plan-3 a {
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    background: #e30046;
    border: 2px solid #e30046;
    border-radius: 5px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
  }
  .pricing-plan-3 a:hover {
    background-color: #1f262c;
  }
  

  .faq-item {
    margin-bottom: 20px;
}

.question {
    cursor: pointer;
    font-weight: bold;
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
}

.answer {
    display: none;
    padding: 10px;
    background-color: #fafafa;
    border-radius: 5px;
}

.answer.active {
    display: block;
}

.video-grid {
    padding-left: 15px;
    padding-right: 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 10px; /* Gap between video boxes */
}

.video-box {
    position: relative;
    overflow: hidden;
    border: 2px solid #ccc;
    border-radius: 10px;
    width: 250px; /* Fixed width */
    height: 150px; /* Fixed height */
}

.video-box img {
    width: 100%;
    height: 200px; /* Set height for thumbnail */
    object-fit: cover; /* Ensure the entire image is visible within the box */
    transition: transform 0.3s ease; /* Add transition for smooth zoom effect */
}

.video-box:hover img {
    transform: scale(1.1); /* Zoom in on hover */
}

.video-details {
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    width: 100%;
    height: 30px; /* Set height for video details */
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px;
    box-sizing: border-box;
}

.video-title {
    margin: 0;
    margin-top: 20px;
    font-size: 16px;
    color: #000000;
    font-weight: bold;
    width: 100%; /* Set width to 100% */
    height: 100%; /* Set height to 100% */
}
.blog-grid {
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  gap: 10px; /* Gap between video boxes */
}

.blog-box {
  position: relative;
  overflow: hidden;
  border: 2px solid #ccc;
  border-radius: 10px;
  width: 250px; /* Fixed width */
  height: 150px; /* Fixed height */
}

.why-section {
  padding: 60px 0;
}

.heading-container {
  margin-bottom: 40px;
}

.banner3 {
  width: 100%;
  perspective: 1000px;
  text-align: center;
  background-color: #0f054c; /* Solid background color */
  padding: 20px;
  border-radius: 10px;
  display: inline-block;
}


.banner3 h2 {
  color: white;
  font-size: 24px;
  animation: rotate 5s infinite;
  padding: 0;
  margin: 0;
}
.banner3 h2 span {
  display: block;
  font-size: 18px;
}

.banner3:hover h2 {
  transform: rotateX(0deg) rotateY(0deg);
}

.why-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.why-box {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  margin: 0 10px 20px;
  flex: 1 1 30%; /* Adjust the percentage as needed */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-box .img-box img {
  max-width: 100px; /* Adjust size as needed */
  margin-top: 20px;
}

.why-box .detail-box {
  padding: 20px;
}

.why-box .detail-box h5 {
  margin: 10px 0;
  font-size: 18px;
  font-weight: bold;
}

.why-box .detail-box p {
  font-size: 14px;
  color: #555;
}

.btn-box {
  text-align: center;
  margin-top: 20px;
}

.btn-box a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

.btn-box a:hover {
  background-color: #0056b3;
}

.laser-background-section {
  width: 70%;
  margin-left: 17%;
  padding: 0px 0;
  justify-content: center;
  align-items: center;
  background-color: #0e0357; /* Dark background to contrast with the text */
  border-radius: 70px; /* Adjust the value as needed for desired roundness */
  height: 250px;
}


.laser-background-container {
  text-align: center;
  padding: 0 20%; /* Left and right padding */
}

.laser-background {
  background: url('/mnt/data/ss2.png') no-repeat center center;
  background-size: cover;
  padding: 40px;
  border-radius: 15px; /* Rounded corners */
  display: inline-block;
  position: relative;
  overflow: hidden;
  color: white; /* Ensures text is readable on the background */
}

.laser-background h2 {
  color: #ffffff; /* White color to contrast with the dark background */
  font-size: 24px;
  margin: 0;
  position: relative;
  z-index: 1;
}

.laser-background h2 span {
  display: block;
  font-size: 18px;
}

.laser-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 75%, transparent 75%, transparent);
  background-size: 20px 20px;
  opacity: 0.3; /* Reduced opacity to make the effect subtle */
  z-index: 0;
  animation: laser-animation 2s linear infinite;
  border-radius: 15px; /* Matching rounded corners */
}

@keyframes laser-animation {
  0% {
      background-position: 0 0;
  }
  100% {
      background-position: 40px 40px;
  }
}

.image-container {
  margin-left: 8%;
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 500px; /* Adjust based on your image aspect ratio */
  overflow: hidden;
}

.image {
  position: absolute;
  opacity: 0;
}

#image1 {
  width: auto;  /* Smaller size for image1 */
  height: 80%;
  top: 60px;
  left: 13%;  /* Center horizontally within the container */
  animation: slideInFromTop 2s forwards;
}

#image2 {
  width: 150%;  /* Larger size for image2 */
  height: auto;
  animation: slideInFromLeft 2s 0.5s forwards; /* Delay to start after the first animation */
  margin-top: 100px;
}

@keyframes slideInFromTop {
  0% {
      transform: translateY(-100%);
      opacity: 0;
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}

@keyframes slideInFromLeft {
  0% {
      transform: translateX(-100%);
      opacity: 0;
  }
  100% {
      transform: translateX(0);
      opacity: 1;
  }
}
.linkedin-benefits-container {
  display: flex;
  justify-content: space-between;
  background-color: #110942; /* Background color for the entire container */
  border-radius: 10px;
  width: 90%;
  margin: 0 auto;
  color: white; /* Set the text color to white */
}

.linkedin-benefit {
  width: 22%;
  padding: 20px;
  background-color: #110942; /* Background color for each benefit box */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.linkedin-benefit h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.linkedin-benefit p {
  font-size: 1em;
  line-height: 1.5;
}

.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.icon span {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #0bd437; /* Background color for the icon */
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  color: #0f054c; /* Color of the checkmark */
  font-weight: bold;
}

.pipeline-container {
  margin-top: 205px;
  background-color: #110942; /* Background color for the entire container */
  text-align: center;
  padding: 40px 20px;
  border-radius: 0px;
  height: 600px;
}

.pipeline-header h1 {
  font-size: 3em;
  color: #dcdcdc; /* Light gray color for the main heading */
  margin: 0;
}

.pipeline-header h2 {
  font-size: 2.5em;
  color: #b7ff00; /* Light green color for the subheading */
  margin: 10px 0 30px 0;
}

.pipeline-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 75px;
}

.pipeline-logos img {
  max-height: 50px;
  margin: 10px;
}



.container2 {

  background-color: #090442;
  align-items: start;
  padding: 10px;
}


.text-content .title {
  margin-left: 10px;
  align-items: start;
  font-size:3em;
  color: white;
  font-weight: bold;
  margin-top: 100px;

}



.btn-primary {
  margin-left: 37%;
  background-color: #FF6600;
  border-color: #FF6600;
  width: 175px;
  height: 55px;
}

.btn-primary:hover {
  background-color: #E55A00;
  border-color: #E55A00;
}

.image-content {
  margin-right: 20px; 
  width: 80%;
  text-align: left;
  margin-top: 200px;

}


.image-content5 {
  margin-right: 20px; 
  width: 60%;
  text-align: left;
  margin-bottom: 25%;

}
.image-content2 {
  margin-left: 25%; 
  width: 80%;
  text-align: left;
 

}
.image-content9 {
  margin-left: 5%; 
  width: 90%;
  text-align: left;
 

}

.image-content3 {
  margin-right: 40%;
  width: 90%;


}
.image-content8 {
  margin-right: 30%;
  width: 65%;


}
.image-content4 {
  margin-right: 40%;
  width: 140%;
  margin-bottom: 25%;


}

.image-content img {

  height: auto;
  
  
 
}


.outer-container {
  background: #090442; /* Blue background color   ; */
  color: #fff;
  text-align: center;
}

.main-heading {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.main-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ffffff;
}

.container3 {
  background-color: #090442;
  border-radius: 10px;
  padding: 30px;
  color: #000;
}

.topics-list {
  background-color: #222;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
}

.topic {
  cursor: pointer;
  padding: 10px;
  transition: background-color 0.3s;
}

.topic:hover, .topic.active {
  background-color: #444;
  border-left: 3px solid #FF6600;
}

.description {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.description h2 {
  color: #222;
  margin-bottom: 20px;
}

.description p {
  color: #666;
  margin-bottom: 30px;
}

.btn-primary {
  background-color: #FF6600;
  border-color: #FF6600;
}

.btn-primary:hover {
  background-color: #E55A00;
  border-color: #E55A00;
}

.market-fit-validation {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.market-fit-validation h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000000;
}

.market-fit-validation h3 {
  font-size: 1.5rem;
  font-weight: normal;
  color: #6c757d;
  margin-bottom: 40px;
}

.validation-steps {
  list-style: none;
  padding-left: 0;
}

.validation-steps li {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #333;
}

.validation-steps .arrow {
  color: #ff6600;
  margin-right: 10px;
}

.book-call {
  display: inline-block;
  margin-top: 30px;
  background-color: #ff6600;
  border-color: #ff6600;
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 5px;
}

.book-call:hover {
  background-color: #e55a00;
  border-color: #e55a00;
  color: #fff;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.packages-section {
  background-color: white;
  padding: 60px 0;
  text-align: center;

}

.packages-section h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: black
}

.packages-section p {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 40px;
}

.package-card {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 5px;
  padding: 20px;
  margin-left: 10%;
  margin-right: 10%;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.package-card.highlighted {
  border: 2px solid #ff6600;
}

.package-card h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.package-card p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

.metrics {
  margin-bottom: 20px;
}

.metric {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

.metric .icon {
  color: #ff6600;
  margin-right: 10px;
}

.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:hover {
  background-color: #007bff;
  color: #fff;
}

.btn-primary {
  background-color: #ff6600;
  border-color: #ff6600;
  color: #fff;
}

.btn-primary:hover {
  background-color: #e55a00;
  border-color: #e55a00;
  color: #fff;
}

.star {
  color: #ff6600;
  font-size: 1rem;
  margin-left: 5px;
}
.floating-button {
  margin-left: 83%;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  padding: 10px 20px;
  background-color: #ff6600;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.floating-button:hover {
  background-color: #e55a00;
  color: white;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: rgb(0, 0, 0);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.dropdown-menu .dropdown-item {
  padding: 10px 20px;
  font-style: bold;
  text-decoration: none;
  color: rgb(56, 67, 230);
  display: block;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f1f1f1;
}

/* Show the dropdown menu on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.container4 {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  margin: 50px auto;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.image-section {
  flex: 1;
  width: 85%;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-section {
  flex: 1;
  padding: 40px;
}

.text-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.text-section p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.text-section ul {
  list-style: none;
  padding: 0;
}

.text-section ul li {
  font-size: 1.1em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.text-section ul li::before {
  content: "✔";
  color: green;
  margin-right: 10px;
}

.cta-button {
  background-color: #ff6600;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #e65c00;
}

.faq-section {
  width: 80%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-left: 10%;
}

.faq-entry {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.faq-question {
  font-weight: bold;
  cursor: pointer;
  position: relative;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  color: #333;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  transition: transform 0.3s;
}

.faq-entry.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-entry.active .faq-answer {
  display: block;
}

.company-logo {
  width: 150px; /* Adjust the size as needed */
  height: auto;
  margin-right: 10px; /* Space between logo and text */
}


.container9 {
  background:#110942;
  width: 90%;
  max-width: 100%;
  padding-right: 15%;
  padding-left: 15%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;

}

.container9 h1 {
  margin-top: 50px;
  font-size: 2.5em;
  font-style: bold;
  margin-bottom: 10px;
  color: white;
  margin-left: 70%;
}
.container9 p {
  font-size: 1.1em;
  color: wheat;
  margin-left: 7%;
}

.grid9 {
  display: flex;
  margin-left: 10%;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.box9 {
 
  margin-top: 50px;
  background-color:#110942;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  flex: 1 1 45%;
  transition: transform 0.3s;
  height: 250px;
  cursor: pointer;
  text-align: left;
}

.box9 h3 {
  margin-top: 0;
  color: green;
}

.box9 p {
  color: wheat;
}

.box9:hover {
  transform: scale(1.15);
}

.book-call9 {
  margin-top: 50px;
  
}

.book-call9 h3 {
  color: white;
}

.book-call9 button {
  background-color: #007BFF;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s;
}

.book-call9 button:hover {
  background-color: #0056b3;
}

/* Media Queries */
@media (max-width: 768px) {
  .grid9 {
      flex-direction: column;
  }

  .box9 {
      flex: 1 1 100%;
  }

  .book-call9 h3 {
      margin-left: 0;
  }

  .book-call9 button {
      margin-left: 0;
  }
}



.content-section {
  margin-top: 100px;
  color: white;
  text-align: center;
  padding: 50px;
  background-color: #110942;
}

.content-container {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.content-item {
  background: wheat;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 300px;
  margin: 10px;
}

.youtube-video {
  width: 100%;
  height: 180px;
}

.video-title {
  padding: 15px;
  font-size: 1rem;
}

.blog-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}

.blog-content {
  padding: 15px;
  text-align: left;
  font-size: 1rem;
  background-color: #2c3e50;
  color: #fff;
  border-radius: 10px;
}

.blog-icon {
  font-size: 2rem;
  color: #27ae60;
  margin-top: 10px;
}

.view-all-btn {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px;
  background-color: #3498db;
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.view-all-btn:hover {
  background-color: #2980b9;
}

.terms-container {
  background-color: whitesmoke;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  padding: 40px;
  text-align: center;
  margin-top: 40px;
  margin-left: 20%;
}

h1 {
  color: #333;
  margin-bottom: 20px;
}

h2 {
  color: #555;
  margin-top: 20px;
}

p, ul {
  color: #666;
  line-height: 1.6;
  text-align: center;
  margin: 10px 0;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

ul li {
  margin: 5px 0;
}

.about-us-container {
  display: flex;
  flex-direction: row;
  margin-left: 15%;
  background-color: wheat;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  width: 100%;
  margin-top: -500px ;
}

@media (max-width: 767px) {
  .about-us-container {
  flex-direction: row;
  margin-left: 2%;
  margin-right: 5%;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

  margin-top: 120px ;
  }
}

.about-us-text {
  flex: 1;
  padding-right: 20px;
}

.about-us-image {
  flex: 1;
  text-align: right;
}

.about-us-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .about-us-container {
      flex-direction: column;
      text-align: center;
  }

.about-us-text {
      padding-right: 0;
      margin-bottom: 20px;
  }

.about-us-image {
      text-align: center;
  }

.about-us-image img {
      max-width: 80%;
  }
}

/* Media Queries for Mobile Devices */
@media (max-width: 767px) {
  .slider_section {
    padding: 5px 5px;
  }

  .detail-box {
    text-align: center;
  }

  .detail-box h2 {
    font-size: 1.5rem; /* Adjusted for smaller screens */
    margin-bottom: 10px;
  }

  .detail-box h3 {
    font-size: 1.25rem; /* Adjusted for smaller screens */
    margin-bottom: 10px;
  }

  .detail-box p {
    font-size: 0.875rem; /* Adjusted for smaller screens */
    margin-bottom: 15px;
  }

  .btn-box {
    text-align: center;
    margin-top: 20px;
  }

  .btn1 {
    padding: 12px 25px;
    font-size: 1rem; /* Adjusted for smaller screens */
  }

  /* Adjust image positioning and size */
  .col-md-6 {
    width: 100%;
  }

  .image-container {
    margin-top: 20px;
  }

  .image {
    max-width: 80%;
  }
}

.shake-horizontal {
  display: inline-block;
  animation: shake-horizontal 1s ease-in-out infinite both;
}

@keyframes shake-horizontal {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}

@media (max-width: 767px) {
  .linkedin-benefit {
    flex: 1 1 calc(50% - 10px); /* Two columns in a row */
    padding: 15px;
  }

  .linkedin-benefit h3 {
    font-size: 1.15rem;
  }

  .linkedin-benefit p {
    font-size: 0.95rem;
  }
}

/* Additional Styling for Better Aesthetics */
.linkedin-benefit:hover {
  background-color: #f1f1f1;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

/* Media Queries */
@media (max-width: 767px) {
  h1 {
    font-size: 1.25rem;
  }

  .tab {
    font-size: 0.875rem;
    padding: 8px;
  }

  .description h2 {
    font-size: 1.15rem;
  }

  .description p {
    font-size: 0.95rem;
  }

  .description a {
    font-size: 0.875rem;
    padding: 8px 15px;
  }

  .profile-pics img {
    width: 80px;
    height: 80px;
  }
}
