/* Image slider styles */
#image-slider {
    width: 100%;
    margin: 2% auto;
    perspective: 1200px;
    max-height: 563px;
    box-shadow: 0 0 30px 10px #000;
}

.slide {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 563px;
}

.slide img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

/* Blog Section styles
#blog {
    background-color: #f2f2f2;
    padding: 40px 0;
    text-align: center;
}

.blog-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 20px;
    width: calc(33.33% - 40px); /* Adjust the width as needed */
    /*transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    max-width: 100%;
    height: auto;
}

.blog-content {
    padding: 20px;
}

.blog-content p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}*/

/* Image description styles */
#image-description {
    background-color: #f0f0f0;
    padding: 40px 0;
}

.image-description-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.image-description-item {
    width: 300px;
    margin: 20px;
    border: 1px solid #ddd;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 20px;
    text-align: center;
}

.image-description-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.image-description-item p {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

/* Pagination styles */
.pagination {
    text-align: center;
    margin-top: 20px;
}

.pagination a {
    display: inline-block;
    padding: 5px 10px;
    margin: 2px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.pagination a:hover {
    background-color: #555;
}

/* Responsive Styles */
@media (max-width: 700px) {
    

    .box1,
    .box {
        width: 100%; /* Adjust box width */
        margin: 10px 0; /* Adjust margin */
    }

    .notification-container a {
        animation: none; /* Disable animation on small screens */
    }

    .image-description-item {
        width: 100%; /* Adjust width of image description item */
    }

    .pagination a {
        font-size: 12px; /* Adjust font size of pagination links */
    }
}

/* Style for logo grid */
.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

/* Style for each logo item */
.logo-item {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

/* Hover effect for logo item */
.logo-item:hover {
    transform: scale(1.1);
}

/* Style for logo images inside each item */
.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

/* Responsive Styles for Logo Grid */
@media (max-width: 768px) {
    .logo-item {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 576px) {
    .logo-item {
        width: 100px;
        height: 100px;
    }
}
