/* Home page styles */
.home {
    padding: 2rem 0;
}

/* Header container for journals */
.journals-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.home h1 {
    margin-bottom: 0;
    color: #333;
}

.view-all-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;

}


.home p {
    margin-bottom: 2rem;
    color: #666;
    font-size: 1.1rem;
}

/* Image row container */
.image-row {
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Individual image styling */
.home-banner {
    max-width: 255px;
    height: auto;

}

.home-banner:hover {
    transform: scale(1.05);
}

/* Responsive design */
@media (max-width: 768px) {
    .journals-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .view-all-link {
        align-self: flex-end;
    }
    
    .image-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .home-banner {
        max-width: 250px;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .image-row {
        gap: 0.5rem;
    }
    
    .home-banner {
        max-width: 180px;
    }
}

/* Abstracting and Indexing Section */
.indexing-section {
    padding: 4rem 0;
    margin-top: 2rem;
}

.indexing-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 600;
}

.indexing-description {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.indexing-carousel {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.indexing-logos {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: transform 0.5s ease-in-out;
}

.indexing-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease-in-out;
    height: 100px;
    width: 180px;
    flex-shrink: 0;
    opacity: 1;
}

.indexing-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.indexing-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0.2);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.indexing-logo:hover img {
    filter: grayscale(0);
    transform: scale(1.1);
}

/* Animation classes for smooth transitions */
.indexing-logo.fade-out {
    opacity: 0;
    transform: scale(0.9);
}

.indexing-logo.fade-in {
    opacity: 1;
    transform: scale(1);
}

/* Mobile responsive for indexing section */
@media (max-width: 768px) {
    .indexing-section {
        padding: 2rem 0;
    }
    
    .indexing-section h2 {
        font-size: 1.8rem;
    }
    
    .indexing-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .indexing-carousel {
        padding: 0 1rem;
    }
    
    .indexing-logos {
        gap: 1.5rem;
    }
    
    .indexing-logo {
        height: 85px;
        width: 140px;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .indexing-carousel {
        padding: 0 0.5rem;
    }
    
    .indexing-logos {
        gap: 1rem;
    }
    
    .indexing-logo {
        height: 75px;
        width: 120px;
        padding: 0.8rem;
    }
}