 /* Slider Container */
 .hec-slider-section {
     width: 100%;
     position: relative;
     margin-top: 32px;
 }

 .hec-slider-container {
     width: 100%;
     height: 95vh;
     overflow: hidden;
     position: relative;
 }


 .hec-slider-list {
     position: relative;
     height: 100%;
 }

 .hec-slide-item {
     /* width: 180px;
     height: 250px; */
     position: absolute;
     /* top: 80%;
     left: 70%;
     transform: translateY(-70%); */
     border-radius: 20px;
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
     background-position: 50% 50%;
     background-size:100%;
    background-position: top center;
     background-repeat: no-repeat;
     z-index: 100;
     transition: left 0.8s ease-in-out, top 0.8s ease-in-out,
         transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
     will-change: left, top, transform, opacity;
     backface-visibility: hidden;
 }



 .hec-slide-item:nth-child(1),
 .hec-slide-item:nth-child(2) {
     top: 0;
     left: 0;
     transform: translate(0, 0);
     border-radius: 0;
     width: 100%;
     height: 100%;
 }

 .hec-slide-item:nth-child(3) {
     left: 67%;
 }

 .hec-slide-item:nth-child(4) {
     left: calc(67% + 200px);
 }

 .hec-slide-item:nth-child(5) {
     left: calc(67% + 400px);
 }

 .hec-slide-item:nth-child(6) {
     left: calc(67% + 600px);
 }

 .hec-slide-item:nth-child(n+7) {
     left: calc(67% + 800px);
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.5s ease-in-out;
 }

 /* Slide Content */
 .hec-slide-content {
    position: absolute;
    top: 90%;
    left: 207px;
    transform: translateY(-50%);
    width: fit-content;
    text-align: left;
    color: #fff;
    display: none;
}

 .hec-slide-item:nth-child(2) .hec-slide-content {
     display: block;
 }

 .hec-slide-title {
    font-size: 47px;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    text-align: center;
    border-radius: 0%;
    font-weight: 700;
    line-height: 1;
    padding: 0 15px;
    padding-top: 12px;
    /* width: 866px; */
    color: white !important;
    height: 80px;
    background-color: rgba(0, 17, 255, 0.381);
    animation: hec-slide-animate 1s ease-in-out 0.3s 1 forwards;
}

 .hec-slide-headline {
     font-size: 40px;
     margin: 28px 0;
     text-transform: uppercase;
     width: fit-content;
     font-weight: bold;
     line-height: 1;
     background-color: rgb(137, 136, 136, 0.5);
     animation: hec-slide-animate 1s ease-in-out 0.6s 1 forwards;
 }

 .hec-slide-description {
     margin: 10px 0 20px 5px;
     font-size: 18px;
     opacity: 0;
     animation: hec-slide-animate 1s ease-in-out 0.9s 1 forwards;
 }

 /* Buttons */
 .hec-slide-buttons {
     margin-left: 5px;
     margin-top: 39px;
     opacity: 0;
     animation: hec-slide-animate 1s ease-in-out 1.2s 1 forwards;
 }

 .hec-slide-btn {
     padding: 12px 24px;
     border: none;
     cursor: pointer;
     font-size: 16px;
     font-weight: 600;
     border-radius: 4px;
     transition: all 0.3s ease;
     /* background-color: rgb(46, 42, 42); */
 }

 .hec-see-more-btn {
     background-color: #007bff;
     color: white;
     margin-right: 15px;
 }

 .hec-see-more-btn:hover {
     background-color: #0056b3;
 }

 .hec-apply-btn {
     background: transparent;
     color: white;
     border: 2px solid rgb(255, 255, 255);
     background-color: rgb(255, 255, 0);
 }

 .hec-apply-btn:hover {
     background-color: rgba(255, 255, 255, 0.2);
 }

 /* Controls */
 .hec-slider-controls {
    position: absolute;
    top: 87%;
    left: 82px;
    z-index: 100;
    height: 13px;
    width: 110px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}
 .hec-slider-prev,
 .hec-slider-next {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background-color: #007bff;
     color: white;
     border: none;
     font-size: 16px;
     font-weight: bold;
     transition: all 0.3s ease;
     cursor: pointer;
 }

 .hec-slider-prev:hover,
 .hec-slider-next:hover {
     background-color: white;
     color: #007bff;
 }

 /* Progress Bar */
 .hec-slider-progress {
     position: absolute;
     z-index: 1000;
     width: 0%;
     height: 4px;
     background-color: #007bff;
     left: 0;
     top: 0;
     animation: hec-running-time 7s linear 1 forwards;
 }

 /* Animations */
 @keyframes hec-slide-animate {
     from {
         opacity: 0;
         transform: translate(0, 100px);
         filter: blur(33px);
     }

     to {
         opacity: 1;
         transform: translate(0);
         filter: blur(0);
     }
 }

 @keyframes hec-running-time {
     from {
         width: 0%;
     }

     to {
         width: 100%;
     }
 }

 /* Responsive Design */
 @media screen and (max-width: 999px) {
     .hec-slide-content {
         left: 50px;
     }

     .hec-slide-title,
     .hec-slide-headline {
         font-size: 70px;
     }

     .hec-slide-description {
         font-size: 16px;
     }
 }

 @media screen and (max-width: 690px) {
     .hec-slide-content {
         top: 40%;
     }

     .hec-slide-title,
     .hec-slide-headline {
         font-size: 29px;
     }

     .hec-slide-btn {
         padding: 10px 15px;
         font-size: 14px;
     }

     .hec-slider-container {
         height: 60vh;

     }
 }




