/*** section name: section description
          Author: Awsaf Ahamed
          Contact: Awsaf@synapseailabs.com
          Date Modified:2024-06-05
             */


@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


html {
  scroll-behavior: smooth;
}

body {

  color: #000000cf;
  font-family: 'open sans';
  ;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}
.breadcrumb-item+.breadcrumb-item::before {
  color: #fff !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: 'open sans', sans-serif;
  color: #000000;
}

li{
  list-style: none;
}

:root {
  --primary: #7F56D9;
  --secondary: #F4EBFF;
  --text-primary: #101828;
  --text-secondary: #667085;
  --badge-bg: #ECFDF3;
  --badge-text: #027A48;
  --white: #fff;
  --dropdown-bg: rgb(252, 253, 251);
  --shadow: rgba(32, 7, 65, 0.14);
  
  --nav-height: 4rem;
}





/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;

  background-attachment: fixed;
  background-size: cover;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: background-image 0.5s ease;
  padding: 0px;
}


#hero .carousel-item{
 height: 100vh;
}
#hero h1 {
  font-style: normal;
  color: #ffffff;
  font-size: 60px;
  font-weight: 600;
  font-family: "Red Hat Display";
  display: flex;
  justify-content: center;
  align-items: center;
}



#hero h3 {

  width: 100%;
  font-size: 20px;
  opacity: 1;
  line-height: 1.09;
  letter-spacing: .9px;
  color: #ffffff;


}

.btn-anim {
  overflow: hidden;
  z-index: 1;
}

.btn-anim {
  font-weight: 700;
  font-size: 16px;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 16px 16px 16px 48px;
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
  background: #000;
  border-radius: 100px;
  text-decoration: none;
  border: none;
}

.btn-anim:before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  background: #FFD633;
  border-radius: 50%;
  position: absolute;
  left: 26px;
  transition: all 0.4s;
  border: none;
  
}


.btn-anim:after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #FFD633;
  border-radius: 50%;
  position: absolute;
  left: 16px;
  transition-delay: 0.3s;
  transition-duration: 0.3s;
  border: none;
}

.btn-anim:before {
  z-index: -1;
}
.btn-anim {
  overflow: hidden;
  z-index: 1;
  font-weight: 700;
  font-size: 16px;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 16px 16px 16px 48px;
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
  background: #000;
  border-radius: 100px;
  text-decoration: none;
}

.btn-anim:before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #FFD633;
  border-radius: 50%;
  position: absolute;
  left: 16px;
  transition: all 0.4s;
  transform: scale(0);
  
}

.btn-anim:hover:before {
  transform: scale(20);
  opacity: 5;
}

.btn-anim:hover {
  color: #000; /* Change font color to black on hover */
}
#hero .synapse{
  position: absolute;
  bottom: 20px;
}

#hero .synapse p{
  color: #fff;
  font-weight: 600;
  margin-bottom: -1px;
  font-size: 14px;
}


@media (max-width: 768px) {
  #hero {
    width: 100%;
    height: auto;
    padding: 0;
  }

  #hero .justify-content-end {
    display: none;
  }

  #hero .container {
    padding-top: 150px;
  }
  
  #hero .hero-container .typography {
    margin: 0;
  

  }
  #hero .synapse {
   display: none;
  }
 
  
  #hero h1 {
    font-size: 35px;
  }


  #hero h3{
    font-size:15px;
  }
  #hero p {
    margin: 0;
    font-size: 15px;
    padding-bottom: 20px;
  }

  #hero .li svg path {
    stroke: #000000;
    /* Change this to your desired color for mobile */
  }

  .btn-anim{
    font-size: 10px;
    padding: 10px 10px 10px 48px;
  }

  .btn-anim:after {
    height: 20px;
    width: 20px;
  }
}


#hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Change the opacity for desired effect */
  z-index: 1;
}



.carousel-caption {
  color: #fff;
  font-weight: 800;
  padding: 20px;
  border-radius: 10px;
  z-index: 5;
  bottom: 100px;
}

