/* Country Hub Cards Styles */
.country-hub-card {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: all 0.3s ease;
}

.country-hub-card-inner {
    background: #ffffff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.country-hub-card:hover .country-hub-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(5, 206, 216, 0.2);
    border: 2px solid #05CED8;
}

.country-flag-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.country-hub-card:hover .country-flag-wrapper {
    background: rgba(5, 206, 216, 0.1);
    transform: scale(1.1);
}

.country-flag-large {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 4px;
}

.country-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0a1628;
    transition: color 0.3s ease;
}

.country-hub-card:hover .country-name {
    color: #05CED8;
}

.country-description {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.country-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #05CED8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    transition: all 0.3s ease;
}

.country-arrow i {
    color: #ffffff;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.country-hub-card:hover .country-arrow {
    background: #0a1628;
}

.country-hub-card:hover .country-arrow i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .country-hub-card-inner {
        padding: 35px 25px;
    }
    
    .country-flag-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .country-flag-large {
        width: 60px;
        height: 60px;
    }
    
    .country-name {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .country-hub-card-inner {
        padding: 30px 20px;
    }
    
    .country-flag-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }
    
    .country-flag-large {
        width: 50px;
        height: 50px;
    }
    
    .country-name {
        font-size: 22px;
    }
    
    .country-description {
        font-size: 15px;
    }
}
