/* Image Alignment Fixes */

/* General image alignment fixes */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* Center images by default */
}

/* Footer quick links icon spacing */
.footer-links i {
    margin-right: 8px; /* Add space between icon and text */
}

/* Hero section image alignment */
.hero-image img {
    width: 100%;
    object-fit: contain;
    border-radius: var(--border-radius);
}

/* Featured card image alignment */
.featured-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
}

/* Blog card image alignment */
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

/* Gallery item image alignment */
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
}

/* Mission section image alignment in about page */
.mission-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Team member image alignment */
.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
}

/* Logo image alignment */
.logo img {
    height: 30px;
    width: auto;
    margin: 0;
}

/* Responsive image alignment */
@media screen and (max-width: 992px) {
    .hero-image img {
        max-height: 350px;
        object-fit: contain;
    }
    
    .mission-content {
        flex-direction: column;
    }
    
    .mission-image {
        margin-top: 30px;
    }
}

@media screen and (max-width: 768px) {
    .featured-card img,
    .blog-card img,
    .gallery-item img,
    .team-member img {
        height: auto;
        max-height: 250px;
    }
}