.carousel-caption h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
}

.carousel-caption p {
  font-size: 1.2rem;
}




/* =================================================================
why-we
************************************************/
.why-we {
  background-color:#DFDFDF;
  height: auto;
  padding: 100px;
  padding-bottom: 40px;
  
}
.why-we .image-box {
  display: flex;
  justify-content: center; /* horizontally center */
  align-items: center; /* vertically center */
  
  width: 100%;
  height: auto !important;
  border-radius: 30px;
}

.why-we .image-box img {
  max-width: 100%; /* Ensure the image doesn't exceed the container width */
  max-height: 100%; /* Ensure the image doesn't exceed the container height */
}

.why-we-content{
 padding: 20px; 
 padding-right: 50px;  
}


.why-we .image-box img{
  width: 500px;
}

@media (max-width: 998px){
  .why-we{
    padding: 20px;
    padding-top: 60px;
  }
  .why-we-content{
    padding: 0px;  
    margin-bottom: 30px; 
   }
   

}


.why-we .btn-link {
  padding-top: 0;
  padding-bottom: 0;
  background: transparent !important;
  color: #000;
  left: -16px;
}

.why-we .btn-link {
  padding-top: 0;
  padding-bottom: 0;
  background: transparent !important;
  color: #000;
  left: -16px;
}

.why-we .btn-link {
  padding-top: 0;
  padding-bottom: 0;
  background: transparent !important;
  color: #000;
  left: -16px;
}

.why-we .btn-link {
  overflow: hidden;
  z-index: 1;
}

.why-we .btn-link {
  font-weight: 700;
  font-size: 16px;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  padding: 16px 16px 16px 48px;
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
  background: #000;
  border-radius: 100px;
  text-decoration: none;
}

.why-we .btn-link:before {
  transition: all 0.3s;
}

.why-we .btn-link:before {
  z-index: -1;
}

.why-we .btn-link:before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  background: #FFD633;
  border-radius: 50%;
  position: absolute;
  left: 16px;
  transition: all 0.3s;
}

@media (max-width: 768px){
  .why-we{
    padding-top: 100px;
  }
}
/* =================================================================
platform
================================================================*/


.platform {
  height:auto;
  width: 100%;
  border-radius: 15px;
  padding: 100px;
  background: #ffffff;
  

  

}

.platform  .col-md-5 .nav-link{
  background: none !important;
  color: #1B1B1B;
  font-family:"sarabun" ;
  padding:0;
  padding-bottom: 15px;
}

.platform-content{
  padding: 50px;
}
.platform  .col-md-7 img{
  margin-bottom: 50px;
}
.platform .col-md-5{
  line-height: normal;
  padding: 10px;
}

.platform .btn{
  margin-top: 60px;
}



.platform .btn-link {
  padding-top: 0;
  padding-bottom: 0;
  background: transparent !important;
  color: #000;
  left: -16px;
}

.platform .btn-link {
  padding-top: 0;
  padding-bottom: 0;
  background: transparent !important;
  color: #000;
  left: -16px;
}

.platform .btn-link {
  padding-top: 0;
  padding-bottom: 0;
  background: transparent !important;
  color: #000;
  left: -16px;
}

.platform .btn-link {
  overflow: hidden;
  z-index: 1;
}

.platform .btn-link {
  font-weight: 700;
  font-size: 16px;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  padding: 16px 16px 16px 48px;
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
  background: #000;
  border-radius: 100px;
  text-decoration: none;
}

.platform .btn-link:before {
  transition: all 0.3s;
}

.platform .btn-link:before {
  transition: all 0.3s;
}

.platform .btn-link:before {
  z-index: -1;
}

.platform .btn-link:before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #118A66;
  border-radius: 50%;
  position: absolute;
  left: 16px;
  transition: all 0.3s;
}

.platform .btn-link:before {
  z-index: -1;
}

.platform .btn-link:before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  background: #FFD633;
  border-radius: 50%;
  position: absolute;
  left: 16px;
  transition: all 0.3s;
}

