/* 5-Column Service Cards Layout */
.service-two .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.service-card-col {
    flex: 0 0 20%;
    /* 5 columns = 20% each */
    max-width: 20%;
    padding: 0 10px;
    margin-bottom: 20px;
}

/* On large tablets, show 3 columns */
@media (max-width: 1200px) {
    .service-card-col {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

/* On tablets, show 2 columns */
@media (max-width: 992px) {
    .service-card-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* On mobile, show 1 column */
@media (max-width: 768px) {
    .service-card-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Footer Social Icons Styling */
.footer-social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-icons li {
    margin-bottom: 15px;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-social-icons a i {
    font-size: 20px;
    width: 24px;
    color: var(--thm-primary);
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    color: var(--thm-primary);
    transform: translateX(5px);
}

.footer-social-icons a:hover i {
    transform: scale(1.2);
}

/* Uniform Slideshow Height Fix */
.main-slider .swiper-slide {
    height: 100vh;
    /* Full viewport height */
    min-height: 750px;
    /* Increased minimum height */
}

.main-slider .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Ensure all slides have same dimensions */
.banner-carousel .swiper-wrapper,
.banner-carousel .swiper-slide {
    height: 100%;
}

/* Fix for slide content positioning */
.main-slider-one__single {
    height: 100%;
    display: flex;
    align-items: center;
}