.biotorr-int {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 60px 40px;
    margin-bottom: 40px;
    background-color: var(--secondary-bg-color);
    border-radius: 15px;
}

.intro-cont {
    flex: 0 1 55%;
    text-align: left;
    order: 1;
}

.intro-cont h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.intro-cont p {
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.learn-more-btn {
    padding: 14px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.int-imag {
    flex: 0 0 40%;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    order: 2;
    margin-left: auto;
}

.int-imag img {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.int-imag:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .int-imag {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .biotorr-int {
        flex-direction: column;
        align-items: center;
        padding: 40px 25px;
    }

    .intro-cont {
        flex: 1 1 100%;
        width: 100%;
        text-align: center;
    }

    .intro-cont h1 {
        font-size: 2rem;
    }

    .int-imag {
        height: 350px;
        margin-top: 30px;
        margin-left: 0;
        justify-content: center;
    }
}


.biotorr-overview {
    padding: 60px 20px;
    text-align: center;
}

.biotorr-overview h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    filter: grayscale(100%);
    opacity: 1 !important;
    animation: none !important;
}

.feature-item span {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.feature-item p {
    font-size: 0.9rem;
    margin: 0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    filter: grayscale(0%);
}

.feature-item:nth-child(1):hover {
    background-color: #e3f2fd;
    color: #1976d2;
}

.feature-item:nth-child(2):hover {
    background-color: #e8f5e9;
    color: #388e3c;
}

.feature-item:nth-child(3):hover {
    background-color: #f3e5f5;
    color: #8e24aa;
}

.feature-item:nth-child(4):hover {
    background-color: #e0f7fa;
    color: #00acc1;
}

.feature-item:nth-child(5):hover {
    background-color: #fff3e0;
    color: #fb8c00;
}

.feature-item:nth-child(6):hover {
    background-color: #fce4ec;
    color: #d81b60;
}

.feature-item:nth-child(7):hover {
    background-color: #f1f8e9;
    color: #7cb342;
}

.feature-item:nth-child(8):hover {
    background-color: #ffebee;
    color: #e53935;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .biotorr-overview h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .feature-item {
        padding: 20px 10px;
        opacity: 1 !important;
        animation: none !important;
    }

    .feature-item span {
        font-size: 1.2rem;
    }

    .feature-item p {
        font-size: 0.8rem;
    }

    .feature-item:hover {
        transform: translateY(-5px);
    }
}


.dashboard-preview img {
    max-width: 90%;
    width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.dashboard-preview img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .dashboard-preview img {
        width: 100%;
    }
}

.biotorr-recognition {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 25px 20px;
    margin-top: 25px;
    background-color: var(--light-bg-color);
    border-radius: 15px;
    flex-direction: row;
}

.recognition-item {
    text-align: center;
    flex: 1;
    padding: 0 15px;
}

.recognition-divider {
    width: 1px;
    height: 120px;
    background-color: #e0e0e0;
}

.recognition-item h3 {
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.logos img {
    height: 200px;
    max-width: 180px;
    object-fit: contain;
    object-position: center;
}


@media (max-width: 992px) {
    .logos img {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .biotorr-recognition {
        flex-direction: column;
        gap: 15px;
        padding: 20px 15px;
    }

    .recognition-divider {
        width: 80%;
        height: 1px;
        margin: 10px 0;
    }

    .logos {
        flex-direction: column;
        gap: 10px;
    }

    .logos img {
        height: 90px;
    }

    .recognition-item {
        padding: 10px 0;
    }
}

@media (max-width: 576px) {
    .logos img {
        height: 80px;
        max-width: 150px;
    }

    .recognition-item h3 {
        font-size: 1rem;
    }
}