@media (max-width: 768px){
  .platform{
    padding: 20px;
    padding-top: 60px;
  }

  .platform-content{
    padding: 0px;
    margin-bottom: 30px; 
  }
  .advance-feature {
    background: #ffffff;
    padding: 20px;
  }
  .advance-feature h2 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
  }
  .advance-feature p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .icon-circle {
    width: 50px; /* Increase size for mobile */
    height: 50px; /* Increase size for mobile */
    font-size: 20px; /* Increase icon size for mobile */
  }
}


.cover-testimonial{
  height: 100vh;
  background-image: url(../images/main-home-parallax-1-new.jpg);
  
  background-size: cover;


}


.benefits{
  background: #DFDFDF;
  height: auto;
  padding: 100px;
}
.benefit-item {
 /* Center align the content */
  padding: 20px; /* Padding for the benefit item */
}

.benefit-item i {
  font-size: 40px; /* Size of the icon */
  color: #1B1B1B; /* Color of the icon */
  margin-bottom: 20px; /* Space below the icon */
}

.benefit-item h3 {
  font-size: 18px; /* Size of the heading */
  font-weight: bold; /* Bold font for the heading */
  margin: 10px 0; /* Margin for the heading */
  color: #1B1B1B; /* Color of the heading text */
}

.benefit-item p {
  font-size: 14px; /* Size of the paragraph text */
  color: #666; /* Color of the paragraph text */
  margin: 0; /* Margin for the paragraph */
}




/* =================================================================
count
================================================================*/

.count {
  background-color:#DFDFDF;
  
  background-size: cover;
  padding: 50px 100px;
  height: auto;
}

.count .section-title h2 {
  color: #1b1b1b;
  margin-bottom: 100px;
  font-size: 30px;
}

.counter-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.counter-item {
  margin: 0 20px;
  text-align: center;
}

.count h1 {
  font-size: 60px;
  margin: 0;
  font-weight:700;
  color: transparent;
  background: rgb(220,182,85);
background: linear-gradient(180deg, rgba(220,182,85,1) 0%, rgba(228,196,125,1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  font-family: 'Red Hat Display';
}

.count p {
  color: #1b1b1b !important;
  font-size: 18px;
}

.counter-item p {
  margin: 10px 0 0;
  color: #1b1b1b !important;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 768px){
  .count h1 {
    font-size: 30px;
    margin-bottom: 10px;
 

  }
  .count{
    padding: 50px 20px;
  }
  .counter-item p{
    font-size: 14px;
  }
  .count .section-title h2{
    margin-bottom: 30px;
    font-size: 20px;
  }
}


/* =================================================================
features -2
================================================================*/

.features2 {
  height: auto;
  padding-top: 60px;
  background: #ffffff;
  padding-bottom: 60px;

}
.features2 .nav{
  padding-top: 80px;
  width: 400px;
}
.features2 .nav-pills .nav-link {
 background: none;
 color: #000;
 text-align: left;
 margin-bottom: 20px;
 margin-right: 40px;
}

.features2 .no-bullets {
  list-style-type: none;  padding-left: 0;
}

.features2 .no-bullets {
  margin-bottom: 20px;
}


.features2 .content-box {
  height: 500px;
  background: #3170bc;
  
  padding: 60px;
  color: #ffffff;
  border-radius: 15px;
  
}
.features2 .content-box h3 {
  color: #ffffff;
  font-size: 25px;
  font-family: 'red hat display';
  margin-bottom: 30px;
}



.features2 .content-box .btn-explore {

  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

#v-pills-listening-tab.active{
  color: #dcb665; 


}

#v-pills-analyse-tab.active {

     color: #2f71c1; 

}

#v-pills-research-tab.active {
  color:  #245896;

}

#v-pills-engagement-tab.active {
  color:  #1c4576 ;

  
}

#v-pills-manage-tab.active {
 color: #000000;
 }
 
 
