.features-section {
    padding: 125px 0;
    .featores-text {
        h1 {
            font-family: inter;
            font-weight: 600;
            font-size: 56px;
            line-height: 88px;
            text-align: center;
            color: #FFFFFF;
            margin: 0;
        }
        p {
            font-family: IBM Plex Sans;
            font-weight: 400;
            font-size: 24px;
            line-height: 32px;
            text-align: center;
            color: #C3C3C3;
            margin: 0;
        }
    }
    .features-cards {
        padding: 45px 0;
        gap: 24px;
        justify-content: center;
        @media (max-width: 1024px) {
            align-items: center;
            margin: 0;
        }
        .features-items {
            width: 235px;
            border-radius: 12px;
            background: #FFFFFF0D;
            padding: 0;
            border: 1px solid #FFFFFF0D;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            cursor: pointer;
        }
    }
}
.features-items-top {
    padding: 24px 15px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    img {
        width: 106.5px;
        height: 115px;
    }
    h3 {
        width: 195px;
        font-family: inter;
        font-weight: 700;
        font-size: 20px;
        line-height: 22px;
        text-align: center;
        vertical-align: middle;
        color: #FFFFFF;
        margin-bottom: 8px;
    }
    p {
        font-family: IBM Plex Sans;
        font-weight: 400;
        font-size: 16px;
        text-align: center;
        color: #C3C3C3;
        margin: 0;
    }
}
.features-items-bottom {
    width: 100%;
    height: 48px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
    background: #F5F6F71A;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    img {
        width: 24px;
        height: 24px;
    }
    p {
        font-family: IBM Plex Sans;
        font-weight: 400;
        font-size: 12px;
        line-height: 16px;
        text-align: center;
        vertical-align: middle;
        margin: 0;
    }
}

.feature-modal {
  position: fixed;
  z-index: 9999;
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex; 
  justify-content: center;
}
.modal-content {
    width: 100%;
    background: white;
    padding: 55px 75px;
    position: relative;
    overflow: auto;
    scrollbar-width: none;
}
.modal-content:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    background-image: url('/assests/images/popup-bg-img.png');
    opacity: 0.25;
}
.close-btn {
  position: absolute;
  top: 10px; 
  right: 35px;
  font-size: 56px;
  cursor: pointer;
  z-index: 1;
  color: #000000;
}
#prevFeature , #nextFeature {
    width: 200px;
    border: none;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1;
    p {
        font-family: IBM Plex Sans;
        font-weight: 400;
        font-size: 12px;
        line-height: 16px;
        vertical-align: middle;
        text-align: left;
        color: #41464D;
        margin: 0;
    }
    h6 {
        font-family: IBM Plex Sans;
        font-weight: 700;
        font-size: 16px;
        line-height: 20px;
        vertical-align: middle;
        text-align: left;
        color: #F75891;
        margin: 0;
    }
}
.modal-nav {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
.popup-img {
    img {
        width: 100%;
    }
}

@media (max-width: 1439px) and (min-width:1080px) {
    .modal-content {
        width: 1128px;
        height: 100vh; 
    }
    .popup-img {
        img {
            width: 100%;
            height: unset;
        }
    }
}
@media (max-width: 1079px) and (min-width:720px) {
    .modal-content {
        width: 88%;
        height: 100vh; 
    }
    .popup-img {
        img {
            width: 100%;
            height: unset;
        }
    }
}
@media (max-width: 719px) and (min-width:300px) {
    .modal-content {
        width: 100%;
        height: 100vh;
        padding: 20px 20px;
    }
    .popup-img {
        img {
            width: 100%;
            height: unset;
        }
    }
    .close-btn {
        top: -20px;
        right: 13px;
    }
}