.project-slider-widget {
    padding: 80px 0px;
    color: white;
    font-family: 'Inter', sans-serif;
}
.project-slider-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.project-slider-header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.project-slider-dots span {
    width: 6px;
    height: 6px;
    background: #BF3131;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
}
.project-slider-controls {
    display: flex;
    gap: 20px;
}

.project-slider-controls button {
    width: 42px;
    height: 42px;
    padding: 10px 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: transparent;
    border: 0.7px solid #A9A9A9;
    cursor: pointer;
}

.project-slider-controls .project-next {
    border-color: #BF3131;
}

.project-slider-controls button img {
	max-width: 20px;
    max-height: 20px;
}

.project-slider-logos {
	display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
    justify-content: space-around;
    align-items: center;
}
.project-slider-logo{
	width: 130px;
	height: 60px;
	justify-content: center;
    align-items: center;
    display: flex;
	cursor: pointer;
}
.project-slider-logo.active {
	border-radius: 8px;
background: rgba(255, 255, 255, 0.05);
}
.project-slider-logo img {
    height: 40px;
    opacity: 0.5;
    transition: 0.3s;
}
.project-slider-logo.active img {
    opacity: 1;

}
.project-slider-track {
    position: relative;
}
.project-slide {
    display: none;
    animation: fadeIn 0.6s ease-in-out;
}
.project-slide.active {
    display: flex;
    border-radius: 18px;
    overflow: hidden;
	border-radius: 16px;
	background: #282828;
	padding: 30px;
	gap: 60px;

}
.project-image {
    flex: 1;
	border-radius: 25px;
	
}
.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	border-radius: 16px!important;
	
}
.project-content {
    flex: 1;
    padding: 0px;
    position: relative;
	
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.project-timeline-bar {
    height: 2px;
    background: #333;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}
.project-timeline-bar span {
    display: block;
    height: 2px;
    width: 0;
    background: #BF3131;
    position: absolute;
    top: 0; left: 0;
}
.project-title {
    color: #E6E6E6;
	font-size: 30px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%; 
	letter-spacing: -0.3px;
    margin-bottom: 20px;
}
.project-subtitle {
    color: #E6E6E6;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 130%; 
    margin-bottom: 12px;
}
.project-description {
	color:  #E6E6E6;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 18.2px; 
}
.project-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 16px;
    color: #E6E6E6;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    margin-top: 24px;
}

.project-button img.project-arrow {
	width: 22px;
	height: 22px;
}
.project-slider-title{

	font-size: 38px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%;
	letter-spacing: -0.3px;
	margin-block-start: 0em;
	margin-block-end: 0.23em;
}
.project-button .project-arrow {
    margin-left: 6px;
    color: #BF3131;
}
.project-tags {
    margin-top: 20px;
}
.project-tags span {
    display: inline-block;
    margin-right: 10px;
	padding: 10px 0px;
	color: #979797;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%; 
}
.project-slider-footer {
    margin-top: 40px;
    text-align: center;
}
.project-slider-all-btn {
    border: 1px solid #BF3131;
    color: #BF3131;
	padding: 14px 28px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%; 
}
.project-slider-all-btn span {
    margin-left: 8px;
	width: 17px;
    height: 17px;
}
img.project-slider-all-btn-arrow {
	width: 17px!important;
	height: 17px!important;
	padding-top:2px;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.project-slider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}
.project-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
	
	.project-slider-widget {
   	 padding: 70px 0px;
	}
  .project-slider-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .project-slider-controls {
    display: none;
  }


  .project-slider-logos {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 12px;
    padding-bottom: 10px;
	  
	scroll-behavior: smooth;
  }

  .project-slider-logos::-webkit-scrollbar {
    display: none;
  }

  .project-slider-logo {
    flex: 0 0 auto;
    width: 130px;
  }

  .project-slide.active {
    flex-direction: column;
    gap: 20px;
    padding: 0px;
	background: none;
  }

  .project-image img {
    border-radius: 12px !important;
  }

  .project-button {
    margin-top: 20px;
    font-size: 15px;
  }

  .project-slider-footer {
    margin-top: 32px;
    text-align: center;
  }

  .project-slider-all-btn {
    width: 100%;
    box-sizing: border-box;
    font-size: 15px;
    padding: 12px 20px;
  }

  .project-title {
    font-size: 22px;
    line-height: 130%;
  }

  .project-subtitle {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .project-description {
    font-size: 14px;
    line-height: 1.5;
  }

  .project-tags span {
    font-size: 12px;
	 padding: 0px 0px;
  }
	.project-slider-title {
		font-size: 30px;
	}
}
.project-slider-logo{
	cursor: pointer;
}