/* Optional: Adjust the non-active nav-link colors and hover effects */
.nav-tabs .nav-link {
  color: #666; /* Dark gray for non-active links */
}

.nav-tabs .nav-link:hover {
  border: none; /* Lighter border on hover */
}






.features2 .btn-link {
  padding-top: 0;
  padding-bottom: 0;
  background: transparent !important;
  color: #000;
  left: -16px;

}

.features2 .btn-link {
  padding-top: 0;
  padding-bottom: 0;
  background: transparent !important;
  color: #ffffff;
  left: -16px;
}

.features2 .btn-link {
  padding-top: 0;
  padding-bottom: 0;
  background: transparent !important;
  color: #ffffff;
  left: -16px;
}

.features2 .btn-link {
  overflow: hidden;
  z-index: 1;
}
.features2 .btn-link {
  font-weight: 700;
  font-size: 13px;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  padding: 16px 16px 16px 48px;
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
  background: #000;
  border-radius: 100px;
  text-decoration: none;

}


.features2 .btn-link:before {
  transition: all 0.3s;
}

.features2 .btn-link:before {
  z-index: -1;
}
.features2 .btn-link:before {
  content: '';
  display: inline-block;
  width:18px;
  height: 18px;
  background: #FFD633;
  border-radius: 50%;
  position: absolute;
  left: 16px;
  transition: all 0.3s;
  
}




@media (max-width: 768px) {
  .nav-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-tabs .nav-item {
    margin-bottom: 10px;
  }

  .features2 .container{
  padding: 10px;
  }
  .features2{
   height: auto;
  }
  .features2 .content-box{
    padding: 20px;
    height: auto;
  }
  .nav-pills .nav-link {
    width: 100%; /* Full width on small screens */
}
.features2 .nav{
  display: flex;
  width: 100%;
  padding-top: 0;
}

}




/* =================================================================
feature-sections
************************************************/

.feature {
  height: auto;

}


.feature .section-title h1 {
  font-weight: 600;
  color: #ffffff;
  font-family: "Red Hat Display";
  margin-top: 100px;
  
}

.feature .image-box {
  
  padding: 40px;
  width: 100%;
  height: 550px;
  border-radius: 30px;
}

.feature  .image-box {
  position: relative;
  overflow: hidden;
}

.feature .image-transition {
  opacity: 0;
  animation: fadeUp 0.2s ease-in-out forwards;
}

@keyframes fadeUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.feature .image-box {
  display: flex;
  justify-content: center; /* Horizontally center content */
  align-items: center; /* Vertically center content */

}

.feature .image-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.feature .feature-content {
  height: 100vh;
  overflow: hidden;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center vertically */
}


.feature .feature-content h2 {
  margin-bottom: 20px;
  font-size: 25px;
  font-weight: 600;
  
}

.feature .feature-content li {
  font-size: 20px;
}

.feature .col-md-6 {
  position: sticky;
  top: 0;
  height: 100vh;
  /* Occupy full viewport height */
  overflow-y: auto;
  /* Enable vertical scrolling */
}

.feature .content-body {
  overflow-y: auto;
  height: 100%;
  /* Adjust as needed */
}

.no-bullets {
  list-style-type: none;
}

.feature i {
  color: #dcb665;
}


.feature .card {
  background: #000000;
  border-radius: 15px;
  margin-bottom: 20px;
  height: 300px;
  justify-content: center;
}




.feature .btn-link {
  padding-top: 0;
  padding-bottom: 0;
  background: transparent !important;
  color: #000;
  left: -16px;
}

.feature .btn-link {
  padding-top: 0;
  padding-bottom: 0;
  background: transparent !important;
  color: #000;
  left: -16px;
}

.feature .btn-link {
  padding-top: 0;
  padding-bottom: 0;
  background: transparent !important;
  color: #000;
  left: -16px;
}

.feature .btn-link {
  overflow: hidden;
  z-index: 1;
}

.feature .btn-link {
  font-weight: 700;
  font-size: 16px;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  padding: 16px 16px 16px 48px;
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
  background: #000;
  border-radius: 100px;
  text-decoration: none;
}

.feature .btn-link:before {
  transition: all 0.3s;
}

.feature .btn-link:before {
  z-index: -1;
}

.feature .btn-link:before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  background: #FFD633;
  border-radius: 50%;
  position: absolute;
  left: 16px;
  transition: all 0.3s;
}

@media (max-width: 768px){
  .feature .col-md-6{
    position: relative;
    height: auto;
  }
  .feature .feature-content {
    margin-top: 20PX;
    height: auto;
  }
  .feature .content-body{
    overflow-x: NONE;

  }
  .feature .desktop-view{
    display: none !important;
  }
}
@media (max-width: 768px){
  .feature .desktop-view{
      display: none;
  }
  .feature .col-md-6, .feature .feature-content {
      position: relative;
      height: auto;
   
  }
  .mobile-view{
    padding: 20px;
    height: auto;
  }
  .feature .no-bullets li{

    font-size: 18px;
  }
  .features2 .nav {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    width: 100%;
    padding-top: 0;
    justify-content: center; /* Center the buttons in the container */
}

.features2 .nav .nav-link {
    flex-basis: calc(50% - 10px); /* Set the base size for each button, accounting for some margin */
    margin: 5px; /* Add a small margin around each button */
    text-align: center; /* Center the text inside the buttons */
}dynamicImage

/* Optional: Adjustments for padding and margins to fit better */
.features2 .nav .nav-link {
    padding: 0.5rem 1rem; /* Adjust padding inside the buttons */
    font-size: 20px;
}
.feature .image-box{
  padding: 0px;
}
.feature .col-md-6{
  padding: 10px;
}

}
/* Base CSS for image box */
.carousel-item .image-box img {
  width: 100%; 
  height: auto; 
  object-fit: cover;
}

/* Media query for mobile devices */
@media (max-width: 767px) {
  .carousel-item .image-box img {
      width: 100%; /* Adjust width as necessary, here it's set to take full width */
      height:auto; /* Adjust height as necessary */
  }
  .feature .image-box {
    padding: 0px;
    height: auto;
}

}





/*----------------------------------------------------------------
#advance-feature
----------------------------------------------------------------*/
.advance-feature {
  height: auto;
  background: #ffffff;
}
.advance-feature .col-md-3{
 padding: auto;
}
.advance-feature h2 {
  font-size: 20px;
  font-weight: 600;
}

.advance-feature  p{
  font-size: 15px;
  padding: auto;
  
}

.advance-feature  .grid-item{
 border-radius: 10px;
  background: #e4e4e479;
  padding: 20px;
  height: 250px;
}

.advance-feature  .icon-circle {
 
  width: 30px; /* Size of the circle */
  height: 30px; /* Size of the circle */
  border-radius: 50%; /* Makes the div a circle */
  background-color: #dcb665; /* Circle color */
  display: flex;
  justify-content: center; /* Centers the icon horizontally */
  align-items: center; /* Centers the icon vertically */
  color: white; /* Icon color */
  margin-bottom: 20px;
}
.advance-feature .bi {
  font-size: 14px; /* Icon size */
}
@media (max-width: 768px) {
  .advance-feature {
    padding: 10px; /* Adjust padding for smaller screens */
    background: #ffffff!important;
  }
  .advance-feature  .mob-view{
    background: #dcb665!important;
  }
  .advance-feature .accordion-button{
    border: none;
  }


  .advance-feature .col-md-3 {
    width: 100%; /* Make the column width 100% for smaller screens */
    padding: 0; /* Reset padding */
  }
  .advance-feature  .grid-item{
    margin-bottom: 20px;
  }
  /* Styling accordion buttons */
.accordion-button {
  background-color: transparent; /* Remove background color */
  color: white; /* Set font color to white */
  border: none; /* Remove border if needed */
  padding: 1rem; /* Adjust padding as needed */
}

/* Hover effect for buttons (optional) */
.accordion-button:hover {
  background-color: rgba(255, 255, 255, 0.1); /* Add a subtle hover effect */
  /* Adjust opacity and color as needed */
}

 
}

/****************************************************************
clients
****************************************************************/

#Clients {
  height: auto;
  padding: 100px;
}

#Clients h2 {
  font-size: 30px;
  font-weight: 500;
  font-weight: 600;
  font-family: "Red Hat Display";
}

#Clients h1 {
  color: #000000;
}

#Clients h3 {
  text-transform: uppercase;
  font-size: 16px;
}

#Clients a {
  color: #000;
 
}

#Clients .tech-logos,
#Clients .tech-logos-2 {
  overflow: hidden;
  white-space: nowrap;
  padding: 60px 0 0 0;
  position: relative;
}

#Clients:before,
#Clients:after {
  position: absolute;
  width: 250px;
  content: "";
  z-index: 2;
}

#Clients:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #ffedf0);
}

#Clients:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #ffedf0);
}

#Clients:hover .logos-slide,
#Clients:hover .logos-slide-2 {
  animation-play-state: running;
}

#Clients .logos-slide,
#Clients .logos-slide-2 {
  display: inline-block;
  animation-duration: 35s;
  /* Adjust duration as needed */
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

#Clients .logos-slide img,
#Clients .logos-slide-2 img {
  height: 100px;
  margin: 0 20px;
}

@keyframes slide {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes slide-2 {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0%);
  }
}

#Clients:hover .logos-slide {
  animation-name: slide;
}

#Clients .logos-slide {
  animation-name: slide;
}

#Clients:hover .logos-slide-2 {
  animation-name: slide-2;
}

#Clients .logos-slide-2 {
  animation-name: slide-2;
}

@media (max-width: 768px){
  #Clients{
    padding: 20px;
    height: auto;
  }

  #Clients .logos-slide img,
#Clients .logos-slide-2 img {
  height: 50px;
  margin: 0 20px;
}

#Clients h2{
  font-size: 20PX;
}


#Clients:hover .logos-slide,
#Clients:hover .logos-slide-2 {
  animation-play-state:running;
}
}


/*------------------------------------
#testimonials
------------------------------------*/
.testimonials {
  height: 100vh;
  color: #fff;
  padding: 100px;
  background: #fff;
}

.testimonials h5{
  font-family:'open sans';
}

.testimonials h2{
  font-family: 'red hat display';
}
.testimonials .carousel {
  height: 400px;
}
.testimonials  .carousel{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.testimonials  .testimonial img {
  width: 100px; /* Adjust as needed */
  height: auto; /* Adjust as needed */
  border-radius: 50%; /* Make the image round */
  margin-bottom: 10px; /* Add some space between image and text */
  
}

@media (max-width: 768px){
  .testimonials  {
    padding: 20px;
  }
  .testimonials .carousel {
    height: 300px;
}
}

/*------------------------------------
#DEMO
------------------------------------*/
.demo {
  height: auto;
  background: rgb(220,182,85);
  background: linear-gradient(180deg, rgba(220,182,85,1) 0%, rgba(228,196,125,1) 100%);
  padding: 60px;
}


.demo h2 {
  font-family: "Red Hat Display";
  color: #fff;
}

.demo p {

  color: #fff;
}

@media (max-width: 768px){
  .demo{
    padding: 20px;
  }
}
















/*------------------------------------
#Footer
------------------------------------*/



#footer {
  height: auto;
  background: #000000;
}

#footer .footer-details {
  padding: 100px;
  color: #fff;
}

#footer .col-md-4 img {
  width: 250px;
  margin-bottom: 15px;
  margin-top: -20px;
}

#footer .col-md-2 a {
  color: #FFF;
}

#footer p {
  color: #fff;
  font-size: 12px;
}

#footer form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 400px);
  border-bottom: 1px solid #fff;

}


#footer input {
  padding: 0.75rem 0;
  border: none;
  background: none;
  font-weight: 500;
  transition: border 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  border-radius: 0;
  width: 100%;
  font-size: 15px;
  font-weight: bolder;
  color: #fff;
}

#footer input:focus {
  outline: none;
}

@media (min-width: 675px) {
  .layout {
    display: flex;
    flex-wrap: nowrap;
    column-gap: 2rem;
  }

  .w-50 {
    width: 50%;
  }

  .w-25 {
    width: 25%;
  }
}


#footer .col-md-3 h5 {
  color: #fff;
}

#footer form {
  position: relative;
}

#footer svg {
  margin: 0.5rem;
}

#footer .c-2 {
  margin-top: 3.5rem;
}

#footer form button {
  appearance: none;
  border: 0;
  background: transparent;
}

#footer .col-md-4 .social {
  font-size: 30px;

}

#footer .col-md-4 .social i {
  margin-right: 15px;
  cursor: pointer;
  color: #fff;
}

#footer .col-md-4 .social i:hover {
  color: #dcb665;
}

#footer .col-md-4:last-child {
  position: relative;
}

#footer .col-md-4:last-child img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 100%;
  /* Ensure the image doesn't overflow its container */
}

@media (max-width: 992px) {
  #footer .col-md-3 {
    padding: 20px;
  }

  #footer .footer-details{
    height: auto;
    padding: 20px;
    padding-top: 60px;
  }
  #footer .col-md-4 .social {
    margin-bottom: 30px;
  }
}

#placeholder {
  color: #ffffff;
}
















.advance-feature  .accordion-flush .accordion-item .accordion-button{
  background:#dcb665;
  border: none;
  color: #fff;
}

.advance-feature  .accordion-body{
  background:#dcb665;
  border: none;
  color: #fff;
}




.plaform-container {
  height: auto;
  background: #ffffff;
  padding: 60px;
}
.plaform-container .col-md-3{
 padding: auto;
}
.plaform-container h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.plaform-container h2 span{
  font-size: 13px;
}
.plaform-container  p{
  font-size: 15px;
  padding: auto;
  
}

.plaform-container  .grid-item{
 border-radius: 10px;
  background:none;
  padding: 20px;
  min-height: 267px;
  border-radius: 15px;
  border: 2px solid #0000007c;
  color: #000;
}

.plaform-container .icon-circle {
 
  width: 30px; /* Size of the circle */
  height: 30px; /* Size of the circle */
  border-radius: 50%; /* Makes the div a circle */
  background-color: #dcb665; /* Circle color */
  display: flex;
  justify-content: center; /* Centers the icon horizontally */
  align-items: center; /* Centers the icon vertically */
  color: white; /* Icon color */
  margin-bottom: 20px;
}
.plaform-container .bi {
  font-size: 14px; /* Icon size */
}
 @media (max-width: 768px) {
  .plaform-container {
    padding: 10px; /* Adjust padding for smaller screens */

  }

  .advance-feature .col-md-3 {
    width: 100%; /* Make the column width 100% for smaller screens */
    padding: 0; /* Reset padding */
  }
  .plaform-container .grid-item{
    margin-bottom: 20px;
  }

 
}

.advance-feature  .accordion-flush .accordion-item .accordion-button{
  background:#dcb665;
  border: none;
  color: #fff;
}

.advance-feature  .accordion-body{
  background:#dcb665;
  border: none;
  color: #fff;
}


/* Icon color */
.breadcrumb-item a i {
  color: #fff; /* Set icon color to white */
}

/* Text color */
.breadcrumb-item a {
  color: #fff; /* Set text color to white */
}

/* Hover effect */
.breadcrumb-item a:hover {
  text-decoration: none; /* Remove underline on hover */
  color: #ccc; /* Change text color on hover */
}
/* Slash color */
.breadcrumb-item::after {
  content: "";
 
}

/* Breadcrumb styles */
.breadcrumb .bi {
  color: #fff; /* Set the color of the icon */
}

.breadcrumb .breadcrumb-item a {
  color: #fff; /* Set the color of the text */
  text-decoration: none; /* Remove default underline */
}